]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
e7927f07c0d0813a050dd174857ed55dd51383cd
[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{framesync}
316 @chapter Options for filters with several inputs (framesync)
317 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
318
319 Some filters with several inputs support a common set of options.
320 These options can only be set by name, not with the short notation.
321
322 @table @option
323 @item eof_action
324 The action to take when EOF is encountered on the secondary input; it accepts
325 one of the following values:
326
327 @table @option
328 @item repeat
329 Repeat the last frame (the default).
330 @item endall
331 End both streams.
332 @item pass
333 Pass the main input through.
334 @end table
335
336 @item shortest
337 If set to 1, force the output to terminate when the shortest input
338 terminates. Default value is 0.
339
340 @item repeatlast
341 If set to 1, force the filter to extend the last frame of secondary streams
342 until the end of the primary stream. A value of 0 disables this behavior.
343 Default value is 1.
344 @end table
345
346 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
347
348 @chapter Audio Filters
349 @c man begin AUDIO FILTERS
350
351 When you configure your FFmpeg build, you can disable any of the
352 existing filters using @code{--disable-filters}.
353 The configure output will show the audio filters included in your
354 build.
355
356 Below is a description of the currently available audio filters.
357
358 @section acompressor
359
360 A compressor is mainly used to reduce the dynamic range of a signal.
361 Especially modern music is mostly compressed at a high ratio to
362 improve the overall loudness. It's done to get the highest attention
363 of a listener, "fatten" the sound and bring more "power" to the track.
364 If a signal is compressed too much it may sound dull or "dead"
365 afterwards or it may start to "pump" (which could be a powerful effect
366 but can also destroy a track completely).
367 The right compression is the key to reach a professional sound and is
368 the high art of mixing and mastering. Because of its complex settings
369 it may take a long time to get the right feeling for this kind of effect.
370
371 Compression is done by detecting the volume above a chosen level
372 @code{threshold} and dividing it by the factor set with @code{ratio}.
373 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
374 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
375 the signal would cause distortion of the waveform the reduction can be
376 levelled over the time. This is done by setting "Attack" and "Release".
377 @code{attack} determines how long the signal has to rise above the threshold
378 before any reduction will occur and @code{release} sets the time the signal
379 has to fall below the threshold to reduce the reduction again. Shorter signals
380 than the chosen attack time will be left untouched.
381 The overall reduction of the signal can be made up afterwards with the
382 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
383 raising the makeup to this level results in a signal twice as loud than the
384 source. To gain a softer entry in the compression the @code{knee} flattens the
385 hard edge at the threshold in the range of the chosen decibels.
386
387 The filter accepts the following options:
388
389 @table @option
390 @item level_in
391 Set input gain. Default is 1. Range is between 0.015625 and 64.
392
393 @item mode
394 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
395 Default is @code{downward}.
396
397 @item threshold
398 If a signal of stream rises above this level it will affect the gain
399 reduction.
400 By default it is 0.125. Range is between 0.00097563 and 1.
401
402 @item ratio
403 Set a ratio by which the signal is reduced. 1:2 means that if the level
404 rose 4dB above the threshold, it will be only 2dB above after the reduction.
405 Default is 2. Range is between 1 and 20.
406
407 @item attack
408 Amount of milliseconds the signal has to rise above the threshold before gain
409 reduction starts. Default is 20. Range is between 0.01 and 2000.
410
411 @item release
412 Amount of milliseconds the signal has to fall below the threshold before
413 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
414
415 @item makeup
416 Set the amount by how much signal will be amplified after processing.
417 Default is 1. Range is from 1 to 64.
418
419 @item knee
420 Curve the sharp knee around the threshold to enter gain reduction more softly.
421 Default is 2.82843. Range is between 1 and 8.
422
423 @item link
424 Choose if the @code{average} level between all channels of input stream
425 or the louder(@code{maximum}) channel of input stream affects the
426 reduction. Default is @code{average}.
427
428 @item detection
429 Should the exact signal be taken in case of @code{peak} or an RMS one in case
430 of @code{rms}. Default is @code{rms} which is mostly smoother.
431
432 @item mix
433 How much to use compressed signal in output. Default is 1.
434 Range is between 0 and 1.
435 @end table
436
437 @section acontrast
438 Simple audio dynamic range compression/expansion filter.
439
440 The filter accepts the following options:
441
442 @table @option
443 @item contrast
444 Set contrast. Default is 33. Allowed range is between 0 and 100.
445 @end table
446
447 @section acopy
448
449 Copy the input audio source unchanged to the output. This is mainly useful for
450 testing purposes.
451
452 @section acrossfade
453
454 Apply cross fade from one input audio stream to another input audio stream.
455 The cross fade is applied for specified duration near the end of first stream.
456
457 The filter accepts the following options:
458
459 @table @option
460 @item nb_samples, ns
461 Specify the number of samples for which the cross fade effect has to last.
462 At the end of the cross fade effect the first input audio will be completely
463 silent. Default is 44100.
464
465 @item duration, d
466 Specify the duration of the cross fade effect. See
467 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
468 for the accepted syntax.
469 By default the duration is determined by @var{nb_samples}.
470 If set this option is used instead of @var{nb_samples}.
471
472 @item overlap, o
473 Should first stream end overlap with second stream start. Default is enabled.
474
475 @item curve1
476 Set curve for cross fade transition for first stream.
477
478 @item curve2
479 Set curve for cross fade transition for second stream.
480
481 For description of available curve types see @ref{afade} filter description.
482 @end table
483
484 @subsection Examples
485
486 @itemize
487 @item
488 Cross fade from one input to another:
489 @example
490 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
491 @end example
492
493 @item
494 Cross fade from one input to another but without overlapping:
495 @example
496 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
497 @end example
498 @end itemize
499
500 @section acrossover
501 Split audio stream into several bands.
502
503 This filter splits audio stream into two or more frequency ranges.
504 Summing all streams back will give flat output.
505
506 The filter accepts the following options:
507
508 @table @option
509 @item split
510 Set split frequencies. Those must be positive and increasing.
511
512 @item order
513 Set filter order, can be @var{2nd}, @var{4th} or @var{8th}.
514 Default is @var{4th}.
515 @end table
516
517 @section acrusher
518
519 Reduce audio bit resolution.
520
521 This filter is bit crusher with enhanced functionality. A bit crusher
522 is used to audibly reduce number of bits an audio signal is sampled
523 with. This doesn't change the bit depth at all, it just produces the
524 effect. Material reduced in bit depth sounds more harsh and "digital".
525 This filter is able to even round to continuous values instead of discrete
526 bit depths.
527 Additionally it has a D/C offset which results in different crushing of
528 the lower and the upper half of the signal.
529 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
530
531 Another feature of this filter is the logarithmic mode.
532 This setting switches from linear distances between bits to logarithmic ones.
533 The result is a much more "natural" sounding crusher which doesn't gate low
534 signals for example. The human ear has a logarithmic perception,
535 so this kind of crushing is much more pleasant.
536 Logarithmic crushing is also able to get anti-aliased.
537
538 The filter accepts the following options:
539
540 @table @option
541 @item level_in
542 Set level in.
543
544 @item level_out
545 Set level out.
546
547 @item bits
548 Set bit reduction.
549
550 @item mix
551 Set mixing amount.
552
553 @item mode
554 Can be linear: @code{lin} or logarithmic: @code{log}.
555
556 @item dc
557 Set DC.
558
559 @item aa
560 Set anti-aliasing.
561
562 @item samples
563 Set sample reduction.
564
565 @item lfo
566 Enable LFO. By default disabled.
567
568 @item lforange
569 Set LFO range.
570
571 @item lforate
572 Set LFO rate.
573 @end table
574
575 @section acue
576
577 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
578 filter.
579
580 @section adeclick
581 Remove impulsive noise from input audio.
582
583 Samples detected as impulsive noise are replaced by interpolated samples using
584 autoregressive modelling.
585
586 @table @option
587 @item w
588 Set window size, in milliseconds. Allowed range is from @code{10} to
589 @code{100}. Default value is @code{55} milliseconds.
590 This sets size of window which will be processed at once.
591
592 @item o
593 Set window overlap, in percentage of window size. Allowed range is from
594 @code{50} to @code{95}. Default value is @code{75} percent.
595 Setting this to a very high value increases impulsive noise removal but makes
596 whole process much slower.
597
598 @item a
599 Set autoregression order, in percentage of window size. Allowed range is from
600 @code{0} to @code{25}. Default value is @code{2} percent. This option also
601 controls quality of interpolated samples using neighbour good samples.
602
603 @item t
604 Set threshold value. Allowed range is from @code{1} to @code{100}.
605 Default value is @code{2}.
606 This controls the strength of impulsive noise which is going to be removed.
607 The lower value, the more samples will be detected as impulsive noise.
608
609 @item b
610 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
611 @code{10}. Default value is @code{2}.
612 If any two samples detected as noise are spaced less than this value then any
613 sample between those two samples will be also detected as noise.
614
615 @item m
616 Set overlap method.
617
618 It accepts the following values:
619 @table @option
620 @item a
621 Select overlap-add method. Even not interpolated samples are slightly
622 changed with this method.
623
624 @item s
625 Select overlap-save method. Not interpolated samples remain unchanged.
626 @end table
627
628 Default value is @code{a}.
629 @end table
630
631 @section adeclip
632 Remove clipped samples from input audio.
633
634 Samples detected as clipped are replaced by interpolated samples using
635 autoregressive modelling.
636
637 @table @option
638 @item w
639 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
640 Default value is @code{55} milliseconds.
641 This sets size of window which will be processed at once.
642
643 @item o
644 Set window overlap, in percentage of window size. Allowed range is from @code{50}
645 to @code{95}. Default value is @code{75} percent.
646
647 @item a
648 Set autoregression order, in percentage of window size. Allowed range is from
649 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
650 quality of interpolated samples using neighbour good samples.
651
652 @item t
653 Set threshold value. Allowed range is from @code{1} to @code{100}.
654 Default value is @code{10}. Higher values make clip detection less aggressive.
655
656 @item n
657 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
658 Default value is @code{1000}. Higher values make clip detection less aggressive.
659
660 @item m
661 Set overlap method.
662
663 It accepts the following values:
664 @table @option
665 @item a
666 Select overlap-add method. Even not interpolated samples are slightly changed
667 with this method.
668
669 @item s
670 Select overlap-save method. Not interpolated samples remain unchanged.
671 @end table
672
673 Default value is @code{a}.
674 @end table
675
676 @section adelay
677
678 Delay one or more audio channels.
679
680 Samples in delayed channel are filled with silence.
681
682 The filter accepts the following option:
683
684 @table @option
685 @item delays
686 Set list of delays in milliseconds for each channel separated by '|'.
687 Unused delays will be silently ignored. If number of given delays is
688 smaller than number of channels all remaining channels will not be delayed.
689 If you want to delay exact number of samples, append 'S' to number.
690 If you want instead to delay in seconds, append 's' to number.
691 @end table
692
693 @subsection Examples
694
695 @itemize
696 @item
697 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
698 the second channel (and any other channels that may be present) unchanged.
699 @example
700 adelay=1500|0|500
701 @end example
702
703 @item
704 Delay second channel by 500 samples, the third channel by 700 samples and leave
705 the first channel (and any other channels that may be present) unchanged.
706 @example
707 adelay=0|500S|700S
708 @end example
709 @end itemize
710
711 @section aderivative, aintegral
712
713 Compute derivative/integral of audio stream.
714
715 Applying both filters one after another produces original audio.
716
717 @section aecho
718
719 Apply echoing to the input audio.
720
721 Echoes are reflected sound and can occur naturally amongst mountains
722 (and sometimes large buildings) when talking or shouting; digital echo
723 effects emulate this behaviour and are often used to help fill out the
724 sound of a single instrument or vocal. The time difference between the
725 original signal and the reflection is the @code{delay}, and the
726 loudness of the reflected signal is the @code{decay}.
727 Multiple echoes can have different delays and decays.
728
729 A description of the accepted parameters follows.
730
731 @table @option
732 @item in_gain
733 Set input gain of reflected signal. Default is @code{0.6}.
734
735 @item out_gain
736 Set output gain of reflected signal. Default is @code{0.3}.
737
738 @item delays
739 Set list of time intervals in milliseconds between original signal and reflections
740 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
741 Default is @code{1000}.
742
743 @item decays
744 Set list of loudness of reflected signals separated by '|'.
745 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
746 Default is @code{0.5}.
747 @end table
748
749 @subsection Examples
750
751 @itemize
752 @item
753 Make it sound as if there are twice as many instruments as are actually playing:
754 @example
755 aecho=0.8:0.88:60:0.4
756 @end example
757
758 @item
759 If delay is very short, then it sounds like a (metallic) robot playing music:
760 @example
761 aecho=0.8:0.88:6:0.4
762 @end example
763
764 @item
765 A longer delay will sound like an open air concert in the mountains:
766 @example
767 aecho=0.8:0.9:1000:0.3
768 @end example
769
770 @item
771 Same as above but with one more mountain:
772 @example
773 aecho=0.8:0.9:1000|1800:0.3|0.25
774 @end example
775 @end itemize
776
777 @section aemphasis
778 Audio emphasis filter creates or restores material directly taken from LPs or
779 emphased CDs with different filter curves. E.g. to store music on vinyl the
780 signal has to be altered by a filter first to even out the disadvantages of
781 this recording medium.
782 Once the material is played back the inverse filter has to be applied to
783 restore the distortion of the frequency response.
784
785 The filter accepts the following options:
786
787 @table @option
788 @item level_in
789 Set input gain.
790
791 @item level_out
792 Set output gain.
793
794 @item mode
795 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
796 use @code{production} mode. Default is @code{reproduction} mode.
797
798 @item type
799 Set filter type. Selects medium. Can be one of the following:
800
801 @table @option
802 @item col
803 select Columbia.
804 @item emi
805 select EMI.
806 @item bsi
807 select BSI (78RPM).
808 @item riaa
809 select RIAA.
810 @item cd
811 select Compact Disc (CD).
812 @item 50fm
813 select 50µs (FM).
814 @item 75fm
815 select 75µs (FM).
816 @item 50kf
817 select 50µs (FM-KF).
818 @item 75kf
819 select 75µs (FM-KF).
820 @end table
821 @end table
822
823 @section aeval
824
825 Modify an audio signal according to the specified expressions.
826
827 This filter accepts one or more expressions (one for each channel),
828 which are evaluated and used to modify a corresponding audio signal.
829
830 It accepts the following parameters:
831
832 @table @option
833 @item exprs
834 Set the '|'-separated expressions list for each separate channel. If
835 the number of input channels is greater than the number of
836 expressions, the last specified expression is used for the remaining
837 output channels.
838
839 @item channel_layout, c
840 Set output channel layout. If not specified, the channel layout is
841 specified by the number of expressions. If set to @samp{same}, it will
842 use by default the same input channel layout.
843 @end table
844
845 Each expression in @var{exprs} can contain the following constants and functions:
846
847 @table @option
848 @item ch
849 channel number of the current expression
850
851 @item n
852 number of the evaluated sample, starting from 0
853
854 @item s
855 sample rate
856
857 @item t
858 time of the evaluated sample expressed in seconds
859
860 @item nb_in_channels
861 @item nb_out_channels
862 input and output number of channels
863
864 @item val(CH)
865 the value of input channel with number @var{CH}
866 @end table
867
868 Note: this filter is slow. For faster processing you should use a
869 dedicated filter.
870
871 @subsection Examples
872
873 @itemize
874 @item
875 Half volume:
876 @example
877 aeval=val(ch)/2:c=same
878 @end example
879
880 @item
881 Invert phase of the second channel:
882 @example
883 aeval=val(0)|-val(1)
884 @end example
885 @end itemize
886
887 @anchor{afade}
888 @section afade
889
890 Apply fade-in/out effect to input audio.
891
892 A description of the accepted parameters follows.
893
894 @table @option
895 @item type, t
896 Specify the effect type, can be either @code{in} for fade-in, or
897 @code{out} for a fade-out effect. Default is @code{in}.
898
899 @item start_sample, ss
900 Specify the number of the start sample for starting to apply the fade
901 effect. Default is 0.
902
903 @item nb_samples, ns
904 Specify the number of samples for which the fade effect has to last. At
905 the end of the fade-in effect the output audio will have the same
906 volume as the input audio, at the end of the fade-out transition
907 the output audio will be silence. Default is 44100.
908
909 @item start_time, st
910 Specify the start time of the fade effect. Default is 0.
911 The value must be specified as a time duration; see
912 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
913 for the accepted syntax.
914 If set this option is used instead of @var{start_sample}.
915
916 @item duration, d
917 Specify the duration of the fade effect. See
918 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
919 for the accepted syntax.
920 At the end of the fade-in effect the output audio will have the same
921 volume as the input audio, at the end of the fade-out transition
922 the output audio will be silence.
923 By default the duration is determined by @var{nb_samples}.
924 If set this option is used instead of @var{nb_samples}.
925
926 @item curve
927 Set curve for fade transition.
928
929 It accepts the following values:
930 @table @option
931 @item tri
932 select triangular, linear slope (default)
933 @item qsin
934 select quarter of sine wave
935 @item hsin
936 select half of sine wave
937 @item esin
938 select exponential sine wave
939 @item log
940 select logarithmic
941 @item ipar
942 select inverted parabola
943 @item qua
944 select quadratic
945 @item cub
946 select cubic
947 @item squ
948 select square root
949 @item cbr
950 select cubic root
951 @item par
952 select parabola
953 @item exp
954 select exponential
955 @item iqsin
956 select inverted quarter of sine wave
957 @item ihsin
958 select inverted half of sine wave
959 @item dese
960 select double-exponential seat
961 @item desi
962 select double-exponential sigmoid
963 @item losi
964 select logistic sigmoid
965 @item nofade
966 no fade applied
967 @end table
968 @end table
969
970 @subsection Examples
971
972 @itemize
973 @item
974 Fade in first 15 seconds of audio:
975 @example
976 afade=t=in:ss=0:d=15
977 @end example
978
979 @item
980 Fade out last 25 seconds of a 900 seconds audio:
981 @example
982 afade=t=out:st=875:d=25
983 @end example
984 @end itemize
985
986 @section afftdn
987 Denoise audio samples with FFT.
988
989 A description of the accepted parameters follows.
990
991 @table @option
992 @item nr
993 Set the noise reduction in dB, allowed range is 0.01 to 97.
994 Default value is 12 dB.
995
996 @item nf
997 Set the noise floor in dB, allowed range is -80 to -20.
998 Default value is -50 dB.
999
1000 @item nt
1001 Set the noise type.
1002
1003 It accepts the following values:
1004 @table @option
1005 @item w
1006 Select white noise.
1007
1008 @item v
1009 Select vinyl noise.
1010
1011 @item s
1012 Select shellac noise.
1013
1014 @item c
1015 Select custom noise, defined in @code{bn} option.
1016
1017 Default value is white noise.
1018 @end table
1019
1020 @item bn
1021 Set custom band noise for every one of 15 bands.
1022 Bands are separated by ' ' or '|'.
1023
1024 @item rf
1025 Set the residual floor in dB, allowed range is -80 to -20.
1026 Default value is -38 dB.
1027
1028 @item tn
1029 Enable noise tracking. By default is disabled.
1030 With this enabled, noise floor is automatically adjusted.
1031
1032 @item tr
1033 Enable residual tracking. By default is disabled.
1034
1035 @item om
1036 Set the output mode.
1037
1038 It accepts the following values:
1039 @table @option
1040 @item i
1041 Pass input unchanged.
1042
1043 @item o
1044 Pass noise filtered out.
1045
1046 @item n
1047 Pass only noise.
1048
1049 Default value is @var{o}.
1050 @end table
1051 @end table
1052
1053 @subsection Commands
1054
1055 This filter supports the following commands:
1056 @table @option
1057 @item sample_noise, sn
1058 Start or stop measuring noise profile.
1059 Syntax for the command is : "start" or "stop" string.
1060 After measuring noise profile is stopped it will be
1061 automatically applied in filtering.
1062
1063 @item noise_reduction, nr
1064 Change noise reduction. Argument is single float number.
1065 Syntax for the command is : "@var{noise_reduction}"
1066
1067 @item noise_floor, nf
1068 Change noise floor. Argument is single float number.
1069 Syntax for the command is : "@var{noise_floor}"
1070
1071 @item output_mode, om
1072 Change output mode operation.
1073 Syntax for the command is : "i", "o" or "n" string.
1074 @end table
1075
1076 @section afftfilt
1077 Apply arbitrary expressions to samples in frequency domain.
1078
1079 @table @option
1080 @item real
1081 Set frequency domain real expression for each separate channel separated
1082 by '|'. Default is "re".
1083 If the number of input channels is greater than the number of
1084 expressions, the last specified expression is used for the remaining
1085 output channels.
1086
1087 @item imag
1088 Set frequency domain imaginary expression for each separate channel
1089 separated by '|'. Default is "im".
1090
1091 Each expression in @var{real} and @var{imag} can contain the following
1092 constants and functions:
1093
1094 @table @option
1095 @item sr
1096 sample rate
1097
1098 @item b
1099 current frequency bin number
1100
1101 @item nb
1102 number of available bins
1103
1104 @item ch
1105 channel number of the current expression
1106
1107 @item chs
1108 number of channels
1109
1110 @item pts
1111 current frame pts
1112
1113 @item re
1114 current real part of frequency bin of current channel
1115
1116 @item im
1117 current imaginary part of frequency bin of current channel
1118
1119 @item real(b, ch)
1120 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1121
1122 @item imag(b, ch)
1123 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1124 @end table
1125
1126 @item win_size
1127 Set window size. Allowed range is from 16 to 131072.
1128 Default is @code{4096}
1129
1130 @item win_func
1131 Set window function. Default is @code{hann}.
1132
1133 @item overlap
1134 Set window overlap. If set to 1, the recommended overlap for selected
1135 window function will be picked. Default is @code{0.75}.
1136 @end table
1137
1138 @subsection Examples
1139
1140 @itemize
1141 @item
1142 Leave almost only low frequencies in audio:
1143 @example
1144 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1145 @end example
1146 @end itemize
1147
1148 @anchor{afir}
1149 @section afir
1150
1151 Apply an arbitrary Frequency Impulse Response filter.
1152
1153 This filter is designed for applying long FIR filters,
1154 up to 60 seconds long.
1155
1156 It can be used as component for digital crossover filters,
1157 room equalization, cross talk cancellation, wavefield synthesis,
1158 auralization, ambiophonics, ambisonics and spatialization.
1159
1160 This filter uses the second stream as FIR coefficients.
1161 If the second stream holds a single channel, it will be used
1162 for all input channels in the first stream, otherwise
1163 the number of channels in the second stream must be same as
1164 the number of channels in the first stream.
1165
1166 It accepts the following parameters:
1167
1168 @table @option
1169 @item dry
1170 Set dry gain. This sets input gain.
1171
1172 @item wet
1173 Set wet gain. This sets final output gain.
1174
1175 @item length
1176 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1177
1178 @item gtype
1179 Enable applying gain measured from power of IR.
1180
1181 Set which approach to use for auto gain measurement.
1182
1183 @table @option
1184 @item none
1185 Do not apply any gain.
1186
1187 @item peak
1188 select peak gain, very conservative approach. This is default value.
1189
1190 @item dc
1191 select DC gain, limited application.
1192
1193 @item gn
1194 select gain to noise approach, this is most popular one.
1195 @end table
1196
1197 @item irgain
1198 Set gain to be applied to IR coefficients before filtering.
1199 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1200
1201 @item irfmt
1202 Set format of IR stream. Can be @code{mono} or @code{input}.
1203 Default is @code{input}.
1204
1205 @item maxir
1206 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1207 Allowed range is 0.1 to 60 seconds.
1208
1209 @item response
1210 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1211 By default it is disabled.
1212
1213 @item channel
1214 Set for which IR channel to display frequency response. By default is first channel
1215 displayed. This option is used only when @var{response} is enabled.
1216
1217 @item size
1218 Set video stream size. This option is used only when @var{response} is enabled.
1219
1220 @item rate
1221 Set video stream frame rate. This option is used only when @var{response} is enabled.
1222
1223 @item minp
1224 Set minimal partition size used for convolution. Default is @var{8192}.
1225 Allowed range is from @var{8} to @var{32768}.
1226 Lower values decreases latency at cost of higher CPU usage.
1227
1228 @item maxp
1229 Set maximal partition size used for convolution. Default is @var{8192}.
1230 Allowed range is from @var{8} to @var{32768}.
1231 Lower values may increase CPU usage.
1232 @end table
1233
1234 @subsection Examples
1235
1236 @itemize
1237 @item
1238 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1239 @example
1240 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1241 @end example
1242 @end itemize
1243
1244 @anchor{aformat}
1245 @section aformat
1246
1247 Set output format constraints for the input audio. The framework will
1248 negotiate the most appropriate format to minimize conversions.
1249
1250 It accepts the following parameters:
1251 @table @option
1252
1253 @item sample_fmts
1254 A '|'-separated list of requested sample formats.
1255
1256 @item sample_rates
1257 A '|'-separated list of requested sample rates.
1258
1259 @item channel_layouts
1260 A '|'-separated list of requested channel layouts.
1261
1262 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1263 for the required syntax.
1264 @end table
1265
1266 If a parameter is omitted, all values are allowed.
1267
1268 Force the output to either unsigned 8-bit or signed 16-bit stereo
1269 @example
1270 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1271 @end example
1272
1273 @section agate
1274
1275 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1276 processing reduces disturbing noise between useful signals.
1277
1278 Gating is done by detecting the volume below a chosen level @var{threshold}
1279 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1280 floor is set via @var{range}. Because an exact manipulation of the signal
1281 would cause distortion of the waveform the reduction can be levelled over
1282 time. This is done by setting @var{attack} and @var{release}.
1283
1284 @var{attack} determines how long the signal has to fall below the threshold
1285 before any reduction will occur and @var{release} sets the time the signal
1286 has to rise above the threshold to reduce the reduction again.
1287 Shorter signals than the chosen attack time will be left untouched.
1288
1289 @table @option
1290 @item level_in
1291 Set input level before filtering.
1292 Default is 1. Allowed range is from 0.015625 to 64.
1293
1294 @item mode
1295 Set the mode of operation. Can be @code{upward} or @code{downward}.
1296 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1297 will be amplified, expanding dynamic range in upward direction.
1298 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1299
1300 @item range
1301 Set the level of gain reduction when the signal is below the threshold.
1302 Default is 0.06125. Allowed range is from 0 to 1.
1303 Setting this to 0 disables reduction and then filter behaves like expander.
1304
1305 @item threshold
1306 If a signal rises above this level the gain reduction is released.
1307 Default is 0.125. Allowed range is from 0 to 1.
1308
1309 @item ratio
1310 Set a ratio by which the signal is reduced.
1311 Default is 2. Allowed range is from 1 to 9000.
1312
1313 @item attack
1314 Amount of milliseconds the signal has to rise above the threshold before gain
1315 reduction stops.
1316 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1317
1318 @item release
1319 Amount of milliseconds the signal has to fall below the threshold before the
1320 reduction is increased again. Default is 250 milliseconds.
1321 Allowed range is from 0.01 to 9000.
1322
1323 @item makeup
1324 Set amount of amplification of signal after processing.
1325 Default is 1. Allowed range is from 1 to 64.
1326
1327 @item knee
1328 Curve the sharp knee around the threshold to enter gain reduction more softly.
1329 Default is 2.828427125. Allowed range is from 1 to 8.
1330
1331 @item detection
1332 Choose if exact signal should be taken for detection or an RMS like one.
1333 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1334
1335 @item link
1336 Choose if the average level between all channels or the louder channel affects
1337 the reduction.
1338 Default is @code{average}. Can be @code{average} or @code{maximum}.
1339 @end table
1340
1341 @section aiir
1342
1343 Apply an arbitrary Infinite Impulse Response filter.
1344
1345 It accepts the following parameters:
1346
1347 @table @option
1348 @item z
1349 Set numerator/zeros coefficients.
1350
1351 @item p
1352 Set denominator/poles coefficients.
1353
1354 @item k
1355 Set channels gains.
1356
1357 @item dry_gain
1358 Set input gain.
1359
1360 @item wet_gain
1361 Set output gain.
1362
1363 @item f
1364 Set coefficients format.
1365
1366 @table @samp
1367 @item tf
1368 transfer function
1369 @item zp
1370 Z-plane zeros/poles, cartesian (default)
1371 @item pr
1372 Z-plane zeros/poles, polar radians
1373 @item pd
1374 Z-plane zeros/poles, polar degrees
1375 @end table
1376
1377 @item r
1378 Set kind of processing.
1379 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1380
1381 @item e
1382 Set filtering precision.
1383
1384 @table @samp
1385 @item dbl
1386 double-precision floating-point (default)
1387 @item flt
1388 single-precision floating-point
1389 @item i32
1390 32-bit integers
1391 @item i16
1392 16-bit integers
1393 @end table
1394
1395 @item mix
1396 How much to use filtered signal in output. Default is 1.
1397 Range is between 0 and 1.
1398
1399 @item response
1400 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1401 By default it is disabled.
1402
1403 @item channel
1404 Set for which IR channel to display frequency response. By default is first channel
1405 displayed. This option is used only when @var{response} is enabled.
1406
1407 @item size
1408 Set video stream size. This option is used only when @var{response} is enabled.
1409 @end table
1410
1411 Coefficients in @code{tf} format are separated by spaces and are in ascending
1412 order.
1413
1414 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1415 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1416 imaginary unit.
1417
1418 Different coefficients and gains can be provided for every channel, in such case
1419 use '|' to separate coefficients or gains. Last provided coefficients will be
1420 used for all remaining channels.
1421
1422 @subsection Examples
1423
1424 @itemize
1425 @item
1426 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1427 @example
1428 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
1429 @end example
1430
1431 @item
1432 Same as above but in @code{zp} format:
1433 @example
1434 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
1435 @end example
1436 @end itemize
1437
1438 @section alimiter
1439
1440 The limiter prevents an input signal from rising over a desired threshold.
1441 This limiter uses lookahead technology to prevent your signal from distorting.
1442 It means that there is a small delay after the signal is processed. Keep in mind
1443 that the delay it produces is the attack time you set.
1444
1445 The filter accepts the following options:
1446
1447 @table @option
1448 @item level_in
1449 Set input gain. Default is 1.
1450
1451 @item level_out
1452 Set output gain. Default is 1.
1453
1454 @item limit
1455 Don't let signals above this level pass the limiter. Default is 1.
1456
1457 @item attack
1458 The limiter will reach its attenuation level in this amount of time in
1459 milliseconds. Default is 5 milliseconds.
1460
1461 @item release
1462 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1463 Default is 50 milliseconds.
1464
1465 @item asc
1466 When gain reduction is always needed ASC takes care of releasing to an
1467 average reduction level rather than reaching a reduction of 0 in the release
1468 time.
1469
1470 @item asc_level
1471 Select how much the release time is affected by ASC, 0 means nearly no changes
1472 in release time while 1 produces higher release times.
1473
1474 @item level
1475 Auto level output signal. Default is enabled.
1476 This normalizes audio back to 0dB if enabled.
1477 @end table
1478
1479 Depending on picked setting it is recommended to upsample input 2x or 4x times
1480 with @ref{aresample} before applying this filter.
1481
1482 @section allpass
1483
1484 Apply a two-pole all-pass filter with central frequency (in Hz)
1485 @var{frequency}, and filter-width @var{width}.
1486 An all-pass filter changes the audio's frequency to phase relationship
1487 without changing its frequency to amplitude relationship.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item frequency, f
1493 Set frequency in Hz.
1494
1495 @item width_type, t
1496 Set method to specify band-width of filter.
1497 @table @option
1498 @item h
1499 Hz
1500 @item q
1501 Q-Factor
1502 @item o
1503 octave
1504 @item s
1505 slope
1506 @item k
1507 kHz
1508 @end table
1509
1510 @item width, w
1511 Specify the band-width of a filter in width_type units.
1512
1513 @item mix, m
1514 How much to use filtered signal in output. Default is 1.
1515 Range is between 0 and 1.
1516
1517 @item channels, c
1518 Specify which channels to filter, by default all available are filtered.
1519 @end table
1520
1521 @subsection Commands
1522
1523 This filter supports the following commands:
1524 @table @option
1525 @item frequency, f
1526 Change allpass frequency.
1527 Syntax for the command is : "@var{frequency}"
1528
1529 @item width_type, t
1530 Change allpass width_type.
1531 Syntax for the command is : "@var{width_type}"
1532
1533 @item width, w
1534 Change allpass width.
1535 Syntax for the command is : "@var{width}"
1536
1537 @item mix, m
1538 Change allpass mix.
1539 Syntax for the command is : "@var{mix}"
1540 @end table
1541
1542 @section aloop
1543
1544 Loop audio samples.
1545
1546 The filter accepts the following options:
1547
1548 @table @option
1549 @item loop
1550 Set the number of loops. Setting this value to -1 will result in infinite loops.
1551 Default is 0.
1552
1553 @item size
1554 Set maximal number of samples. Default is 0.
1555
1556 @item start
1557 Set first sample of loop. Default is 0.
1558 @end table
1559
1560 @anchor{amerge}
1561 @section amerge
1562
1563 Merge two or more audio streams into a single multi-channel stream.
1564
1565 The filter accepts the following options:
1566
1567 @table @option
1568
1569 @item inputs
1570 Set the number of inputs. Default is 2.
1571
1572 @end table
1573
1574 If the channel layouts of the inputs are disjoint, and therefore compatible,
1575 the channel layout of the output will be set accordingly and the channels
1576 will be reordered as necessary. If the channel layouts of the inputs are not
1577 disjoint, the output will have all the channels of the first input then all
1578 the channels of the second input, in that order, and the channel layout of
1579 the output will be the default value corresponding to the total number of
1580 channels.
1581
1582 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1583 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1584 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1585 first input, b1 is the first channel of the second input).
1586
1587 On the other hand, if both input are in stereo, the output channels will be
1588 in the default order: a1, a2, b1, b2, and the channel layout will be
1589 arbitrarily set to 4.0, which may or may not be the expected value.
1590
1591 All inputs must have the same sample rate, and format.
1592
1593 If inputs do not have the same duration, the output will stop with the
1594 shortest.
1595
1596 @subsection Examples
1597
1598 @itemize
1599 @item
1600 Merge two mono files into a stereo stream:
1601 @example
1602 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1603 @end example
1604
1605 @item
1606 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1607 @example
1608 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
1609 @end example
1610 @end itemize
1611
1612 @section amix
1613
1614 Mixes multiple audio inputs into a single output.
1615
1616 Note that this filter only supports float samples (the @var{amerge}
1617 and @var{pan} audio filters support many formats). If the @var{amix}
1618 input has integer samples then @ref{aresample} will be automatically
1619 inserted to perform the conversion to float samples.
1620
1621 For example
1622 @example
1623 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1624 @end example
1625 will mix 3 input audio streams to a single output with the same duration as the
1626 first input and a dropout transition time of 3 seconds.
1627
1628 It accepts the following parameters:
1629 @table @option
1630
1631 @item inputs
1632 The number of inputs. If unspecified, it defaults to 2.
1633
1634 @item duration
1635 How to determine the end-of-stream.
1636 @table @option
1637
1638 @item longest
1639 The duration of the longest input. (default)
1640
1641 @item shortest
1642 The duration of the shortest input.
1643
1644 @item first
1645 The duration of the first input.
1646
1647 @end table
1648
1649 @item dropout_transition
1650 The transition time, in seconds, for volume renormalization when an input
1651 stream ends. The default value is 2 seconds.
1652
1653 @item weights
1654 Specify weight of each input audio stream as sequence.
1655 Each weight is separated by space. By default all inputs have same weight.
1656 @end table
1657
1658 @section amultiply
1659
1660 Multiply first audio stream with second audio stream and store result
1661 in output audio stream. Multiplication is done by multiplying each
1662 sample from first stream with sample at same position from second stream.
1663
1664 With this element-wise multiplication one can create amplitude fades and
1665 amplitude modulations.
1666
1667 @section anequalizer
1668
1669 High-order parametric multiband equalizer for each channel.
1670
1671 It accepts the following parameters:
1672 @table @option
1673 @item params
1674
1675 This option string is in format:
1676 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1677 Each equalizer band is separated by '|'.
1678
1679 @table @option
1680 @item chn
1681 Set channel number to which equalization will be applied.
1682 If input doesn't have that channel the entry is ignored.
1683
1684 @item f
1685 Set central frequency for band.
1686 If input doesn't have that frequency the entry is ignored.
1687
1688 @item w
1689 Set band width in hertz.
1690
1691 @item g
1692 Set band gain in dB.
1693
1694 @item t
1695 Set filter type for band, optional, can be:
1696
1697 @table @samp
1698 @item 0
1699 Butterworth, this is default.
1700
1701 @item 1
1702 Chebyshev type 1.
1703
1704 @item 2
1705 Chebyshev type 2.
1706 @end table
1707 @end table
1708
1709 @item curves
1710 With this option activated frequency response of anequalizer is displayed
1711 in video stream.
1712
1713 @item size
1714 Set video stream size. Only useful if curves option is activated.
1715
1716 @item mgain
1717 Set max gain that will be displayed. Only useful if curves option is activated.
1718 Setting this to a reasonable value makes it possible to display gain which is derived from
1719 neighbour bands which are too close to each other and thus produce higher gain
1720 when both are activated.
1721
1722 @item fscale
1723 Set frequency scale used to draw frequency response in video output.
1724 Can be linear or logarithmic. Default is logarithmic.
1725
1726 @item colors
1727 Set color for each channel curve which is going to be displayed in video stream.
1728 This is list of color names separated by space or by '|'.
1729 Unrecognised or missing colors will be replaced by white color.
1730 @end table
1731
1732 @subsection Examples
1733
1734 @itemize
1735 @item
1736 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1737 for first 2 channels using Chebyshev type 1 filter:
1738 @example
1739 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1740 @end example
1741 @end itemize
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item change
1748 Alter existing filter parameters.
1749 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1750
1751 @var{fN} is existing filter number, starting from 0, if no such filter is available
1752 error is returned.
1753 @var{freq} set new frequency parameter.
1754 @var{width} set new width parameter in herz.
1755 @var{gain} set new gain parameter in dB.
1756
1757 Full filter invocation with asendcmd may look like this:
1758 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1759 @end table
1760
1761 @section anlmdn
1762
1763 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1764
1765 Each sample is adjusted by looking for other samples with similar contexts. This
1766 context similarity is defined by comparing their surrounding patches of size
1767 @option{p}. Patches are searched in an area of @option{r} around the sample.
1768
1769 The filter accepts the following options:
1770
1771 @table @option
1772 @item s
1773 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1774
1775 @item p
1776 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1777 Default value is 2 milliseconds.
1778
1779 @item r
1780 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1781 Default value is 6 milliseconds.
1782
1783 @item o
1784 Set the output mode.
1785
1786 It accepts the following values:
1787 @table @option
1788 @item i
1789 Pass input unchanged.
1790
1791 @item o
1792 Pass noise filtered out.
1793
1794 @item n
1795 Pass only noise.
1796
1797 Default value is @var{o}.
1798 @end table
1799
1800 @item m
1801 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1802 @end table
1803
1804 @subsection Commands
1805
1806 This filter supports the following commands:
1807 @table @option
1808 @item s
1809 Change denoise strength. Argument is single float number.
1810 Syntax for the command is : "@var{s}"
1811
1812 @item o
1813 Change output mode.
1814 Syntax for the command is : "i", "o" or "n" string.
1815 @end table
1816
1817 @section anull
1818
1819 Pass the audio source unchanged to the output.
1820
1821 @section apad
1822
1823 Pad the end of an audio stream with silence.
1824
1825 This can be used together with @command{ffmpeg} @option{-shortest} to
1826 extend audio streams to the same length as the video stream.
1827
1828 A description of the accepted options follows.
1829
1830 @table @option
1831 @item packet_size
1832 Set silence packet size. Default value is 4096.
1833
1834 @item pad_len
1835 Set the number of samples of silence to add to the end. After the
1836 value is reached, the stream is terminated. This option is mutually
1837 exclusive with @option{whole_len}.
1838
1839 @item whole_len
1840 Set the minimum total number of samples in the output audio stream. If
1841 the value is longer than the input audio length, silence is added to
1842 the end, until the value is reached. This option is mutually exclusive
1843 with @option{pad_len}.
1844
1845 @item pad_dur
1846 Specify the duration of samples of silence to add. See
1847 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1848 for the accepted syntax. Used only if set to non-zero value.
1849
1850 @item whole_dur
1851 Specify the minimum total duration in the output audio stream. See
1852 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1853 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1854 the input audio length, silence is added to the end, until the value is reached.
1855 This option is mutually exclusive with @option{pad_dur}
1856 @end table
1857
1858 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1859 nor @option{whole_dur} option is set, the filter will add silence to the end of
1860 the input stream indefinitely.
1861
1862 @subsection Examples
1863
1864 @itemize
1865 @item
1866 Add 1024 samples of silence to the end of the input:
1867 @example
1868 apad=pad_len=1024
1869 @end example
1870
1871 @item
1872 Make sure the audio output will contain at least 10000 samples, pad
1873 the input with silence if required:
1874 @example
1875 apad=whole_len=10000
1876 @end example
1877
1878 @item
1879 Use @command{ffmpeg} to pad the audio input with silence, so that the
1880 video stream will always result the shortest and will be converted
1881 until the end in the output file when using the @option{shortest}
1882 option:
1883 @example
1884 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1885 @end example
1886 @end itemize
1887
1888 @section aphaser
1889 Add a phasing effect to the input audio.
1890
1891 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1892 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1893
1894 A description of the accepted parameters follows.
1895
1896 @table @option
1897 @item in_gain
1898 Set input gain. Default is 0.4.
1899
1900 @item out_gain
1901 Set output gain. Default is 0.74
1902
1903 @item delay
1904 Set delay in milliseconds. Default is 3.0.
1905
1906 @item decay
1907 Set decay. Default is 0.4.
1908
1909 @item speed
1910 Set modulation speed in Hz. Default is 0.5.
1911
1912 @item type
1913 Set modulation type. Default is triangular.
1914
1915 It accepts the following values:
1916 @table @samp
1917 @item triangular, t
1918 @item sinusoidal, s
1919 @end table
1920 @end table
1921
1922 @section apulsator
1923
1924 Audio pulsator is something between an autopanner and a tremolo.
1925 But it can produce funny stereo effects as well. Pulsator changes the volume
1926 of the left and right channel based on a LFO (low frequency oscillator) with
1927 different waveforms and shifted phases.
1928 This filter have the ability to define an offset between left and right
1929 channel. An offset of 0 means that both LFO shapes match each other.
1930 The left and right channel are altered equally - a conventional tremolo.
1931 An offset of 50% means that the shape of the right channel is exactly shifted
1932 in phase (or moved backwards about half of the frequency) - pulsator acts as
1933 an autopanner. At 1 both curves match again. Every setting in between moves the
1934 phase shift gapless between all stages and produces some "bypassing" sounds with
1935 sine and triangle waveforms. The more you set the offset near 1 (starting from
1936 the 0.5) the faster the signal passes from the left to the right speaker.
1937
1938 The filter accepts the following options:
1939
1940 @table @option
1941 @item level_in
1942 Set input gain. By default it is 1. Range is [0.015625 - 64].
1943
1944 @item level_out
1945 Set output gain. By default it is 1. Range is [0.015625 - 64].
1946
1947 @item mode
1948 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1949 sawup or sawdown. Default is sine.
1950
1951 @item amount
1952 Set modulation. Define how much of original signal is affected by the LFO.
1953
1954 @item offset_l
1955 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1956
1957 @item offset_r
1958 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1959
1960 @item width
1961 Set pulse width. Default is 1. Allowed range is [0 - 2].
1962
1963 @item timing
1964 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1965
1966 @item bpm
1967 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1968 is set to bpm.
1969
1970 @item ms
1971 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1972 is set to ms.
1973
1974 @item hz
1975 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1976 if timing is set to hz.
1977 @end table
1978
1979 @anchor{aresample}
1980 @section aresample
1981
1982 Resample the input audio to the specified parameters, using the
1983 libswresample library. If none are specified then the filter will
1984 automatically convert between its input and output.
1985
1986 This filter is also able to stretch/squeeze the audio data to make it match
1987 the timestamps or to inject silence / cut out audio to make it match the
1988 timestamps, do a combination of both or do neither.
1989
1990 The filter accepts the syntax
1991 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1992 expresses a sample rate and @var{resampler_options} is a list of
1993 @var{key}=@var{value} pairs, separated by ":". See the
1994 @ref{Resampler Options,,"Resampler Options" section in the
1995 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1996 for the complete list of supported options.
1997
1998 @subsection Examples
1999
2000 @itemize
2001 @item
2002 Resample the input audio to 44100Hz:
2003 @example
2004 aresample=44100
2005 @end example
2006
2007 @item
2008 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2009 samples per second compensation:
2010 @example
2011 aresample=async=1000
2012 @end example
2013 @end itemize
2014
2015 @section areverse
2016
2017 Reverse an audio clip.
2018
2019 Warning: This filter requires memory to buffer the entire clip, so trimming
2020 is suggested.
2021
2022 @subsection Examples
2023
2024 @itemize
2025 @item
2026 Take the first 5 seconds of a clip, and reverse it.
2027 @example
2028 atrim=end=5,areverse
2029 @end example
2030 @end itemize
2031
2032 @section asetnsamples
2033
2034 Set the number of samples per each output audio frame.
2035
2036 The last output packet may contain a different number of samples, as
2037 the filter will flush all the remaining samples when the input audio
2038 signals its end.
2039
2040 The filter accepts the following options:
2041
2042 @table @option
2043
2044 @item nb_out_samples, n
2045 Set the number of frames per each output audio frame. The number is
2046 intended as the number of samples @emph{per each channel}.
2047 Default value is 1024.
2048
2049 @item pad, p
2050 If set to 1, the filter will pad the last audio frame with zeroes, so
2051 that the last frame will contain the same number of samples as the
2052 previous ones. Default value is 1.
2053 @end table
2054
2055 For example, to set the number of per-frame samples to 1234 and
2056 disable padding for the last frame, use:
2057 @example
2058 asetnsamples=n=1234:p=0
2059 @end example
2060
2061 @section asetrate
2062
2063 Set the sample rate without altering the PCM data.
2064 This will result in a change of speed and pitch.
2065
2066 The filter accepts the following options:
2067
2068 @table @option
2069 @item sample_rate, r
2070 Set the output sample rate. Default is 44100 Hz.
2071 @end table
2072
2073 @section ashowinfo
2074
2075 Show a line containing various information for each input audio frame.
2076 The input audio is not modified.
2077
2078 The shown line contains a sequence of key/value pairs of the form
2079 @var{key}:@var{value}.
2080
2081 The following values are shown in the output:
2082
2083 @table @option
2084 @item n
2085 The (sequential) number of the input frame, starting from 0.
2086
2087 @item pts
2088 The presentation timestamp of the input frame, in time base units; the time base
2089 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2090
2091 @item pts_time
2092 The presentation timestamp of the input frame in seconds.
2093
2094 @item pos
2095 position of the frame in the input stream, -1 if this information in
2096 unavailable and/or meaningless (for example in case of synthetic audio)
2097
2098 @item fmt
2099 The sample format.
2100
2101 @item chlayout
2102 The channel layout.
2103
2104 @item rate
2105 The sample rate for the audio frame.
2106
2107 @item nb_samples
2108 The number of samples (per channel) in the frame.
2109
2110 @item checksum
2111 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2112 audio, the data is treated as if all the planes were concatenated.
2113
2114 @item plane_checksums
2115 A list of Adler-32 checksums for each data plane.
2116 @end table
2117
2118 @section asoftclip
2119 Apply audio soft clipping.
2120
2121 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2122 along a smooth curve, rather than the abrupt shape of hard-clipping.
2123
2124 This filter accepts the following options:
2125
2126 @table @option
2127 @item type
2128 Set type of soft-clipping.
2129
2130 It accepts the following values:
2131 @table @option
2132 @item tanh
2133 @item atan
2134 @item cubic
2135 @item exp
2136 @item alg
2137 @item quintic
2138 @item sin
2139 @end table
2140
2141 @item param
2142 Set additional parameter which controls sigmoid function.
2143 @end table
2144
2145 @section asr
2146 Automatic Speech Recognition
2147
2148 This filter uses PocketSphinx for speech recognition. To enable
2149 compilation of this filter, you need to configure FFmpeg with
2150 @code{--enable-pocketsphinx}.
2151
2152 It accepts the following options:
2153
2154 @table @option
2155 @item rate
2156 Set sampling rate of input audio. Defaults is @code{16000}.
2157 This need to match speech models, otherwise one will get poor results.
2158
2159 @item hmm
2160 Set dictionary containing acoustic model files.
2161
2162 @item dict
2163 Set pronunciation dictionary.
2164
2165 @item lm
2166 Set language model file.
2167
2168 @item lmctl
2169 Set language model set.
2170
2171 @item lmname
2172 Set which language model to use.
2173
2174 @item logfn
2175 Set output for log messages.
2176 @end table
2177
2178 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2179
2180 @anchor{astats}
2181 @section astats
2182
2183 Display time domain statistical information about the audio channels.
2184 Statistics are calculated and displayed for each audio channel and,
2185 where applicable, an overall figure is also given.
2186
2187 It accepts the following option:
2188 @table @option
2189 @item length
2190 Short window length in seconds, used for peak and trough RMS measurement.
2191 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2192
2193 @item metadata
2194
2195 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2196 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2197 disabled.
2198
2199 Available keys for each channel are:
2200 DC_offset
2201 Min_level
2202 Max_level
2203 Min_difference
2204 Max_difference
2205 Mean_difference
2206 RMS_difference
2207 Peak_level
2208 RMS_peak
2209 RMS_trough
2210 Crest_factor
2211 Flat_factor
2212 Peak_count
2213 Bit_depth
2214 Dynamic_range
2215 Zero_crossings
2216 Zero_crossings_rate
2217 Number_of_NaNs
2218 Number_of_Infs
2219 Number_of_denormals
2220
2221 and for Overall:
2222 DC_offset
2223 Min_level
2224 Max_level
2225 Min_difference
2226 Max_difference
2227 Mean_difference
2228 RMS_difference
2229 Peak_level
2230 RMS_level
2231 RMS_peak
2232 RMS_trough
2233 Flat_factor
2234 Peak_count
2235 Bit_depth
2236 Number_of_samples
2237 Number_of_NaNs
2238 Number_of_Infs
2239 Number_of_denormals
2240
2241 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2242 this @code{lavfi.astats.Overall.Peak_count}.
2243
2244 For description what each key means read below.
2245
2246 @item reset
2247 Set number of frame after which stats are going to be recalculated.
2248 Default is disabled.
2249
2250 @item measure_perchannel
2251 Select the entries which need to be measured per channel. The metadata keys can
2252 be used as flags, default is @option{all} which measures everything.
2253 @option{none} disables all per channel measurement.
2254
2255 @item measure_overall
2256 Select the entries which need to be measured overall. The metadata keys can
2257 be used as flags, default is @option{all} which measures everything.
2258 @option{none} disables all overall measurement.
2259
2260 @end table
2261
2262 A description of each shown parameter follows:
2263
2264 @table @option
2265 @item DC offset
2266 Mean amplitude displacement from zero.
2267
2268 @item Min level
2269 Minimal sample level.
2270
2271 @item Max level
2272 Maximal sample level.
2273
2274 @item Min difference
2275 Minimal difference between two consecutive samples.
2276
2277 @item Max difference
2278 Maximal difference between two consecutive samples.
2279
2280 @item Mean difference
2281 Mean difference between two consecutive samples.
2282 The average of each difference between two consecutive samples.
2283
2284 @item RMS difference
2285 Root Mean Square difference between two consecutive samples.
2286
2287 @item Peak level dB
2288 @item RMS level dB
2289 Standard peak and RMS level measured in dBFS.
2290
2291 @item RMS peak dB
2292 @item RMS trough dB
2293 Peak and trough values for RMS level measured over a short window.
2294
2295 @item Crest factor
2296 Standard ratio of peak to RMS level (note: not in dB).
2297
2298 @item Flat factor
2299 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2300 (i.e. either @var{Min level} or @var{Max level}).
2301
2302 @item Peak count
2303 Number of occasions (not the number of samples) that the signal attained either
2304 @var{Min level} or @var{Max level}.
2305
2306 @item Bit depth
2307 Overall bit depth of audio. Number of bits used for each sample.
2308
2309 @item Dynamic range
2310 Measured dynamic range of audio in dB.
2311
2312 @item Zero crossings
2313 Number of points where the waveform crosses the zero level axis.
2314
2315 @item Zero crossings rate
2316 Rate of Zero crossings and number of audio samples.
2317 @end table
2318
2319 @section atempo
2320
2321 Adjust audio tempo.
2322
2323 The filter accepts exactly one parameter, the audio tempo. If not
2324 specified then the filter will assume nominal 1.0 tempo. Tempo must
2325 be in the [0.5, 100.0] range.
2326
2327 Note that tempo greater than 2 will skip some samples rather than
2328 blend them in.  If for any reason this is a concern it is always
2329 possible to daisy-chain several instances of atempo to achieve the
2330 desired product tempo.
2331
2332 @subsection Examples
2333
2334 @itemize
2335 @item
2336 Slow down audio to 80% tempo:
2337 @example
2338 atempo=0.8
2339 @end example
2340
2341 @item
2342 To speed up audio to 300% tempo:
2343 @example
2344 atempo=3
2345 @end example
2346
2347 @item
2348 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2349 @example
2350 atempo=sqrt(3),atempo=sqrt(3)
2351 @end example
2352 @end itemize
2353
2354 @section atrim
2355
2356 Trim the input so that the output contains one continuous subpart of the input.
2357
2358 It accepts the following parameters:
2359 @table @option
2360 @item start
2361 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2362 sample with the timestamp @var{start} will be the first sample in the output.
2363
2364 @item end
2365 Specify time of the first audio sample that will be dropped, i.e. the
2366 audio sample immediately preceding the one with the timestamp @var{end} will be
2367 the last sample in the output.
2368
2369 @item start_pts
2370 Same as @var{start}, except this option sets the start timestamp in samples
2371 instead of seconds.
2372
2373 @item end_pts
2374 Same as @var{end}, except this option sets the end timestamp in samples instead
2375 of seconds.
2376
2377 @item duration
2378 The maximum duration of the output in seconds.
2379
2380 @item start_sample
2381 The number of the first sample that should be output.
2382
2383 @item end_sample
2384 The number of the first sample that should be dropped.
2385 @end table
2386
2387 @option{start}, @option{end}, and @option{duration} are expressed as time
2388 duration specifications; see
2389 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2390
2391 Note that the first two sets of the start/end options and the @option{duration}
2392 option look at the frame timestamp, while the _sample options simply count the
2393 samples that pass through the filter. So start/end_pts and start/end_sample will
2394 give different results when the timestamps are wrong, inexact or do not start at
2395 zero. Also note that this filter does not modify the timestamps. If you wish
2396 to have the output timestamps start at zero, insert the asetpts filter after the
2397 atrim filter.
2398
2399 If multiple start or end options are set, this filter tries to be greedy and
2400 keep all samples that match at least one of the specified constraints. To keep
2401 only the part that matches all the constraints at once, chain multiple atrim
2402 filters.
2403
2404 The defaults are such that all the input is kept. So it is possible to set e.g.
2405 just the end values to keep everything before the specified time.
2406
2407 Examples:
2408 @itemize
2409 @item
2410 Drop everything except the second minute of input:
2411 @example
2412 ffmpeg -i INPUT -af atrim=60:120
2413 @end example
2414
2415 @item
2416 Keep only the first 1000 samples:
2417 @example
2418 ffmpeg -i INPUT -af atrim=end_sample=1000
2419 @end example
2420
2421 @end itemize
2422
2423 @section bandpass
2424
2425 Apply a two-pole Butterworth band-pass filter with central
2426 frequency @var{frequency}, and (3dB-point) band-width width.
2427 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2428 instead of the default: constant 0dB peak gain.
2429 The filter roll off at 6dB per octave (20dB per decade).
2430
2431 The filter accepts the following options:
2432
2433 @table @option
2434 @item frequency, f
2435 Set the filter's central frequency. Default is @code{3000}.
2436
2437 @item csg
2438 Constant skirt gain if set to 1. Defaults to 0.
2439
2440 @item width_type, t
2441 Set method to specify band-width of filter.
2442 @table @option
2443 @item h
2444 Hz
2445 @item q
2446 Q-Factor
2447 @item o
2448 octave
2449 @item s
2450 slope
2451 @item k
2452 kHz
2453 @end table
2454
2455 @item width, w
2456 Specify the band-width of a filter in width_type units.
2457
2458 @item mix, m
2459 How much to use filtered signal in output. Default is 1.
2460 Range is between 0 and 1.
2461
2462 @item channels, c
2463 Specify which channels to filter, by default all available are filtered.
2464 @end table
2465
2466 @subsection Commands
2467
2468 This filter supports the following commands:
2469 @table @option
2470 @item frequency, f
2471 Change bandpass frequency.
2472 Syntax for the command is : "@var{frequency}"
2473
2474 @item width_type, t
2475 Change bandpass width_type.
2476 Syntax for the command is : "@var{width_type}"
2477
2478 @item width, w
2479 Change bandpass width.
2480 Syntax for the command is : "@var{width}"
2481
2482 @item mix, m
2483 Change bandpass mix.
2484 Syntax for the command is : "@var{mix}"
2485 @end table
2486
2487 @section bandreject
2488
2489 Apply a two-pole Butterworth band-reject filter with central
2490 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2491 The filter roll off at 6dB per octave (20dB per decade).
2492
2493 The filter accepts the following options:
2494
2495 @table @option
2496 @item frequency, f
2497 Set the filter's central frequency. Default is @code{3000}.
2498
2499 @item width_type, t
2500 Set method to specify band-width of filter.
2501 @table @option
2502 @item h
2503 Hz
2504 @item q
2505 Q-Factor
2506 @item o
2507 octave
2508 @item s
2509 slope
2510 @item k
2511 kHz
2512 @end table
2513
2514 @item width, w
2515 Specify the band-width of a filter in width_type units.
2516
2517 @item mix, m
2518 How much to use filtered signal in output. Default is 1.
2519 Range is between 0 and 1.
2520
2521 @item channels, c
2522 Specify which channels to filter, by default all available are filtered.
2523 @end table
2524
2525 @subsection Commands
2526
2527 This filter supports the following commands:
2528 @table @option
2529 @item frequency, f
2530 Change bandreject frequency.
2531 Syntax for the command is : "@var{frequency}"
2532
2533 @item width_type, t
2534 Change bandreject width_type.
2535 Syntax for the command is : "@var{width_type}"
2536
2537 @item width, w
2538 Change bandreject width.
2539 Syntax for the command is : "@var{width}"
2540
2541 @item mix, m
2542 Change bandreject mix.
2543 Syntax for the command is : "@var{mix}"
2544 @end table
2545
2546 @section bass, lowshelf
2547
2548 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2549 shelving filter with a response similar to that of a standard
2550 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2551
2552 The filter accepts the following options:
2553
2554 @table @option
2555 @item gain, g
2556 Give the gain at 0 Hz. Its useful range is about -20
2557 (for a large cut) to +20 (for a large boost).
2558 Beware of clipping when using a positive gain.
2559
2560 @item frequency, f
2561 Set the filter's central frequency and so can be used
2562 to extend or reduce the frequency range to be boosted or cut.
2563 The default value is @code{100} Hz.
2564
2565 @item width_type, t
2566 Set method to specify band-width of filter.
2567 @table @option
2568 @item h
2569 Hz
2570 @item q
2571 Q-Factor
2572 @item o
2573 octave
2574 @item s
2575 slope
2576 @item k
2577 kHz
2578 @end table
2579
2580 @item width, w
2581 Determine how steep is the filter's shelf transition.
2582
2583 @item mix, m
2584 How much to use filtered signal in output. Default is 1.
2585 Range is between 0 and 1.
2586
2587 @item channels, c
2588 Specify which channels to filter, by default all available are filtered.
2589 @end table
2590
2591 @subsection Commands
2592
2593 This filter supports the following commands:
2594 @table @option
2595 @item frequency, f
2596 Change bass frequency.
2597 Syntax for the command is : "@var{frequency}"
2598
2599 @item width_type, t
2600 Change bass width_type.
2601 Syntax for the command is : "@var{width_type}"
2602
2603 @item width, w
2604 Change bass width.
2605 Syntax for the command is : "@var{width}"
2606
2607 @item gain, g
2608 Change bass gain.
2609 Syntax for the command is : "@var{gain}"
2610
2611 @item mix, m
2612 Change bass mix.
2613 Syntax for the command is : "@var{mix}"
2614 @end table
2615
2616 @section biquad
2617
2618 Apply a biquad IIR filter with the given coefficients.
2619 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2620 are the numerator and denominator coefficients respectively.
2621 and @var{channels}, @var{c} specify which channels to filter, by default all
2622 available are filtered.
2623
2624 @subsection Commands
2625
2626 This filter supports the following commands:
2627 @table @option
2628 @item a0
2629 @item a1
2630 @item a2
2631 @item b0
2632 @item b1
2633 @item b2
2634 Change biquad parameter.
2635 Syntax for the command is : "@var{value}"
2636
2637 @item mix, m
2638 How much to use filtered signal in output. Default is 1.
2639 Range is between 0 and 1.
2640 @end table
2641
2642 @section bs2b
2643 Bauer stereo to binaural transformation, which improves headphone listening of
2644 stereo audio records.
2645
2646 To enable compilation of this filter you need to configure FFmpeg with
2647 @code{--enable-libbs2b}.
2648
2649 It accepts the following parameters:
2650 @table @option
2651
2652 @item profile
2653 Pre-defined crossfeed level.
2654 @table @option
2655
2656 @item default
2657 Default level (fcut=700, feed=50).
2658
2659 @item cmoy
2660 Chu Moy circuit (fcut=700, feed=60).
2661
2662 @item jmeier
2663 Jan Meier circuit (fcut=650, feed=95).
2664
2665 @end table
2666
2667 @item fcut
2668 Cut frequency (in Hz).
2669
2670 @item feed
2671 Feed level (in Hz).
2672
2673 @end table
2674
2675 @section channelmap
2676
2677 Remap input channels to new locations.
2678
2679 It accepts the following parameters:
2680 @table @option
2681 @item map
2682 Map channels from input to output. The argument is a '|'-separated list of
2683 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2684 @var{in_channel} form. @var{in_channel} can be either the name of the input
2685 channel (e.g. FL for front left) or its index in the input channel layout.
2686 @var{out_channel} is the name of the output channel or its index in the output
2687 channel layout. If @var{out_channel} is not given then it is implicitly an
2688 index, starting with zero and increasing by one for each mapping.
2689
2690 @item channel_layout
2691 The channel layout of the output stream.
2692 @end table
2693
2694 If no mapping is present, the filter will implicitly map input channels to
2695 output channels, preserving indices.
2696
2697 @subsection Examples
2698
2699 @itemize
2700 @item
2701 For example, assuming a 5.1+downmix input MOV file,
2702 @example
2703 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2704 @end example
2705 will create an output WAV file tagged as stereo from the downmix channels of
2706 the input.
2707
2708 @item
2709 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2710 @example
2711 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2712 @end example
2713 @end itemize
2714
2715 @section channelsplit
2716
2717 Split each channel from an input audio stream into a separate output stream.
2718
2719 It accepts the following parameters:
2720 @table @option
2721 @item channel_layout
2722 The channel layout of the input stream. The default is "stereo".
2723 @item channels
2724 A channel layout describing the channels to be extracted as separate output streams
2725 or "all" to extract each input channel as a separate stream. The default is "all".
2726
2727 Choosing channels not present in channel layout in the input will result in an error.
2728 @end table
2729
2730 @subsection Examples
2731
2732 @itemize
2733 @item
2734 For example, assuming a stereo input MP3 file,
2735 @example
2736 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2737 @end example
2738 will create an output Matroska file with two audio streams, one containing only
2739 the left channel and the other the right channel.
2740
2741 @item
2742 Split a 5.1 WAV file into per-channel files:
2743 @example
2744 ffmpeg -i in.wav -filter_complex
2745 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2746 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2747 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2748 side_right.wav
2749 @end example
2750
2751 @item
2752 Extract only LFE from a 5.1 WAV file:
2753 @example
2754 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2755 -map '[LFE]' lfe.wav
2756 @end example
2757 @end itemize
2758
2759 @section chorus
2760 Add a chorus effect to the audio.
2761
2762 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2763
2764 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2765 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2766 The modulation depth defines the range the modulated delay is played before or after
2767 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2768 sound tuned around the original one, like in a chorus where some vocals are slightly
2769 off key.
2770
2771 It accepts the following parameters:
2772 @table @option
2773 @item in_gain
2774 Set input gain. Default is 0.4.
2775
2776 @item out_gain
2777 Set output gain. Default is 0.4.
2778
2779 @item delays
2780 Set delays. A typical delay is around 40ms to 60ms.
2781
2782 @item decays
2783 Set decays.
2784
2785 @item speeds
2786 Set speeds.
2787
2788 @item depths
2789 Set depths.
2790 @end table
2791
2792 @subsection Examples
2793
2794 @itemize
2795 @item
2796 A single delay:
2797 @example
2798 chorus=0.7:0.9:55:0.4:0.25:2
2799 @end example
2800
2801 @item
2802 Two delays:
2803 @example
2804 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2805 @end example
2806
2807 @item
2808 Fuller sounding chorus with three delays:
2809 @example
2810 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
2811 @end example
2812 @end itemize
2813
2814 @section compand
2815 Compress or expand the audio's dynamic range.
2816
2817 It accepts the following parameters:
2818
2819 @table @option
2820
2821 @item attacks
2822 @item decays
2823 A list of times in seconds for each channel over which the instantaneous level
2824 of the input signal is averaged to determine its volume. @var{attacks} refers to
2825 increase of volume and @var{decays} refers to decrease of volume. For most
2826 situations, the attack time (response to the audio getting louder) should be
2827 shorter than the decay time, because the human ear is more sensitive to sudden
2828 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2829 a typical value for decay is 0.8 seconds.
2830 If specified number of attacks & decays is lower than number of channels, the last
2831 set attack/decay will be used for all remaining channels.
2832
2833 @item points
2834 A list of points for the transfer function, specified in dB relative to the
2835 maximum possible signal amplitude. Each key points list must be defined using
2836 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2837 @code{x0/y0 x1/y1 x2/y2 ....}
2838
2839 The input values must be in strictly increasing order but the transfer function
2840 does not have to be monotonically rising. The point @code{0/0} is assumed but
2841 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2842 function are @code{-70/-70|-60/-20|1/0}.
2843
2844 @item soft-knee
2845 Set the curve radius in dB for all joints. It defaults to 0.01.
2846
2847 @item gain
2848 Set the additional gain in dB to be applied at all points on the transfer
2849 function. This allows for easy adjustment of the overall gain.
2850 It defaults to 0.
2851
2852 @item volume
2853 Set an initial volume, in dB, to be assumed for each channel when filtering
2854 starts. This permits the user to supply a nominal level initially, so that, for
2855 example, a very large gain is not applied to initial signal levels before the
2856 companding has begun to operate. A typical value for audio which is initially
2857 quiet is -90 dB. It defaults to 0.
2858
2859 @item delay
2860 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2861 delayed before being fed to the volume adjuster. Specifying a delay
2862 approximately equal to the attack/decay times allows the filter to effectively
2863 operate in predictive rather than reactive mode. It defaults to 0.
2864
2865 @end table
2866
2867 @subsection Examples
2868
2869 @itemize
2870 @item
2871 Make music with both quiet and loud passages suitable for listening to in a
2872 noisy environment:
2873 @example
2874 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2875 @end example
2876
2877 Another example for audio with whisper and explosion parts:
2878 @example
2879 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2880 @end example
2881
2882 @item
2883 A noise gate for when the noise is at a lower level than the signal:
2884 @example
2885 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2886 @end example
2887
2888 @item
2889 Here is another noise gate, this time for when the noise is at a higher level
2890 than the signal (making it, in some ways, similar to squelch):
2891 @example
2892 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2893 @end example
2894
2895 @item
2896 2:1 compression starting at -6dB:
2897 @example
2898 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2899 @end example
2900
2901 @item
2902 2:1 compression starting at -9dB:
2903 @example
2904 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2905 @end example
2906
2907 @item
2908 2:1 compression starting at -12dB:
2909 @example
2910 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2911 @end example
2912
2913 @item
2914 2:1 compression starting at -18dB:
2915 @example
2916 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2917 @end example
2918
2919 @item
2920 3:1 compression starting at -15dB:
2921 @example
2922 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2923 @end example
2924
2925 @item
2926 Compressor/Gate:
2927 @example
2928 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2929 @end example
2930
2931 @item
2932 Expander:
2933 @example
2934 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
2935 @end example
2936
2937 @item
2938 Hard limiter at -6dB:
2939 @example
2940 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2941 @end example
2942
2943 @item
2944 Hard limiter at -12dB:
2945 @example
2946 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2947 @end example
2948
2949 @item
2950 Hard noise gate at -35 dB:
2951 @example
2952 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2953 @end example
2954
2955 @item
2956 Soft limiter:
2957 @example
2958 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2959 @end example
2960 @end itemize
2961
2962 @section compensationdelay
2963
2964 Compensation Delay Line is a metric based delay to compensate differing
2965 positions of microphones or speakers.
2966
2967 For example, you have recorded guitar with two microphones placed in
2968 different locations. Because the front of sound wave has fixed speed in
2969 normal conditions, the phasing of microphones can vary and depends on
2970 their location and interposition. The best sound mix can be achieved when
2971 these microphones are in phase (synchronized). Note that a distance of
2972 ~30 cm between microphones makes one microphone capture the signal in
2973 antiphase to the other microphone. That makes the final mix sound moody.
2974 This filter helps to solve phasing problems by adding different delays
2975 to each microphone track and make them synchronized.
2976
2977 The best result can be reached when you take one track as base and
2978 synchronize other tracks one by one with it.
2979 Remember that synchronization/delay tolerance depends on sample rate, too.
2980 Higher sample rates will give more tolerance.
2981
2982 The filter accepts the following parameters:
2983
2984 @table @option
2985 @item mm
2986 Set millimeters distance. This is compensation distance for fine tuning.
2987 Default is 0.
2988
2989 @item cm
2990 Set cm distance. This is compensation distance for tightening distance setup.
2991 Default is 0.
2992
2993 @item m
2994 Set meters distance. This is compensation distance for hard distance setup.
2995 Default is 0.
2996
2997 @item dry
2998 Set dry amount. Amount of unprocessed (dry) signal.
2999 Default is 0.
3000
3001 @item wet
3002 Set wet amount. Amount of processed (wet) signal.
3003 Default is 1.
3004
3005 @item temp
3006 Set temperature in degrees Celsius. This is the temperature of the environment.
3007 Default is 20.
3008 @end table
3009
3010 @section crossfeed
3011 Apply headphone crossfeed filter.
3012
3013 Crossfeed is the process of blending the left and right channels of stereo
3014 audio recording.
3015 It is mainly used to reduce extreme stereo separation of low frequencies.
3016
3017 The intent is to produce more speaker like sound to the listener.
3018
3019 The filter accepts the following options:
3020
3021 @table @option
3022 @item strength
3023 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3024 This sets gain of low shelf filter for side part of stereo image.
3025 Default is -6dB. Max allowed is -30db when strength is set to 1.
3026
3027 @item range
3028 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3029 This sets cut off frequency of low shelf filter. Default is cut off near
3030 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3031
3032 @item level_in
3033 Set input gain. Default is 0.9.
3034
3035 @item level_out
3036 Set output gain. Default is 1.
3037 @end table
3038
3039 @section crystalizer
3040 Simple algorithm to expand audio dynamic range.
3041
3042 The filter accepts the following options:
3043
3044 @table @option
3045 @item i
3046 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3047 (unchanged sound) to 10.0 (maximum effect).
3048
3049 @item c
3050 Enable clipping. By default is enabled.
3051 @end table
3052
3053 @section dcshift
3054 Apply a DC shift to the audio.
3055
3056 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3057 in the recording chain) from the audio. The effect of a DC offset is reduced
3058 headroom and hence volume. The @ref{astats} filter can be used to determine if
3059 a signal has a DC offset.
3060
3061 @table @option
3062 @item shift
3063 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3064 the audio.
3065
3066 @item limitergain
3067 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3068 used to prevent clipping.
3069 @end table
3070
3071 @section deesser
3072
3073 Apply de-essing to the audio samples.
3074
3075 @table @option
3076 @item i
3077 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3078 Default is 0.
3079
3080 @item m
3081 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3082 Default is 0.5.
3083
3084 @item f
3085 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3086 Default is 0.5.
3087
3088 @item s
3089 Set the output mode.
3090
3091 It accepts the following values:
3092 @table @option
3093 @item i
3094 Pass input unchanged.
3095
3096 @item o
3097 Pass ess filtered out.
3098
3099 @item e
3100 Pass only ess.
3101
3102 Default value is @var{o}.
3103 @end table
3104
3105 @end table
3106
3107 @section drmeter
3108 Measure audio dynamic range.
3109
3110 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3111 is found in transition material. And anything less that 8 have very poor dynamics
3112 and is very compressed.
3113
3114 The filter accepts the following options:
3115
3116 @table @option
3117 @item length
3118 Set window length in seconds used to split audio into segments of equal length.
3119 Default is 3 seconds.
3120 @end table
3121
3122 @section dynaudnorm
3123 Dynamic Audio Normalizer.
3124
3125 This filter applies a certain amount of gain to the input audio in order
3126 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3127 contrast to more "simple" normalization algorithms, the Dynamic Audio
3128 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3129 This allows for applying extra gain to the "quiet" sections of the audio
3130 while avoiding distortions or clipping the "loud" sections. In other words:
3131 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3132 sections, in the sense that the volume of each section is brought to the
3133 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3134 this goal *without* applying "dynamic range compressing". It will retain 100%
3135 of the dynamic range *within* each section of the audio file.
3136
3137 @table @option
3138 @item framelen, f
3139 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3140 Default is 500 milliseconds.
3141 The Dynamic Audio Normalizer processes the input audio in small chunks,
3142 referred to as frames. This is required, because a peak magnitude has no
3143 meaning for just a single sample value. Instead, we need to determine the
3144 peak magnitude for a contiguous sequence of sample values. While a "standard"
3145 normalizer would simply use the peak magnitude of the complete file, the
3146 Dynamic Audio Normalizer determines the peak magnitude individually for each
3147 frame. The length of a frame is specified in milliseconds. By default, the
3148 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3149 been found to give good results with most files.
3150 Note that the exact frame length, in number of samples, will be determined
3151 automatically, based on the sampling rate of the individual input audio file.
3152
3153 @item gausssize, g
3154 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3155 number. Default is 31.
3156 Probably the most important parameter of the Dynamic Audio Normalizer is the
3157 @code{window size} of the Gaussian smoothing filter. The filter's window size
3158 is specified in frames, centered around the current frame. For the sake of
3159 simplicity, this must be an odd number. Consequently, the default value of 31
3160 takes into account the current frame, as well as the 15 preceding frames and
3161 the 15 subsequent frames. Using a larger window results in a stronger
3162 smoothing effect and thus in less gain variation, i.e. slower gain
3163 adaptation. Conversely, using a smaller window results in a weaker smoothing
3164 effect and thus in more gain variation, i.e. faster gain adaptation.
3165 In other words, the more you increase this value, the more the Dynamic Audio
3166 Normalizer will behave like a "traditional" normalization filter. On the
3167 contrary, the more you decrease this value, the more the Dynamic Audio
3168 Normalizer will behave like a dynamic range compressor.
3169
3170 @item peak, p
3171 Set the target peak value. This specifies the highest permissible magnitude
3172 level for the normalized audio input. This filter will try to approach the
3173 target peak magnitude as closely as possible, but at the same time it also
3174 makes sure that the normalized signal will never exceed the peak magnitude.
3175 A frame's maximum local gain factor is imposed directly by the target peak
3176 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3177 It is not recommended to go above this value.
3178
3179 @item maxgain, m
3180 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3181 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3182 factor for each input frame, i.e. the maximum gain factor that does not
3183 result in clipping or distortion. The maximum gain factor is determined by
3184 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3185 additionally bounds the frame's maximum gain factor by a predetermined
3186 (global) maximum gain factor. This is done in order to avoid excessive gain
3187 factors in "silent" or almost silent frames. By default, the maximum gain
3188 factor is 10.0, For most inputs the default value should be sufficient and
3189 it usually is not recommended to increase this value. Though, for input
3190 with an extremely low overall volume level, it may be necessary to allow even
3191 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3192 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3193 Instead, a "sigmoid" threshold function will be applied. This way, the
3194 gain factors will smoothly approach the threshold value, but never exceed that
3195 value.
3196
3197 @item targetrms, r
3198 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3199 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3200 This means that the maximum local gain factor for each frame is defined
3201 (only) by the frame's highest magnitude sample. This way, the samples can
3202 be amplified as much as possible without exceeding the maximum signal
3203 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3204 Normalizer can also take into account the frame's root mean square,
3205 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3206 determine the power of a time-varying signal. It is therefore considered
3207 that the RMS is a better approximation of the "perceived loudness" than
3208 just looking at the signal's peak magnitude. Consequently, by adjusting all
3209 frames to a constant RMS value, a uniform "perceived loudness" can be
3210 established. If a target RMS value has been specified, a frame's local gain
3211 factor is defined as the factor that would result in exactly that RMS value.
3212 Note, however, that the maximum local gain factor is still restricted by the
3213 frame's highest magnitude sample, in order to prevent clipping.
3214
3215 @item coupling, n
3216 Enable channels coupling. By default is enabled.
3217 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3218 amount. This means the same gain factor will be applied to all channels, i.e.
3219 the maximum possible gain factor is determined by the "loudest" channel.
3220 However, in some recordings, it may happen that the volume of the different
3221 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3222 In this case, this option can be used to disable the channel coupling. This way,
3223 the gain factor will be determined independently for each channel, depending
3224 only on the individual channel's highest magnitude sample. This allows for
3225 harmonizing the volume of the different channels.
3226
3227 @item correctdc, c
3228 Enable DC bias correction. By default is disabled.
3229 An audio signal (in the time domain) is a sequence of sample values.
3230 In the Dynamic Audio Normalizer these sample values are represented in the
3231 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3232 audio signal, or "waveform", should be centered around the zero point.
3233 That means if we calculate the mean value of all samples in a file, or in a
3234 single frame, then the result should be 0.0 or at least very close to that
3235 value. If, however, there is a significant deviation of the mean value from
3236 0.0, in either positive or negative direction, this is referred to as a
3237 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3238 Audio Normalizer provides optional DC bias correction.
3239 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3240 the mean value, or "DC correction" offset, of each input frame and subtract
3241 that value from all of the frame's sample values which ensures those samples
3242 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3243 boundaries, the DC correction offset values will be interpolated smoothly
3244 between neighbouring frames.
3245
3246 @item altboundary, b
3247 Enable alternative boundary mode. By default is disabled.
3248 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3249 around each frame. This includes the preceding frames as well as the
3250 subsequent frames. However, for the "boundary" frames, located at the very
3251 beginning and at the very end of the audio file, not all neighbouring
3252 frames are available. In particular, for the first few frames in the audio
3253 file, the preceding frames are not known. And, similarly, for the last few
3254 frames in the audio file, the subsequent frames are not known. Thus, the
3255 question arises which gain factors should be assumed for the missing frames
3256 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3257 to deal with this situation. The default boundary mode assumes a gain factor
3258 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3259 "fade out" at the beginning and at the end of the input, respectively.
3260
3261 @item compress, s
3262 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3263 By default, the Dynamic Audio Normalizer does not apply "traditional"
3264 compression. This means that signal peaks will not be pruned and thus the
3265 full dynamic range will be retained within each local neighbourhood. However,
3266 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3267 normalization algorithm with a more "traditional" compression.
3268 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3269 (thresholding) function. If (and only if) the compression feature is enabled,
3270 all input frames will be processed by a soft knee thresholding function prior
3271 to the actual normalization process. Put simply, the thresholding function is
3272 going to prune all samples whose magnitude exceeds a certain threshold value.
3273 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3274 value. Instead, the threshold value will be adjusted for each individual
3275 frame.
3276 In general, smaller parameters result in stronger compression, and vice versa.
3277 Values below 3.0 are not recommended, because audible distortion may appear.
3278 @end table
3279
3280 @section earwax
3281
3282 Make audio easier to listen to on headphones.
3283
3284 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3285 so that when listened to on headphones the stereo image is moved from
3286 inside your head (standard for headphones) to outside and in front of
3287 the listener (standard for speakers).
3288
3289 Ported from SoX.
3290
3291 @section equalizer
3292
3293 Apply a two-pole peaking equalisation (EQ) filter. With this
3294 filter, the signal-level at and around a selected frequency can
3295 be increased or decreased, whilst (unlike bandpass and bandreject
3296 filters) that at all other frequencies is unchanged.
3297
3298 In order to produce complex equalisation curves, this filter can
3299 be given several times, each with a different central frequency.
3300
3301 The filter accepts the following options:
3302
3303 @table @option
3304 @item frequency, f
3305 Set the filter's central frequency in Hz.
3306
3307 @item width_type, t
3308 Set method to specify band-width of filter.
3309 @table @option
3310 @item h
3311 Hz
3312 @item q
3313 Q-Factor
3314 @item o
3315 octave
3316 @item s
3317 slope
3318 @item k
3319 kHz
3320 @end table
3321
3322 @item width, w
3323 Specify the band-width of a filter in width_type units.
3324
3325 @item gain, g
3326 Set the required gain or attenuation in dB.
3327 Beware of clipping when using a positive gain.
3328
3329 @item mix, m
3330 How much to use filtered signal in output. Default is 1.
3331 Range is between 0 and 1.
3332
3333 @item channels, c
3334 Specify which channels to filter, by default all available are filtered.
3335 @end table
3336
3337 @subsection Examples
3338 @itemize
3339 @item
3340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3341 @example
3342 equalizer=f=1000:t=h:width=200:g=-10
3343 @end example
3344
3345 @item
3346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3347 @example
3348 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3349 @end example
3350 @end itemize
3351
3352 @subsection Commands
3353
3354 This filter supports the following commands:
3355 @table @option
3356 @item frequency, f
3357 Change equalizer frequency.
3358 Syntax for the command is : "@var{frequency}"
3359
3360 @item width_type, t
3361 Change equalizer width_type.
3362 Syntax for the command is : "@var{width_type}"
3363
3364 @item width, w
3365 Change equalizer width.
3366 Syntax for the command is : "@var{width}"
3367
3368 @item gain, g
3369 Change equalizer gain.
3370 Syntax for the command is : "@var{gain}"
3371
3372 @item mix, m
3373 Change equalizer mix.
3374 Syntax for the command is : "@var{mix}"
3375 @end table
3376
3377 @section extrastereo
3378
3379 Linearly increases the difference between left and right channels which
3380 adds some sort of "live" effect to playback.
3381
3382 The filter accepts the following options:
3383
3384 @table @option
3385 @item m
3386 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3387 (average of both channels), with 1.0 sound will be unchanged, with
3388 -1.0 left and right channels will be swapped.
3389
3390 @item c
3391 Enable clipping. By default is enabled.
3392 @end table
3393
3394 @section firequalizer
3395 Apply FIR Equalization using arbitrary frequency response.
3396
3397 The filter accepts the following option:
3398
3399 @table @option
3400 @item gain
3401 Set gain curve equation (in dB). The expression can contain variables:
3402 @table @option
3403 @item f
3404 the evaluated frequency
3405 @item sr
3406 sample rate
3407 @item ch
3408 channel number, set to 0 when multichannels evaluation is disabled
3409 @item chid
3410 channel id, see libavutil/channel_layout.h, set to the first channel id when
3411 multichannels evaluation is disabled
3412 @item chs
3413 number of channels
3414 @item chlayout
3415 channel_layout, see libavutil/channel_layout.h
3416
3417 @end table
3418 and functions:
3419 @table @option
3420 @item gain_interpolate(f)
3421 interpolate gain on frequency f based on gain_entry
3422 @item cubic_interpolate(f)
3423 same as gain_interpolate, but smoother
3424 @end table
3425 This option is also available as command. Default is @code{gain_interpolate(f)}.
3426
3427 @item gain_entry
3428 Set gain entry for gain_interpolate function. The expression can
3429 contain functions:
3430 @table @option
3431 @item entry(f, g)
3432 store gain entry at frequency f with value g
3433 @end table
3434 This option is also available as command.
3435
3436 @item delay
3437 Set filter delay in seconds. Higher value means more accurate.
3438 Default is @code{0.01}.
3439
3440 @item accuracy
3441 Set filter accuracy in Hz. Lower value means more accurate.
3442 Default is @code{5}.
3443
3444 @item wfunc
3445 Set window function. Acceptable values are:
3446 @table @option
3447 @item rectangular
3448 rectangular window, useful when gain curve is already smooth
3449 @item hann
3450 hann window (default)
3451 @item hamming
3452 hamming window
3453 @item blackman
3454 blackman window
3455 @item nuttall3
3456 3-terms continuous 1st derivative nuttall window
3457 @item mnuttall3
3458 minimum 3-terms discontinuous nuttall window
3459 @item nuttall
3460 4-terms continuous 1st derivative nuttall window
3461 @item bnuttall
3462 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3463 @item bharris
3464 blackman-harris window
3465 @item tukey
3466 tukey window
3467 @end table
3468
3469 @item fixed
3470 If enabled, use fixed number of audio samples. This improves speed when
3471 filtering with large delay. Default is disabled.
3472
3473 @item multi
3474 Enable multichannels evaluation on gain. Default is disabled.
3475
3476 @item zero_phase
3477 Enable zero phase mode by subtracting timestamp to compensate delay.
3478 Default is disabled.
3479
3480 @item scale
3481 Set scale used by gain. Acceptable values are:
3482 @table @option
3483 @item linlin
3484 linear frequency, linear gain
3485 @item linlog
3486 linear frequency, logarithmic (in dB) gain (default)
3487 @item loglin
3488 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3489 @item loglog
3490 logarithmic frequency, logarithmic gain
3491 @end table
3492
3493 @item dumpfile
3494 Set file for dumping, suitable for gnuplot.
3495
3496 @item dumpscale
3497 Set scale for dumpfile. Acceptable values are same with scale option.
3498 Default is linlog.
3499
3500 @item fft2
3501 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3502 Default is disabled.
3503
3504 @item min_phase
3505 Enable minimum phase impulse response. Default is disabled.
3506 @end table
3507
3508 @subsection Examples
3509 @itemize
3510 @item
3511 lowpass at 1000 Hz:
3512 @example
3513 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3514 @end example
3515 @item
3516 lowpass at 1000 Hz with gain_entry:
3517 @example
3518 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3519 @end example
3520 @item
3521 custom equalization:
3522 @example
3523 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3524 @end example
3525 @item
3526 higher delay with zero phase to compensate delay:
3527 @example
3528 firequalizer=delay=0.1:fixed=on:zero_phase=on
3529 @end example
3530 @item
3531 lowpass on left channel, highpass on right channel:
3532 @example
3533 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3534 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3535 @end example
3536 @end itemize
3537
3538 @section flanger
3539 Apply a flanging effect to the audio.
3540
3541 The filter accepts the following options:
3542
3543 @table @option
3544 @item delay
3545 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3546
3547 @item depth
3548 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3549
3550 @item regen
3551 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3552 Default value is 0.
3553
3554 @item width
3555 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3556 Default value is 71.
3557
3558 @item speed
3559 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3560
3561 @item shape
3562 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3563 Default value is @var{sinusoidal}.
3564
3565 @item phase
3566 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3567 Default value is 25.
3568
3569 @item interp
3570 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3571 Default is @var{linear}.
3572 @end table
3573
3574 @section haas
3575 Apply Haas effect to audio.
3576
3577 Note that this makes most sense to apply on mono signals.
3578 With this filter applied to mono signals it give some directionality and
3579 stretches its stereo image.
3580
3581 The filter accepts the following options:
3582
3583 @table @option
3584 @item level_in
3585 Set input level. By default is @var{1}, or 0dB
3586
3587 @item level_out
3588 Set output level. By default is @var{1}, or 0dB.
3589
3590 @item side_gain
3591 Set gain applied to side part of signal. By default is @var{1}.
3592
3593 @item middle_source
3594 Set kind of middle source. Can be one of the following:
3595
3596 @table @samp
3597 @item left
3598 Pick left channel.
3599
3600 @item right
3601 Pick right channel.
3602
3603 @item mid
3604 Pick middle part signal of stereo image.
3605
3606 @item side
3607 Pick side part signal of stereo image.
3608 @end table
3609
3610 @item middle_phase
3611 Change middle phase. By default is disabled.
3612
3613 @item left_delay
3614 Set left channel delay. By default is @var{2.05} milliseconds.
3615
3616 @item left_balance
3617 Set left channel balance. By default is @var{-1}.
3618
3619 @item left_gain
3620 Set left channel gain. By default is @var{1}.
3621
3622 @item left_phase
3623 Change left phase. By default is disabled.
3624
3625 @item right_delay
3626 Set right channel delay. By defaults is @var{2.12} milliseconds.
3627
3628 @item right_balance
3629 Set right channel balance. By default is @var{1}.
3630
3631 @item right_gain
3632 Set right channel gain. By default is @var{1}.
3633
3634 @item right_phase
3635 Change right phase. By default is enabled.
3636 @end table
3637
3638 @section hdcd
3639
3640 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3641 embedded HDCD codes is expanded into a 20-bit PCM stream.
3642
3643 The filter supports the Peak Extend and Low-level Gain Adjustment features
3644 of HDCD, and detects the Transient Filter flag.
3645
3646 @example
3647 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3648 @end example
3649
3650 When using the filter with wav, note the default encoding for wav is 16-bit,
3651 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3652 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3653 @example
3654 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3655 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3656 @end example
3657
3658 The filter accepts the following options:
3659
3660 @table @option
3661 @item disable_autoconvert
3662 Disable any automatic format conversion or resampling in the filter graph.
3663
3664 @item process_stereo
3665 Process the stereo channels together. If target_gain does not match between
3666 channels, consider it invalid and use the last valid target_gain.
3667
3668 @item cdt_ms
3669 Set the code detect timer period in ms.
3670
3671 @item force_pe
3672 Always extend peaks above -3dBFS even if PE isn't signaled.
3673
3674 @item analyze_mode
3675 Replace audio with a solid tone and adjust the amplitude to signal some
3676 specific aspect of the decoding process. The output file can be loaded in
3677 an audio editor alongside the original to aid analysis.
3678
3679 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3680
3681 Modes are:
3682 @table @samp
3683 @item 0, off
3684 Disabled
3685 @item 1, lle
3686 Gain adjustment level at each sample
3687 @item 2, pe
3688 Samples where peak extend occurs
3689 @item 3, cdt
3690 Samples where the code detect timer is active
3691 @item 4, tgm
3692 Samples where the target gain does not match between channels
3693 @end table
3694 @end table
3695
3696 @section headphone
3697
3698 Apply head-related transfer functions (HRTFs) to create virtual
3699 loudspeakers around the user for binaural listening via headphones.
3700 The HRIRs are provided via additional streams, for each channel
3701 one stereo input stream is needed.
3702
3703 The filter accepts the following options:
3704
3705 @table @option
3706 @item map
3707 Set mapping of input streams for convolution.
3708 The argument is a '|'-separated list of channel names in order as they
3709 are given as additional stream inputs for filter.
3710 This also specify number of input streams. Number of input streams
3711 must be not less than number of channels in first stream plus one.
3712
3713 @item gain
3714 Set gain applied to audio. Value is in dB. Default is 0.
3715
3716 @item type
3717 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3718 processing audio in time domain which is slow.
3719 @var{freq} is processing audio in frequency domain which is fast.
3720 Default is @var{freq}.
3721
3722 @item lfe
3723 Set custom gain for LFE channels. Value is in dB. Default is 0.
3724
3725 @item size
3726 Set size of frame in number of samples which will be processed at once.
3727 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3728
3729 @item hrir
3730 Set format of hrir stream.
3731 Default value is @var{stereo}. Alternative value is @var{multich}.
3732 If value is set to @var{stereo}, number of additional streams should
3733 be greater or equal to number of input channels in first input stream.
3734 Also each additional stream should have stereo number of channels.
3735 If value is set to @var{multich}, number of additional streams should
3736 be exactly one. Also number of input channels of additional stream
3737 should be equal or greater than twice number of channels of first input
3738 stream.
3739 @end table
3740
3741 @subsection Examples
3742
3743 @itemize
3744 @item
3745 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3746 each amovie filter use stereo file with IR coefficients as input.
3747 The files give coefficients for each position of virtual loudspeaker:
3748 @example
3749 ffmpeg -i input.wav
3750 -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"
3751 output.wav
3752 @end example
3753
3754 @item
3755 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3756 but now in @var{multich} @var{hrir} format.
3757 @example
3758 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"
3759 output.wav
3760 @end example
3761 @end itemize
3762
3763 @section highpass
3764
3765 Apply a high-pass filter with 3dB point frequency.
3766 The filter can be either single-pole, or double-pole (the default).
3767 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3768
3769 The filter accepts the following options:
3770
3771 @table @option
3772 @item frequency, f
3773 Set frequency in Hz. Default is 3000.
3774
3775 @item poles, p
3776 Set number of poles. Default is 2.
3777
3778 @item width_type, t
3779 Set method to specify band-width of filter.
3780 @table @option
3781 @item h
3782 Hz
3783 @item q
3784 Q-Factor
3785 @item o
3786 octave
3787 @item s
3788 slope
3789 @item k
3790 kHz
3791 @end table
3792
3793 @item width, w
3794 Specify the band-width of a filter in width_type units.
3795 Applies only to double-pole filter.
3796 The default is 0.707q and gives a Butterworth response.
3797
3798 @item mix, m
3799 How much to use filtered signal in output. Default is 1.
3800 Range is between 0 and 1.
3801
3802 @item channels, c
3803 Specify which channels to filter, by default all available are filtered.
3804 @end table
3805
3806 @subsection Commands
3807
3808 This filter supports the following commands:
3809 @table @option
3810 @item frequency, f
3811 Change highpass frequency.
3812 Syntax for the command is : "@var{frequency}"
3813
3814 @item width_type, t
3815 Change highpass width_type.
3816 Syntax for the command is : "@var{width_type}"
3817
3818 @item width, w
3819 Change highpass width.
3820 Syntax for the command is : "@var{width}"
3821
3822 @item mix, m
3823 Change highpass mix.
3824 Syntax for the command is : "@var{mix}"
3825 @end table
3826
3827 @section join
3828
3829 Join multiple input streams into one multi-channel stream.
3830
3831 It accepts the following parameters:
3832 @table @option
3833
3834 @item inputs
3835 The number of input streams. It defaults to 2.
3836
3837 @item channel_layout
3838 The desired output channel layout. It defaults to stereo.
3839
3840 @item map
3841 Map channels from inputs to output. The argument is a '|'-separated list of
3842 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3843 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3844 can be either the name of the input channel (e.g. FL for front left) or its
3845 index in the specified input stream. @var{out_channel} is the name of the output
3846 channel.
3847 @end table
3848
3849 The filter will attempt to guess the mappings when they are not specified
3850 explicitly. It does so by first trying to find an unused matching input channel
3851 and if that fails it picks the first unused input channel.
3852
3853 Join 3 inputs (with properly set channel layouts):
3854 @example
3855 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3856 @end example
3857
3858 Build a 5.1 output from 6 single-channel streams:
3859 @example
3860 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3861 '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'
3862 out
3863 @end example
3864
3865 @section ladspa
3866
3867 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3868
3869 To enable compilation of this filter you need to configure FFmpeg with
3870 @code{--enable-ladspa}.
3871
3872 @table @option
3873 @item file, f
3874 Specifies the name of LADSPA plugin library to load. If the environment
3875 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3876 each one of the directories specified by the colon separated list in
3877 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3878 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3879 @file{/usr/lib/ladspa/}.
3880
3881 @item plugin, p
3882 Specifies the plugin within the library. Some libraries contain only
3883 one plugin, but others contain many of them. If this is not set filter
3884 will list all available plugins within the specified library.
3885
3886 @item controls, c
3887 Set the '|' separated list of controls which are zero or more floating point
3888 values that determine the behavior of the loaded plugin (for example delay,
3889 threshold or gain).
3890 Controls need to be defined using the following syntax:
3891 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3892 @var{valuei} is the value set on the @var{i}-th control.
3893 Alternatively they can be also defined using the following syntax:
3894 @var{value0}|@var{value1}|@var{value2}|..., where
3895 @var{valuei} is the value set on the @var{i}-th control.
3896 If @option{controls} is set to @code{help}, all available controls and
3897 their valid ranges are printed.
3898
3899 @item sample_rate, s
3900 Specify the sample rate, default to 44100. Only used if plugin have
3901 zero inputs.
3902
3903 @item nb_samples, n
3904 Set the number of samples per channel per each output frame, default
3905 is 1024. Only used if plugin have zero inputs.
3906
3907 @item duration, d
3908 Set the minimum duration of the sourced audio. See
3909 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3910 for the accepted syntax.
3911 Note that the resulting duration may be greater than the specified duration,
3912 as the generated audio is always cut at the end of a complete frame.
3913 If not specified, or the expressed duration is negative, the audio is
3914 supposed to be generated forever.
3915 Only used if plugin have zero inputs.
3916
3917 @end table
3918
3919 @subsection Examples
3920
3921 @itemize
3922 @item
3923 List all available plugins within amp (LADSPA example plugin) library:
3924 @example
3925 ladspa=file=amp
3926 @end example
3927
3928 @item
3929 List all available controls and their valid ranges for @code{vcf_notch}
3930 plugin from @code{VCF} library:
3931 @example
3932 ladspa=f=vcf:p=vcf_notch:c=help
3933 @end example
3934
3935 @item
3936 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3937 plugin library:
3938 @example
3939 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3940 @end example
3941
3942 @item
3943 Add reverberation to the audio using TAP-plugins
3944 (Tom's Audio Processing plugins):
3945 @example
3946 ladspa=file=tap_reverb:tap_reverb
3947 @end example
3948
3949 @item
3950 Generate white noise, with 0.2 amplitude:
3951 @example
3952 ladspa=file=cmt:noise_source_white:c=c0=.2
3953 @end example
3954
3955 @item
3956 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3957 @code{C* Audio Plugin Suite} (CAPS) library:
3958 @example
3959 ladspa=file=caps:Click:c=c1=20'
3960 @end example
3961
3962 @item
3963 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3964 @example
3965 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3966 @end example
3967
3968 @item
3969 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3970 @code{SWH Plugins} collection:
3971 @example
3972 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3973 @end example
3974
3975 @item
3976 Attenuate low frequencies using Multiband EQ from Steve Harris
3977 @code{SWH Plugins} collection:
3978 @example
3979 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3980 @end example
3981
3982 @item
3983 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3984 (CAPS) library:
3985 @example
3986 ladspa=caps:Narrower
3987 @end example
3988
3989 @item
3990 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3991 @example
3992 ladspa=caps:White:.2
3993 @end example
3994
3995 @item
3996 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3997 @example
3998 ladspa=caps:Fractal:c=c1=1
3999 @end example
4000
4001 @item
4002 Dynamic volume normalization using @code{VLevel} plugin:
4003 @example
4004 ladspa=vlevel-ladspa:vlevel_mono
4005 @end example
4006 @end itemize
4007
4008 @subsection Commands
4009
4010 This filter supports the following commands:
4011 @table @option
4012 @item cN
4013 Modify the @var{N}-th control value.
4014
4015 If the specified value is not valid, it is ignored and prior one is kept.
4016 @end table
4017
4018 @section loudnorm
4019
4020 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4021 Support for both single pass (livestreams, files) and double pass (files) modes.
4022 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
4023 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
4024 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4025
4026 The filter accepts the following options:
4027
4028 @table @option
4029 @item I, i
4030 Set integrated loudness target.
4031 Range is -70.0 - -5.0. Default value is -24.0.
4032
4033 @item LRA, lra
4034 Set loudness range target.
4035 Range is 1.0 - 20.0. Default value is 7.0.
4036
4037 @item TP, tp
4038 Set maximum true peak.
4039 Range is -9.0 - +0.0. Default value is -2.0.
4040
4041 @item measured_I, measured_i
4042 Measured IL of input file.
4043 Range is -99.0 - +0.0.
4044
4045 @item measured_LRA, measured_lra
4046 Measured LRA of input file.
4047 Range is  0.0 - 99.0.
4048
4049 @item measured_TP, measured_tp
4050 Measured true peak of input file.
4051 Range is  -99.0 - +99.0.
4052
4053 @item measured_thresh
4054 Measured threshold of input file.
4055 Range is -99.0 - +0.0.
4056
4057 @item offset
4058 Set offset gain. Gain is applied before the true-peak limiter.
4059 Range is  -99.0 - +99.0. Default is +0.0.
4060
4061 @item linear
4062 Normalize linearly if possible.
4063 measured_I, measured_LRA, measured_TP, and measured_thresh must also
4064 to be specified in order to use this mode.
4065 Options are true or false. Default is true.
4066
4067 @item dual_mono
4068 Treat mono input files as "dual-mono". If a mono file is intended for playback
4069 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4070 If set to @code{true}, this option will compensate for this effect.
4071 Multi-channel input files are not affected by this option.
4072 Options are true or false. Default is false.
4073
4074 @item print_format
4075 Set print format for stats. Options are summary, json, or none.
4076 Default value is none.
4077 @end table
4078
4079 @section lowpass
4080
4081 Apply a low-pass filter with 3dB point frequency.
4082 The filter can be either single-pole or double-pole (the default).
4083 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4084
4085 The filter accepts the following options:
4086
4087 @table @option
4088 @item frequency, f
4089 Set frequency in Hz. Default is 500.
4090
4091 @item poles, p
4092 Set number of poles. Default is 2.
4093
4094 @item width_type, t
4095 Set method to specify band-width of filter.
4096 @table @option
4097 @item h
4098 Hz
4099 @item q
4100 Q-Factor
4101 @item o
4102 octave
4103 @item s
4104 slope
4105 @item k
4106 kHz
4107 @end table
4108
4109 @item width, w
4110 Specify the band-width of a filter in width_type units.
4111 Applies only to double-pole filter.
4112 The default is 0.707q and gives a Butterworth response.
4113
4114 @item mix, m
4115 How much to use filtered signal in output. Default is 1.
4116 Range is between 0 and 1.
4117
4118 @item channels, c
4119 Specify which channels to filter, by default all available are filtered.
4120 @end table
4121
4122 @subsection Examples
4123 @itemize
4124 @item
4125 Lowpass only LFE channel, it LFE is not present it does nothing:
4126 @example
4127 lowpass=c=LFE
4128 @end example
4129 @end itemize
4130
4131 @subsection Commands
4132
4133 This filter supports the following commands:
4134 @table @option
4135 @item frequency, f
4136 Change lowpass frequency.
4137 Syntax for the command is : "@var{frequency}"
4138
4139 @item width_type, t
4140 Change lowpass width_type.
4141 Syntax for the command is : "@var{width_type}"
4142
4143 @item width, w
4144 Change lowpass width.
4145 Syntax for the command is : "@var{width}"
4146
4147 @item mix, m
4148 Change lowpass mix.
4149 Syntax for the command is : "@var{mix}"
4150 @end table
4151
4152 @section lv2
4153
4154 Load a LV2 (LADSPA Version 2) plugin.
4155
4156 To enable compilation of this filter you need to configure FFmpeg with
4157 @code{--enable-lv2}.
4158
4159 @table @option
4160 @item plugin, p
4161 Specifies the plugin URI. You may need to escape ':'.
4162
4163 @item controls, c
4164 Set the '|' separated list of controls which are zero or more floating point
4165 values that determine the behavior of the loaded plugin (for example delay,
4166 threshold or gain).
4167 If @option{controls} is set to @code{help}, all available controls and
4168 their valid ranges are printed.
4169
4170 @item sample_rate, s
4171 Specify the sample rate, default to 44100. Only used if plugin have
4172 zero inputs.
4173
4174 @item nb_samples, n
4175 Set the number of samples per channel per each output frame, default
4176 is 1024. Only used if plugin have zero inputs.
4177
4178 @item duration, d
4179 Set the minimum duration of the sourced audio. See
4180 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4181 for the accepted syntax.
4182 Note that the resulting duration may be greater than the specified duration,
4183 as the generated audio is always cut at the end of a complete frame.
4184 If not specified, or the expressed duration is negative, the audio is
4185 supposed to be generated forever.
4186 Only used if plugin have zero inputs.
4187 @end table
4188
4189 @subsection Examples
4190
4191 @itemize
4192 @item
4193 Apply bass enhancer plugin from Calf:
4194 @example
4195 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4196 @end example
4197
4198 @item
4199 Apply vinyl plugin from Calf:
4200 @example
4201 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4202 @end example
4203
4204 @item
4205 Apply bit crusher plugin from ArtyFX:
4206 @example
4207 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4208 @end example
4209 @end itemize
4210
4211 @section mcompand
4212 Multiband Compress or expand the audio's dynamic range.
4213
4214 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4215 This is akin to the crossover of a loudspeaker, and results in flat frequency
4216 response when absent compander action.
4217
4218 It accepts the following parameters:
4219
4220 @table @option
4221 @item args
4222 This option syntax is:
4223 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4224 For explanation of each item refer to compand filter documentation.
4225 @end table
4226
4227 @anchor{pan}
4228 @section pan
4229
4230 Mix channels with specific gain levels. The filter accepts the output
4231 channel layout followed by a set of channels definitions.
4232
4233 This filter is also designed to efficiently remap the channels of an audio
4234 stream.
4235
4236 The filter accepts parameters of the form:
4237 "@var{l}|@var{outdef}|@var{outdef}|..."
4238
4239 @table @option
4240 @item l
4241 output channel layout or number of channels
4242
4243 @item outdef
4244 output channel specification, of the form:
4245 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4246
4247 @item out_name
4248 output channel to define, either a channel name (FL, FR, etc.) or a channel
4249 number (c0, c1, etc.)
4250
4251 @item gain
4252 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4253
4254 @item in_name
4255 input channel to use, see out_name for details; it is not possible to mix
4256 named and numbered input channels
4257 @end table
4258
4259 If the `=' in a channel specification is replaced by `<', then the gains for
4260 that specification will be renormalized so that the total is 1, thus
4261 avoiding clipping noise.
4262
4263 @subsection Mixing examples
4264
4265 For example, if you want to down-mix from stereo to mono, but with a bigger
4266 factor for the left channel:
4267 @example
4268 pan=1c|c0=0.9*c0+0.1*c1
4269 @end example
4270
4271 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4272 7-channels surround:
4273 @example
4274 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4275 @end example
4276
4277 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4278 that should be preferred (see "-ac" option) unless you have very specific
4279 needs.
4280
4281 @subsection Remapping examples
4282
4283 The channel remapping will be effective if, and only if:
4284
4285 @itemize
4286 @item gain coefficients are zeroes or ones,
4287 @item only one input per channel output,
4288 @end itemize
4289
4290 If all these conditions are satisfied, the filter will notify the user ("Pure
4291 channel mapping detected"), and use an optimized and lossless method to do the
4292 remapping.
4293
4294 For example, if you have a 5.1 source and want a stereo audio stream by
4295 dropping the extra channels:
4296 @example
4297 pan="stereo| c0=FL | c1=FR"
4298 @end example
4299
4300 Given the same source, you can also switch front left and front right channels
4301 and keep the input channel layout:
4302 @example
4303 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4304 @end example
4305
4306 If the input is a stereo audio stream, you can mute the front left channel (and
4307 still keep the stereo channel layout) with:
4308 @example
4309 pan="stereo|c1=c1"
4310 @end example
4311
4312 Still with a stereo audio stream input, you can copy the right channel in both
4313 front left and right:
4314 @example
4315 pan="stereo| c0=FR | c1=FR"
4316 @end example
4317
4318 @section replaygain
4319
4320 ReplayGain scanner filter. This filter takes an audio stream as an input and
4321 outputs it unchanged.
4322 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4323
4324 @section resample
4325
4326 Convert the audio sample format, sample rate and channel layout. It is
4327 not meant to be used directly.
4328
4329 @section rubberband
4330 Apply time-stretching and pitch-shifting with librubberband.
4331
4332 To enable compilation of this filter, you need to configure FFmpeg with
4333 @code{--enable-librubberband}.
4334
4335 The filter accepts the following options:
4336
4337 @table @option
4338 @item tempo
4339 Set tempo scale factor.
4340
4341 @item pitch
4342 Set pitch scale factor.
4343
4344 @item transients
4345 Set transients detector.
4346 Possible values are:
4347 @table @var
4348 @item crisp
4349 @item mixed
4350 @item smooth
4351 @end table
4352
4353 @item detector
4354 Set detector.
4355 Possible values are:
4356 @table @var
4357 @item compound
4358 @item percussive
4359 @item soft
4360 @end table
4361
4362 @item phase
4363 Set phase.
4364 Possible values are:
4365 @table @var
4366 @item laminar
4367 @item independent
4368 @end table
4369
4370 @item window
4371 Set processing window size.
4372 Possible values are:
4373 @table @var
4374 @item standard
4375 @item short
4376 @item long
4377 @end table
4378
4379 @item smoothing
4380 Set smoothing.
4381 Possible values are:
4382 @table @var
4383 @item off
4384 @item on
4385 @end table
4386
4387 @item formant
4388 Enable formant preservation when shift pitching.
4389 Possible values are:
4390 @table @var
4391 @item shifted
4392 @item preserved
4393 @end table
4394
4395 @item pitchq
4396 Set pitch quality.
4397 Possible values are:
4398 @table @var
4399 @item quality
4400 @item speed
4401 @item consistency
4402 @end table
4403
4404 @item channels
4405 Set channels.
4406 Possible values are:
4407 @table @var
4408 @item apart
4409 @item together
4410 @end table
4411 @end table
4412
4413 @section sidechaincompress
4414
4415 This filter acts like normal compressor but has the ability to compress
4416 detected signal using second input signal.
4417 It needs two input streams and returns one output stream.
4418 First input stream will be processed depending on second stream signal.
4419 The filtered signal then can be filtered with other filters in later stages of
4420 processing. See @ref{pan} and @ref{amerge} filter.
4421
4422 The filter accepts the following options:
4423
4424 @table @option
4425 @item level_in
4426 Set input gain. Default is 1. Range is between 0.015625 and 64.
4427
4428 @item mode
4429 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4430 Default is @code{downward}.
4431
4432 @item threshold
4433 If a signal of second stream raises above this level it will affect the gain
4434 reduction of first stream.
4435 By default is 0.125. Range is between 0.00097563 and 1.
4436
4437 @item ratio
4438 Set a ratio about which the signal is reduced. 1:2 means that if the level
4439 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4440 Default is 2. Range is between 1 and 20.
4441
4442 @item attack
4443 Amount of milliseconds the signal has to rise above the threshold before gain
4444 reduction starts. Default is 20. Range is between 0.01 and 2000.
4445
4446 @item release
4447 Amount of milliseconds the signal has to fall below the threshold before
4448 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4449
4450 @item makeup
4451 Set the amount by how much signal will be amplified after processing.
4452 Default is 1. Range is from 1 to 64.
4453
4454 @item knee
4455 Curve the sharp knee around the threshold to enter gain reduction more softly.
4456 Default is 2.82843. Range is between 1 and 8.
4457
4458 @item link
4459 Choose if the @code{average} level between all channels of side-chain stream
4460 or the louder(@code{maximum}) channel of side-chain stream affects the
4461 reduction. Default is @code{average}.
4462
4463 @item detection
4464 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4465 of @code{rms}. Default is @code{rms} which is mainly smoother.
4466
4467 @item level_sc
4468 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4469
4470 @item mix
4471 How much to use compressed signal in output. Default is 1.
4472 Range is between 0 and 1.
4473 @end table
4474
4475 @subsection Examples
4476
4477 @itemize
4478 @item
4479 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4480 depending on the signal of 2nd input and later compressed signal to be
4481 merged with 2nd input:
4482 @example
4483 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4484 @end example
4485 @end itemize
4486
4487 @section sidechaingate
4488
4489 A sidechain gate acts like a normal (wideband) gate but has the ability to
4490 filter the detected signal before sending it to the gain reduction stage.
4491 Normally a gate uses the full range signal to detect a level above the
4492 threshold.
4493 For example: If you cut all lower frequencies from your sidechain signal
4494 the gate will decrease the volume of your track only if not enough highs
4495 appear. With this technique you are able to reduce the resonation of a
4496 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4497 guitar.
4498 It needs two input streams and returns one output stream.
4499 First input stream will be processed depending on second stream signal.
4500
4501 The filter accepts the following options:
4502
4503 @table @option
4504 @item level_in
4505 Set input level before filtering.
4506 Default is 1. Allowed range is from 0.015625 to 64.
4507
4508 @item mode
4509 Set the mode of operation. Can be @code{upward} or @code{downward}.
4510 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4511 will be amplified, expanding dynamic range in upward direction.
4512 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4513
4514 @item range
4515 Set the level of gain reduction when the signal is below the threshold.
4516 Default is 0.06125. Allowed range is from 0 to 1.
4517 Setting this to 0 disables reduction and then filter behaves like expander.
4518
4519 @item threshold
4520 If a signal rises above this level the gain reduction is released.
4521 Default is 0.125. Allowed range is from 0 to 1.
4522
4523 @item ratio
4524 Set a ratio about which the signal is reduced.
4525 Default is 2. Allowed range is from 1 to 9000.
4526
4527 @item attack
4528 Amount of milliseconds the signal has to rise above the threshold before gain
4529 reduction stops.
4530 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4531
4532 @item release
4533 Amount of milliseconds the signal has to fall below the threshold before the
4534 reduction is increased again. Default is 250 milliseconds.
4535 Allowed range is from 0.01 to 9000.
4536
4537 @item makeup
4538 Set amount of amplification of signal after processing.
4539 Default is 1. Allowed range is from 1 to 64.
4540
4541 @item knee
4542 Curve the sharp knee around the threshold to enter gain reduction more softly.
4543 Default is 2.828427125. Allowed range is from 1 to 8.
4544
4545 @item detection
4546 Choose if exact signal should be taken for detection or an RMS like one.
4547 Default is rms. Can be peak or rms.
4548
4549 @item link
4550 Choose if the average level between all channels or the louder channel affects
4551 the reduction.
4552 Default is average. Can be average or maximum.
4553
4554 @item level_sc
4555 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4556 @end table
4557
4558 @section silencedetect
4559
4560 Detect silence in an audio stream.
4561
4562 This filter logs a message when it detects that the input audio volume is less
4563 or equal to a noise tolerance value for a duration greater or equal to the
4564 minimum detected noise duration.
4565
4566 The printed times and duration are expressed in seconds.
4567
4568 The filter accepts the following options:
4569
4570 @table @option
4571 @item noise, n
4572 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4573 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4574
4575 @item duration, d
4576 Set silence duration until notification (default is 2 seconds).
4577
4578 @item mono, m
4579 Process each channel separately, instead of combined. By default is disabled.
4580 @end table
4581
4582 @subsection Examples
4583
4584 @itemize
4585 @item
4586 Detect 5 seconds of silence with -50dB noise tolerance:
4587 @example
4588 silencedetect=n=-50dB:d=5
4589 @end example
4590
4591 @item
4592 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4593 tolerance in @file{silence.mp3}:
4594 @example
4595 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4596 @end example
4597 @end itemize
4598
4599 @section silenceremove
4600
4601 Remove silence from the beginning, middle or end of the audio.
4602
4603 The filter accepts the following options:
4604
4605 @table @option
4606 @item start_periods
4607 This value is used to indicate if audio should be trimmed at beginning of
4608 the audio. A value of zero indicates no silence should be trimmed from the
4609 beginning. When specifying a non-zero value, it trims audio up until it
4610 finds non-silence. Normally, when trimming silence from beginning of audio
4611 the @var{start_periods} will be @code{1} but it can be increased to higher
4612 values to trim all audio up to specific count of non-silence periods.
4613 Default value is @code{0}.
4614
4615 @item start_duration
4616 Specify the amount of time that non-silence must be detected before it stops
4617 trimming audio. By increasing the duration, bursts of noises can be treated
4618 as silence and trimmed off. Default value is @code{0}.
4619
4620 @item start_threshold
4621 This indicates what sample value should be treated as silence. For digital
4622 audio, a value of @code{0} may be fine but for audio recorded from analog,
4623 you may wish to increase the value to account for background noise.
4624 Can be specified in dB (in case "dB" is appended to the specified value)
4625 or amplitude ratio. Default value is @code{0}.
4626
4627 @item start_silence
4628 Specify max duration of silence at beginning that will be kept after
4629 trimming. Default is 0, which is equal to trimming all samples detected
4630 as silence.
4631
4632 @item start_mode
4633 Specify mode of detection of silence end in start of multi-channel audio.
4634 Can be @var{any} or @var{all}. Default is @var{any}.
4635 With @var{any}, any sample that is detected as non-silence will cause
4636 stopped trimming of silence.
4637 With @var{all}, only if all channels are detected as non-silence will cause
4638 stopped trimming of silence.
4639
4640 @item stop_periods
4641 Set the count for trimming silence from the end of audio.
4642 To remove silence from the middle of a file, specify a @var{stop_periods}
4643 that is negative. This value is then treated as a positive value and is
4644 used to indicate the effect should restart processing as specified by
4645 @var{start_periods}, making it suitable for removing periods of silence
4646 in the middle of the audio.
4647 Default value is @code{0}.
4648
4649 @item stop_duration
4650 Specify a duration of silence that must exist before audio is not copied any
4651 more. By specifying a higher duration, silence that is wanted can be left in
4652 the audio.
4653 Default value is @code{0}.
4654
4655 @item stop_threshold
4656 This is the same as @option{start_threshold} but for trimming silence from
4657 the end of audio.
4658 Can be specified in dB (in case "dB" is appended to the specified value)
4659 or amplitude ratio. Default value is @code{0}.
4660
4661 @item stop_silence
4662 Specify max duration of silence at end that will be kept after
4663 trimming. Default is 0, which is equal to trimming all samples detected
4664 as silence.
4665
4666 @item stop_mode
4667 Specify mode of detection of silence start in end of multi-channel audio.
4668 Can be @var{any} or @var{all}. Default is @var{any}.
4669 With @var{any}, any sample that is detected as non-silence will cause
4670 stopped trimming of silence.
4671 With @var{all}, only if all channels are detected as non-silence will cause
4672 stopped trimming of silence.
4673
4674 @item detection
4675 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4676 and works better with digital silence which is exactly 0.
4677 Default value is @code{rms}.
4678
4679 @item window
4680 Set duration in number of seconds used to calculate size of window in number
4681 of samples for detecting silence.
4682 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4683 @end table
4684
4685 @subsection Examples
4686
4687 @itemize
4688 @item
4689 The following example shows how this filter can be used to start a recording
4690 that does not contain the delay at the start which usually occurs between
4691 pressing the record button and the start of the performance:
4692 @example
4693 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4694 @end example
4695
4696 @item
4697 Trim all silence encountered from beginning to end where there is more than 1
4698 second of silence in audio:
4699 @example
4700 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4701 @end example
4702
4703 @item
4704 Trim all digital silence samples, using peak detection, from beginning to end
4705 where there is more than 0 samples of digital silence in audio and digital
4706 silence is detected in all channels at same positions in stream:
4707 @example
4708 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4709 @end example
4710 @end itemize
4711
4712 @section sofalizer
4713
4714 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4715 loudspeakers around the user for binaural listening via headphones (audio
4716 formats up to 9 channels supported).
4717 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4718 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4719 Austrian Academy of Sciences.
4720
4721 To enable compilation of this filter you need to configure FFmpeg with
4722 @code{--enable-libmysofa}.
4723
4724 The filter accepts the following options:
4725
4726 @table @option
4727 @item sofa
4728 Set the SOFA file used for rendering.
4729
4730 @item gain
4731 Set gain applied to audio. Value is in dB. Default is 0.
4732
4733 @item rotation
4734 Set rotation of virtual loudspeakers in deg. Default is 0.
4735
4736 @item elevation
4737 Set elevation of virtual speakers in deg. Default is 0.
4738
4739 @item radius
4740 Set distance in meters between loudspeakers and the listener with near-field
4741 HRTFs. Default is 1.
4742
4743 @item type
4744 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4745 processing audio in time domain which is slow.
4746 @var{freq} is processing audio in frequency domain which is fast.
4747 Default is @var{freq}.
4748
4749 @item speakers
4750 Set custom positions of virtual loudspeakers. Syntax for this option is:
4751 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4752 Each virtual loudspeaker is described with short channel name following with
4753 azimuth and elevation in degrees.
4754 Each virtual loudspeaker description is separated by '|'.
4755 For example to override front left and front right channel positions use:
4756 'speakers=FL 45 15|FR 345 15'.
4757 Descriptions with unrecognised channel names are ignored.
4758
4759 @item lfegain
4760 Set custom gain for LFE channels. Value is in dB. Default is 0.
4761
4762 @item framesize
4763 Set custom frame size in number of samples. Default is 1024.
4764 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4765 is set to @var{freq}.
4766
4767 @item normalize
4768 Should all IRs be normalized upon importing SOFA file.
4769 By default is enabled.
4770
4771 @item interpolate
4772 Should nearest IRs be interpolated with neighbor IRs if exact position
4773 does not match. By default is disabled.
4774
4775 @item minphase
4776 Minphase all IRs upon loading of SOFA file. By default is disabled.
4777
4778 @item anglestep
4779 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4780
4781 @item radstep
4782 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4783 @end table
4784
4785 @subsection Examples
4786
4787 @itemize
4788 @item
4789 Using ClubFritz6 sofa file:
4790 @example
4791 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4792 @end example
4793
4794 @item
4795 Using ClubFritz12 sofa file and bigger radius with small rotation:
4796 @example
4797 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4798 @end example
4799
4800 @item
4801 Similar as above but with custom speaker positions for front left, front right, back left and back right
4802 and also with custom gain:
4803 @example
4804 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4805 @end example
4806 @end itemize
4807
4808 @section stereotools
4809
4810 This filter has some handy utilities to manage stereo signals, for converting
4811 M/S stereo recordings to L/R signal while having control over the parameters
4812 or spreading the stereo image of master track.
4813
4814 The filter accepts the following options:
4815
4816 @table @option
4817 @item level_in
4818 Set input level before filtering for both channels. Defaults is 1.
4819 Allowed range is from 0.015625 to 64.
4820
4821 @item level_out
4822 Set output level after filtering for both channels. Defaults is 1.
4823 Allowed range is from 0.015625 to 64.
4824
4825 @item balance_in
4826 Set input balance between both channels. Default is 0.
4827 Allowed range is from -1 to 1.
4828
4829 @item balance_out
4830 Set output balance between both channels. Default is 0.
4831 Allowed range is from -1 to 1.
4832
4833 @item softclip
4834 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4835 clipping. Disabled by default.
4836
4837 @item mutel
4838 Mute the left channel. Disabled by default.
4839
4840 @item muter
4841 Mute the right channel. Disabled by default.
4842
4843 @item phasel
4844 Change the phase of the left channel. Disabled by default.
4845
4846 @item phaser
4847 Change the phase of the right channel. Disabled by default.
4848
4849 @item mode
4850 Set stereo mode. Available values are:
4851
4852 @table @samp
4853 @item lr>lr
4854 Left/Right to Left/Right, this is default.
4855
4856 @item lr>ms
4857 Left/Right to Mid/Side.
4858
4859 @item ms>lr
4860 Mid/Side to Left/Right.
4861
4862 @item lr>ll
4863 Left/Right to Left/Left.
4864
4865 @item lr>rr
4866 Left/Right to Right/Right.
4867
4868 @item lr>l+r
4869 Left/Right to Left + Right.
4870
4871 @item lr>rl
4872 Left/Right to Right/Left.
4873
4874 @item ms>ll
4875 Mid/Side to Left/Left.
4876
4877 @item ms>rr
4878 Mid/Side to Right/Right.
4879 @end table
4880
4881 @item slev
4882 Set level of side signal. Default is 1.
4883 Allowed range is from 0.015625 to 64.
4884
4885 @item sbal
4886 Set balance of side signal. Default is 0.
4887 Allowed range is from -1 to 1.
4888
4889 @item mlev
4890 Set level of the middle signal. Default is 1.
4891 Allowed range is from 0.015625 to 64.
4892
4893 @item mpan
4894 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4895
4896 @item base
4897 Set stereo base between mono and inversed channels. Default is 0.
4898 Allowed range is from -1 to 1.
4899
4900 @item delay
4901 Set delay in milliseconds how much to delay left from right channel and
4902 vice versa. Default is 0. Allowed range is from -20 to 20.
4903
4904 @item sclevel
4905 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4906
4907 @item phase
4908 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4909
4910 @item bmode_in, bmode_out
4911 Set balance mode for balance_in/balance_out option.
4912
4913 Can be one of the following:
4914
4915 @table @samp
4916 @item balance
4917 Classic balance mode. Attenuate one channel at time.
4918 Gain is raised up to 1.
4919
4920 @item amplitude
4921 Similar as classic mode above but gain is raised up to 2.
4922
4923 @item power
4924 Equal power distribution, from -6dB to +6dB range.
4925 @end table
4926 @end table
4927
4928 @subsection Examples
4929
4930 @itemize
4931 @item
4932 Apply karaoke like effect:
4933 @example
4934 stereotools=mlev=0.015625
4935 @end example
4936
4937 @item
4938 Convert M/S signal to L/R:
4939 @example
4940 "stereotools=mode=ms>lr"
4941 @end example
4942 @end itemize
4943
4944 @section stereowiden
4945
4946 This filter enhance the stereo effect by suppressing signal common to both
4947 channels and by delaying the signal of left into right and vice versa,
4948 thereby widening the stereo effect.
4949
4950 The filter accepts the following options:
4951
4952 @table @option
4953 @item delay
4954 Time in milliseconds of the delay of left signal into right and vice versa.
4955 Default is 20 milliseconds.
4956
4957 @item feedback
4958 Amount of gain in delayed signal into right and vice versa. Gives a delay
4959 effect of left signal in right output and vice versa which gives widening
4960 effect. Default is 0.3.
4961
4962 @item crossfeed
4963 Cross feed of left into right with inverted phase. This helps in suppressing
4964 the mono. If the value is 1 it will cancel all the signal common to both
4965 channels. Default is 0.3.
4966
4967 @item drymix
4968 Set level of input signal of original channel. Default is 0.8.
4969 @end table
4970
4971 @section superequalizer
4972 Apply 18 band equalizer.
4973
4974 The filter accepts the following options:
4975 @table @option
4976 @item 1b
4977 Set 65Hz band gain.
4978 @item 2b
4979 Set 92Hz band gain.
4980 @item 3b
4981 Set 131Hz band gain.
4982 @item 4b
4983 Set 185Hz band gain.
4984 @item 5b
4985 Set 262Hz band gain.
4986 @item 6b
4987 Set 370Hz band gain.
4988 @item 7b
4989 Set 523Hz band gain.
4990 @item 8b
4991 Set 740Hz band gain.
4992 @item 9b
4993 Set 1047Hz band gain.
4994 @item 10b
4995 Set 1480Hz band gain.
4996 @item 11b
4997 Set 2093Hz band gain.
4998 @item 12b
4999 Set 2960Hz band gain.
5000 @item 13b
5001 Set 4186Hz band gain.
5002 @item 14b
5003 Set 5920Hz band gain.
5004 @item 15b
5005 Set 8372Hz band gain.
5006 @item 16b
5007 Set 11840Hz band gain.
5008 @item 17b
5009 Set 16744Hz band gain.
5010 @item 18b
5011 Set 20000Hz band gain.
5012 @end table
5013
5014 @section surround
5015 Apply audio surround upmix filter.
5016
5017 This filter allows to produce multichannel output from audio stream.
5018
5019 The filter accepts the following options:
5020
5021 @table @option
5022 @item chl_out
5023 Set output channel layout. By default, this is @var{5.1}.
5024
5025 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5026 for the required syntax.
5027
5028 @item chl_in
5029 Set input channel layout. By default, this is @var{stereo}.
5030
5031 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5032 for the required syntax.
5033
5034 @item level_in
5035 Set input volume level. By default, this is @var{1}.
5036
5037 @item level_out
5038 Set output volume level. By default, this is @var{1}.
5039
5040 @item lfe
5041 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5042
5043 @item lfe_low
5044 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5045
5046 @item lfe_high
5047 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5048
5049 @item lfe_mode
5050 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5051 In @var{add} mode, LFE channel is created from input audio and added to output.
5052 In @var{sub} mode, LFE channel is created from input audio and added to output but
5053 also all non-LFE output channels are subtracted with output LFE channel.
5054
5055 @item angle
5056 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5057 Default is @var{90}.
5058
5059 @item fc_in
5060 Set front center input volume. By default, this is @var{1}.
5061
5062 @item fc_out
5063 Set front center output volume. By default, this is @var{1}.
5064
5065 @item fl_in
5066 Set front left input volume. By default, this is @var{1}.
5067
5068 @item fl_out
5069 Set front left output volume. By default, this is @var{1}.
5070
5071 @item fr_in
5072 Set front right input volume. By default, this is @var{1}.
5073
5074 @item fr_out
5075 Set front right output volume. By default, this is @var{1}.
5076
5077 @item sl_in
5078 Set side left input volume. By default, this is @var{1}.
5079
5080 @item sl_out
5081 Set side left output volume. By default, this is @var{1}.
5082
5083 @item sr_in
5084 Set side right input volume. By default, this is @var{1}.
5085
5086 @item sr_out
5087 Set side right output volume. By default, this is @var{1}.
5088
5089 @item bl_in
5090 Set back left input volume. By default, this is @var{1}.
5091
5092 @item bl_out
5093 Set back left output volume. By default, this is @var{1}.
5094
5095 @item br_in
5096 Set back right input volume. By default, this is @var{1}.
5097
5098 @item br_out
5099 Set back right output volume. By default, this is @var{1}.
5100
5101 @item bc_in
5102 Set back center input volume. By default, this is @var{1}.
5103
5104 @item bc_out
5105 Set back center output volume. By default, this is @var{1}.
5106
5107 @item lfe_in
5108 Set LFE input volume. By default, this is @var{1}.
5109
5110 @item lfe_out
5111 Set LFE output volume. By default, this is @var{1}.
5112
5113 @item allx
5114 Set spread usage of stereo image across X axis for all channels.
5115
5116 @item ally
5117 Set spread usage of stereo image across Y axis for all channels.
5118
5119 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5120 Set spread usage of stereo image across X axis for each channel.
5121
5122 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5123 Set spread usage of stereo image across Y axis for each channel.
5124
5125 @item win_size
5126 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5127
5128 @item win_func
5129 Set window function.
5130
5131 It accepts the following values:
5132 @table @samp
5133 @item rect
5134 @item bartlett
5135 @item hann, hanning
5136 @item hamming
5137 @item blackman
5138 @item welch
5139 @item flattop
5140 @item bharris
5141 @item bnuttall
5142 @item bhann
5143 @item sine
5144 @item nuttall
5145 @item lanczos
5146 @item gauss
5147 @item tukey
5148 @item dolph
5149 @item cauchy
5150 @item parzen
5151 @item poisson
5152 @item bohman
5153 @end table
5154 Default is @code{hann}.
5155
5156 @item overlap
5157 Set window overlap. If set to 1, the recommended overlap for selected
5158 window function will be picked. Default is @code{0.5}.
5159 @end table
5160
5161 @section treble, highshelf
5162
5163 Boost or cut treble (upper) frequencies of the audio using a two-pole
5164 shelving filter with a response similar to that of a standard
5165 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5166
5167 The filter accepts the following options:
5168
5169 @table @option
5170 @item gain, g
5171 Give the gain at whichever is the lower of ~22 kHz and the
5172 Nyquist frequency. Its useful range is about -20 (for a large cut)
5173 to +20 (for a large boost). Beware of clipping when using a positive gain.
5174
5175 @item frequency, f
5176 Set the filter's central frequency and so can be used
5177 to extend or reduce the frequency range to be boosted or cut.
5178 The default value is @code{3000} Hz.
5179
5180 @item width_type, t
5181 Set method to specify band-width of filter.
5182 @table @option
5183 @item h
5184 Hz
5185 @item q
5186 Q-Factor
5187 @item o
5188 octave
5189 @item s
5190 slope
5191 @item k
5192 kHz
5193 @end table
5194
5195 @item width, w
5196 Determine how steep is the filter's shelf transition.
5197
5198 @item mix, m
5199 How much to use filtered signal in output. Default is 1.
5200 Range is between 0 and 1.
5201
5202 @item channels, c
5203 Specify which channels to filter, by default all available are filtered.
5204 @end table
5205
5206 @subsection Commands
5207
5208 This filter supports the following commands:
5209 @table @option
5210 @item frequency, f
5211 Change treble frequency.
5212 Syntax for the command is : "@var{frequency}"
5213
5214 @item width_type, t
5215 Change treble width_type.
5216 Syntax for the command is : "@var{width_type}"
5217
5218 @item width, w
5219 Change treble width.
5220 Syntax for the command is : "@var{width}"
5221
5222 @item gain, g
5223 Change treble gain.
5224 Syntax for the command is : "@var{gain}"
5225
5226 @item mix, m
5227 Change treble mix.
5228 Syntax for the command is : "@var{mix}"
5229 @end table
5230
5231 @section tremolo
5232
5233 Sinusoidal amplitude modulation.
5234
5235 The filter accepts the following options:
5236
5237 @table @option
5238 @item f
5239 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5240 (20 Hz or lower) will result in a tremolo effect.
5241 This filter may also be used as a ring modulator by specifying
5242 a modulation frequency higher than 20 Hz.
5243 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5244
5245 @item d
5246 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5247 Default value is 0.5.
5248 @end table
5249
5250 @section vibrato
5251
5252 Sinusoidal phase modulation.
5253
5254 The filter accepts the following options:
5255
5256 @table @option
5257 @item f
5258 Modulation frequency in Hertz.
5259 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5260
5261 @item d
5262 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5263 Default value is 0.5.
5264 @end table
5265
5266 @section volume
5267
5268 Adjust the input audio volume.
5269
5270 It accepts the following parameters:
5271 @table @option
5272
5273 @item volume
5274 Set audio volume expression.
5275
5276 Output values are clipped to the maximum value.
5277
5278 The output audio volume is given by the relation:
5279 @example
5280 @var{output_volume} = @var{volume} * @var{input_volume}
5281 @end example
5282
5283 The default value for @var{volume} is "1.0".
5284
5285 @item precision
5286 This parameter represents the mathematical precision.
5287
5288 It determines which input sample formats will be allowed, which affects the
5289 precision of the volume scaling.
5290
5291 @table @option
5292 @item fixed
5293 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5294 @item float
5295 32-bit floating-point; this limits input sample format to FLT. (default)
5296 @item double
5297 64-bit floating-point; this limits input sample format to DBL.
5298 @end table
5299
5300 @item replaygain
5301 Choose the behaviour on encountering ReplayGain side data in input frames.
5302
5303 @table @option
5304 @item drop
5305 Remove ReplayGain side data, ignoring its contents (the default).
5306
5307 @item ignore
5308 Ignore ReplayGain side data, but leave it in the frame.
5309
5310 @item track
5311 Prefer the track gain, if present.
5312
5313 @item album
5314 Prefer the album gain, if present.
5315 @end table
5316
5317 @item replaygain_preamp
5318 Pre-amplification gain in dB to apply to the selected replaygain gain.
5319
5320 Default value for @var{replaygain_preamp} is 0.0.
5321
5322 @item eval
5323 Set when the volume expression is evaluated.
5324
5325 It accepts the following values:
5326 @table @samp
5327 @item once
5328 only evaluate expression once during the filter initialization, or
5329 when the @samp{volume} command is sent
5330
5331 @item frame
5332 evaluate expression for each incoming frame
5333 @end table
5334
5335 Default value is @samp{once}.
5336 @end table
5337
5338 The volume expression can contain the following parameters.
5339
5340 @table @option
5341 @item n
5342 frame number (starting at zero)
5343 @item nb_channels
5344 number of channels
5345 @item nb_consumed_samples
5346 number of samples consumed by the filter
5347 @item nb_samples
5348 number of samples in the current frame
5349 @item pos
5350 original frame position in the file
5351 @item pts
5352 frame PTS
5353 @item sample_rate
5354 sample rate
5355 @item startpts
5356 PTS at start of stream
5357 @item startt
5358 time at start of stream
5359 @item t
5360 frame time
5361 @item tb
5362 timestamp timebase
5363 @item volume
5364 last set volume value
5365 @end table
5366
5367 Note that when @option{eval} is set to @samp{once} only the
5368 @var{sample_rate} and @var{tb} variables are available, all other
5369 variables will evaluate to NAN.
5370
5371 @subsection Commands
5372
5373 This filter supports the following commands:
5374 @table @option
5375 @item volume
5376 Modify the volume expression.
5377 The command accepts the same syntax of the corresponding option.
5378
5379 If the specified expression is not valid, it is kept at its current
5380 value.
5381 @item replaygain_noclip
5382 Prevent clipping by limiting the gain applied.
5383
5384 Default value for @var{replaygain_noclip} is 1.
5385
5386 @end table
5387
5388 @subsection Examples
5389
5390 @itemize
5391 @item
5392 Halve the input audio volume:
5393 @example
5394 volume=volume=0.5
5395 volume=volume=1/2
5396 volume=volume=-6.0206dB
5397 @end example
5398
5399 In all the above example the named key for @option{volume} can be
5400 omitted, for example like in:
5401 @example
5402 volume=0.5
5403 @end example
5404
5405 @item
5406 Increase input audio power by 6 decibels using fixed-point precision:
5407 @example
5408 volume=volume=6dB:precision=fixed
5409 @end example
5410
5411 @item
5412 Fade volume after time 10 with an annihilation period of 5 seconds:
5413 @example
5414 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5415 @end example
5416 @end itemize
5417
5418 @section volumedetect
5419
5420 Detect the volume of the input video.
5421
5422 The filter has no parameters. The input is not modified. Statistics about
5423 the volume will be printed in the log when the input stream end is reached.
5424
5425 In particular it will show the mean volume (root mean square), maximum
5426 volume (on a per-sample basis), and the beginning of a histogram of the
5427 registered volume values (from the maximum value to a cumulated 1/1000 of
5428 the samples).
5429
5430 All volumes are in decibels relative to the maximum PCM value.
5431
5432 @subsection Examples
5433
5434 Here is an excerpt of the output:
5435 @example
5436 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5437 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5438 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5439 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5440 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5441 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5442 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5443 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5444 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5445 @end example
5446
5447 It means that:
5448 @itemize
5449 @item
5450 The mean square energy is approximately -27 dB, or 10^-2.7.
5451 @item
5452 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5453 @item
5454 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5455 @end itemize
5456
5457 In other words, raising the volume by +4 dB does not cause any clipping,
5458 raising it by +5 dB causes clipping for 6 samples, etc.
5459
5460 @c man end AUDIO FILTERS
5461
5462 @chapter Audio Sources
5463 @c man begin AUDIO SOURCES
5464
5465 Below is a description of the currently available audio sources.
5466
5467 @section abuffer
5468
5469 Buffer audio frames, and make them available to the filter chain.
5470
5471 This source is mainly intended for a programmatic use, in particular
5472 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5473
5474 It accepts the following parameters:
5475 @table @option
5476
5477 @item time_base
5478 The timebase which will be used for timestamps of submitted frames. It must be
5479 either a floating-point number or in @var{numerator}/@var{denominator} form.
5480
5481 @item sample_rate
5482 The sample rate of the incoming audio buffers.
5483
5484 @item sample_fmt
5485 The sample format of the incoming audio buffers.
5486 Either a sample format name or its corresponding integer representation from
5487 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5488
5489 @item channel_layout
5490 The channel layout of the incoming audio buffers.
5491 Either a channel layout name from channel_layout_map in
5492 @file{libavutil/channel_layout.c} or its corresponding integer representation
5493 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5494
5495 @item channels
5496 The number of channels of the incoming audio buffers.
5497 If both @var{channels} and @var{channel_layout} are specified, then they
5498 must be consistent.
5499
5500 @end table
5501
5502 @subsection Examples
5503
5504 @example
5505 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5506 @end example
5507
5508 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5509 Since the sample format with name "s16p" corresponds to the number
5510 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5511 equivalent to:
5512 @example
5513 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5514 @end example
5515
5516 @section aevalsrc
5517
5518 Generate an audio signal specified by an expression.
5519
5520 This source accepts in input one or more expressions (one for each
5521 channel), which are evaluated and used to generate a corresponding
5522 audio signal.
5523
5524 This source accepts the following options:
5525
5526 @table @option
5527 @item exprs
5528 Set the '|'-separated expressions list for each separate channel. In case the
5529 @option{channel_layout} option is not specified, the selected channel layout
5530 depends on the number of provided expressions. Otherwise the last
5531 specified expression is applied to the remaining output channels.
5532
5533 @item channel_layout, c
5534 Set the channel layout. The number of channels in the specified layout
5535 must be equal to the number of specified expressions.
5536
5537 @item duration, d
5538 Set the minimum duration of the sourced audio. See
5539 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5540 for the accepted syntax.
5541 Note that the resulting duration may be greater than the specified
5542 duration, as the generated audio is always cut at the end of a
5543 complete frame.
5544
5545 If not specified, or the expressed duration is negative, the audio is
5546 supposed to be generated forever.
5547
5548 @item nb_samples, n
5549 Set the number of samples per channel per each output frame,
5550 default to 1024.
5551
5552 @item sample_rate, s
5553 Specify the sample rate, default to 44100.
5554 @end table
5555
5556 Each expression in @var{exprs} can contain the following constants:
5557
5558 @table @option
5559 @item n
5560 number of the evaluated sample, starting from 0
5561
5562 @item t
5563 time of the evaluated sample expressed in seconds, starting from 0
5564
5565 @item s
5566 sample rate
5567
5568 @end table
5569
5570 @subsection Examples
5571
5572 @itemize
5573 @item
5574 Generate silence:
5575 @example
5576 aevalsrc=0
5577 @end example
5578
5579 @item
5580 Generate a sin signal with frequency of 440 Hz, set sample rate to
5581 8000 Hz:
5582 @example
5583 aevalsrc="sin(440*2*PI*t):s=8000"
5584 @end example
5585
5586 @item
5587 Generate a two channels signal, specify the channel layout (Front
5588 Center + Back Center) explicitly:
5589 @example
5590 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5591 @end example
5592
5593 @item
5594 Generate white noise:
5595 @example
5596 aevalsrc="-2+random(0)"
5597 @end example
5598
5599 @item
5600 Generate an amplitude modulated signal:
5601 @example
5602 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5603 @end example
5604
5605 @item
5606 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5607 @example
5608 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5609 @end example
5610
5611 @end itemize
5612
5613 @section anullsrc
5614
5615 The null audio source, return unprocessed audio frames. It is mainly useful
5616 as a template and to be employed in analysis / debugging tools, or as
5617 the source for filters which ignore the input data (for example the sox
5618 synth filter).
5619
5620 This source accepts the following options:
5621
5622 @table @option
5623
5624 @item channel_layout, cl
5625
5626 Specifies the channel layout, and can be either an integer or a string
5627 representing a channel layout. The default value of @var{channel_layout}
5628 is "stereo".
5629
5630 Check the channel_layout_map definition in
5631 @file{libavutil/channel_layout.c} for the mapping between strings and
5632 channel layout values.
5633
5634 @item sample_rate, r
5635 Specifies the sample rate, and defaults to 44100.
5636
5637 @item nb_samples, n
5638 Set the number of samples per requested frames.
5639
5640 @end table
5641
5642 @subsection Examples
5643
5644 @itemize
5645 @item
5646 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5647 @example
5648 anullsrc=r=48000:cl=4
5649 @end example
5650
5651 @item
5652 Do the same operation with a more obvious syntax:
5653 @example
5654 anullsrc=r=48000:cl=mono
5655 @end example
5656 @end itemize
5657
5658 All the parameters need to be explicitly defined.
5659
5660 @section flite
5661
5662 Synthesize a voice utterance using the libflite library.
5663
5664 To enable compilation of this filter you need to configure FFmpeg with
5665 @code{--enable-libflite}.
5666
5667 Note that versions of the flite library prior to 2.0 are not thread-safe.
5668
5669 The filter accepts the following options:
5670
5671 @table @option
5672
5673 @item list_voices
5674 If set to 1, list the names of the available voices and exit
5675 immediately. Default value is 0.
5676
5677 @item nb_samples, n
5678 Set the maximum number of samples per frame. Default value is 512.
5679
5680 @item textfile
5681 Set the filename containing the text to speak.
5682
5683 @item text
5684 Set the text to speak.
5685
5686 @item voice, v
5687 Set the voice to use for the speech synthesis. Default value is
5688 @code{kal}. See also the @var{list_voices} option.
5689 @end table
5690
5691 @subsection Examples
5692
5693 @itemize
5694 @item
5695 Read from file @file{speech.txt}, and synthesize the text using the
5696 standard flite voice:
5697 @example
5698 flite=textfile=speech.txt
5699 @end example
5700
5701 @item
5702 Read the specified text selecting the @code{slt} voice:
5703 @example
5704 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5705 @end example
5706
5707 @item
5708 Input text to ffmpeg:
5709 @example
5710 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5711 @end example
5712
5713 @item
5714 Make @file{ffplay} speak the specified text, using @code{flite} and
5715 the @code{lavfi} device:
5716 @example
5717 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5718 @end example
5719 @end itemize
5720
5721 For more information about libflite, check:
5722 @url{http://www.festvox.org/flite/}
5723
5724 @section anoisesrc
5725
5726 Generate a noise audio signal.
5727
5728 The filter accepts the following options:
5729
5730 @table @option
5731 @item sample_rate, r
5732 Specify the sample rate. Default value is 48000 Hz.
5733
5734 @item amplitude, a
5735 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5736 is 1.0.
5737
5738 @item duration, d
5739 Specify the duration of the generated audio stream. Not specifying this option
5740 results in noise with an infinite length.
5741
5742 @item color, colour, c
5743 Specify the color of noise. Available noise colors are white, pink, brown,
5744 blue and violet. Default color is white.
5745
5746 @item seed, s
5747 Specify a value used to seed the PRNG.
5748
5749 @item nb_samples, n
5750 Set the number of samples per each output frame, default is 1024.
5751 @end table
5752
5753 @subsection Examples
5754
5755 @itemize
5756
5757 @item
5758 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5759 @example
5760 anoisesrc=d=60:c=pink:r=44100:a=0.5
5761 @end example
5762 @end itemize
5763
5764 @section hilbert
5765
5766 Generate odd-tap Hilbert transform FIR coefficients.
5767
5768 The resulting stream can be used with @ref{afir} filter for phase-shifting
5769 the signal by 90 degrees.
5770
5771 This is used in many matrix coding schemes and for analytic signal generation.
5772 The process is often written as a multiplication by i (or j), the imaginary unit.
5773
5774 The filter accepts the following options:
5775
5776 @table @option
5777
5778 @item sample_rate, s
5779 Set sample rate, default is 44100.
5780
5781 @item taps, t
5782 Set length of FIR filter, default is 22051.
5783
5784 @item nb_samples, n
5785 Set number of samples per each frame.
5786
5787 @item win_func, w
5788 Set window function to be used when generating FIR coefficients.
5789 @end table
5790
5791 @section sinc
5792
5793 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5794
5795 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5796
5797 The filter accepts the following options:
5798
5799 @table @option
5800 @item sample_rate, r
5801 Set sample rate, default is 44100.
5802
5803 @item nb_samples, n
5804 Set number of samples per each frame. Default is 1024.
5805
5806 @item hp
5807 Set high-pass frequency. Default is 0.
5808
5809 @item lp
5810 Set low-pass frequency. Default is 0.
5811 If high-pass frequency is lower than low-pass frequency and low-pass frequency
5812 is higher than 0 then filter will create band-pass filter coefficients,
5813 otherwise band-reject filter coefficients.
5814
5815 @item phase
5816 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
5817
5818 @item beta
5819 Set Kaiser window beta.
5820
5821 @item att
5822 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
5823
5824 @item round
5825 Enable rounding, by default is disabled.
5826
5827 @item hptaps
5828 Set number of taps for high-pass filter.
5829
5830 @item lptaps
5831 Set number of taps for low-pass filter.
5832 @end table
5833
5834 @section sine
5835
5836 Generate an audio signal made of a sine wave with amplitude 1/8.
5837
5838 The audio signal is bit-exact.
5839
5840 The filter accepts the following options:
5841
5842 @table @option
5843
5844 @item frequency, f
5845 Set the carrier frequency. Default is 440 Hz.
5846
5847 @item beep_factor, b
5848 Enable a periodic beep every second with frequency @var{beep_factor} times
5849 the carrier frequency. Default is 0, meaning the beep is disabled.
5850
5851 @item sample_rate, r
5852 Specify the sample rate, default is 44100.
5853
5854 @item duration, d
5855 Specify the duration of the generated audio stream.
5856
5857 @item samples_per_frame
5858 Set the number of samples per output frame.
5859
5860 The expression can contain the following constants:
5861
5862 @table @option
5863 @item n
5864 The (sequential) number of the output audio frame, starting from 0.
5865
5866 @item pts
5867 The PTS (Presentation TimeStamp) of the output audio frame,
5868 expressed in @var{TB} units.
5869
5870 @item t
5871 The PTS of the output audio frame, expressed in seconds.
5872
5873 @item TB
5874 The timebase of the output audio frames.
5875 @end table
5876
5877 Default is @code{1024}.
5878 @end table
5879
5880 @subsection Examples
5881
5882 @itemize
5883
5884 @item
5885 Generate a simple 440 Hz sine wave:
5886 @example
5887 sine
5888 @end example
5889
5890 @item
5891 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5892 @example
5893 sine=220:4:d=5
5894 sine=f=220:b=4:d=5
5895 sine=frequency=220:beep_factor=4:duration=5
5896 @end example
5897
5898 @item
5899 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5900 pattern:
5901 @example
5902 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5903 @end example
5904 @end itemize
5905
5906 @c man end AUDIO SOURCES
5907
5908 @chapter Audio Sinks
5909 @c man begin AUDIO SINKS
5910
5911 Below is a description of the currently available audio sinks.
5912
5913 @section abuffersink
5914
5915 Buffer audio frames, and make them available to the end of filter chain.
5916
5917 This sink is mainly intended for programmatic use, in particular
5918 through the interface defined in @file{libavfilter/buffersink.h}
5919 or the options system.
5920
5921 It accepts a pointer to an AVABufferSinkContext structure, which
5922 defines the incoming buffers' formats, to be passed as the opaque
5923 parameter to @code{avfilter_init_filter} for initialization.
5924 @section anullsink
5925
5926 Null audio sink; do absolutely nothing with the input audio. It is
5927 mainly useful as a template and for use in analysis / debugging
5928 tools.
5929
5930 @c man end AUDIO SINKS
5931
5932 @chapter Video Filters
5933 @c man begin VIDEO FILTERS
5934
5935 When you configure your FFmpeg build, you can disable any of the
5936 existing filters using @code{--disable-filters}.
5937 The configure output will show the video filters included in your
5938 build.
5939
5940 Below is a description of the currently available video filters.
5941
5942 @section addroi
5943
5944 Mark a region of interest in a video frame.
5945
5946 The frame data is passed through unchanged, but metadata is attached
5947 to the frame indicating regions of interest which can affect the
5948 behaviour of later encoding.  Multiple regions can be marked by
5949 applying the filter multiple times.
5950
5951 @table @option
5952 @item x
5953 Region distance in pixels from the left edge of the frame.
5954 @item y
5955 Region distance in pixels from the top edge of the frame.
5956 @item w
5957 Region width in pixels.
5958 @item h
5959 Region height in pixels.
5960
5961 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
5962 and may contain the following variables:
5963 @table @option
5964 @item iw
5965 Width of the input frame.
5966 @item ih
5967 Height of the input frame.
5968 @end table
5969
5970 @item qoffset
5971 Quantisation offset to apply within the region.
5972
5973 This must be a real value in the range -1 to +1.  A value of zero
5974 indicates no quality change.  A negative value asks for better quality
5975 (less quantisation), while a positive value asks for worse quality
5976 (greater quantisation).
5977
5978 The range is calibrated so that the extreme values indicate the
5979 largest possible offset - if the rest of the frame is encoded with the
5980 worst possible quality, an offset of -1 indicates that this region
5981 should be encoded with the best possible quality anyway.  Intermediate
5982 values are then interpolated in some codec-dependent way.
5983
5984 For example, in 10-bit H.264 the quantisation parameter varies between
5985 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
5986 this region should be encoded with a QP around one-tenth of the full
5987 range better than the rest of the frame.  So, if most of the frame
5988 were to be encoded with a QP of around 30, this region would get a QP
5989 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
5990 An extreme value of -1 would indicate that this region should be
5991 encoded with the best possible quality regardless of the treatment of
5992 the rest of the frame - that is, should be encoded at a QP of -12.
5993 @item clear
5994 If set to true, remove any existing regions of interest marked on the
5995 frame before adding the new one.
5996 @end table
5997
5998 @subsection Examples
5999
6000 @itemize
6001 @item
6002 Mark the centre quarter of the frame as interesting.
6003 @example
6004 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6005 @end example
6006 @item
6007 Mark the 100-pixel-wide region on the left edge of the frame as very
6008 uninteresting (to be encoded at much lower quality than the rest of
6009 the frame).
6010 @example
6011 addroi=0:0:100:ih:+1/5
6012 @end example
6013 @end itemize
6014
6015 @section alphaextract
6016
6017 Extract the alpha component from the input as a grayscale video. This
6018 is especially useful with the @var{alphamerge} filter.
6019
6020 @section alphamerge
6021
6022 Add or replace the alpha component of the primary input with the
6023 grayscale value of a second input. This is intended for use with
6024 @var{alphaextract} to allow the transmission or storage of frame
6025 sequences that have alpha in a format that doesn't support an alpha
6026 channel.
6027
6028 For example, to reconstruct full frames from a normal YUV-encoded video
6029 and a separate video created with @var{alphaextract}, you might use:
6030 @example
6031 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6032 @end example
6033
6034 Since this filter is designed for reconstruction, it operates on frame
6035 sequences without considering timestamps, and terminates when either
6036 input reaches end of stream. This will cause problems if your encoding
6037 pipeline drops frames. If you're trying to apply an image as an
6038 overlay to a video stream, consider the @var{overlay} filter instead.
6039
6040 @section amplify
6041
6042 Amplify differences between current pixel and pixels of adjacent frames in
6043 same pixel location.
6044
6045 This filter accepts the following options:
6046
6047 @table @option
6048 @item radius
6049 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6050 For example radius of 3 will instruct filter to calculate average of 7 frames.
6051
6052 @item factor
6053 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6054
6055 @item threshold
6056 Set threshold for difference amplification. Any difference greater or equal to
6057 this value will not alter source pixel. Default is 10.
6058 Allowed range is from 0 to 65535.
6059
6060 @item tolerance
6061 Set tolerance for difference amplification. Any difference lower to
6062 this value will not alter source pixel. Default is 0.
6063 Allowed range is from 0 to 65535.
6064
6065 @item low
6066 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6067 This option controls maximum possible value that will decrease source pixel value.
6068
6069 @item high
6070 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6071 This option controls maximum possible value that will increase source pixel value.
6072
6073 @item planes
6074 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6075 @end table
6076
6077 @section ass
6078
6079 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6080 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6081 Substation Alpha) subtitles files.
6082
6083 This filter accepts the following option in addition to the common options from
6084 the @ref{subtitles} filter:
6085
6086 @table @option
6087 @item shaping
6088 Set the shaping engine
6089
6090 Available values are:
6091 @table @samp
6092 @item auto
6093 The default libass shaping engine, which is the best available.
6094 @item simple
6095 Fast, font-agnostic shaper that can do only substitutions
6096 @item complex
6097 Slower shaper using OpenType for substitutions and positioning
6098 @end table
6099
6100 The default is @code{auto}.
6101 @end table
6102
6103 @section atadenoise
6104 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6105
6106 The filter accepts the following options:
6107
6108 @table @option
6109 @item 0a
6110 Set threshold A for 1st plane. Default is 0.02.
6111 Valid range is 0 to 0.3.
6112
6113 @item 0b
6114 Set threshold B for 1st plane. Default is 0.04.
6115 Valid range is 0 to 5.
6116
6117 @item 1a
6118 Set threshold A for 2nd plane. Default is 0.02.
6119 Valid range is 0 to 0.3.
6120
6121 @item 1b
6122 Set threshold B for 2nd plane. Default is 0.04.
6123 Valid range is 0 to 5.
6124
6125 @item 2a
6126 Set threshold A for 3rd plane. Default is 0.02.
6127 Valid range is 0 to 0.3.
6128
6129 @item 2b
6130 Set threshold B for 3rd plane. Default is 0.04.
6131 Valid range is 0 to 5.
6132
6133 Threshold A is designed to react on abrupt changes in the input signal and
6134 threshold B is designed to react on continuous changes in the input signal.
6135
6136 @item s
6137 Set number of frames filter will use for averaging. Default is 9. Must be odd
6138 number in range [5, 129].
6139
6140 @item p
6141 Set what planes of frame filter will use for averaging. Default is all.
6142 @end table
6143
6144 @section avgblur
6145
6146 Apply average blur filter.
6147
6148 The filter accepts the following options:
6149
6150 @table @option
6151 @item sizeX
6152 Set horizontal radius size.
6153
6154 @item planes
6155 Set which planes to filter. By default all planes are filtered.
6156
6157 @item sizeY
6158 Set vertical radius size, if zero it will be same as @code{sizeX}.
6159 Default is @code{0}.
6160 @end table
6161
6162 @section bbox
6163
6164 Compute the bounding box for the non-black pixels in the input frame
6165 luminance plane.
6166
6167 This filter computes the bounding box containing all the pixels with a
6168 luminance value greater than the minimum allowed value.
6169 The parameters describing the bounding box are printed on the filter
6170 log.
6171
6172 The filter accepts the following option:
6173
6174 @table @option
6175 @item min_val
6176 Set the minimal luminance value. Default is @code{16}.
6177 @end table
6178
6179 @section bitplanenoise
6180
6181 Show and measure bit plane noise.
6182
6183 The filter accepts the following options:
6184
6185 @table @option
6186 @item bitplane
6187 Set which plane to analyze. Default is @code{1}.
6188
6189 @item filter
6190 Filter out noisy pixels from @code{bitplane} set above.
6191 Default is disabled.
6192 @end table
6193
6194 @section blackdetect
6195
6196 Detect video intervals that are (almost) completely black. Can be
6197 useful to detect chapter transitions, commercials, or invalid
6198 recordings. Output lines contains the time for the start, end and
6199 duration of the detected black interval expressed in seconds.
6200
6201 In order to display the output lines, you need to set the loglevel at
6202 least to the AV_LOG_INFO value.
6203
6204 The filter accepts the following options:
6205
6206 @table @option
6207 @item black_min_duration, d
6208 Set the minimum detected black duration expressed in seconds. It must
6209 be a non-negative floating point number.
6210
6211 Default value is 2.0.
6212
6213 @item picture_black_ratio_th, pic_th
6214 Set the threshold for considering a picture "black".
6215 Express the minimum value for the ratio:
6216 @example
6217 @var{nb_black_pixels} / @var{nb_pixels}
6218 @end example
6219
6220 for which a picture is considered black.
6221 Default value is 0.98.
6222
6223 @item pixel_black_th, pix_th
6224 Set the threshold for considering a pixel "black".
6225
6226 The threshold expresses the maximum pixel luminance value for which a
6227 pixel is considered "black". The provided value is scaled according to
6228 the following equation:
6229 @example
6230 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6231 @end example
6232
6233 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6234 the input video format, the range is [0-255] for YUV full-range
6235 formats and [16-235] for YUV non full-range formats.
6236
6237 Default value is 0.10.
6238 @end table
6239
6240 The following example sets the maximum pixel threshold to the minimum
6241 value, and detects only black intervals of 2 or more seconds:
6242 @example
6243 blackdetect=d=2:pix_th=0.00
6244 @end example
6245
6246 @section blackframe
6247
6248 Detect frames that are (almost) completely black. Can be useful to
6249 detect chapter transitions or commercials. Output lines consist of
6250 the frame number of the detected frame, the percentage of blackness,
6251 the position in the file if known or -1 and the timestamp in seconds.
6252
6253 In order to display the output lines, you need to set the loglevel at
6254 least to the AV_LOG_INFO value.
6255
6256 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6257 The value represents the percentage of pixels in the picture that
6258 are below the threshold value.
6259
6260 It accepts the following parameters:
6261
6262 @table @option
6263
6264 @item amount
6265 The percentage of the pixels that have to be below the threshold; it defaults to
6266 @code{98}.
6267
6268 @item threshold, thresh
6269 The threshold below which a pixel value is considered black; it defaults to
6270 @code{32}.
6271
6272 @end table
6273
6274 @section blend, tblend
6275
6276 Blend two video frames into each other.
6277
6278 The @code{blend} filter takes two input streams and outputs one
6279 stream, the first input is the "top" layer and second input is
6280 "bottom" layer.  By default, the output terminates when the longest input terminates.
6281
6282 The @code{tblend} (time blend) filter takes two consecutive frames
6283 from one single stream, and outputs the result obtained by blending
6284 the new frame on top of the old frame.
6285
6286 A description of the accepted options follows.
6287
6288 @table @option
6289 @item c0_mode
6290 @item c1_mode
6291 @item c2_mode
6292 @item c3_mode
6293 @item all_mode
6294 Set blend mode for specific pixel component or all pixel components in case
6295 of @var{all_mode}. Default value is @code{normal}.
6296
6297 Available values for component modes are:
6298 @table @samp
6299 @item addition
6300 @item grainmerge
6301 @item and
6302 @item average
6303 @item burn
6304 @item darken
6305 @item difference
6306 @item grainextract
6307 @item divide
6308 @item dodge
6309 @item freeze
6310 @item exclusion
6311 @item extremity
6312 @item glow
6313 @item hardlight
6314 @item hardmix
6315 @item heat
6316 @item lighten
6317 @item linearlight
6318 @item multiply
6319 @item multiply128
6320 @item negation
6321 @item normal
6322 @item or
6323 @item overlay
6324 @item phoenix
6325 @item pinlight
6326 @item reflect
6327 @item screen
6328 @item softlight
6329 @item subtract
6330 @item vividlight
6331 @item xor
6332 @end table
6333
6334 @item c0_opacity
6335 @item c1_opacity
6336 @item c2_opacity
6337 @item c3_opacity
6338 @item all_opacity
6339 Set blend opacity for specific pixel component or all pixel components in case
6340 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6341
6342 @item c0_expr
6343 @item c1_expr
6344 @item c2_expr
6345 @item c3_expr
6346 @item all_expr
6347 Set blend expression for specific pixel component or all pixel components in case
6348 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6349
6350 The expressions can use the following variables:
6351
6352 @table @option
6353 @item N
6354 The sequential number of the filtered frame, starting from @code{0}.
6355
6356 @item X
6357 @item Y
6358 the coordinates of the current sample
6359
6360 @item W
6361 @item H
6362 the width and height of currently filtered plane
6363
6364 @item SW
6365 @item SH
6366 Width and height scale for the plane being filtered. It is the
6367 ratio between the dimensions of the current plane to the luma plane,
6368 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6369 the luma plane and @code{0.5,0.5} for the chroma planes.
6370
6371 @item T
6372 Time of the current frame, expressed in seconds.
6373
6374 @item TOP, A
6375 Value of pixel component at current location for first video frame (top layer).
6376
6377 @item BOTTOM, B
6378 Value of pixel component at current location for second video frame (bottom layer).
6379 @end table
6380 @end table
6381
6382 The @code{blend} filter also supports the @ref{framesync} options.
6383
6384 @subsection Examples
6385
6386 @itemize
6387 @item
6388 Apply transition from bottom layer to top layer in first 10 seconds:
6389 @example
6390 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6391 @end example
6392
6393 @item
6394 Apply linear horizontal transition from top layer to bottom layer:
6395 @example
6396 blend=all_expr='A*(X/W)+B*(1-X/W)'
6397 @end example
6398
6399 @item
6400 Apply 1x1 checkerboard effect:
6401 @example
6402 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6403 @end example
6404
6405 @item
6406 Apply uncover left effect:
6407 @example
6408 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6409 @end example
6410
6411 @item
6412 Apply uncover down effect:
6413 @example
6414 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6415 @end example
6416
6417 @item
6418 Apply uncover up-left effect:
6419 @example
6420 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6421 @end example
6422
6423 @item
6424 Split diagonally video and shows top and bottom layer on each side:
6425 @example
6426 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6427 @end example
6428
6429 @item
6430 Display differences between the current and the previous frame:
6431 @example
6432 tblend=all_mode=grainextract
6433 @end example
6434 @end itemize
6435
6436 @section bm3d
6437
6438 Denoise frames using Block-Matching 3D algorithm.
6439
6440 The filter accepts the following options.
6441
6442 @table @option
6443 @item sigma
6444 Set denoising strength. Default value is 1.
6445 Allowed range is from 0 to 999.9.
6446 The denoising algorithm is very sensitive to sigma, so adjust it
6447 according to the source.
6448
6449 @item block
6450 Set local patch size. This sets dimensions in 2D.
6451
6452 @item bstep
6453 Set sliding step for processing blocks. Default value is 4.
6454 Allowed range is from 1 to 64.
6455 Smaller values allows processing more reference blocks and is slower.
6456
6457 @item group
6458 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6459 When set to 1, no block matching is done. Larger values allows more blocks
6460 in single group.
6461 Allowed range is from 1 to 256.
6462
6463 @item range
6464 Set radius for search block matching. Default is 9.
6465 Allowed range is from 1 to INT32_MAX.
6466
6467 @item mstep
6468 Set step between two search locations for block matching. Default is 1.
6469 Allowed range is from 1 to 64. Smaller is slower.
6470
6471 @item thmse
6472 Set threshold of mean square error for block matching. Valid range is 0 to
6473 INT32_MAX.
6474
6475 @item hdthr
6476 Set thresholding parameter for hard thresholding in 3D transformed domain.
6477 Larger values results in stronger hard-thresholding filtering in frequency
6478 domain.
6479
6480 @item estim
6481 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6482 Default is @code{basic}.
6483
6484 @item ref
6485 If enabled, filter will use 2nd stream for block matching.
6486 Default is disabled for @code{basic} value of @var{estim} option,
6487 and always enabled if value of @var{estim} is @code{final}.
6488
6489 @item planes
6490 Set planes to filter. Default is all available except alpha.
6491 @end table
6492
6493 @subsection Examples
6494
6495 @itemize
6496 @item
6497 Basic filtering with bm3d:
6498 @example
6499 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6500 @end example
6501
6502 @item
6503 Same as above, but filtering only luma:
6504 @example
6505 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6506 @end example
6507
6508 @item
6509 Same as above, but with both estimation modes:
6510 @example
6511 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
6512 @end example
6513
6514 @item
6515 Same as above, but prefilter with @ref{nlmeans} filter instead:
6516 @example
6517 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
6518 @end example
6519 @end itemize
6520
6521 @section boxblur
6522
6523 Apply a boxblur algorithm to the input video.
6524
6525 It accepts the following parameters:
6526
6527 @table @option
6528
6529 @item luma_radius, lr
6530 @item luma_power, lp
6531 @item chroma_radius, cr
6532 @item chroma_power, cp
6533 @item alpha_radius, ar
6534 @item alpha_power, ap
6535
6536 @end table
6537
6538 A description of the accepted options follows.
6539
6540 @table @option
6541 @item luma_radius, lr
6542 @item chroma_radius, cr
6543 @item alpha_radius, ar
6544 Set an expression for the box radius in pixels used for blurring the
6545 corresponding input plane.
6546
6547 The radius value must be a non-negative number, and must not be
6548 greater than the value of the expression @code{min(w,h)/2} for the
6549 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6550 planes.
6551
6552 Default value for @option{luma_radius} is "2". If not specified,
6553 @option{chroma_radius} and @option{alpha_radius} default to the
6554 corresponding value set for @option{luma_radius}.
6555
6556 The expressions can contain the following constants:
6557 @table @option
6558 @item w
6559 @item h
6560 The input width and height in pixels.
6561
6562 @item cw
6563 @item ch
6564 The input chroma image width and height in pixels.
6565
6566 @item hsub
6567 @item vsub
6568 The horizontal and vertical chroma subsample values. For example, for the
6569 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6570 @end table
6571
6572 @item luma_power, lp
6573 @item chroma_power, cp
6574 @item alpha_power, ap
6575 Specify how many times the boxblur filter is applied to the
6576 corresponding plane.
6577
6578 Default value for @option{luma_power} is 2. If not specified,
6579 @option{chroma_power} and @option{alpha_power} default to the
6580 corresponding value set for @option{luma_power}.
6581
6582 A value of 0 will disable the effect.
6583 @end table
6584
6585 @subsection Examples
6586
6587 @itemize
6588 @item
6589 Apply a boxblur filter with the luma, chroma, and alpha radii
6590 set to 2:
6591 @example
6592 boxblur=luma_radius=2:luma_power=1
6593 boxblur=2:1
6594 @end example
6595
6596 @item
6597 Set the luma radius to 2, and alpha and chroma radius to 0:
6598 @example
6599 boxblur=2:1:cr=0:ar=0
6600 @end example
6601
6602 @item
6603 Set the luma and chroma radii to a fraction of the video dimension:
6604 @example
6605 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6606 @end example
6607 @end itemize
6608
6609 @section bwdif
6610
6611 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6612 Deinterlacing Filter").
6613
6614 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6615 interpolation algorithms.
6616 It accepts the following parameters:
6617
6618 @table @option
6619 @item mode
6620 The interlacing mode to adopt. It accepts one of the following values:
6621
6622 @table @option
6623 @item 0, send_frame
6624 Output one frame for each frame.
6625 @item 1, send_field
6626 Output one frame for each field.
6627 @end table
6628
6629 The default value is @code{send_field}.
6630
6631 @item parity
6632 The picture field parity assumed for the input interlaced video. It accepts one
6633 of the following values:
6634
6635 @table @option
6636 @item 0, tff
6637 Assume the top field is first.
6638 @item 1, bff
6639 Assume the bottom field is first.
6640 @item -1, auto
6641 Enable automatic detection of field parity.
6642 @end table
6643
6644 The default value is @code{auto}.
6645 If the interlacing is unknown or the decoder does not export this information,
6646 top field first will be assumed.
6647
6648 @item deint
6649 Specify which frames to deinterlace. Accepts one of the following
6650 values:
6651
6652 @table @option
6653 @item 0, all
6654 Deinterlace all frames.
6655 @item 1, interlaced
6656 Only deinterlace frames marked as interlaced.
6657 @end table
6658
6659 The default value is @code{all}.
6660 @end table
6661
6662 @section chromahold
6663 Remove all color information for all colors except for certain one.
6664
6665 The filter accepts the following options:
6666
6667 @table @option
6668 @item color
6669 The color which will not be replaced with neutral chroma.
6670
6671 @item similarity
6672 Similarity percentage with the above color.
6673 0.01 matches only the exact key color, while 1.0 matches everything.
6674
6675 @item blend
6676 Blend percentage.
6677 0.0 makes pixels either fully gray, or not gray at all.
6678 Higher values result in more preserved color.
6679
6680 @item yuv
6681 Signals that the color passed is already in YUV instead of RGB.
6682
6683 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6684 This can be used to pass exact YUV values as hexadecimal numbers.
6685 @end table
6686
6687 @section chromakey
6688 YUV colorspace color/chroma keying.
6689
6690 The filter accepts the following options:
6691
6692 @table @option
6693 @item color
6694 The color which will be replaced with transparency.
6695
6696 @item similarity
6697 Similarity percentage with the key color.
6698
6699 0.01 matches only the exact key color, while 1.0 matches everything.
6700
6701 @item blend
6702 Blend percentage.
6703
6704 0.0 makes pixels either fully transparent, or not transparent at all.
6705
6706 Higher values result in semi-transparent pixels, with a higher transparency
6707 the more similar the pixels color is to the key color.
6708
6709 @item yuv
6710 Signals that the color passed is already in YUV instead of RGB.
6711
6712 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6713 This can be used to pass exact YUV values as hexadecimal numbers.
6714 @end table
6715
6716 @subsection Examples
6717
6718 @itemize
6719 @item
6720 Make every green pixel in the input image transparent:
6721 @example
6722 ffmpeg -i input.png -vf chromakey=green out.png
6723 @end example
6724
6725 @item
6726 Overlay a greenscreen-video on top of a static black background.
6727 @example
6728 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
6729 @end example
6730 @end itemize
6731
6732 @section chromashift
6733 Shift chroma pixels horizontally and/or vertically.
6734
6735 The filter accepts the following options:
6736 @table @option
6737 @item cbh
6738 Set amount to shift chroma-blue horizontally.
6739 @item cbv
6740 Set amount to shift chroma-blue vertically.
6741 @item crh
6742 Set amount to shift chroma-red horizontally.
6743 @item crv
6744 Set amount to shift chroma-red vertically.
6745 @item edge
6746 Set edge mode, can be @var{smear}, default, or @var{warp}.
6747 @end table
6748
6749 @section ciescope
6750
6751 Display CIE color diagram with pixels overlaid onto it.
6752
6753 The filter accepts the following options:
6754
6755 @table @option
6756 @item system
6757 Set color system.
6758
6759 @table @samp
6760 @item ntsc, 470m
6761 @item ebu, 470bg
6762 @item smpte
6763 @item 240m
6764 @item apple
6765 @item widergb
6766 @item cie1931
6767 @item rec709, hdtv
6768 @item uhdtv, rec2020
6769 @item dcip3
6770 @end table
6771
6772 @item cie
6773 Set CIE system.
6774
6775 @table @samp
6776 @item xyy
6777 @item ucs
6778 @item luv
6779 @end table
6780
6781 @item gamuts
6782 Set what gamuts to draw.
6783
6784 See @code{system} option for available values.
6785
6786 @item size, s
6787 Set ciescope size, by default set to 512.
6788
6789 @item intensity, i
6790 Set intensity used to map input pixel values to CIE diagram.
6791
6792 @item contrast
6793 Set contrast used to draw tongue colors that are out of active color system gamut.
6794
6795 @item corrgamma
6796 Correct gamma displayed on scope, by default enabled.
6797
6798 @item showwhite
6799 Show white point on CIE diagram, by default disabled.
6800
6801 @item gamma
6802 Set input gamma. Used only with XYZ input color space.
6803 @end table
6804
6805 @section codecview
6806
6807 Visualize information exported by some codecs.
6808
6809 Some codecs can export information through frames using side-data or other
6810 means. For example, some MPEG based codecs export motion vectors through the
6811 @var{export_mvs} flag in the codec @option{flags2} option.
6812
6813 The filter accepts the following option:
6814
6815 @table @option
6816 @item mv
6817 Set motion vectors to visualize.
6818
6819 Available flags for @var{mv} are:
6820
6821 @table @samp
6822 @item pf
6823 forward predicted MVs of P-frames
6824 @item bf
6825 forward predicted MVs of B-frames
6826 @item bb
6827 backward predicted MVs of B-frames
6828 @end table
6829
6830 @item qp
6831 Display quantization parameters using the chroma planes.
6832
6833 @item mv_type, mvt
6834 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
6835
6836 Available flags for @var{mv_type} are:
6837
6838 @table @samp
6839 @item fp
6840 forward predicted MVs
6841 @item bp
6842 backward predicted MVs
6843 @end table
6844
6845 @item frame_type, ft
6846 Set frame type to visualize motion vectors of.
6847
6848 Available flags for @var{frame_type} are:
6849
6850 @table @samp
6851 @item if
6852 intra-coded frames (I-frames)
6853 @item pf
6854 predicted frames (P-frames)
6855 @item bf
6856 bi-directionally predicted frames (B-frames)
6857 @end table
6858 @end table
6859
6860 @subsection Examples
6861
6862 @itemize
6863 @item
6864 Visualize forward predicted MVs of all frames using @command{ffplay}:
6865 @example
6866 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
6867 @end example
6868
6869 @item
6870 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
6871 @example
6872 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
6873 @end example
6874 @end itemize
6875
6876 @section colorbalance
6877 Modify intensity of primary colors (red, green and blue) of input frames.
6878
6879 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
6880 regions for the red-cyan, green-magenta or blue-yellow balance.
6881
6882 A positive adjustment value shifts the balance towards the primary color, a negative
6883 value towards the complementary color.
6884
6885 The filter accepts the following options:
6886
6887 @table @option
6888 @item rs
6889 @item gs
6890 @item bs
6891 Adjust red, green and blue shadows (darkest pixels).
6892
6893 @item rm
6894 @item gm
6895 @item bm
6896 Adjust red, green and blue midtones (medium pixels).
6897
6898 @item rh
6899 @item gh
6900 @item bh
6901 Adjust red, green and blue highlights (brightest pixels).
6902
6903 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6904 @end table
6905
6906 @subsection Examples
6907
6908 @itemize
6909 @item
6910 Add red color cast to shadows:
6911 @example
6912 colorbalance=rs=.3
6913 @end example
6914 @end itemize
6915
6916 @section colorchannelmixer
6917
6918 Adjust video input frames by re-mixing color channels.
6919
6920 This filter modifies a color channel by adding the values associated to
6921 the other channels of the same pixels. For example if the value to
6922 modify is red, the output value will be:
6923 @example
6924 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
6925 @end example
6926
6927 The filter accepts the following options:
6928
6929 @table @option
6930 @item rr
6931 @item rg
6932 @item rb
6933 @item ra
6934 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6935 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6936
6937 @item gr
6938 @item gg
6939 @item gb
6940 @item ga
6941 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6942 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6943
6944 @item br
6945 @item bg
6946 @item bb
6947 @item ba
6948 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6949 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6950
6951 @item ar
6952 @item ag
6953 @item ab
6954 @item aa
6955 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
6956 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
6957
6958 Allowed ranges for options are @code{[-2.0, 2.0]}.
6959 @end table
6960
6961 @subsection Examples
6962
6963 @itemize
6964 @item
6965 Convert source to grayscale:
6966 @example
6967 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
6968 @end example
6969 @item
6970 Simulate sepia tones:
6971 @example
6972 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
6973 @end example
6974 @end itemize
6975
6976 @section colorkey
6977 RGB colorspace color keying.
6978
6979 The filter accepts the following options:
6980
6981 @table @option
6982 @item color
6983 The color which will be replaced with transparency.
6984
6985 @item similarity
6986 Similarity percentage with the key color.
6987
6988 0.01 matches only the exact key color, while 1.0 matches everything.
6989
6990 @item blend
6991 Blend percentage.
6992
6993 0.0 makes pixels either fully transparent, or not transparent at all.
6994
6995 Higher values result in semi-transparent pixels, with a higher transparency
6996 the more similar the pixels color is to the key color.
6997 @end table
6998
6999 @subsection Examples
7000
7001 @itemize
7002 @item
7003 Make every green pixel in the input image transparent:
7004 @example
7005 ffmpeg -i input.png -vf colorkey=green out.png
7006 @end example
7007
7008 @item
7009 Overlay a greenscreen-video on top of a static background image.
7010 @example
7011 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
7012 @end example
7013 @end itemize
7014
7015 @section colorhold
7016 Remove all color information for all RGB 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 gray.
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. 0.0 makes pixels fully gray.
7030 Higher values result in more preserved color.
7031 @end table
7032
7033 @section colorlevels
7034
7035 Adjust video input frames using levels.
7036
7037 The filter accepts the following options:
7038
7039 @table @option
7040 @item rimin
7041 @item gimin
7042 @item bimin
7043 @item aimin
7044 Adjust red, green, blue and alpha input black point.
7045 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7046
7047 @item rimax
7048 @item gimax
7049 @item bimax
7050 @item aimax
7051 Adjust red, green, blue and alpha input white point.
7052 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7053
7054 Input levels are used to lighten highlights (bright tones), darken shadows
7055 (dark tones), change the balance of bright and dark tones.
7056
7057 @item romin
7058 @item gomin
7059 @item bomin
7060 @item aomin
7061 Adjust red, green, blue and alpha output black point.
7062 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7063
7064 @item romax
7065 @item gomax
7066 @item bomax
7067 @item aomax
7068 Adjust red, green, blue and alpha output white point.
7069 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7070
7071 Output levels allows manual selection of a constrained output level range.
7072 @end table
7073
7074 @subsection Examples
7075
7076 @itemize
7077 @item
7078 Make video output darker:
7079 @example
7080 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7081 @end example
7082
7083 @item
7084 Increase contrast:
7085 @example
7086 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7087 @end example
7088
7089 @item
7090 Make video output lighter:
7091 @example
7092 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7093 @end example
7094
7095 @item
7096 Increase brightness:
7097 @example
7098 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7099 @end example
7100 @end itemize
7101
7102 @section colormatrix
7103
7104 Convert color matrix.
7105
7106 The filter accepts the following options:
7107
7108 @table @option
7109 @item src
7110 @item dst
7111 Specify the source and destination color matrix. Both values must be
7112 specified.
7113
7114 The accepted values are:
7115 @table @samp
7116 @item bt709
7117 BT.709
7118
7119 @item fcc
7120 FCC
7121
7122 @item bt601
7123 BT.601
7124
7125 @item bt470
7126 BT.470
7127
7128 @item bt470bg
7129 BT.470BG
7130
7131 @item smpte170m
7132 SMPTE-170M
7133
7134 @item smpte240m
7135 SMPTE-240M
7136
7137 @item bt2020
7138 BT.2020
7139 @end table
7140 @end table
7141
7142 For example to convert from BT.601 to SMPTE-240M, use the command:
7143 @example
7144 colormatrix=bt601:smpte240m
7145 @end example
7146
7147 @section colorspace
7148
7149 Convert colorspace, transfer characteristics or color primaries.
7150 Input video needs to have an even size.
7151
7152 The filter accepts the following options:
7153
7154 @table @option
7155 @anchor{all}
7156 @item all
7157 Specify all color properties at once.
7158
7159 The accepted values are:
7160 @table @samp
7161 @item bt470m
7162 BT.470M
7163
7164 @item bt470bg
7165 BT.470BG
7166
7167 @item bt601-6-525
7168 BT.601-6 525
7169
7170 @item bt601-6-625
7171 BT.601-6 625
7172
7173 @item bt709
7174 BT.709
7175
7176 @item smpte170m
7177 SMPTE-170M
7178
7179 @item smpte240m
7180 SMPTE-240M
7181
7182 @item bt2020
7183 BT.2020
7184
7185 @end table
7186
7187 @anchor{space}
7188 @item space
7189 Specify output colorspace.
7190
7191 The accepted values are:
7192 @table @samp
7193 @item bt709
7194 BT.709
7195
7196 @item fcc
7197 FCC
7198
7199 @item bt470bg
7200 BT.470BG or BT.601-6 625
7201
7202 @item smpte170m
7203 SMPTE-170M or BT.601-6 525
7204
7205 @item smpte240m
7206 SMPTE-240M
7207
7208 @item ycgco
7209 YCgCo
7210
7211 @item bt2020ncl
7212 BT.2020 with non-constant luminance
7213
7214 @end table
7215
7216 @anchor{trc}
7217 @item trc
7218 Specify output transfer characteristics.
7219
7220 The accepted values are:
7221 @table @samp
7222 @item bt709
7223 BT.709
7224
7225 @item bt470m
7226 BT.470M
7227
7228 @item bt470bg
7229 BT.470BG
7230
7231 @item gamma22
7232 Constant gamma of 2.2
7233
7234 @item gamma28
7235 Constant gamma of 2.8
7236
7237 @item smpte170m
7238 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7239
7240 @item smpte240m
7241 SMPTE-240M
7242
7243 @item srgb
7244 SRGB
7245
7246 @item iec61966-2-1
7247 iec61966-2-1
7248
7249 @item iec61966-2-4
7250 iec61966-2-4
7251
7252 @item xvycc
7253 xvycc
7254
7255 @item bt2020-10
7256 BT.2020 for 10-bits content
7257
7258 @item bt2020-12
7259 BT.2020 for 12-bits content
7260
7261 @end table
7262
7263 @anchor{primaries}
7264 @item primaries
7265 Specify output color primaries.
7266
7267 The accepted values are:
7268 @table @samp
7269 @item bt709
7270 BT.709
7271
7272 @item bt470m
7273 BT.470M
7274
7275 @item bt470bg
7276 BT.470BG or BT.601-6 625
7277
7278 @item smpte170m
7279 SMPTE-170M or BT.601-6 525
7280
7281 @item smpte240m
7282 SMPTE-240M
7283
7284 @item film
7285 film
7286
7287 @item smpte431
7288 SMPTE-431
7289
7290 @item smpte432
7291 SMPTE-432
7292
7293 @item bt2020
7294 BT.2020
7295
7296 @item jedec-p22
7297 JEDEC P22 phosphors
7298
7299 @end table
7300
7301 @anchor{range}
7302 @item range
7303 Specify output color range.
7304
7305 The accepted values are:
7306 @table @samp
7307 @item tv
7308 TV (restricted) range
7309
7310 @item mpeg
7311 MPEG (restricted) range
7312
7313 @item pc
7314 PC (full) range
7315
7316 @item jpeg
7317 JPEG (full) range
7318
7319 @end table
7320
7321 @item format
7322 Specify output color format.
7323
7324 The accepted values are:
7325 @table @samp
7326 @item yuv420p
7327 YUV 4:2:0 planar 8-bits
7328
7329 @item yuv420p10
7330 YUV 4:2:0 planar 10-bits
7331
7332 @item yuv420p12
7333 YUV 4:2:0 planar 12-bits
7334
7335 @item yuv422p
7336 YUV 4:2:2 planar 8-bits
7337
7338 @item yuv422p10
7339 YUV 4:2:2 planar 10-bits
7340
7341 @item yuv422p12
7342 YUV 4:2:2 planar 12-bits
7343
7344 @item yuv444p
7345 YUV 4:4:4 planar 8-bits
7346
7347 @item yuv444p10
7348 YUV 4:4:4 planar 10-bits
7349
7350 @item yuv444p12
7351 YUV 4:4:4 planar 12-bits
7352
7353 @end table
7354
7355 @item fast
7356 Do a fast conversion, which skips gamma/primary correction. This will take
7357 significantly less CPU, but will be mathematically incorrect. To get output
7358 compatible with that produced by the colormatrix filter, use fast=1.
7359
7360 @item dither
7361 Specify dithering mode.
7362
7363 The accepted values are:
7364 @table @samp
7365 @item none
7366 No dithering
7367
7368 @item fsb
7369 Floyd-Steinberg dithering
7370 @end table
7371
7372 @item wpadapt
7373 Whitepoint adaptation mode.
7374
7375 The accepted values are:
7376 @table @samp
7377 @item bradford
7378 Bradford whitepoint adaptation
7379
7380 @item vonkries
7381 von Kries whitepoint adaptation
7382
7383 @item identity
7384 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7385 @end table
7386
7387 @item iall
7388 Override all input properties at once. Same accepted values as @ref{all}.
7389
7390 @item ispace
7391 Override input colorspace. Same accepted values as @ref{space}.
7392
7393 @item iprimaries
7394 Override input color primaries. Same accepted values as @ref{primaries}.
7395
7396 @item itrc
7397 Override input transfer characteristics. Same accepted values as @ref{trc}.
7398
7399 @item irange
7400 Override input color range. Same accepted values as @ref{range}.
7401
7402 @end table
7403
7404 The filter converts the transfer characteristics, color space and color
7405 primaries to the specified user values. The output value, if not specified,
7406 is set to a default value based on the "all" property. If that property is
7407 also not specified, the filter will log an error. The output color range and
7408 format default to the same value as the input color range and format. The
7409 input transfer characteristics, color space, color primaries and color range
7410 should be set on the input data. If any of these are missing, the filter will
7411 log an error and no conversion will take place.
7412
7413 For example to convert the input to SMPTE-240M, use the command:
7414 @example
7415 colorspace=smpte240m
7416 @end example
7417
7418 @section convolution
7419
7420 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7421
7422 The filter accepts the following options:
7423
7424 @table @option
7425 @item 0m
7426 @item 1m
7427 @item 2m
7428 @item 3m
7429 Set matrix for each plane.
7430 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7431 and from 1 to 49 odd number of signed integers in @var{row} mode.
7432
7433 @item 0rdiv
7434 @item 1rdiv
7435 @item 2rdiv
7436 @item 3rdiv
7437 Set multiplier for calculated value for each plane.
7438 If unset or 0, it will be sum of all matrix elements.
7439
7440 @item 0bias
7441 @item 1bias
7442 @item 2bias
7443 @item 3bias
7444 Set bias for each plane. This value is added to the result of the multiplication.
7445 Useful for making the overall image brighter or darker. Default is 0.0.
7446
7447 @item 0mode
7448 @item 1mode
7449 @item 2mode
7450 @item 3mode
7451 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7452 Default is @var{square}.
7453 @end table
7454
7455 @subsection Examples
7456
7457 @itemize
7458 @item
7459 Apply sharpen:
7460 @example
7461 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"
7462 @end example
7463
7464 @item
7465 Apply blur:
7466 @example
7467 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"
7468 @end example
7469
7470 @item
7471 Apply edge enhance:
7472 @example
7473 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"
7474 @end example
7475
7476 @item
7477 Apply edge detect:
7478 @example
7479 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"
7480 @end example
7481
7482 @item
7483 Apply laplacian edge detector which includes diagonals:
7484 @example
7485 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"
7486 @end example
7487
7488 @item
7489 Apply emboss:
7490 @example
7491 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"
7492 @end example
7493 @end itemize
7494
7495 @section convolve
7496
7497 Apply 2D convolution of video stream in frequency domain using second stream
7498 as impulse.
7499
7500 The filter accepts the following options:
7501
7502 @table @option
7503 @item planes
7504 Set which planes to process.
7505
7506 @item impulse
7507 Set which impulse video frames will be processed, can be @var{first}
7508 or @var{all}. Default is @var{all}.
7509 @end table
7510
7511 The @code{convolve} filter also supports the @ref{framesync} options.
7512
7513 @section copy
7514
7515 Copy the input video source unchanged to the output. This is mainly useful for
7516 testing purposes.
7517
7518 @anchor{coreimage}
7519 @section coreimage
7520 Video filtering on GPU using Apple's CoreImage API on OSX.
7521
7522 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7523 processed by video hardware. However, software-based OpenGL implementations
7524 exist which means there is no guarantee for hardware processing. It depends on
7525 the respective OSX.
7526
7527 There are many filters and image generators provided by Apple that come with a
7528 large variety of options. The filter has to be referenced by its name along
7529 with its options.
7530
7531 The coreimage filter accepts the following options:
7532 @table @option
7533 @item list_filters
7534 List all available filters and generators along with all their respective
7535 options as well as possible minimum and maximum values along with the default
7536 values.
7537 @example
7538 list_filters=true
7539 @end example
7540
7541 @item filter
7542 Specify all filters by their respective name and options.
7543 Use @var{list_filters} to determine all valid filter names and options.
7544 Numerical options are specified by a float value and are automatically clamped
7545 to their respective value range.  Vector and color options have to be specified
7546 by a list of space separated float values. Character escaping has to be done.
7547 A special option name @code{default} is available to use default options for a
7548 filter.
7549
7550 It is required to specify either @code{default} or at least one of the filter options.
7551 All omitted options are used with their default values.
7552 The syntax of the filter string is as follows:
7553 @example
7554 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7555 @end example
7556
7557 @item output_rect
7558 Specify a rectangle where the output of the filter chain is copied into the
7559 input image. It is given by a list of space separated float values:
7560 @example
7561 output_rect=x\ y\ width\ height
7562 @end example
7563 If not given, the output rectangle equals the dimensions of the input image.
7564 The output rectangle is automatically cropped at the borders of the input
7565 image. Negative values are valid for each component.
7566 @example
7567 output_rect=25\ 25\ 100\ 100
7568 @end example
7569 @end table
7570
7571 Several filters can be chained for successive processing without GPU-HOST
7572 transfers allowing for fast processing of complex filter chains.
7573 Currently, only filters with zero (generators) or exactly one (filters) input
7574 image and one output image are supported. Also, transition filters are not yet
7575 usable as intended.
7576
7577 Some filters generate output images with additional padding depending on the
7578 respective filter kernel. The padding is automatically removed to ensure the
7579 filter output has the same size as the input image.
7580
7581 For image generators, the size of the output image is determined by the
7582 previous output image of the filter chain or the input image of the whole
7583 filterchain, respectively. The generators do not use the pixel information of
7584 this image to generate their output. However, the generated output is
7585 blended onto this image, resulting in partial or complete coverage of the
7586 output image.
7587
7588 The @ref{coreimagesrc} video source can be used for generating input images
7589 which are directly fed into the filter chain. By using it, providing input
7590 images by another video source or an input video is not required.
7591
7592 @subsection Examples
7593
7594 @itemize
7595
7596 @item
7597 List all filters available:
7598 @example
7599 coreimage=list_filters=true
7600 @end example
7601
7602 @item
7603 Use the CIBoxBlur filter with default options to blur an image:
7604 @example
7605 coreimage=filter=CIBoxBlur@@default
7606 @end example
7607
7608 @item
7609 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7610 its center at 100x100 and a radius of 50 pixels:
7611 @example
7612 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7613 @end example
7614
7615 @item
7616 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7617 given as complete and escaped command-line for Apple's standard bash shell:
7618 @example
7619 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7620 @end example
7621 @end itemize
7622
7623 @section cover_rect
7624
7625 Cover a rectangular object
7626
7627 It accepts the following options:
7628
7629 @table @option
7630 @item cover
7631 Filepath of the optional cover image, needs to be in yuv420.
7632
7633 @item mode
7634 Set covering mode.
7635
7636 It accepts the following values:
7637 @table @samp
7638 @item cover
7639 cover it by the supplied image
7640 @item blur
7641 cover it by interpolating the surrounding pixels
7642 @end table
7643
7644 Default value is @var{blur}.
7645 @end table
7646
7647 @subsection Examples
7648
7649 @itemize
7650 @item
7651 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
7652 @example
7653 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7654 @end example
7655 @end itemize
7656
7657 @section crop
7658
7659 Crop the input video to given dimensions.
7660
7661 It accepts the following parameters:
7662
7663 @table @option
7664 @item w, out_w
7665 The width of the output video. It defaults to @code{iw}.
7666 This expression is evaluated only once during the filter
7667 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7668
7669 @item h, out_h
7670 The height of the output video. It defaults to @code{ih}.
7671 This expression is evaluated only once during the filter
7672 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7673
7674 @item x
7675 The horizontal position, in the input video, of the left edge of the output
7676 video. It defaults to @code{(in_w-out_w)/2}.
7677 This expression is evaluated per-frame.
7678
7679 @item y
7680 The vertical position, in the input video, of the top edge of the output video.
7681 It defaults to @code{(in_h-out_h)/2}.
7682 This expression is evaluated per-frame.
7683
7684 @item keep_aspect
7685 If set to 1 will force the output display aspect ratio
7686 to be the same of the input, by changing the output sample aspect
7687 ratio. It defaults to 0.
7688
7689 @item exact
7690 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7691 width/height/x/y as specified and will not be rounded to nearest smaller value.
7692 It defaults to 0.
7693 @end table
7694
7695 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7696 expressions containing the following constants:
7697
7698 @table @option
7699 @item x
7700 @item y
7701 The computed values for @var{x} and @var{y}. They are evaluated for
7702 each new frame.
7703
7704 @item in_w
7705 @item in_h
7706 The input width and height.
7707
7708 @item iw
7709 @item ih
7710 These are the same as @var{in_w} and @var{in_h}.
7711
7712 @item out_w
7713 @item out_h
7714 The output (cropped) width and height.
7715
7716 @item ow
7717 @item oh
7718 These are the same as @var{out_w} and @var{out_h}.
7719
7720 @item a
7721 same as @var{iw} / @var{ih}
7722
7723 @item sar
7724 input sample aspect ratio
7725
7726 @item dar
7727 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7728
7729 @item hsub
7730 @item vsub
7731 horizontal and vertical chroma subsample values. For example for the
7732 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7733
7734 @item n
7735 The number of the input frame, starting from 0.
7736
7737 @item pos
7738 the position in the file of the input frame, NAN if unknown
7739
7740 @item t
7741 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
7742
7743 @end table
7744
7745 The expression for @var{out_w} may depend on the value of @var{out_h},
7746 and the expression for @var{out_h} may depend on @var{out_w}, but they
7747 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
7748 evaluated after @var{out_w} and @var{out_h}.
7749
7750 The @var{x} and @var{y} parameters specify the expressions for the
7751 position of the top-left corner of the output (non-cropped) area. They
7752 are evaluated for each frame. If the evaluated value is not valid, it
7753 is approximated to the nearest valid value.
7754
7755 The expression for @var{x} may depend on @var{y}, and the expression
7756 for @var{y} may depend on @var{x}.
7757
7758 @subsection Examples
7759
7760 @itemize
7761 @item
7762 Crop area with size 100x100 at position (12,34).
7763 @example
7764 crop=100:100:12:34
7765 @end example
7766
7767 Using named options, the example above becomes:
7768 @example
7769 crop=w=100:h=100:x=12:y=34
7770 @end example
7771
7772 @item
7773 Crop the central input area with size 100x100:
7774 @example
7775 crop=100:100
7776 @end example
7777
7778 @item
7779 Crop the central input area with size 2/3 of the input video:
7780 @example
7781 crop=2/3*in_w:2/3*in_h
7782 @end example
7783
7784 @item
7785 Crop the input video central square:
7786 @example
7787 crop=out_w=in_h
7788 crop=in_h
7789 @end example
7790
7791 @item
7792 Delimit the rectangle with the top-left corner placed at position
7793 100:100 and the right-bottom corner corresponding to the right-bottom
7794 corner of the input image.
7795 @example
7796 crop=in_w-100:in_h-100:100:100
7797 @end example
7798
7799 @item
7800 Crop 10 pixels from the left and right borders, and 20 pixels from
7801 the top and bottom borders
7802 @example
7803 crop=in_w-2*10:in_h-2*20
7804 @end example
7805
7806 @item
7807 Keep only the bottom right quarter of the input image:
7808 @example
7809 crop=in_w/2:in_h/2:in_w/2:in_h/2
7810 @end example
7811
7812 @item
7813 Crop height for getting Greek harmony:
7814 @example
7815 crop=in_w:1/PHI*in_w
7816 @end example
7817
7818 @item
7819 Apply trembling effect:
7820 @example
7821 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)
7822 @end example
7823
7824 @item
7825 Apply erratic camera effect depending on timestamp:
7826 @example
7827 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)"
7828 @end example
7829
7830 @item
7831 Set x depending on the value of y:
7832 @example
7833 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
7834 @end example
7835 @end itemize
7836
7837 @subsection Commands
7838
7839 This filter supports the following commands:
7840 @table @option
7841 @item w, out_w
7842 @item h, out_h
7843 @item x
7844 @item y
7845 Set width/height of the output video and the horizontal/vertical position
7846 in the input video.
7847 The command accepts the same syntax of the corresponding option.
7848
7849 If the specified expression is not valid, it is kept at its current
7850 value.
7851 @end table
7852
7853 @section cropdetect
7854
7855 Auto-detect the crop size.
7856
7857 It calculates the necessary cropping parameters and prints the
7858 recommended parameters via the logging system. The detected dimensions
7859 correspond to the non-black area of the input video.
7860
7861 It accepts the following parameters:
7862
7863 @table @option
7864
7865 @item limit
7866 Set higher black value threshold, which can be optionally specified
7867 from nothing (0) to everything (255 for 8-bit based formats). An intensity
7868 value greater to the set value is considered non-black. It defaults to 24.
7869 You can also specify a value between 0.0 and 1.0 which will be scaled depending
7870 on the bitdepth of the pixel format.
7871
7872 @item round
7873 The value which the width/height should be divisible by. It defaults to
7874 16. The offset is automatically adjusted to center the video. Use 2 to
7875 get only even dimensions (needed for 4:2:2 video). 16 is best when
7876 encoding to most video codecs.
7877
7878 @item reset_count, reset
7879 Set the counter that determines after how many frames cropdetect will
7880 reset the previously detected largest video area and start over to
7881 detect the current optimal crop area. Default value is 0.
7882
7883 This can be useful when channel logos distort the video area. 0
7884 indicates 'never reset', and returns the largest area encountered during
7885 playback.
7886 @end table
7887
7888 @anchor{cue}
7889 @section cue
7890
7891 Delay video filtering until a given wallclock timestamp. The filter first
7892 passes on @option{preroll} amount of frames, then it buffers at most
7893 @option{buffer} amount of frames and waits for the cue. After reaching the cue
7894 it forwards the buffered frames and also any subsequent frames coming in its
7895 input.
7896
7897 The filter can be used synchronize the output of multiple ffmpeg processes for
7898 realtime output devices like decklink. By putting the delay in the filtering
7899 chain and pre-buffering frames the process can pass on data to output almost
7900 immediately after the target wallclock timestamp is reached.
7901
7902 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
7903 some use cases.
7904
7905 @table @option
7906
7907 @item cue
7908 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
7909
7910 @item preroll
7911 The duration of content to pass on as preroll expressed in seconds. Default is 0.
7912
7913 @item buffer
7914 The maximum duration of content to buffer before waiting for the cue expressed
7915 in seconds. Default is 0.
7916
7917 @end table
7918
7919 @anchor{curves}
7920 @section curves
7921
7922 Apply color adjustments using curves.
7923
7924 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
7925 component (red, green and blue) has its values defined by @var{N} key points
7926 tied from each other using a smooth curve. The x-axis represents the pixel
7927 values from the input frame, and the y-axis the new pixel values to be set for
7928 the output frame.
7929
7930 By default, a component curve is defined by the two points @var{(0;0)} and
7931 @var{(1;1)}. This creates a straight line where each original pixel value is
7932 "adjusted" to its own value, which means no change to the image.
7933
7934 The filter allows you to redefine these two points and add some more. A new
7935 curve (using a natural cubic spline interpolation) will be define to pass
7936 smoothly through all these new coordinates. The new defined points needs to be
7937 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
7938 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
7939 the vector spaces, the values will be clipped accordingly.
7940
7941 The filter accepts the following options:
7942
7943 @table @option
7944 @item preset
7945 Select one of the available color presets. This option can be used in addition
7946 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
7947 options takes priority on the preset values.
7948 Available presets are:
7949 @table @samp
7950 @item none
7951 @item color_negative
7952 @item cross_process
7953 @item darker
7954 @item increase_contrast
7955 @item lighter
7956 @item linear_contrast
7957 @item medium_contrast
7958 @item negative
7959 @item strong_contrast
7960 @item vintage
7961 @end table
7962 Default is @code{none}.
7963 @item master, m
7964 Set the master key points. These points will define a second pass mapping. It
7965 is sometimes called a "luminance" or "value" mapping. It can be used with
7966 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
7967 post-processing LUT.
7968 @item red, r
7969 Set the key points for the red component.
7970 @item green, g
7971 Set the key points for the green component.
7972 @item blue, b
7973 Set the key points for the blue component.
7974 @item all
7975 Set the key points for all components (not including master).
7976 Can be used in addition to the other key points component
7977 options. In this case, the unset component(s) will fallback on this
7978 @option{all} setting.
7979 @item psfile
7980 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
7981 @item plot
7982 Save Gnuplot script of the curves in specified file.
7983 @end table
7984
7985 To avoid some filtergraph syntax conflicts, each key points list need to be
7986 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
7987
7988 @subsection Examples
7989
7990 @itemize
7991 @item
7992 Increase slightly the middle level of blue:
7993 @example
7994 curves=blue='0/0 0.5/0.58 1/1'
7995 @end example
7996
7997 @item
7998 Vintage effect:
7999 @example
8000 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'
8001 @end example
8002 Here we obtain the following coordinates for each components:
8003 @table @var
8004 @item red
8005 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8006 @item green
8007 @code{(0;0) (0.50;0.48) (1;1)}
8008 @item blue
8009 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8010 @end table
8011
8012 @item
8013 The previous example can also be achieved with the associated built-in preset:
8014 @example
8015 curves=preset=vintage
8016 @end example
8017
8018 @item
8019 Or simply:
8020 @example
8021 curves=vintage
8022 @end example
8023
8024 @item
8025 Use a Photoshop preset and redefine the points of the green component:
8026 @example
8027 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8028 @end example
8029
8030 @item
8031 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8032 and @command{gnuplot}:
8033 @example
8034 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8035 gnuplot -p /tmp/curves.plt
8036 @end example
8037 @end itemize
8038
8039 @section datascope
8040
8041 Video data analysis filter.
8042
8043 This filter shows hexadecimal pixel values of part of video.
8044
8045 The filter accepts the following options:
8046
8047 @table @option
8048 @item size, s
8049 Set output video size.
8050
8051 @item x
8052 Set x offset from where to pick pixels.
8053
8054 @item y
8055 Set y offset from where to pick pixels.
8056
8057 @item mode
8058 Set scope mode, can be one of the following:
8059 @table @samp
8060 @item mono
8061 Draw hexadecimal pixel values with white color on black background.
8062
8063 @item color
8064 Draw hexadecimal pixel values with input video pixel color on black
8065 background.
8066
8067 @item color2
8068 Draw hexadecimal pixel values on color background picked from input video,
8069 the text color is picked in such way so its always visible.
8070 @end table
8071
8072 @item axis
8073 Draw rows and columns numbers on left and top of video.
8074
8075 @item opacity
8076 Set background opacity.
8077 @end table
8078
8079 @section dctdnoiz
8080
8081 Denoise frames using 2D DCT (frequency domain filtering).
8082
8083 This filter is not designed for real time.
8084
8085 The filter accepts the following options:
8086
8087 @table @option
8088 @item sigma, s
8089 Set the noise sigma constant.
8090
8091 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8092 coefficient (absolute value) below this threshold with be dropped.
8093
8094 If you need a more advanced filtering, see @option{expr}.
8095
8096 Default is @code{0}.
8097
8098 @item overlap
8099 Set number overlapping pixels for each block. Since the filter can be slow, you
8100 may want to reduce this value, at the cost of a less effective filter and the
8101 risk of various artefacts.
8102
8103 If the overlapping value doesn't permit processing the whole input width or
8104 height, a warning will be displayed and according borders won't be denoised.
8105
8106 Default value is @var{blocksize}-1, which is the best possible setting.
8107
8108 @item expr, e
8109 Set the coefficient factor expression.
8110
8111 For each coefficient of a DCT block, this expression will be evaluated as a
8112 multiplier value for the coefficient.
8113
8114 If this is option is set, the @option{sigma} option will be ignored.
8115
8116 The absolute value of the coefficient can be accessed through the @var{c}
8117 variable.
8118
8119 @item n
8120 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8121 @var{blocksize}, which is the width and height of the processed blocks.
8122
8123 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8124 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8125 on the speed processing. Also, a larger block size does not necessarily means a
8126 better de-noising.
8127 @end table
8128
8129 @subsection Examples
8130
8131 Apply a denoise with a @option{sigma} of @code{4.5}:
8132 @example
8133 dctdnoiz=4.5
8134 @end example
8135
8136 The same operation can be achieved using the expression system:
8137 @example
8138 dctdnoiz=e='gte(c, 4.5*3)'
8139 @end example
8140
8141 Violent denoise using a block size of @code{16x16}:
8142 @example
8143 dctdnoiz=15:n=4
8144 @end example
8145
8146 @section deband
8147
8148 Remove banding artifacts from input video.
8149 It works by replacing banded pixels with average value of referenced pixels.
8150
8151 The filter accepts the following options:
8152
8153 @table @option
8154 @item 1thr
8155 @item 2thr
8156 @item 3thr
8157 @item 4thr
8158 Set banding detection threshold for each plane. Default is 0.02.
8159 Valid range is 0.00003 to 0.5.
8160 If difference between current pixel and reference pixel is less than threshold,
8161 it will be considered as banded.
8162
8163 @item range, r
8164 Banding detection range in pixels. Default is 16. If positive, random number
8165 in range 0 to set value will be used. If negative, exact absolute value
8166 will be used.
8167 The range defines square of four pixels around current pixel.
8168
8169 @item direction, d
8170 Set direction in radians from which four pixel will be compared. If positive,
8171 random direction from 0 to set direction will be picked. If negative, exact of
8172 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8173 will pick only pixels on same row and -PI/2 will pick only pixels on same
8174 column.
8175
8176 @item blur, b
8177 If enabled, current pixel is compared with average value of all four
8178 surrounding pixels. The default is enabled. If disabled current pixel is
8179 compared with all four surrounding pixels. The pixel is considered banded
8180 if only all four differences with surrounding pixels are less than threshold.
8181
8182 @item coupling, c
8183 If enabled, current pixel is changed if and only if all pixel components are banded,
8184 e.g. banding detection threshold is triggered for all color components.
8185 The default is disabled.
8186 @end table
8187
8188 @section deblock
8189
8190 Remove blocking artifacts from input video.
8191
8192 The filter accepts the following options:
8193
8194 @table @option
8195 @item filter
8196 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8197 This controls what kind of deblocking is applied.
8198
8199 @item block
8200 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8201
8202 @item alpha
8203 @item beta
8204 @item gamma
8205 @item delta
8206 Set blocking detection thresholds. Allowed range is 0 to 1.
8207 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8208 Using higher threshold gives more deblocking strength.
8209 Setting @var{alpha} controls threshold detection at exact edge of block.
8210 Remaining options controls threshold detection near the edge. Each one for
8211 below/above or left/right. Setting any of those to @var{0} disables
8212 deblocking.
8213
8214 @item planes
8215 Set planes to filter. Default is to filter all available planes.
8216 @end table
8217
8218 @subsection Examples
8219
8220 @itemize
8221 @item
8222 Deblock using weak filter and block size of 4 pixels.
8223 @example
8224 deblock=filter=weak:block=4
8225 @end example
8226
8227 @item
8228 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8229 deblocking more edges.
8230 @example
8231 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8232 @end example
8233
8234 @item
8235 Similar as above, but filter only first plane.
8236 @example
8237 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8238 @end example
8239
8240 @item
8241 Similar as above, but filter only second and third plane.
8242 @example
8243 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8244 @end example
8245 @end itemize
8246
8247 @anchor{decimate}
8248 @section decimate
8249
8250 Drop duplicated frames at regular intervals.
8251
8252 The filter accepts the following options:
8253
8254 @table @option
8255 @item cycle
8256 Set the number of frames from which one will be dropped. Setting this to
8257 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8258 Default is @code{5}.
8259
8260 @item dupthresh
8261 Set the threshold for duplicate detection. If the difference metric for a frame
8262 is less than or equal to this value, then it is declared as duplicate. Default
8263 is @code{1.1}
8264
8265 @item scthresh
8266 Set scene change threshold. Default is @code{15}.
8267
8268 @item blockx
8269 @item blocky
8270 Set the size of the x and y-axis blocks used during metric calculations.
8271 Larger blocks give better noise suppression, but also give worse detection of
8272 small movements. Must be a power of two. Default is @code{32}.
8273
8274 @item ppsrc
8275 Mark main input as a pre-processed input and activate clean source input
8276 stream. This allows the input to be pre-processed with various filters to help
8277 the metrics calculation while keeping the frame selection lossless. When set to
8278 @code{1}, the first stream is for the pre-processed input, and the second
8279 stream is the clean source from where the kept frames are chosen. Default is
8280 @code{0}.
8281
8282 @item chroma
8283 Set whether or not chroma is considered in the metric calculations. Default is
8284 @code{1}.
8285 @end table
8286
8287 @section deconvolve
8288
8289 Apply 2D deconvolution of video stream in frequency domain using second stream
8290 as impulse.
8291
8292 The filter accepts the following options:
8293
8294 @table @option
8295 @item planes
8296 Set which planes to process.
8297
8298 @item impulse
8299 Set which impulse video frames will be processed, can be @var{first}
8300 or @var{all}. Default is @var{all}.
8301
8302 @item noise
8303 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8304 and height are not same and not power of 2 or if stream prior to convolving
8305 had noise.
8306 @end table
8307
8308 The @code{deconvolve} filter also supports the @ref{framesync} options.
8309
8310 @section dedot
8311
8312 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8313
8314 It accepts the following options:
8315
8316 @table @option
8317 @item m
8318 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8319 @var{rainbows} for cross-color reduction.
8320
8321 @item lt
8322 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8323
8324 @item tl
8325 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8326
8327 @item tc
8328 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8329
8330 @item ct
8331 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8332 @end table
8333
8334 @section deflate
8335
8336 Apply deflate effect to the video.
8337
8338 This filter replaces the pixel by the local(3x3) average by taking into account
8339 only values lower than the pixel.
8340
8341 It accepts the following options:
8342
8343 @table @option
8344 @item threshold0
8345 @item threshold1
8346 @item threshold2
8347 @item threshold3
8348 Limit the maximum change for each plane, default is 65535.
8349 If 0, plane will remain unchanged.
8350 @end table
8351
8352 @section deflicker
8353
8354 Remove temporal frame luminance variations.
8355
8356 It accepts the following options:
8357
8358 @table @option
8359 @item size, s
8360 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8361
8362 @item mode, m
8363 Set averaging mode to smooth temporal luminance variations.
8364
8365 Available values are:
8366 @table @samp
8367 @item am
8368 Arithmetic mean
8369
8370 @item gm
8371 Geometric mean
8372
8373 @item hm
8374 Harmonic mean
8375
8376 @item qm
8377 Quadratic mean
8378
8379 @item cm
8380 Cubic mean
8381
8382 @item pm
8383 Power mean
8384
8385 @item median
8386 Median
8387 @end table
8388
8389 @item bypass
8390 Do not actually modify frame. Useful when one only wants metadata.
8391 @end table
8392
8393 @section dejudder
8394
8395 Remove judder produced by partially interlaced telecined content.
8396
8397 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8398 source was partially telecined content then the output of @code{pullup,dejudder}
8399 will have a variable frame rate. May change the recorded frame rate of the
8400 container. Aside from that change, this filter will not affect constant frame
8401 rate video.
8402
8403 The option available in this filter is:
8404 @table @option
8405
8406 @item cycle
8407 Specify the length of the window over which the judder repeats.
8408
8409 Accepts any integer greater than 1. Useful values are:
8410 @table @samp
8411
8412 @item 4
8413 If the original was telecined from 24 to 30 fps (Film to NTSC).
8414
8415 @item 5
8416 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8417
8418 @item 20
8419 If a mixture of the two.
8420 @end table
8421
8422 The default is @samp{4}.
8423 @end table
8424
8425 @section delogo
8426
8427 Suppress a TV station logo by a simple interpolation of the surrounding
8428 pixels. Just set a rectangle covering the logo and watch it disappear
8429 (and sometimes something even uglier appear - your mileage may vary).
8430
8431 It accepts the following parameters:
8432 @table @option
8433
8434 @item x
8435 @item y
8436 Specify the top left corner coordinates of the logo. They must be
8437 specified.
8438
8439 @item w
8440 @item h
8441 Specify the width and height of the logo to clear. They must be
8442 specified.
8443
8444 @item band, t
8445 Specify the thickness of the fuzzy edge of the rectangle (added to
8446 @var{w} and @var{h}). The default value is 1. This option is
8447 deprecated, setting higher values should no longer be necessary and
8448 is not recommended.
8449
8450 @item show
8451 When set to 1, a green rectangle is drawn on the screen to simplify
8452 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8453 The default value is 0.
8454
8455 The rectangle is drawn on the outermost pixels which will be (partly)
8456 replaced with interpolated values. The values of the next pixels
8457 immediately outside this rectangle in each direction will be used to
8458 compute the interpolated pixel values inside the rectangle.
8459
8460 @end table
8461
8462 @subsection Examples
8463
8464 @itemize
8465 @item
8466 Set a rectangle covering the area with top left corner coordinates 0,0
8467 and size 100x77, and a band of size 10:
8468 @example
8469 delogo=x=0:y=0:w=100:h=77:band=10
8470 @end example
8471
8472 @end itemize
8473
8474 @section derain
8475
8476 Remove the rain in the input image/video by applying the derain methods based on
8477 convolutional neural networks. Supported models:
8478
8479 @itemize
8480 @item
8481 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8482 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8483 @end itemize
8484
8485 Training as well as model generation scripts are provided in
8486 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8487
8488 Native model files (.model) can be generated from TensorFlow model
8489 files (.pb) by using tools/python/convert.py
8490
8491 The filter accepts the following options:
8492
8493 @table @option
8494 @item filter_type
8495 Specify which filter to use. This option accepts the following values:
8496
8497 @table @samp
8498 @item derain
8499 Derain filter. To conduct derain filter, you need to use a derain model.
8500
8501 @item dehaze
8502 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8503 @end table
8504 Default value is @samp{derain}.
8505
8506 @item dnn_backend
8507 Specify which DNN backend to use for model loading and execution. This option accepts
8508 the following values:
8509
8510 @table @samp
8511 @item native
8512 Native implementation of DNN loading and execution.
8513
8514 @item tensorflow
8515 TensorFlow backend. To enable this backend you
8516 need to install the TensorFlow for C library (see
8517 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8518 @code{--enable-libtensorflow}
8519 @end table
8520 Default value is @samp{native}.
8521
8522 @item model
8523 Set path to model file specifying network architecture and its parameters.
8524 Note that different backends use different file formats. TensorFlow and native
8525 backend can load files for only its format.
8526 @end table
8527
8528 @section deshake
8529
8530 Attempt to fix small changes in horizontal and/or vertical shift. This
8531 filter helps remove camera shake from hand-holding a camera, bumping a
8532 tripod, moving on a vehicle, etc.
8533
8534 The filter accepts the following options:
8535
8536 @table @option
8537
8538 @item x
8539 @item y
8540 @item w
8541 @item h
8542 Specify a rectangular area where to limit the search for motion
8543 vectors.
8544 If desired the search for motion vectors can be limited to a
8545 rectangular area of the frame defined by its top left corner, width
8546 and height. These parameters have the same meaning as the drawbox
8547 filter which can be used to visualise the position of the bounding
8548 box.
8549
8550 This is useful when simultaneous movement of subjects within the frame
8551 might be confused for camera motion by the motion vector search.
8552
8553 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8554 then the full frame is used. This allows later options to be set
8555 without specifying the bounding box for the motion vector search.
8556
8557 Default - search the whole frame.
8558
8559 @item rx
8560 @item ry
8561 Specify the maximum extent of movement in x and y directions in the
8562 range 0-64 pixels. Default 16.
8563
8564 @item edge
8565 Specify how to generate pixels to fill blanks at the edge of the
8566 frame. Available values are:
8567 @table @samp
8568 @item blank, 0
8569 Fill zeroes at blank locations
8570 @item original, 1
8571 Original image at blank locations
8572 @item clamp, 2
8573 Extruded edge value at blank locations
8574 @item mirror, 3
8575 Mirrored edge at blank locations
8576 @end table
8577 Default value is @samp{mirror}.
8578
8579 @item blocksize
8580 Specify the blocksize to use for motion search. Range 4-128 pixels,
8581 default 8.
8582
8583 @item contrast
8584 Specify the contrast threshold for blocks. Only blocks with more than
8585 the specified contrast (difference between darkest and lightest
8586 pixels) will be considered. Range 1-255, default 125.
8587
8588 @item search
8589 Specify the search strategy. Available values are:
8590 @table @samp
8591 @item exhaustive, 0
8592 Set exhaustive search
8593 @item less, 1
8594 Set less exhaustive search.
8595 @end table
8596 Default value is @samp{exhaustive}.
8597
8598 @item filename
8599 If set then a detailed log of the motion search is written to the
8600 specified file.
8601
8602 @end table
8603
8604 @section despill
8605
8606 Remove unwanted contamination of foreground colors, caused by reflected color of
8607 greenscreen or bluescreen.
8608
8609 This filter accepts the following options:
8610
8611 @table @option
8612 @item type
8613 Set what type of despill to use.
8614
8615 @item mix
8616 Set how spillmap will be generated.
8617
8618 @item expand
8619 Set how much to get rid of still remaining spill.
8620
8621 @item red
8622 Controls amount of red in spill area.
8623
8624 @item green
8625 Controls amount of green in spill area.
8626 Should be -1 for greenscreen.
8627
8628 @item blue
8629 Controls amount of blue in spill area.
8630 Should be -1 for bluescreen.
8631
8632 @item brightness
8633 Controls brightness of spill area, preserving colors.
8634
8635 @item alpha
8636 Modify alpha from generated spillmap.
8637 @end table
8638
8639 @section detelecine
8640
8641 Apply an exact inverse of the telecine operation. It requires a predefined
8642 pattern specified using the pattern option which must be the same as that passed
8643 to the telecine filter.
8644
8645 This filter accepts the following options:
8646
8647 @table @option
8648 @item first_field
8649 @table @samp
8650 @item top, t
8651 top field first
8652 @item bottom, b
8653 bottom field first
8654 The default value is @code{top}.
8655 @end table
8656
8657 @item pattern
8658 A string of numbers representing the pulldown pattern you wish to apply.
8659 The default value is @code{23}.
8660
8661 @item start_frame
8662 A number representing position of the first frame with respect to the telecine
8663 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8664 @end table
8665
8666 @section dilation
8667
8668 Apply dilation effect to the video.
8669
8670 This filter replaces the pixel by the local(3x3) maximum.
8671
8672 It accepts the following options:
8673
8674 @table @option
8675 @item threshold0
8676 @item threshold1
8677 @item threshold2
8678 @item threshold3
8679 Limit the maximum change for each plane, default is 65535.
8680 If 0, plane will remain unchanged.
8681
8682 @item coordinates
8683 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8684 pixels are used.
8685
8686 Flags to local 3x3 coordinates maps like this:
8687
8688     1 2 3
8689     4   5
8690     6 7 8
8691 @end table
8692
8693 @section displace
8694
8695 Displace pixels as indicated by second and third input stream.
8696
8697 It takes three input streams and outputs one stream, the first input is the
8698 source, and second and third input are displacement maps.
8699
8700 The second input specifies how much to displace pixels along the
8701 x-axis, while the third input specifies how much to displace pixels
8702 along the y-axis.
8703 If one of displacement map streams terminates, last frame from that
8704 displacement map will be used.
8705
8706 Note that once generated, displacements maps can be reused over and over again.
8707
8708 A description of the accepted options follows.
8709
8710 @table @option
8711 @item edge
8712 Set displace behavior for pixels that are out of range.
8713
8714 Available values are:
8715 @table @samp
8716 @item blank
8717 Missing pixels are replaced by black pixels.
8718
8719 @item smear
8720 Adjacent pixels will spread out to replace missing pixels.
8721
8722 @item wrap
8723 Out of range pixels are wrapped so they point to pixels of other side.
8724
8725 @item mirror
8726 Out of range pixels will be replaced with mirrored pixels.
8727 @end table
8728 Default is @samp{smear}.
8729
8730 @end table
8731
8732 @subsection Examples
8733
8734 @itemize
8735 @item
8736 Add ripple effect to rgb input of video size hd720:
8737 @example
8738 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
8739 @end example
8740
8741 @item
8742 Add wave effect to rgb input of video size hd720:
8743 @example
8744 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
8745 @end example
8746 @end itemize
8747
8748 @section drawbox
8749
8750 Draw a colored box on the input image.
8751
8752 It accepts the following parameters:
8753
8754 @table @option
8755 @item x
8756 @item y
8757 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
8758
8759 @item width, w
8760 @item height, h
8761 The expressions which specify the width and height of the box; if 0 they are interpreted as
8762 the input width and height. It defaults to 0.
8763
8764 @item color, c
8765 Specify the color of the box to write. For the general syntax of this option,
8766 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8767 value @code{invert} is used, the box edge color is the same as the
8768 video with inverted luma.
8769
8770 @item thickness, t
8771 The expression which sets the thickness of the box edge.
8772 A value of @code{fill} will create a filled box. Default value is @code{3}.
8773
8774 See below for the list of accepted constants.
8775
8776 @item replace
8777 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
8778 will overwrite the video's color and alpha pixels.
8779 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
8780 @end table
8781
8782 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8783 following constants:
8784
8785 @table @option
8786 @item dar
8787 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8788
8789 @item hsub
8790 @item vsub
8791 horizontal and vertical chroma subsample values. For example for the
8792 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8793
8794 @item in_h, ih
8795 @item in_w, iw
8796 The input width and height.
8797
8798 @item sar
8799 The input sample aspect ratio.
8800
8801 @item x
8802 @item y
8803 The x and y offset coordinates where the box is drawn.
8804
8805 @item w
8806 @item h
8807 The width and height of the drawn box.
8808
8809 @item t
8810 The thickness of the drawn box.
8811
8812 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8813 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8814
8815 @end table
8816
8817 @subsection Examples
8818
8819 @itemize
8820 @item
8821 Draw a black box around the edge of the input image:
8822 @example
8823 drawbox
8824 @end example
8825
8826 @item
8827 Draw a box with color red and an opacity of 50%:
8828 @example
8829 drawbox=10:20:200:60:red@@0.5
8830 @end example
8831
8832 The previous example can be specified as:
8833 @example
8834 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
8835 @end example
8836
8837 @item
8838 Fill the box with pink color:
8839 @example
8840 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
8841 @end example
8842
8843 @item
8844 Draw a 2-pixel red 2.40:1 mask:
8845 @example
8846 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
8847 @end example
8848 @end itemize
8849
8850 @section drawgrid
8851
8852 Draw a grid on the input image.
8853
8854 It accepts the following parameters:
8855
8856 @table @option
8857 @item x
8858 @item y
8859 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
8860
8861 @item width, w
8862 @item height, h
8863 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
8864 input width and height, respectively, minus @code{thickness}, so image gets
8865 framed. Default to 0.
8866
8867 @item color, c
8868 Specify the color of the grid. For the general syntax of this option,
8869 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8870 value @code{invert} is used, the grid color is the same as the
8871 video with inverted luma.
8872
8873 @item thickness, t
8874 The expression which sets the thickness of the grid line. Default value is @code{1}.
8875
8876 See below for the list of accepted constants.
8877
8878 @item replace
8879 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
8880 will overwrite the video's color and alpha pixels.
8881 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
8882 @end table
8883
8884 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8885 following constants:
8886
8887 @table @option
8888 @item dar
8889 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8890
8891 @item hsub
8892 @item vsub
8893 horizontal and vertical chroma subsample values. For example for the
8894 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8895
8896 @item in_h, ih
8897 @item in_w, iw
8898 The input grid cell width and height.
8899
8900 @item sar
8901 The input sample aspect ratio.
8902
8903 @item x
8904 @item y
8905 The x and y coordinates of some point of grid intersection (meant to configure offset).
8906
8907 @item w
8908 @item h
8909 The width and height of the drawn cell.
8910
8911 @item t
8912 The thickness of the drawn cell.
8913
8914 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8915 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8916
8917 @end table
8918
8919 @subsection Examples
8920
8921 @itemize
8922 @item
8923 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
8924 @example
8925 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
8926 @end example
8927
8928 @item
8929 Draw a white 3x3 grid with an opacity of 50%:
8930 @example
8931 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
8932 @end example
8933 @end itemize
8934
8935 @anchor{drawtext}
8936 @section drawtext
8937
8938 Draw a text string or text from a specified file on top of a video, using the
8939 libfreetype library.
8940
8941 To enable compilation of this filter, you need to configure FFmpeg with
8942 @code{--enable-libfreetype}.
8943 To enable default font fallback and the @var{font} option you need to
8944 configure FFmpeg with @code{--enable-libfontconfig}.
8945 To enable the @var{text_shaping} option, you need to configure FFmpeg with
8946 @code{--enable-libfribidi}.
8947
8948 @subsection Syntax
8949
8950 It accepts the following parameters:
8951
8952 @table @option
8953
8954 @item box
8955 Used to draw a box around text using the background color.
8956 The value must be either 1 (enable) or 0 (disable).
8957 The default value of @var{box} is 0.
8958
8959 @item boxborderw
8960 Set the width of the border to be drawn around the box using @var{boxcolor}.
8961 The default value of @var{boxborderw} is 0.
8962
8963 @item boxcolor
8964 The color to be used for drawing box around text. For the syntax of this
8965 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8966
8967 The default value of @var{boxcolor} is "white".
8968
8969 @item line_spacing
8970 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
8971 The default value of @var{line_spacing} is 0.
8972
8973 @item borderw
8974 Set the width of the border to be drawn around the text using @var{bordercolor}.
8975 The default value of @var{borderw} is 0.
8976
8977 @item bordercolor
8978 Set the color to be used for drawing border around text. For the syntax of this
8979 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8980
8981 The default value of @var{bordercolor} is "black".
8982
8983 @item expansion
8984 Select how the @var{text} is expanded. Can be either @code{none},
8985 @code{strftime} (deprecated) or
8986 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
8987 below for details.
8988
8989 @item basetime
8990 Set a start time for the count. Value is in microseconds. Only applied
8991 in the deprecated strftime expansion mode. To emulate in normal expansion
8992 mode use the @code{pts} function, supplying the start time (in seconds)
8993 as the second argument.
8994
8995 @item fix_bounds
8996 If true, check and fix text coords to avoid clipping.
8997
8998 @item fontcolor
8999 The color to be used for drawing fonts. For the syntax of this option, check
9000 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9001
9002 The default value of @var{fontcolor} is "black".
9003
9004 @item fontcolor_expr
9005 String which is expanded the same way as @var{text} to obtain dynamic
9006 @var{fontcolor} value. By default this option has empty value and is not
9007 processed. When this option is set, it overrides @var{fontcolor} option.
9008
9009 @item font
9010 The font family to be used for drawing text. By default Sans.
9011
9012 @item fontfile
9013 The font file to be used for drawing text. The path must be included.
9014 This parameter is mandatory if the fontconfig support is disabled.
9015
9016 @item alpha
9017 Draw the text applying alpha blending. The value can
9018 be a number between 0.0 and 1.0.
9019 The expression accepts the same variables @var{x, y} as well.
9020 The default value is 1.
9021 Please see @var{fontcolor_expr}.
9022
9023 @item fontsize
9024 The font size to be used for drawing text.
9025 The default value of @var{fontsize} is 16.
9026
9027 @item text_shaping
9028 If set to 1, attempt to shape the text (for example, reverse the order of
9029 right-to-left text and join Arabic characters) before drawing it.
9030 Otherwise, just draw the text exactly as given.
9031 By default 1 (if supported).
9032
9033 @item ft_load_flags
9034 The flags to be used for loading the fonts.
9035
9036 The flags map the corresponding flags supported by libfreetype, and are
9037 a combination of the following values:
9038 @table @var
9039 @item default
9040 @item no_scale
9041 @item no_hinting
9042 @item render
9043 @item no_bitmap
9044 @item vertical_layout
9045 @item force_autohint
9046 @item crop_bitmap
9047 @item pedantic
9048 @item ignore_global_advance_width
9049 @item no_recurse
9050 @item ignore_transform
9051 @item monochrome
9052 @item linear_design
9053 @item no_autohint
9054 @end table
9055
9056 Default value is "default".
9057
9058 For more information consult the documentation for the FT_LOAD_*
9059 libfreetype flags.
9060
9061 @item shadowcolor
9062 The color to be used for drawing a shadow behind the drawn text. For the
9063 syntax of this option, check the @ref{color syntax,,"Color" section in the
9064 ffmpeg-utils manual,ffmpeg-utils}.
9065
9066 The default value of @var{shadowcolor} is "black".
9067
9068 @item shadowx
9069 @item shadowy
9070 The x and y offsets for the text shadow position with respect to the
9071 position of the text. They can be either positive or negative
9072 values. The default value for both is "0".
9073
9074 @item start_number
9075 The starting frame number for the n/frame_num variable. The default value
9076 is "0".
9077
9078 @item tabsize
9079 The size in number of spaces to use for rendering the tab.
9080 Default value is 4.
9081
9082 @item timecode
9083 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9084 format. It can be used with or without text parameter. @var{timecode_rate}
9085 option must be specified.
9086
9087 @item timecode_rate, rate, r
9088 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9089 integer. Minimum value is "1".
9090 Drop-frame timecode is supported for frame rates 30 & 60.
9091
9092 @item tc24hmax
9093 If set to 1, the output of the timecode option will wrap around at 24 hours.
9094 Default is 0 (disabled).
9095
9096 @item text
9097 The text string to be drawn. The text must be a sequence of UTF-8
9098 encoded characters.
9099 This parameter is mandatory if no file is specified with the parameter
9100 @var{textfile}.
9101
9102 @item textfile
9103 A text file containing text to be drawn. The text must be a sequence
9104 of UTF-8 encoded characters.
9105
9106 This parameter is mandatory if no text string is specified with the
9107 parameter @var{text}.
9108
9109 If both @var{text} and @var{textfile} are specified, an error is thrown.
9110
9111 @item reload
9112 If set to 1, the @var{textfile} will be reloaded before each frame.
9113 Be sure to update it atomically, or it may be read partially, or even fail.
9114
9115 @item x
9116 @item y
9117 The expressions which specify the offsets where text will be drawn
9118 within the video frame. They are relative to the top/left border of the
9119 output image.
9120
9121 The default value of @var{x} and @var{y} is "0".
9122
9123 See below for the list of accepted constants and functions.
9124 @end table
9125
9126 The parameters for @var{x} and @var{y} are expressions containing the
9127 following constants and functions:
9128
9129 @table @option
9130 @item dar
9131 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9132
9133 @item hsub
9134 @item vsub
9135 horizontal and vertical chroma subsample values. For example for the
9136 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9137
9138 @item line_h, lh
9139 the height of each text line
9140
9141 @item main_h, h, H
9142 the input height
9143
9144 @item main_w, w, W
9145 the input width
9146
9147 @item max_glyph_a, ascent
9148 the maximum distance from the baseline to the highest/upper grid
9149 coordinate used to place a glyph outline point, for all the rendered
9150 glyphs.
9151 It is a positive value, due to the grid's orientation with the Y axis
9152 upwards.
9153
9154 @item max_glyph_d, descent
9155 the maximum distance from the baseline to the lowest grid coordinate
9156 used to place a glyph outline point, for all the rendered glyphs.
9157 This is a negative value, due to the grid's orientation, with the Y axis
9158 upwards.
9159
9160 @item max_glyph_h
9161 maximum glyph height, that is the maximum height for all the glyphs
9162 contained in the rendered text, it is equivalent to @var{ascent} -
9163 @var{descent}.
9164
9165 @item max_glyph_w
9166 maximum glyph width, that is the maximum width for all the glyphs
9167 contained in the rendered text
9168
9169 @item n
9170 the number of input frame, starting from 0
9171
9172 @item rand(min, max)
9173 return a random number included between @var{min} and @var{max}
9174
9175 @item sar
9176 The input sample aspect ratio.
9177
9178 @item t
9179 timestamp expressed in seconds, NAN if the input timestamp is unknown
9180
9181 @item text_h, th
9182 the height of the rendered text
9183
9184 @item text_w, tw
9185 the width of the rendered text
9186
9187 @item x
9188 @item y
9189 the x and y offset coordinates where the text is drawn.
9190
9191 These parameters allow the @var{x} and @var{y} expressions to refer
9192 to each other, so you can for example specify @code{y=x/dar}.
9193
9194 @item pict_type
9195 A one character description of the current frame's picture type.
9196
9197 @item pkt_pos
9198 The current packet's position in the input file or stream
9199 (in bytes, from the start of the input). A value of -1 indicates
9200 this info is not available.
9201
9202 @item pkt_duration
9203 The current packet's duration, in seconds.
9204
9205 @item pkt_size
9206 The current packet's size (in bytes).
9207 @end table
9208
9209 @anchor{drawtext_expansion}
9210 @subsection Text expansion
9211
9212 If @option{expansion} is set to @code{strftime},
9213 the filter recognizes strftime() sequences in the provided text and
9214 expands them accordingly. Check the documentation of strftime(). This
9215 feature is deprecated.
9216
9217 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9218
9219 If @option{expansion} is set to @code{normal} (which is the default),
9220 the following expansion mechanism is used.
9221
9222 The backslash character @samp{\}, followed by any character, always expands to
9223 the second character.
9224
9225 Sequences of the form @code{%@{...@}} are expanded. The text between the
9226 braces is a function name, possibly followed by arguments separated by ':'.
9227 If the arguments contain special characters or delimiters (':' or '@}'),
9228 they should be escaped.
9229
9230 Note that they probably must also be escaped as the value for the
9231 @option{text} option in the filter argument string and as the filter
9232 argument in the filtergraph description, and possibly also for the shell,
9233 that makes up to four levels of escaping; using a text file avoids these
9234 problems.
9235
9236 The following functions are available:
9237
9238 @table @command
9239
9240 @item expr, e
9241 The expression evaluation result.
9242
9243 It must take one argument specifying the expression to be evaluated,
9244 which accepts the same constants and functions as the @var{x} and
9245 @var{y} values. Note that not all constants should be used, for
9246 example the text size is not known when evaluating the expression, so
9247 the constants @var{text_w} and @var{text_h} will have an undefined
9248 value.
9249
9250 @item expr_int_format, eif
9251 Evaluate the expression's value and output as formatted integer.
9252
9253 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9254 The second argument specifies the output format. Allowed values are @samp{x},
9255 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9256 @code{printf} function.
9257 The third parameter is optional and sets the number of positions taken by the output.
9258 It can be used to add padding with zeros from the left.
9259
9260 @item gmtime
9261 The time at which the filter is running, expressed in UTC.
9262 It can accept an argument: a strftime() format string.
9263
9264 @item localtime
9265 The time at which the filter is running, expressed in the local time zone.
9266 It can accept an argument: a strftime() format string.
9267
9268 @item metadata
9269 Frame metadata. Takes one or two arguments.
9270
9271 The first argument is mandatory and specifies the metadata key.
9272
9273 The second argument is optional and specifies a default value, used when the
9274 metadata key is not found or empty.
9275
9276 Available metadata can be identified by inspecting entries
9277 starting with TAG included within each frame section
9278 printed by running @code{ffprobe -show_frames}.
9279
9280 String metadata generated in filters leading to
9281 the drawtext filter are also available.
9282
9283 @item n, frame_num
9284 The frame number, starting from 0.
9285
9286 @item pict_type
9287 A one character description of the current picture type.
9288
9289 @item pts
9290 The timestamp of the current frame.
9291 It can take up to three arguments.
9292
9293 The first argument is the format of the timestamp; it defaults to @code{flt}
9294 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9295 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9296 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9297 @code{localtime} stands for the timestamp of the frame formatted as
9298 local time zone time.
9299
9300 The second argument is an offset added to the timestamp.
9301
9302 If the format is set to @code{hms}, a third argument @code{24HH} may be
9303 supplied to present the hour part of the formatted timestamp in 24h format
9304 (00-23).
9305
9306 If the format is set to @code{localtime} or @code{gmtime},
9307 a third argument may be supplied: a strftime() format string.
9308 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9309 @end table
9310
9311 @subsection Commands
9312
9313 This filter supports altering parameters via commands:
9314 @table @option
9315 @item reinit
9316 Alter existing filter parameters.
9317
9318 Syntax for the argument is the same as for filter invocation, e.g.
9319
9320 @example
9321 fontsize=56:fontcolor=green:text='Hello World'
9322 @end example
9323
9324 Full filter invocation with sendcmd would look like this:
9325
9326 @example
9327 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9328 @end example
9329 @end table
9330
9331 If the entire argument can't be parsed or applied as valid values then the filter will
9332 continue with its existing parameters.
9333
9334 @subsection Examples
9335
9336 @itemize
9337 @item
9338 Draw "Test Text" with font FreeSerif, using the default values for the
9339 optional parameters.
9340
9341 @example
9342 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9343 @end example
9344
9345 @item
9346 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9347 and y=50 (counting from the top-left corner of the screen), text is
9348 yellow with a red box around it. Both the text and the box have an
9349 opacity of 20%.
9350
9351 @example
9352 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9353           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9354 @end example
9355
9356 Note that the double quotes are not necessary if spaces are not used
9357 within the parameter list.
9358
9359 @item
9360 Show the text at the center of the video frame:
9361 @example
9362 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9363 @end example
9364
9365 @item
9366 Show the text at a random position, switching to a new position every 30 seconds:
9367 @example
9368 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)"
9369 @end example
9370
9371 @item
9372 Show a text line sliding from right to left in the last row of the video
9373 frame. The file @file{LONG_LINE} is assumed to contain a single line
9374 with no newlines.
9375 @example
9376 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9377 @end example
9378
9379 @item
9380 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9381 @example
9382 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9383 @end example
9384
9385 @item
9386 Draw a single green letter "g", at the center of the input video.
9387 The glyph baseline is placed at half screen height.
9388 @example
9389 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9390 @end example
9391
9392 @item
9393 Show text for 1 second every 3 seconds:
9394 @example
9395 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9396 @end example
9397
9398 @item
9399 Use fontconfig to set the font. Note that the colons need to be escaped.
9400 @example
9401 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
9402 @end example
9403
9404 @item
9405 Print the date of a real-time encoding (see strftime(3)):
9406 @example
9407 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
9408 @end example
9409
9410 @item
9411 Show text fading in and out (appearing/disappearing):
9412 @example
9413 #!/bin/sh
9414 DS=1.0 # display start
9415 DE=10.0 # display end
9416 FID=1.5 # fade in duration
9417 FOD=5 # fade out duration
9418 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 @}"
9419 @end example
9420
9421 @item
9422 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
9423 and the @option{fontsize} value are included in the @option{y} offset.
9424 @example
9425 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
9426 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
9427 @end example
9428
9429 @end itemize
9430
9431 For more information about libfreetype, check:
9432 @url{http://www.freetype.org/}.
9433
9434 For more information about fontconfig, check:
9435 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
9436
9437 For more information about libfribidi, check:
9438 @url{http://fribidi.org/}.
9439
9440 @section edgedetect
9441
9442 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
9443
9444 The filter accepts the following options:
9445
9446 @table @option
9447 @item low
9448 @item high
9449 Set low and high threshold values used by the Canny thresholding
9450 algorithm.
9451
9452 The high threshold selects the "strong" edge pixels, which are then
9453 connected through 8-connectivity with the "weak" edge pixels selected
9454 by the low threshold.
9455
9456 @var{low} and @var{high} threshold values must be chosen in the range
9457 [0,1], and @var{low} should be lesser or equal to @var{high}.
9458
9459 Default value for @var{low} is @code{20/255}, and default value for @var{high}
9460 is @code{50/255}.
9461
9462 @item mode
9463 Define the drawing mode.
9464
9465 @table @samp
9466 @item wires
9467 Draw white/gray wires on black background.
9468
9469 @item colormix
9470 Mix the colors to create a paint/cartoon effect.
9471
9472 @item canny
9473 Apply Canny edge detector on all selected planes.
9474 @end table
9475 Default value is @var{wires}.
9476
9477 @item planes
9478 Select planes for filtering. By default all available planes are filtered.
9479 @end table
9480
9481 @subsection Examples
9482
9483 @itemize
9484 @item
9485 Standard edge detection with custom values for the hysteresis thresholding:
9486 @example
9487 edgedetect=low=0.1:high=0.4
9488 @end example
9489
9490 @item
9491 Painting effect without thresholding:
9492 @example
9493 edgedetect=mode=colormix:high=0
9494 @end example
9495 @end itemize
9496
9497 @section elbg
9498
9499 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9500
9501 For each input image, the filter will compute the optimal mapping from
9502 the input to the output given the codebook length, that is the number
9503 of distinct output colors.
9504
9505 This filter accepts the following options.
9506
9507 @table @option
9508 @item codebook_length, l
9509 Set codebook length. The value must be a positive integer, and
9510 represents the number of distinct output colors. Default value is 256.
9511
9512 @item nb_steps, n
9513 Set the maximum number of iterations to apply for computing the optimal
9514 mapping. The higher the value the better the result and the higher the
9515 computation time. Default value is 1.
9516
9517 @item seed, s
9518 Set a random seed, must be an integer included between 0 and
9519 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9520 will try to use a good random seed on a best effort basis.
9521
9522 @item pal8
9523 Set pal8 output pixel format. This option does not work with codebook
9524 length greater than 256.
9525 @end table
9526
9527 @section entropy
9528
9529 Measure graylevel entropy in histogram of color channels of video frames.
9530
9531 It accepts the following parameters:
9532
9533 @table @option
9534 @item mode
9535 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9536
9537 @var{diff} mode measures entropy of histogram delta values, absolute differences
9538 between neighbour histogram values.
9539 @end table
9540
9541 @section eq
9542 Set brightness, contrast, saturation and approximate gamma adjustment.
9543
9544 The filter accepts the following options:
9545
9546 @table @option
9547 @item contrast
9548 Set the contrast expression. The value must be a float value in range
9549 @code{-1000.0} to @code{1000.0}. The default value is "1".
9550
9551 @item brightness
9552 Set the brightness expression. The value must be a float value in
9553 range @code{-1.0} to @code{1.0}. The default value is "0".
9554
9555 @item saturation
9556 Set the saturation expression. The value must be a float in
9557 range @code{0.0} to @code{3.0}. The default value is "1".
9558
9559 @item gamma
9560 Set the gamma expression. The value must be a float in range
9561 @code{0.1} to @code{10.0}.  The default value is "1".
9562
9563 @item gamma_r
9564 Set the gamma expression for red. The value must be a float in
9565 range @code{0.1} to @code{10.0}. The default value is "1".
9566
9567 @item gamma_g
9568 Set the gamma expression for green. The value must be a float in range
9569 @code{0.1} to @code{10.0}. The default value is "1".
9570
9571 @item gamma_b
9572 Set the gamma expression for blue. The value must be a float in range
9573 @code{0.1} to @code{10.0}. The default value is "1".
9574
9575 @item gamma_weight
9576 Set the gamma weight expression. It can be used to reduce the effect
9577 of a high gamma value on bright image areas, e.g. keep them from
9578 getting overamplified and just plain white. The value must be a float
9579 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
9580 gamma correction all the way down while @code{1.0} leaves it at its
9581 full strength. Default is "1".
9582
9583 @item eval
9584 Set when the expressions for brightness, contrast, saturation and
9585 gamma expressions are evaluated.
9586
9587 It accepts the following values:
9588 @table @samp
9589 @item init
9590 only evaluate expressions once during the filter initialization or
9591 when a command is processed
9592
9593 @item frame
9594 evaluate expressions for each incoming frame
9595 @end table
9596
9597 Default value is @samp{init}.
9598 @end table
9599
9600 The expressions accept the following parameters:
9601 @table @option
9602 @item n
9603 frame count of the input frame starting from 0
9604
9605 @item pos
9606 byte position of the corresponding packet in the input file, NAN if
9607 unspecified
9608
9609 @item r
9610 frame rate of the input video, NAN if the input frame rate is unknown
9611
9612 @item t
9613 timestamp expressed in seconds, NAN if the input timestamp is unknown
9614 @end table
9615
9616 @subsection Commands
9617 The filter supports the following commands:
9618
9619 @table @option
9620 @item contrast
9621 Set the contrast expression.
9622
9623 @item brightness
9624 Set the brightness expression.
9625
9626 @item saturation
9627 Set the saturation expression.
9628
9629 @item gamma
9630 Set the gamma expression.
9631
9632 @item gamma_r
9633 Set the gamma_r expression.
9634
9635 @item gamma_g
9636 Set gamma_g expression.
9637
9638 @item gamma_b
9639 Set gamma_b expression.
9640
9641 @item gamma_weight
9642 Set gamma_weight expression.
9643
9644 The command accepts the same syntax of the corresponding option.
9645
9646 If the specified expression is not valid, it is kept at its current
9647 value.
9648
9649 @end table
9650
9651 @section erosion
9652
9653 Apply erosion effect to the video.
9654
9655 This filter replaces the pixel by the local(3x3) minimum.
9656
9657 It accepts the following options:
9658
9659 @table @option
9660 @item threshold0
9661 @item threshold1
9662 @item threshold2
9663 @item threshold3
9664 Limit the maximum change for each plane, default is 65535.
9665 If 0, plane will remain unchanged.
9666
9667 @item coordinates
9668 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9669 pixels are used.
9670
9671 Flags to local 3x3 coordinates maps like this:
9672
9673     1 2 3
9674     4   5
9675     6 7 8
9676 @end table
9677
9678 @section extractplanes
9679
9680 Extract color channel components from input video stream into
9681 separate grayscale video streams.
9682
9683 The filter accepts the following option:
9684
9685 @table @option
9686 @item planes
9687 Set plane(s) to extract.
9688
9689 Available values for planes are:
9690 @table @samp
9691 @item y
9692 @item u
9693 @item v
9694 @item a
9695 @item r
9696 @item g
9697 @item b
9698 @end table
9699
9700 Choosing planes not available in the input will result in an error.
9701 That means you cannot select @code{r}, @code{g}, @code{b} planes
9702 with @code{y}, @code{u}, @code{v} planes at same time.
9703 @end table
9704
9705 @subsection Examples
9706
9707 @itemize
9708 @item
9709 Extract luma, u and v color channel component from input video frame
9710 into 3 grayscale outputs:
9711 @example
9712 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
9713 @end example
9714 @end itemize
9715
9716 @section fade
9717
9718 Apply a fade-in/out effect to the input video.
9719
9720 It accepts the following parameters:
9721
9722 @table @option
9723 @item type, t
9724 The effect type can be either "in" for a fade-in, or "out" for a fade-out
9725 effect.
9726 Default is @code{in}.
9727
9728 @item start_frame, s
9729 Specify the number of the frame to start applying the fade
9730 effect at. Default is 0.
9731
9732 @item nb_frames, n
9733 The number of frames that the fade effect lasts. At the end of the
9734 fade-in effect, the output video will have the same intensity as the input video.
9735 At the end of the fade-out transition, the output video will be filled with the
9736 selected @option{color}.
9737 Default is 25.
9738
9739 @item alpha
9740 If set to 1, fade only alpha channel, if one exists on the input.
9741 Default value is 0.
9742
9743 @item start_time, st
9744 Specify the timestamp (in seconds) of the frame to start to apply the fade
9745 effect. If both start_frame and start_time are specified, the fade will start at
9746 whichever comes last.  Default is 0.
9747
9748 @item duration, d
9749 The number of seconds for which the fade effect has to last. At the end of the
9750 fade-in effect the output video will have the same intensity as the input video,
9751 at the end of the fade-out transition the output video will be filled with the
9752 selected @option{color}.
9753 If both duration and nb_frames are specified, duration is used. Default is 0
9754 (nb_frames is used by default).
9755
9756 @item color, c
9757 Specify the color of the fade. Default is "black".
9758 @end table
9759
9760 @subsection Examples
9761
9762 @itemize
9763 @item
9764 Fade in the first 30 frames of video:
9765 @example
9766 fade=in:0:30
9767 @end example
9768
9769 The command above is equivalent to:
9770 @example
9771 fade=t=in:s=0:n=30
9772 @end example
9773
9774 @item
9775 Fade out the last 45 frames of a 200-frame video:
9776 @example
9777 fade=out:155:45
9778 fade=type=out:start_frame=155:nb_frames=45
9779 @end example
9780
9781 @item
9782 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
9783 @example
9784 fade=in:0:25, fade=out:975:25
9785 @end example
9786
9787 @item
9788 Make the first 5 frames yellow, then fade in from frame 5-24:
9789 @example
9790 fade=in:5:20:color=yellow
9791 @end example
9792
9793 @item
9794 Fade in alpha over first 25 frames of video:
9795 @example
9796 fade=in:0:25:alpha=1
9797 @end example
9798
9799 @item
9800 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
9801 @example
9802 fade=t=in:st=5.5:d=0.5
9803 @end example
9804
9805 @end itemize
9806
9807 @section fftdnoiz
9808 Denoise frames using 3D FFT (frequency domain filtering).
9809
9810 The filter accepts the following options:
9811
9812 @table @option
9813 @item sigma
9814 Set the noise sigma constant. This sets denoising strength.
9815 Default value is 1. Allowed range is from 0 to 30.
9816 Using very high sigma with low overlap may give blocking artifacts.
9817
9818 @item amount
9819 Set amount of denoising. By default all detected noise is reduced.
9820 Default value is 1. Allowed range is from 0 to 1.
9821
9822 @item block
9823 Set size of block, Default is 4, can be 3, 4, 5 or 6.
9824 Actual size of block in pixels is 2 to power of @var{block}, so by default
9825 block size in pixels is 2^4 which is 16.
9826
9827 @item overlap
9828 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
9829
9830 @item prev
9831 Set number of previous frames to use for denoising. By default is set to 0.
9832
9833 @item next
9834 Set number of next frames to to use for denoising. By default is set to 0.
9835
9836 @item planes
9837 Set planes which will be filtered, by default are all available filtered
9838 except alpha.
9839 @end table
9840
9841 @section fftfilt
9842 Apply arbitrary expressions to samples in frequency domain
9843
9844 @table @option
9845 @item dc_Y
9846 Adjust the dc value (gain) of the luma plane of the image. The filter
9847 accepts an integer value in range @code{0} to @code{1000}. The default
9848 value is set to @code{0}.
9849
9850 @item dc_U
9851 Adjust the dc value (gain) of the 1st chroma plane of the image. The
9852 filter accepts an integer value in range @code{0} to @code{1000}. The
9853 default value is set to @code{0}.
9854
9855 @item dc_V
9856 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
9857 filter accepts an integer value in range @code{0} to @code{1000}. The
9858 default value is set to @code{0}.
9859
9860 @item weight_Y
9861 Set the frequency domain weight expression for the luma plane.
9862
9863 @item weight_U
9864 Set the frequency domain weight expression for the 1st chroma plane.
9865
9866 @item weight_V
9867 Set the frequency domain weight expression for the 2nd chroma plane.
9868
9869 @item eval
9870 Set when the expressions are evaluated.
9871
9872 It accepts the following values:
9873 @table @samp
9874 @item init
9875 Only evaluate expressions once during the filter initialization.
9876
9877 @item frame
9878 Evaluate expressions for each incoming frame.
9879 @end table
9880
9881 Default value is @samp{init}.
9882
9883 The filter accepts the following variables:
9884 @item X
9885 @item Y
9886 The coordinates of the current sample.
9887
9888 @item W
9889 @item H
9890 The width and height of the image.
9891
9892 @item N
9893 The number of input frame, starting from 0.
9894 @end table
9895
9896 @subsection Examples
9897
9898 @itemize
9899 @item
9900 High-pass:
9901 @example
9902 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
9903 @end example
9904
9905 @item
9906 Low-pass:
9907 @example
9908 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
9909 @end example
9910
9911 @item
9912 Sharpen:
9913 @example
9914 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
9915 @end example
9916
9917 @item
9918 Blur:
9919 @example
9920 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
9921 @end example
9922
9923 @end itemize
9924
9925 @section field
9926
9927 Extract a single field from an interlaced image using stride
9928 arithmetic to avoid wasting CPU time. The output frames are marked as
9929 non-interlaced.
9930
9931 The filter accepts the following options:
9932
9933 @table @option
9934 @item type
9935 Specify whether to extract the top (if the value is @code{0} or
9936 @code{top}) or the bottom field (if the value is @code{1} or
9937 @code{bottom}).
9938 @end table
9939
9940 @section fieldhint
9941
9942 Create new frames by copying the top and bottom fields from surrounding frames
9943 supplied as numbers by the hint file.
9944
9945 @table @option
9946 @item hint
9947 Set file containing hints: absolute/relative frame numbers.
9948
9949 There must be one line for each frame in a clip. Each line must contain two
9950 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
9951 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
9952 is current frame number for @code{absolute} mode or out of [-1, 1] range
9953 for @code{relative} mode. First number tells from which frame to pick up top
9954 field and second number tells from which frame to pick up bottom field.
9955
9956 If optionally followed by @code{+} output frame will be marked as interlaced,
9957 else if followed by @code{-} output frame will be marked as progressive, else
9958 it will be marked same as input frame.
9959 If line starts with @code{#} or @code{;} that line is skipped.
9960
9961 @item mode
9962 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
9963 @end table
9964
9965 Example of first several lines of @code{hint} file for @code{relative} mode:
9966 @example
9967 0,0 - # first frame
9968 1,0 - # second frame, use third's frame top field and second's frame bottom field
9969 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
9970 1,0 -
9971 0,0 -
9972 0,0 -
9973 1,0 -
9974 1,0 -
9975 1,0 -
9976 0,0 -
9977 0,0 -
9978 1,0 -
9979 1,0 -
9980 1,0 -
9981 0,0 -
9982 @end example
9983
9984 @section fieldmatch
9985
9986 Field matching filter for inverse telecine. It is meant to reconstruct the
9987 progressive frames from a telecined stream. The filter does not drop duplicated
9988 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
9989 followed by a decimation filter such as @ref{decimate} in the filtergraph.
9990
9991 The separation of the field matching and the decimation is notably motivated by
9992 the possibility of inserting a de-interlacing filter fallback between the two.
9993 If the source has mixed telecined and real interlaced content,
9994 @code{fieldmatch} will not be able to match fields for the interlaced parts.
9995 But these remaining combed frames will be marked as interlaced, and thus can be
9996 de-interlaced by a later filter such as @ref{yadif} before decimation.
9997
9998 In addition to the various configuration options, @code{fieldmatch} can take an
9999 optional second stream, activated through the @option{ppsrc} option. If
10000 enabled, the frames reconstruction will be based on the fields and frames from
10001 this second stream. This allows the first input to be pre-processed in order to
10002 help the various algorithms of the filter, while keeping the output lossless
10003 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10004 or brightness/contrast adjustments can help.
10005
10006 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10007 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10008 which @code{fieldmatch} is based on. While the semantic and usage are very
10009 close, some behaviour and options names can differ.
10010
10011 The @ref{decimate} filter currently only works for constant frame rate input.
10012 If your input has mixed telecined (30fps) and progressive content with a lower
10013 framerate like 24fps use the following filterchain to produce the necessary cfr
10014 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10015
10016 The filter accepts the following options:
10017
10018 @table @option
10019 @item order
10020 Specify the assumed field order of the input stream. Available values are:
10021
10022 @table @samp
10023 @item auto
10024 Auto detect parity (use FFmpeg's internal parity value).
10025 @item bff
10026 Assume bottom field first.
10027 @item tff
10028 Assume top field first.
10029 @end table
10030
10031 Note that it is sometimes recommended not to trust the parity announced by the
10032 stream.
10033
10034 Default value is @var{auto}.
10035
10036 @item mode
10037 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10038 sense that it won't risk creating jerkiness due to duplicate frames when
10039 possible, but if there are bad edits or blended fields it will end up
10040 outputting combed frames when a good match might actually exist. On the other
10041 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10042 but will almost always find a good frame if there is one. The other values are
10043 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10044 jerkiness and creating duplicate frames versus finding good matches in sections
10045 with bad edits, orphaned fields, blended fields, etc.
10046
10047 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10048
10049 Available values are:
10050
10051 @table @samp
10052 @item pc
10053 2-way matching (p/c)
10054 @item pc_n
10055 2-way matching, and trying 3rd match if still combed (p/c + n)
10056 @item pc_u
10057 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10058 @item pc_n_ub
10059 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10060 still combed (p/c + n + u/b)
10061 @item pcn
10062 3-way matching (p/c/n)
10063 @item pcn_ub
10064 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10065 detected as combed (p/c/n + u/b)
10066 @end table
10067
10068 The parenthesis at the end indicate the matches that would be used for that
10069 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10070 @var{top}).
10071
10072 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10073 the slowest.
10074
10075 Default value is @var{pc_n}.
10076
10077 @item ppsrc
10078 Mark the main input stream as a pre-processed input, and enable the secondary
10079 input stream as the clean source to pick the fields from. See the filter
10080 introduction for more details. It is similar to the @option{clip2} feature from
10081 VFM/TFM.
10082
10083 Default value is @code{0} (disabled).
10084
10085 @item field
10086 Set the field to match from. It is recommended to set this to the same value as
10087 @option{order} unless you experience matching failures with that setting. In
10088 certain circumstances changing the field that is used to match from can have a
10089 large impact on matching performance. Available values are:
10090
10091 @table @samp
10092 @item auto
10093 Automatic (same value as @option{order}).
10094 @item bottom
10095 Match from the bottom field.
10096 @item top
10097 Match from the top field.
10098 @end table
10099
10100 Default value is @var{auto}.
10101
10102 @item mchroma
10103 Set whether or not chroma is included during the match comparisons. In most
10104 cases it is recommended to leave this enabled. You should set this to @code{0}
10105 only if your clip has bad chroma problems such as heavy rainbowing or other
10106 artifacts. Setting this to @code{0} could also be used to speed things up at
10107 the cost of some accuracy.
10108
10109 Default value is @code{1}.
10110
10111 @item y0
10112 @item y1
10113 These define an exclusion band which excludes the lines between @option{y0} and
10114 @option{y1} from being included in the field matching decision. An exclusion
10115 band can be used to ignore subtitles, a logo, or other things that may
10116 interfere with the matching. @option{y0} sets the starting scan line and
10117 @option{y1} sets the ending line; all lines in between @option{y0} and
10118 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10119 @option{y0} and @option{y1} to the same value will disable the feature.
10120 @option{y0} and @option{y1} defaults to @code{0}.
10121
10122 @item scthresh
10123 Set the scene change detection threshold as a percentage of maximum change on
10124 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10125 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10126 @option{scthresh} is @code{[0.0, 100.0]}.
10127
10128 Default value is @code{12.0}.
10129
10130 @item combmatch
10131 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10132 account the combed scores of matches when deciding what match to use as the
10133 final match. Available values are:
10134
10135 @table @samp
10136 @item none
10137 No final matching based on combed scores.
10138 @item sc
10139 Combed scores are only used when a scene change is detected.
10140 @item full
10141 Use combed scores all the time.
10142 @end table
10143
10144 Default is @var{sc}.
10145
10146 @item combdbg
10147 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10148 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10149 Available values are:
10150
10151 @table @samp
10152 @item none
10153 No forced calculation.
10154 @item pcn
10155 Force p/c/n calculations.
10156 @item pcnub
10157 Force p/c/n/u/b calculations.
10158 @end table
10159
10160 Default value is @var{none}.
10161
10162 @item cthresh
10163 This is the area combing threshold used for combed frame detection. This
10164 essentially controls how "strong" or "visible" combing must be to be detected.
10165 Larger values mean combing must be more visible and smaller values mean combing
10166 can be less visible or strong and still be detected. Valid settings are from
10167 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10168 be detected as combed). This is basically a pixel difference value. A good
10169 range is @code{[8, 12]}.
10170
10171 Default value is @code{9}.
10172
10173 @item chroma
10174 Sets whether or not chroma is considered in the combed frame decision.  Only
10175 disable this if your source has chroma problems (rainbowing, etc.) that are
10176 causing problems for the combed frame detection with chroma enabled. Actually,
10177 using @option{chroma}=@var{0} is usually more reliable, except for the case
10178 where there is chroma only combing in the source.
10179
10180 Default value is @code{0}.
10181
10182 @item blockx
10183 @item blocky
10184 Respectively set the x-axis and y-axis size of the window used during combed
10185 frame detection. This has to do with the size of the area in which
10186 @option{combpel} pixels are required to be detected as combed for a frame to be
10187 declared combed. See the @option{combpel} parameter description for more info.
10188 Possible values are any number that is a power of 2 starting at 4 and going up
10189 to 512.
10190
10191 Default value is @code{16}.
10192
10193 @item combpel
10194 The number of combed pixels inside any of the @option{blocky} by
10195 @option{blockx} size blocks on the frame for the frame to be detected as
10196 combed. While @option{cthresh} controls how "visible" the combing must be, this
10197 setting controls "how much" combing there must be in any localized area (a
10198 window defined by the @option{blockx} and @option{blocky} settings) on the
10199 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10200 which point no frames will ever be detected as combed). This setting is known
10201 as @option{MI} in TFM/VFM vocabulary.
10202
10203 Default value is @code{80}.
10204 @end table
10205
10206 @anchor{p/c/n/u/b meaning}
10207 @subsection p/c/n/u/b meaning
10208
10209 @subsubsection p/c/n
10210
10211 We assume the following telecined stream:
10212
10213 @example
10214 Top fields:     1 2 2 3 4
10215 Bottom fields:  1 2 3 4 4
10216 @end example
10217
10218 The numbers correspond to the progressive frame the fields relate to. Here, the
10219 first two frames are progressive, the 3rd and 4th are combed, and so on.
10220
10221 When @code{fieldmatch} is configured to run a matching from bottom
10222 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10223
10224 @example
10225 Input stream:
10226                 T     1 2 2 3 4
10227                 B     1 2 3 4 4   <-- matching reference
10228
10229 Matches:              c c n n c
10230
10231 Output stream:
10232                 T     1 2 3 4 4
10233                 B     1 2 3 4 4
10234 @end example
10235
10236 As a result of the field matching, we can see that some frames get duplicated.
10237 To perform a complete inverse telecine, you need to rely on a decimation filter
10238 after this operation. See for instance the @ref{decimate} filter.
10239
10240 The same operation now matching from top fields (@option{field}=@var{top})
10241 looks like this:
10242
10243 @example
10244 Input stream:
10245                 T     1 2 2 3 4   <-- matching reference
10246                 B     1 2 3 4 4
10247
10248 Matches:              c c p p c
10249
10250 Output stream:
10251                 T     1 2 2 3 4
10252                 B     1 2 2 3 4
10253 @end example
10254
10255 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10256 basically, they refer to the frame and field of the opposite parity:
10257
10258 @itemize
10259 @item @var{p} matches the field of the opposite parity in the previous frame
10260 @item @var{c} matches the field of the opposite parity in the current frame
10261 @item @var{n} matches the field of the opposite parity in the next frame
10262 @end itemize
10263
10264 @subsubsection u/b
10265
10266 The @var{u} and @var{b} matching are a bit special in the sense that they match
10267 from the opposite parity flag. In the following examples, we assume that we are
10268 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10269 'x' is placed above and below each matched fields.
10270
10271 With bottom matching (@option{field}=@var{bottom}):
10272 @example
10273 Match:           c         p           n          b          u
10274
10275                  x       x               x        x          x
10276   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10277   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10278                  x         x           x        x              x
10279
10280 Output frames:
10281                  2          1          2          2          2
10282                  2          2          2          1          3
10283 @end example
10284
10285 With top matching (@option{field}=@var{top}):
10286 @example
10287 Match:           c         p           n          b          u
10288
10289                  x         x           x        x              x
10290   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10291   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10292                  x       x               x        x          x
10293
10294 Output frames:
10295                  2          2          2          1          2
10296                  2          1          3          2          2
10297 @end example
10298
10299 @subsection Examples
10300
10301 Simple IVTC of a top field first telecined stream:
10302 @example
10303 fieldmatch=order=tff:combmatch=none, decimate
10304 @end example
10305
10306 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10307 @example
10308 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10309 @end example
10310
10311 @section fieldorder
10312
10313 Transform the field order of the input video.
10314
10315 It accepts the following parameters:
10316
10317 @table @option
10318
10319 @item order
10320 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10321 for bottom field first.
10322 @end table
10323
10324 The default value is @samp{tff}.
10325
10326 The transformation is done by shifting the picture content up or down
10327 by one line, and filling the remaining line with appropriate picture content.
10328 This method is consistent with most broadcast field order converters.
10329
10330 If the input video is not flagged as being interlaced, or it is already
10331 flagged as being of the required output field order, then this filter does
10332 not alter the incoming video.
10333
10334 It is very useful when converting to or from PAL DV material,
10335 which is bottom field first.
10336
10337 For example:
10338 @example
10339 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10340 @end example
10341
10342 @section fifo, afifo
10343
10344 Buffer input images and send them when they are requested.
10345
10346 It is mainly useful when auto-inserted by the libavfilter
10347 framework.
10348
10349 It does not take parameters.
10350
10351 @section fillborders
10352
10353 Fill borders of the input video, without changing video stream dimensions.
10354 Sometimes video can have garbage at the four edges and you may not want to
10355 crop video input to keep size multiple of some number.
10356
10357 This filter accepts the following options:
10358
10359 @table @option
10360 @item left
10361 Number of pixels to fill from left border.
10362
10363 @item right
10364 Number of pixels to fill from right border.
10365
10366 @item top
10367 Number of pixels to fill from top border.
10368
10369 @item bottom
10370 Number of pixels to fill from bottom border.
10371
10372 @item mode
10373 Set fill mode.
10374
10375 It accepts the following values:
10376 @table @samp
10377 @item smear
10378 fill pixels using outermost pixels
10379
10380 @item mirror
10381 fill pixels using mirroring
10382
10383 @item fixed
10384 fill pixels with constant value
10385 @end table
10386
10387 Default is @var{smear}.
10388
10389 @item color
10390 Set color for pixels in fixed mode. Default is @var{black}.
10391 @end table
10392
10393 @section find_rect
10394
10395 Find a rectangular object
10396
10397 It accepts the following options:
10398
10399 @table @option
10400 @item object
10401 Filepath of the object image, needs to be in gray8.
10402
10403 @item threshold
10404 Detection threshold, default is 0.5.
10405
10406 @item mipmaps
10407 Number of mipmaps, default is 3.
10408
10409 @item xmin, ymin, xmax, ymax
10410 Specifies the rectangle in which to search.
10411 @end table
10412
10413 @subsection Examples
10414
10415 @itemize
10416 @item
10417 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10418 @example
10419 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10420 @end example
10421 @end itemize
10422
10423 @section floodfill
10424
10425 Flood area with values of same pixel components with another values.
10426
10427 It accepts the following options:
10428 @table @option
10429 @item x
10430 Set pixel x coordinate.
10431
10432 @item y
10433 Set pixel y coordinate.
10434
10435 @item s0
10436 Set source #0 component value.
10437
10438 @item s1
10439 Set source #1 component value.
10440
10441 @item s2
10442 Set source #2 component value.
10443
10444 @item s3
10445 Set source #3 component value.
10446
10447 @item d0
10448 Set destination #0 component value.
10449
10450 @item d1
10451 Set destination #1 component value.
10452
10453 @item d2
10454 Set destination #2 component value.
10455
10456 @item d3
10457 Set destination #3 component value.
10458 @end table
10459
10460 @anchor{format}
10461 @section format
10462
10463 Convert the input video to one of the specified pixel formats.
10464 Libavfilter will try to pick one that is suitable as input to
10465 the next filter.
10466
10467 It accepts the following parameters:
10468 @table @option
10469
10470 @item pix_fmts
10471 A '|'-separated list of pixel format names, such as
10472 "pix_fmts=yuv420p|monow|rgb24".
10473
10474 @end table
10475
10476 @subsection Examples
10477
10478 @itemize
10479 @item
10480 Convert the input video to the @var{yuv420p} format
10481 @example
10482 format=pix_fmts=yuv420p
10483 @end example
10484
10485 Convert the input video to any of the formats in the list
10486 @example
10487 format=pix_fmts=yuv420p|yuv444p|yuv410p
10488 @end example
10489 @end itemize
10490
10491 @anchor{fps}
10492 @section fps
10493
10494 Convert the video to specified constant frame rate by duplicating or dropping
10495 frames as necessary.
10496
10497 It accepts the following parameters:
10498 @table @option
10499
10500 @item fps
10501 The desired output frame rate. The default is @code{25}.
10502
10503 @item start_time
10504 Assume the first PTS should be the given value, in seconds. This allows for
10505 padding/trimming at the start of stream. By default, no assumption is made
10506 about the first frame's expected PTS, so no padding or trimming is done.
10507 For example, this could be set to 0 to pad the beginning with duplicates of
10508 the first frame if a video stream starts after the audio stream or to trim any
10509 frames with a negative PTS.
10510
10511 @item round
10512 Timestamp (PTS) rounding method.
10513
10514 Possible values are:
10515 @table @option
10516 @item zero
10517 round towards 0
10518 @item inf
10519 round away from 0
10520 @item down
10521 round towards -infinity
10522 @item up
10523 round towards +infinity
10524 @item near
10525 round to nearest
10526 @end table
10527 The default is @code{near}.
10528
10529 @item eof_action
10530 Action performed when reading the last frame.
10531
10532 Possible values are:
10533 @table @option
10534 @item round
10535 Use same timestamp rounding method as used for other frames.
10536 @item pass
10537 Pass through last frame if input duration has not been reached yet.
10538 @end table
10539 The default is @code{round}.
10540
10541 @end table
10542
10543 Alternatively, the options can be specified as a flat string:
10544 @var{fps}[:@var{start_time}[:@var{round}]].
10545
10546 See also the @ref{setpts} filter.
10547
10548 @subsection Examples
10549
10550 @itemize
10551 @item
10552 A typical usage in order to set the fps to 25:
10553 @example
10554 fps=fps=25
10555 @end example
10556
10557 @item
10558 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
10559 @example
10560 fps=fps=film:round=near
10561 @end example
10562 @end itemize
10563
10564 @section framepack
10565
10566 Pack two different video streams into a stereoscopic video, setting proper
10567 metadata on supported codecs. The two views should have the same size and
10568 framerate and processing will stop when the shorter video ends. Please note
10569 that you may conveniently adjust view properties with the @ref{scale} and
10570 @ref{fps} filters.
10571
10572 It accepts the following parameters:
10573 @table @option
10574
10575 @item format
10576 The desired packing format. Supported values are:
10577
10578 @table @option
10579
10580 @item sbs
10581 The views are next to each other (default).
10582
10583 @item tab
10584 The views are on top of each other.
10585
10586 @item lines
10587 The views are packed by line.
10588
10589 @item columns
10590 The views are packed by column.
10591
10592 @item frameseq
10593 The views are temporally interleaved.
10594
10595 @end table
10596
10597 @end table
10598
10599 Some examples:
10600
10601 @example
10602 # Convert left and right views into a frame-sequential video
10603 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
10604
10605 # Convert views into a side-by-side video with the same output resolution as the input
10606 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
10607 @end example
10608
10609 @section framerate
10610
10611 Change the frame rate by interpolating new video output frames from the source
10612 frames.
10613
10614 This filter is not designed to function correctly with interlaced media. If
10615 you wish to change the frame rate of interlaced media then you are required
10616 to deinterlace before this filter and re-interlace after this filter.
10617
10618 A description of the accepted options follows.
10619
10620 @table @option
10621 @item fps
10622 Specify the output frames per second. This option can also be specified
10623 as a value alone. The default is @code{50}.
10624
10625 @item interp_start
10626 Specify the start of a range where the output frame will be created as a
10627 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10628 the default is @code{15}.
10629
10630 @item interp_end
10631 Specify the end of a range where the output frame will be created as a
10632 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10633 the default is @code{240}.
10634
10635 @item scene
10636 Specify the level at which a scene change is detected as a value between
10637 0 and 100 to indicate a new scene; a low value reflects a low
10638 probability for the current frame to introduce a new scene, while a higher
10639 value means the current frame is more likely to be one.
10640 The default is @code{8.2}.
10641
10642 @item flags
10643 Specify flags influencing the filter process.
10644
10645 Available value for @var{flags} is:
10646
10647 @table @option
10648 @item scene_change_detect, scd
10649 Enable scene change detection using the value of the option @var{scene}.
10650 This flag is enabled by default.
10651 @end table
10652 @end table
10653
10654 @section framestep
10655
10656 Select one frame every N-th frame.
10657
10658 This filter accepts the following option:
10659 @table @option
10660 @item step
10661 Select frame after every @code{step} frames.
10662 Allowed values are positive integers higher than 0. Default value is @code{1}.
10663 @end table
10664
10665 @section freezedetect
10666
10667 Detect frozen video.
10668
10669 This filter logs a message and sets frame metadata when it detects that the
10670 input video has no significant change in content during a specified duration.
10671 Video freeze detection calculates the mean average absolute difference of all
10672 the components of video frames and compares it to a noise floor.
10673
10674 The printed times and duration are expressed in seconds. The
10675 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
10676 whose timestamp equals or exceeds the detection duration and it contains the
10677 timestamp of the first frame of the freeze. The
10678 @code{lavfi.freezedetect.freeze_duration} and
10679 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
10680 after the freeze.
10681
10682 The filter accepts the following options:
10683
10684 @table @option
10685 @item noise, n
10686 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
10687 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
10688 0.001.
10689
10690 @item duration, d
10691 Set freeze duration until notification (default is 2 seconds).
10692 @end table
10693
10694 @anchor{frei0r}
10695 @section frei0r
10696
10697 Apply a frei0r effect to the input video.
10698
10699 To enable the compilation of this filter, you need to install the frei0r
10700 header and configure FFmpeg with @code{--enable-frei0r}.
10701
10702 It accepts the following parameters:
10703
10704 @table @option
10705
10706 @item filter_name
10707 The name of the frei0r effect to load. If the environment variable
10708 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
10709 directories specified by the colon-separated list in @env{FREI0R_PATH}.
10710 Otherwise, the standard frei0r paths are searched, in this order:
10711 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
10712 @file{/usr/lib/frei0r-1/}.
10713
10714 @item filter_params
10715 A '|'-separated list of parameters to pass to the frei0r effect.
10716
10717 @end table
10718
10719 A frei0r effect parameter can be a boolean (its value is either
10720 "y" or "n"), a double, a color (specified as
10721 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
10722 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
10723 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
10724 a position (specified as @var{X}/@var{Y}, where
10725 @var{X} and @var{Y} are floating point numbers) and/or a string.
10726
10727 The number and types of parameters depend on the loaded effect. If an
10728 effect parameter is not specified, the default value is set.
10729
10730 @subsection Examples
10731
10732 @itemize
10733 @item
10734 Apply the distort0r effect, setting the first two double parameters:
10735 @example
10736 frei0r=filter_name=distort0r:filter_params=0.5|0.01
10737 @end example
10738
10739 @item
10740 Apply the colordistance effect, taking a color as the first parameter:
10741 @example
10742 frei0r=colordistance:0.2/0.3/0.4
10743 frei0r=colordistance:violet
10744 frei0r=colordistance:0x112233
10745 @end example
10746
10747 @item
10748 Apply the perspective effect, specifying the top left and top right image
10749 positions:
10750 @example
10751 frei0r=perspective:0.2/0.2|0.8/0.2
10752 @end example
10753 @end itemize
10754
10755 For more information, see
10756 @url{http://frei0r.dyne.org}
10757
10758 @section fspp
10759
10760 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
10761
10762 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
10763 processing filter, one of them is performed once per block, not per pixel.
10764 This allows for much higher speed.
10765
10766 The filter accepts the following options:
10767
10768 @table @option
10769 @item quality
10770 Set quality. This option defines the number of levels for averaging. It accepts
10771 an integer in the range 4-5. Default value is @code{4}.
10772
10773 @item qp
10774 Force a constant quantization parameter. It accepts an integer in range 0-63.
10775 If not set, the filter will use the QP from the video stream (if available).
10776
10777 @item strength
10778 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
10779 more details but also more artifacts, while higher values make the image smoother
10780 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
10781
10782 @item use_bframe_qp
10783 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10784 option may cause flicker since the B-Frames have often larger QP. Default is
10785 @code{0} (not enabled).
10786
10787 @end table
10788
10789 @section gblur
10790
10791 Apply Gaussian blur filter.
10792
10793 The filter accepts the following options:
10794
10795 @table @option
10796 @item sigma
10797 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
10798
10799 @item steps
10800 Set number of steps for Gaussian approximation. Default is @code{1}.
10801
10802 @item planes
10803 Set which planes to filter. By default all planes are filtered.
10804
10805 @item sigmaV
10806 Set vertical sigma, if negative it will be same as @code{sigma}.
10807 Default is @code{-1}.
10808 @end table
10809
10810 @section geq
10811
10812 Apply generic equation to each pixel.
10813
10814 The filter accepts the following options:
10815
10816 @table @option
10817 @item lum_expr, lum
10818 Set the luminance expression.
10819 @item cb_expr, cb
10820 Set the chrominance blue expression.
10821 @item cr_expr, cr
10822 Set the chrominance red expression.
10823 @item alpha_expr, a
10824 Set the alpha expression.
10825 @item red_expr, r
10826 Set the red expression.
10827 @item green_expr, g
10828 Set the green expression.
10829 @item blue_expr, b
10830 Set the blue expression.
10831 @end table
10832
10833 The colorspace is selected according to the specified options. If one
10834 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
10835 options is specified, the filter will automatically select a YCbCr
10836 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
10837 @option{blue_expr} options is specified, it will select an RGB
10838 colorspace.
10839
10840 If one of the chrominance expression is not defined, it falls back on the other
10841 one. If no alpha expression is specified it will evaluate to opaque value.
10842 If none of chrominance expressions are specified, they will evaluate
10843 to the luminance expression.
10844
10845 The expressions can use the following variables and functions:
10846
10847 @table @option
10848 @item N
10849 The sequential number of the filtered frame, starting from @code{0}.
10850
10851 @item X
10852 @item Y
10853 The coordinates of the current sample.
10854
10855 @item W
10856 @item H
10857 The width and height of the image.
10858
10859 @item SW
10860 @item SH
10861 Width and height scale depending on the currently filtered plane. It is the
10862 ratio between the corresponding luma plane number of pixels and the current
10863 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
10864 @code{0.5,0.5} for chroma planes.
10865
10866 @item T
10867 Time of the current frame, expressed in seconds.
10868
10869 @item p(x, y)
10870 Return the value of the pixel at location (@var{x},@var{y}) of the current
10871 plane.
10872
10873 @item lum(x, y)
10874 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
10875 plane.
10876
10877 @item cb(x, y)
10878 Return the value of the pixel at location (@var{x},@var{y}) of the
10879 blue-difference chroma plane. Return 0 if there is no such plane.
10880
10881 @item cr(x, y)
10882 Return the value of the pixel at location (@var{x},@var{y}) of the
10883 red-difference chroma plane. Return 0 if there is no such plane.
10884
10885 @item r(x, y)
10886 @item g(x, y)
10887 @item b(x, y)
10888 Return the value of the pixel at location (@var{x},@var{y}) of the
10889 red/green/blue component. Return 0 if there is no such component.
10890
10891 @item alpha(x, y)
10892 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
10893 plane. Return 0 if there is no such plane.
10894 @end table
10895
10896 For functions, if @var{x} and @var{y} are outside the area, the value will be
10897 automatically clipped to the closer edge.
10898
10899 @subsection Examples
10900
10901 @itemize
10902 @item
10903 Flip the image horizontally:
10904 @example
10905 geq=p(W-X\,Y)
10906 @end example
10907
10908 @item
10909 Generate a bidimensional sine wave, with angle @code{PI/3} and a
10910 wavelength of 100 pixels:
10911 @example
10912 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
10913 @end example
10914
10915 @item
10916 Generate a fancy enigmatic moving light:
10917 @example
10918 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
10919 @end example
10920
10921 @item
10922 Generate a quick emboss effect:
10923 @example
10924 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
10925 @end example
10926
10927 @item
10928 Modify RGB components depending on pixel position:
10929 @example
10930 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
10931 @end example
10932
10933 @item
10934 Create a radial gradient that is the same size as the input (also see
10935 the @ref{vignette} filter):
10936 @example
10937 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
10938 @end example
10939 @end itemize
10940
10941 @section gradfun
10942
10943 Fix the banding artifacts that are sometimes introduced into nearly flat
10944 regions by truncation to 8-bit color depth.
10945 Interpolate the gradients that should go where the bands are, and
10946 dither them.
10947
10948 It is designed for playback only.  Do not use it prior to
10949 lossy compression, because compression tends to lose the dither and
10950 bring back the bands.
10951
10952 It accepts the following parameters:
10953
10954 @table @option
10955
10956 @item strength
10957 The maximum amount by which the filter will change any one pixel. This is also
10958 the threshold for detecting nearly flat regions. Acceptable values range from
10959 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
10960 valid range.
10961
10962 @item radius
10963 The neighborhood to fit the gradient to. A larger radius makes for smoother
10964 gradients, but also prevents the filter from modifying the pixels near detailed
10965 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
10966 values will be clipped to the valid range.
10967
10968 @end table
10969
10970 Alternatively, the options can be specified as a flat string:
10971 @var{strength}[:@var{radius}]
10972
10973 @subsection Examples
10974
10975 @itemize
10976 @item
10977 Apply the filter with a @code{3.5} strength and radius of @code{8}:
10978 @example
10979 gradfun=3.5:8
10980 @end example
10981
10982 @item
10983 Specify radius, omitting the strength (which will fall-back to the default
10984 value):
10985 @example
10986 gradfun=radius=8
10987 @end example
10988
10989 @end itemize
10990
10991 @section graphmonitor, agraphmonitor
10992 Show various filtergraph stats.
10993
10994 With this filter one can debug complete filtergraph.
10995 Especially issues with links filling with queued frames.
10996
10997 The filter accepts the following options:
10998
10999 @table @option
11000 @item size, s
11001 Set video output size. Default is @var{hd720}.
11002
11003 @item opacity, o
11004 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11005
11006 @item mode, m
11007 Set output mode, can be @var{fulll} or @var{compact}.
11008 In @var{compact} mode only filters with some queued frames have displayed stats.
11009
11010 @item flags, f
11011 Set flags which enable which stats are shown in video.
11012
11013 Available values for flags are:
11014 @table @samp
11015 @item queue
11016 Display number of queued frames in each link.
11017
11018 @item frame_count_in
11019 Display number of frames taken from filter.
11020
11021 @item frame_count_out
11022 Display number of frames given out from filter.
11023
11024 @item pts
11025 Display current filtered frame pts.
11026
11027 @item time
11028 Display current filtered frame time.
11029
11030 @item timebase
11031 Display time base for filter link.
11032
11033 @item format
11034 Display used format for filter link.
11035
11036 @item size
11037 Display video size or number of audio channels in case of audio used by filter link.
11038
11039 @item rate
11040 Display video frame rate or sample rate in case of audio used by filter link.
11041 @end table
11042
11043 @item rate, r
11044 Set upper limit for video rate of output stream, Default value is @var{25}.
11045 This guarantee that output video frame rate will not be higher than this value.
11046 @end table
11047
11048 @section greyedge
11049 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11050 and corrects the scene colors accordingly.
11051
11052 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11053
11054 The filter accepts the following options:
11055
11056 @table @option
11057 @item difford
11058 The order of differentiation to be applied on the scene. Must be chosen in the range
11059 [0,2] and default value is 1.
11060
11061 @item minknorm
11062 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11063 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11064 max value instead of calculating Minkowski distance.
11065
11066 @item sigma
11067 The standard deviation of Gaussian blur to be applied on the scene. Must be
11068 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11069 can't be equal to 0 if @var{difford} is greater than 0.
11070 @end table
11071
11072 @subsection Examples
11073 @itemize
11074
11075 @item
11076 Grey Edge:
11077 @example
11078 greyedge=difford=1:minknorm=5:sigma=2
11079 @end example
11080
11081 @item
11082 Max Edge:
11083 @example
11084 greyedge=difford=1:minknorm=0:sigma=2
11085 @end example
11086
11087 @end itemize
11088
11089 @anchor{haldclut}
11090 @section haldclut
11091
11092 Apply a Hald CLUT to a video stream.
11093
11094 First input is the video stream to process, and second one is the Hald CLUT.
11095 The Hald CLUT input can be a simple picture or a complete video stream.
11096
11097 The filter accepts the following options:
11098
11099 @table @option
11100 @item shortest
11101 Force termination when the shortest input terminates. Default is @code{0}.
11102 @item repeatlast
11103 Continue applying the last CLUT after the end of the stream. A value of
11104 @code{0} disable the filter after the last frame of the CLUT is reached.
11105 Default is @code{1}.
11106 @end table
11107
11108 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11109 filters share the same internals).
11110
11111 This filter also supports the @ref{framesync} options.
11112
11113 More information about the Hald CLUT can be found on Eskil Steenberg's website
11114 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11115
11116 @subsection Workflow examples
11117
11118 @subsubsection Hald CLUT video stream
11119
11120 Generate an identity Hald CLUT stream altered with various effects:
11121 @example
11122 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
11123 @end example
11124
11125 Note: make sure you use a lossless codec.
11126
11127 Then use it with @code{haldclut} to apply it on some random stream:
11128 @example
11129 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11130 @end example
11131
11132 The Hald CLUT will be applied to the 10 first seconds (duration of
11133 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11134 to the remaining frames of the @code{mandelbrot} stream.
11135
11136 @subsubsection Hald CLUT with preview
11137
11138 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11139 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11140 biggest possible square starting at the top left of the picture. The remaining
11141 padding pixels (bottom or right) will be ignored. This area can be used to add
11142 a preview of the Hald CLUT.
11143
11144 Typically, the following generated Hald CLUT will be supported by the
11145 @code{haldclut} filter:
11146
11147 @example
11148 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11149    pad=iw+320 [padded_clut];
11150    smptebars=s=320x256, split [a][b];
11151    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11152    [main][b] overlay=W-320" -frames:v 1 clut.png
11153 @end example
11154
11155 It contains the original and a preview of the effect of the CLUT: SMPTE color
11156 bars are displayed on the right-top, and below the same color bars processed by
11157 the color changes.
11158
11159 Then, the effect of this Hald CLUT can be visualized with:
11160 @example
11161 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11162 @end example
11163
11164 @section hflip
11165
11166 Flip the input video horizontally.
11167
11168 For example, to horizontally flip the input video with @command{ffmpeg}:
11169 @example
11170 ffmpeg -i in.avi -vf "hflip" out.avi
11171 @end example
11172
11173 @section histeq
11174 This filter applies a global color histogram equalization on a
11175 per-frame basis.
11176
11177 It can be used to correct video that has a compressed range of pixel
11178 intensities.  The filter redistributes the pixel intensities to
11179 equalize their distribution across the intensity range. It may be
11180 viewed as an "automatically adjusting contrast filter". This filter is
11181 useful only for correcting degraded or poorly captured source
11182 video.
11183
11184 The filter accepts the following options:
11185
11186 @table @option
11187 @item strength
11188 Determine the amount of equalization to be applied.  As the strength
11189 is reduced, the distribution of pixel intensities more-and-more
11190 approaches that of the input frame. The value must be a float number
11191 in the range [0,1] and defaults to 0.200.
11192
11193 @item intensity
11194 Set the maximum intensity that can generated and scale the output
11195 values appropriately.  The strength should be set as desired and then
11196 the intensity can be limited if needed to avoid washing-out. The value
11197 must be a float number in the range [0,1] and defaults to 0.210.
11198
11199 @item antibanding
11200 Set the antibanding level. If enabled the filter will randomly vary
11201 the luminance of output pixels by a small amount to avoid banding of
11202 the histogram. Possible values are @code{none}, @code{weak} or
11203 @code{strong}. It defaults to @code{none}.
11204 @end table
11205
11206 @section histogram
11207
11208 Compute and draw a color distribution histogram for the input video.
11209
11210 The computed histogram is a representation of the color component
11211 distribution in an image.
11212
11213 Standard histogram displays the color components distribution in an image.
11214 Displays color graph for each color component. Shows distribution of
11215 the Y, U, V, A or R, G, B components, depending on input format, in the
11216 current frame. Below each graph a color component scale meter is shown.
11217
11218 The filter accepts the following options:
11219
11220 @table @option
11221 @item level_height
11222 Set height of level. Default value is @code{200}.
11223 Allowed range is [50, 2048].
11224
11225 @item scale_height
11226 Set height of color scale. Default value is @code{12}.
11227 Allowed range is [0, 40].
11228
11229 @item display_mode
11230 Set display mode.
11231 It accepts the following values:
11232 @table @samp
11233 @item stack
11234 Per color component graphs are placed below each other.
11235
11236 @item parade
11237 Per color component graphs are placed side by side.
11238
11239 @item overlay
11240 Presents information identical to that in the @code{parade}, except
11241 that the graphs representing color components are superimposed directly
11242 over one another.
11243 @end table
11244 Default is @code{stack}.
11245
11246 @item levels_mode
11247 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11248 Default is @code{linear}.
11249
11250 @item components
11251 Set what color components to display.
11252 Default is @code{7}.
11253
11254 @item fgopacity
11255 Set foreground opacity. Default is @code{0.7}.
11256
11257 @item bgopacity
11258 Set background opacity. Default is @code{0.5}.
11259 @end table
11260
11261 @subsection Examples
11262
11263 @itemize
11264
11265 @item
11266 Calculate and draw histogram:
11267 @example
11268 ffplay -i input -vf histogram
11269 @end example
11270
11271 @end itemize
11272
11273 @anchor{hqdn3d}
11274 @section hqdn3d
11275
11276 This is a high precision/quality 3d denoise filter. It aims to reduce
11277 image noise, producing smooth images and making still images really
11278 still. It should enhance compressibility.
11279
11280 It accepts the following optional parameters:
11281
11282 @table @option
11283 @item luma_spatial
11284 A non-negative floating point number which specifies spatial luma strength.
11285 It defaults to 4.0.
11286
11287 @item chroma_spatial
11288 A non-negative floating point number which specifies spatial chroma strength.
11289 It defaults to 3.0*@var{luma_spatial}/4.0.
11290
11291 @item luma_tmp
11292 A floating point number which specifies luma temporal strength. It defaults to
11293 6.0*@var{luma_spatial}/4.0.
11294
11295 @item chroma_tmp
11296 A floating point number which specifies chroma temporal strength. It defaults to
11297 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11298 @end table
11299
11300 @anchor{hwdownload}
11301 @section hwdownload
11302
11303 Download hardware frames to system memory.
11304
11305 The input must be in hardware frames, and the output a non-hardware format.
11306 Not all formats will be supported on the output - it may be necessary to insert
11307 an additional @option{format} filter immediately following in the graph to get
11308 the output in a supported format.
11309
11310 @section hwmap
11311
11312 Map hardware frames to system memory or to another device.
11313
11314 This filter has several different modes of operation; which one is used depends
11315 on the input and output formats:
11316 @itemize
11317 @item
11318 Hardware frame input, normal frame output
11319
11320 Map the input frames to system memory and pass them to the output.  If the
11321 original hardware frame is later required (for example, after overlaying
11322 something else on part of it), the @option{hwmap} filter can be used again
11323 in the next mode to retrieve it.
11324 @item
11325 Normal frame input, hardware frame output
11326
11327 If the input is actually a software-mapped hardware frame, then unmap it -
11328 that is, return the original hardware frame.
11329
11330 Otherwise, a device must be provided.  Create new hardware surfaces on that
11331 device for the output, then map them back to the software format at the input
11332 and give those frames to the preceding filter.  This will then act like the
11333 @option{hwupload} filter, but may be able to avoid an additional copy when
11334 the input is already in a compatible format.
11335 @item
11336 Hardware frame input and output
11337
11338 A device must be supplied for the output, either directly or with the
11339 @option{derive_device} option.  The input and output devices must be of
11340 different types and compatible - the exact meaning of this is
11341 system-dependent, but typically it means that they must refer to the same
11342 underlying hardware context (for example, refer to the same graphics card).
11343
11344 If the input frames were originally created on the output device, then unmap
11345 to retrieve the original frames.
11346
11347 Otherwise, map the frames to the output device - create new hardware frames
11348 on the output corresponding to the frames on the input.
11349 @end itemize
11350
11351 The following additional parameters are accepted:
11352
11353 @table @option
11354 @item mode
11355 Set the frame mapping mode.  Some combination of:
11356 @table @var
11357 @item read
11358 The mapped frame should be readable.
11359 @item write
11360 The mapped frame should be writeable.
11361 @item overwrite
11362 The mapping will always overwrite the entire frame.
11363
11364 This may improve performance in some cases, as the original contents of the
11365 frame need not be loaded.
11366 @item direct
11367 The mapping must not involve any copying.
11368
11369 Indirect mappings to copies of frames are created in some cases where either
11370 direct mapping is not possible or it would have unexpected properties.
11371 Setting this flag ensures that the mapping is direct and will fail if that is
11372 not possible.
11373 @end table
11374 Defaults to @var{read+write} if not specified.
11375
11376 @item derive_device @var{type}
11377 Rather than using the device supplied at initialisation, instead derive a new
11378 device of type @var{type} from the device the input frames exist on.
11379
11380 @item reverse
11381 In a hardware to hardware mapping, map in reverse - create frames in the sink
11382 and map them back to the source.  This may be necessary in some cases where
11383 a mapping in one direction is required but only the opposite direction is
11384 supported by the devices being used.
11385
11386 This option is dangerous - it may break the preceding filter in undefined
11387 ways if there are any additional constraints on that filter's output.
11388 Do not use it without fully understanding the implications of its use.
11389 @end table
11390
11391 @anchor{hwupload}
11392 @section hwupload
11393
11394 Upload system memory frames to hardware surfaces.
11395
11396 The device to upload to must be supplied when the filter is initialised.  If
11397 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
11398 option.
11399
11400 @anchor{hwupload_cuda}
11401 @section hwupload_cuda
11402
11403 Upload system memory frames to a CUDA device.
11404
11405 It accepts the following optional parameters:
11406
11407 @table @option
11408 @item device
11409 The number of the CUDA device to use
11410 @end table
11411
11412 @section hqx
11413
11414 Apply a high-quality magnification filter designed for pixel art. This filter
11415 was originally created by Maxim Stepin.
11416
11417 It accepts the following option:
11418
11419 @table @option
11420 @item n
11421 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
11422 @code{hq3x} and @code{4} for @code{hq4x}.
11423 Default is @code{3}.
11424 @end table
11425
11426 @section hstack
11427 Stack input videos horizontally.
11428
11429 All streams must be of same pixel format and of same height.
11430
11431 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11432 to create same output.
11433
11434 The filter accepts the following option:
11435
11436 @table @option
11437 @item inputs
11438 Set number of input streams. Default is 2.
11439
11440 @item shortest
11441 If set to 1, force the output to terminate when the shortest input
11442 terminates. Default value is 0.
11443 @end table
11444
11445 @section hue
11446
11447 Modify the hue and/or the saturation of the input.
11448
11449 It accepts the following parameters:
11450
11451 @table @option
11452 @item h
11453 Specify the hue angle as a number of degrees. It accepts an expression,
11454 and defaults to "0".
11455
11456 @item s
11457 Specify the saturation in the [-10,10] range. It accepts an expression and
11458 defaults to "1".
11459
11460 @item H
11461 Specify the hue angle as a number of radians. It accepts an
11462 expression, and defaults to "0".
11463
11464 @item b
11465 Specify the brightness in the [-10,10] range. It accepts an expression and
11466 defaults to "0".
11467 @end table
11468
11469 @option{h} and @option{H} are mutually exclusive, and can't be
11470 specified at the same time.
11471
11472 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11473 expressions containing the following constants:
11474
11475 @table @option
11476 @item n
11477 frame count of the input frame starting from 0
11478
11479 @item pts
11480 presentation timestamp of the input frame expressed in time base units
11481
11482 @item r
11483 frame rate of the input video, NAN if the input frame rate is unknown
11484
11485 @item t
11486 timestamp expressed in seconds, NAN if the input timestamp is unknown
11487
11488 @item tb
11489 time base of the input video
11490 @end table
11491
11492 @subsection Examples
11493
11494 @itemize
11495 @item
11496 Set the hue to 90 degrees and the saturation to 1.0:
11497 @example
11498 hue=h=90:s=1
11499 @end example
11500
11501 @item
11502 Same command but expressing the hue in radians:
11503 @example
11504 hue=H=PI/2:s=1
11505 @end example
11506
11507 @item
11508 Rotate hue and make the saturation swing between 0
11509 and 2 over a period of 1 second:
11510 @example
11511 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11512 @end example
11513
11514 @item
11515 Apply a 3 seconds saturation fade-in effect starting at 0:
11516 @example
11517 hue="s=min(t/3\,1)"
11518 @end example
11519
11520 The general fade-in expression can be written as:
11521 @example
11522 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11523 @end example
11524
11525 @item
11526 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11527 @example
11528 hue="s=max(0\, min(1\, (8-t)/3))"
11529 @end example
11530
11531 The general fade-out expression can be written as:
11532 @example
11533 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
11534 @end example
11535
11536 @end itemize
11537
11538 @subsection Commands
11539
11540 This filter supports the following commands:
11541 @table @option
11542 @item b
11543 @item s
11544 @item h
11545 @item H
11546 Modify the hue and/or the saturation and/or brightness of the input video.
11547 The command accepts the same syntax of the corresponding option.
11548
11549 If the specified expression is not valid, it is kept at its current
11550 value.
11551 @end table
11552
11553 @section hysteresis
11554
11555 Grow first stream into second stream by connecting components.
11556 This makes it possible to build more robust edge masks.
11557
11558 This filter accepts the following options:
11559
11560 @table @option
11561 @item planes
11562 Set which planes will be processed as bitmap, unprocessed planes will be
11563 copied from first stream.
11564 By default value 0xf, all planes will be processed.
11565
11566 @item threshold
11567 Set threshold which is used in filtering. If pixel component value is higher than
11568 this value filter algorithm for connecting components is activated.
11569 By default value is 0.
11570 @end table
11571
11572 @section idet
11573
11574 Detect video interlacing type.
11575
11576 This filter tries to detect if the input frames are interlaced, progressive,
11577 top or bottom field first. It will also try to detect fields that are
11578 repeated between adjacent frames (a sign of telecine).
11579
11580 Single frame detection considers only immediately adjacent frames when classifying each frame.
11581 Multiple frame detection incorporates the classification history of previous frames.
11582
11583 The filter will log these metadata values:
11584
11585 @table @option
11586 @item single.current_frame
11587 Detected type of current frame using single-frame detection. One of:
11588 ``tff'' (top field first), ``bff'' (bottom field first),
11589 ``progressive'', or ``undetermined''
11590
11591 @item single.tff
11592 Cumulative number of frames detected as top field first using single-frame detection.
11593
11594 @item multiple.tff
11595 Cumulative number of frames detected as top field first using multiple-frame detection.
11596
11597 @item single.bff
11598 Cumulative number of frames detected as bottom field first using single-frame detection.
11599
11600 @item multiple.current_frame
11601 Detected type of current frame using multiple-frame detection. One of:
11602 ``tff'' (top field first), ``bff'' (bottom field first),
11603 ``progressive'', or ``undetermined''
11604
11605 @item multiple.bff
11606 Cumulative number of frames detected as bottom field first using multiple-frame detection.
11607
11608 @item single.progressive
11609 Cumulative number of frames detected as progressive using single-frame detection.
11610
11611 @item multiple.progressive
11612 Cumulative number of frames detected as progressive using multiple-frame detection.
11613
11614 @item single.undetermined
11615 Cumulative number of frames that could not be classified using single-frame detection.
11616
11617 @item multiple.undetermined
11618 Cumulative number of frames that could not be classified using multiple-frame detection.
11619
11620 @item repeated.current_frame
11621 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
11622
11623 @item repeated.neither
11624 Cumulative number of frames with no repeated field.
11625
11626 @item repeated.top
11627 Cumulative number of frames with the top field repeated from the previous frame's top field.
11628
11629 @item repeated.bottom
11630 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
11631 @end table
11632
11633 The filter accepts the following options:
11634
11635 @table @option
11636 @item intl_thres
11637 Set interlacing threshold.
11638 @item prog_thres
11639 Set progressive threshold.
11640 @item rep_thres
11641 Threshold for repeated field detection.
11642 @item half_life
11643 Number of frames after which a given frame's contribution to the
11644 statistics is halved (i.e., it contributes only 0.5 to its
11645 classification). The default of 0 means that all frames seen are given
11646 full weight of 1.0 forever.
11647 @item analyze_interlaced_flag
11648 When this is not 0 then idet will use the specified number of frames to determine
11649 if the interlaced flag is accurate, it will not count undetermined frames.
11650 If the flag is found to be accurate it will be used without any further
11651 computations, if it is found to be inaccurate it will be cleared without any
11652 further computations. This allows inserting the idet filter as a low computational
11653 method to clean up the interlaced flag
11654 @end table
11655
11656 @section il
11657
11658 Deinterleave or interleave fields.
11659
11660 This filter allows one to process interlaced images fields without
11661 deinterlacing them. Deinterleaving splits the input frame into 2
11662 fields (so called half pictures). Odd lines are moved to the top
11663 half of the output image, even lines to the bottom half.
11664 You can process (filter) them independently and then re-interleave them.
11665
11666 The filter accepts the following options:
11667
11668 @table @option
11669 @item luma_mode, l
11670 @item chroma_mode, c
11671 @item alpha_mode, a
11672 Available values for @var{luma_mode}, @var{chroma_mode} and
11673 @var{alpha_mode} are:
11674
11675 @table @samp
11676 @item none
11677 Do nothing.
11678
11679 @item deinterleave, d
11680 Deinterleave fields, placing one above the other.
11681
11682 @item interleave, i
11683 Interleave fields. Reverse the effect of deinterleaving.
11684 @end table
11685 Default value is @code{none}.
11686
11687 @item luma_swap, ls
11688 @item chroma_swap, cs
11689 @item alpha_swap, as
11690 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
11691 @end table
11692
11693 @section inflate
11694
11695 Apply inflate effect to the video.
11696
11697 This filter replaces the pixel by the local(3x3) average by taking into account
11698 only values higher than the pixel.
11699
11700 It accepts the following options:
11701
11702 @table @option
11703 @item threshold0
11704 @item threshold1
11705 @item threshold2
11706 @item threshold3
11707 Limit the maximum change for each plane, default is 65535.
11708 If 0, plane will remain unchanged.
11709 @end table
11710
11711 @section interlace
11712
11713 Simple interlacing filter from progressive contents. This interleaves upper (or
11714 lower) lines from odd frames with lower (or upper) lines from even frames,
11715 halving the frame rate and preserving image height.
11716
11717 @example
11718    Original        Original             New Frame
11719    Frame 'j'      Frame 'j+1'             (tff)
11720   ==========      ===========       ==================
11721     Line 0  -------------------->    Frame 'j' Line 0
11722     Line 1          Line 1  ---->   Frame 'j+1' Line 1
11723     Line 2 --------------------->    Frame 'j' Line 2
11724     Line 3          Line 3  ---->   Frame 'j+1' Line 3
11725      ...             ...                   ...
11726 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
11727 @end example
11728
11729 It accepts the following optional parameters:
11730
11731 @table @option
11732 @item scan
11733 This determines whether the interlaced frame is taken from the even
11734 (tff - default) or odd (bff) lines of the progressive frame.
11735
11736 @item lowpass
11737 Vertical lowpass filter to avoid twitter interlacing and
11738 reduce moire patterns.
11739
11740 @table @samp
11741 @item 0, off
11742 Disable vertical lowpass filter
11743
11744 @item 1, linear
11745 Enable linear filter (default)
11746
11747 @item 2, complex
11748 Enable complex filter. This will slightly less reduce twitter and moire
11749 but better retain detail and subjective sharpness impression.
11750
11751 @end table
11752 @end table
11753
11754 @section kerndeint
11755
11756 Deinterlace input video by applying Donald Graft's adaptive kernel
11757 deinterling. Work on interlaced parts of a video to produce
11758 progressive frames.
11759
11760 The description of the accepted parameters follows.
11761
11762 @table @option
11763 @item thresh
11764 Set the threshold which affects the filter's tolerance when
11765 determining if a pixel line must be processed. It must be an integer
11766 in the range [0,255] and defaults to 10. A value of 0 will result in
11767 applying the process on every pixels.
11768
11769 @item map
11770 Paint pixels exceeding the threshold value to white if set to 1.
11771 Default is 0.
11772
11773 @item order
11774 Set the fields order. Swap fields if set to 1, leave fields alone if
11775 0. Default is 0.
11776
11777 @item sharp
11778 Enable additional sharpening if set to 1. Default is 0.
11779
11780 @item twoway
11781 Enable twoway sharpening if set to 1. Default is 0.
11782 @end table
11783
11784 @subsection Examples
11785
11786 @itemize
11787 @item
11788 Apply default values:
11789 @example
11790 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
11791 @end example
11792
11793 @item
11794 Enable additional sharpening:
11795 @example
11796 kerndeint=sharp=1
11797 @end example
11798
11799 @item
11800 Paint processed pixels in white:
11801 @example
11802 kerndeint=map=1
11803 @end example
11804 @end itemize
11805
11806 @section lagfun
11807
11808 Slowly update darker pixels.
11809
11810 This filter makes short flashes of light appear longer.
11811 This filter accepts the following options:
11812
11813 @table @option
11814 @item decay
11815 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
11816
11817 @item planes
11818 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
11819 @end table
11820
11821 @section lenscorrection
11822
11823 Correct radial lens distortion
11824
11825 This filter can be used to correct for radial distortion as can result from the use
11826 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
11827 one can use tools available for example as part of opencv or simply trial-and-error.
11828 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
11829 and extract the k1 and k2 coefficients from the resulting matrix.
11830
11831 Note that effectively the same filter is available in the open-source tools Krita and
11832 Digikam from the KDE project.
11833
11834 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
11835 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
11836 brightness distribution, so you may want to use both filters together in certain
11837 cases, though you will have to take care of ordering, i.e. whether vignetting should
11838 be applied before or after lens correction.
11839
11840 @subsection Options
11841
11842 The filter accepts the following options:
11843
11844 @table @option
11845 @item cx
11846 Relative x-coordinate of the focal point of the image, and thereby the center of the
11847 distortion. This value has a range [0,1] and is expressed as fractions of the image
11848 width. Default is 0.5.
11849 @item cy
11850 Relative y-coordinate of the focal point of the image, and thereby the center of the
11851 distortion. This value has a range [0,1] and is expressed as fractions of the image
11852 height. Default is 0.5.
11853 @item k1
11854 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
11855 no correction. Default is 0.
11856 @item k2
11857 Coefficient of the double quadratic correction term. This value has a range [-1,1].
11858 0 means no correction. Default is 0.
11859 @end table
11860
11861 The formula that generates the correction is:
11862
11863 @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)
11864
11865 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
11866 distances from the focal point in the source and target images, respectively.
11867
11868 @section lensfun
11869
11870 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
11871
11872 The @code{lensfun} filter requires the camera make, camera model, and lens model
11873 to apply the lens correction. The filter will load the lensfun database and
11874 query it to find the corresponding camera and lens entries in the database. As
11875 long as these entries can be found with the given options, the filter can
11876 perform corrections on frames. Note that incomplete strings will result in the
11877 filter choosing the best match with the given options, and the filter will
11878 output the chosen camera and lens models (logged with level "info"). You must
11879 provide the make, camera model, and lens model as they are required.
11880
11881 The filter accepts the following options:
11882
11883 @table @option
11884 @item make
11885 The make of the camera (for example, "Canon"). This option is required.
11886
11887 @item model
11888 The model of the camera (for example, "Canon EOS 100D"). This option is
11889 required.
11890
11891 @item lens_model
11892 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
11893 option is required.
11894
11895 @item mode
11896 The type of correction to apply. The following values are valid options:
11897
11898 @table @samp
11899 @item vignetting
11900 Enables fixing lens vignetting.
11901
11902 @item geometry
11903 Enables fixing lens geometry. This is the default.
11904
11905 @item subpixel
11906 Enables fixing chromatic aberrations.
11907
11908 @item vig_geo
11909 Enables fixing lens vignetting and lens geometry.
11910
11911 @item vig_subpixel
11912 Enables fixing lens vignetting and chromatic aberrations.
11913
11914 @item distortion
11915 Enables fixing both lens geometry and chromatic aberrations.
11916
11917 @item all
11918 Enables all possible corrections.
11919
11920 @end table
11921 @item focal_length
11922 The focal length of the image/video (zoom; expected constant for video). For
11923 example, a 18--55mm lens has focal length range of [18--55], so a value in that
11924 range should be chosen when using that lens. Default 18.
11925
11926 @item aperture
11927 The aperture of the image/video (expected constant for video). Note that
11928 aperture is only used for vignetting correction. Default 3.5.
11929
11930 @item focus_distance
11931 The focus distance of the image/video (expected constant for video). Note that
11932 focus distance is only used for vignetting and only slightly affects the
11933 vignetting correction process. If unknown, leave it at the default value (which
11934 is 1000).
11935
11936 @item scale
11937 The scale factor which is applied after transformation. After correction the
11938 video is no longer necessarily rectangular. This parameter controls how much of
11939 the resulting image is visible. The value 0 means that a value will be chosen
11940 automatically such that there is little or no unmapped area in the output
11941 image. 1.0 means that no additional scaling is done. Lower values may result
11942 in more of the corrected image being visible, while higher values may avoid
11943 unmapped areas in the output.
11944
11945 @item target_geometry
11946 The target geometry of the output image/video. The following values are valid
11947 options:
11948
11949 @table @samp
11950 @item rectilinear (default)
11951 @item fisheye
11952 @item panoramic
11953 @item equirectangular
11954 @item fisheye_orthographic
11955 @item fisheye_stereographic
11956 @item fisheye_equisolid
11957 @item fisheye_thoby
11958 @end table
11959 @item reverse
11960 Apply the reverse of image correction (instead of correcting distortion, apply
11961 it).
11962
11963 @item interpolation
11964 The type of interpolation used when correcting distortion. The following values
11965 are valid options:
11966
11967 @table @samp
11968 @item nearest
11969 @item linear (default)
11970 @item lanczos
11971 @end table
11972 @end table
11973
11974 @subsection Examples
11975
11976 @itemize
11977 @item
11978 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
11979 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
11980 aperture of "8.0".
11981
11982 @example
11983 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
11984 @end example
11985
11986 @item
11987 Apply the same as before, but only for the first 5 seconds of video.
11988
11989 @example
11990 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
11991 @end example
11992
11993 @end itemize
11994
11995 @section libvmaf
11996
11997 Obtain the VMAF (Video Multi-Method Assessment Fusion)
11998 score between two input videos.
11999
12000 The obtained VMAF score is printed through the logging system.
12001
12002 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12003 After installing the library it can be enabled using:
12004 @code{./configure --enable-libvmaf --enable-version3}.
12005 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12006
12007 The filter has following options:
12008
12009 @table @option
12010 @item model_path
12011 Set the model path which is to be used for SVM.
12012 Default value: @code{"vmaf_v0.6.1.pkl"}
12013
12014 @item log_path
12015 Set the file path to be used to store logs.
12016
12017 @item log_fmt
12018 Set the format of the log file (xml or json).
12019
12020 @item enable_transform
12021 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12022 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12023 Default value: @code{false}
12024
12025 @item phone_model
12026 Invokes the phone model which will generate VMAF scores higher than in the
12027 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12028
12029 @item psnr
12030 Enables computing psnr along with vmaf.
12031
12032 @item ssim
12033 Enables computing ssim along with vmaf.
12034
12035 @item ms_ssim
12036 Enables computing ms_ssim along with vmaf.
12037
12038 @item pool
12039 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
12040
12041 @item n_threads
12042 Set number of threads to be used when computing vmaf.
12043
12044 @item n_subsample
12045 Set interval for frame subsampling used when computing vmaf.
12046
12047 @item enable_conf_interval
12048 Enables confidence interval.
12049 @end table
12050
12051 This filter also supports the @ref{framesync} options.
12052
12053 On the below examples the input file @file{main.mpg} being processed is
12054 compared with the reference file @file{ref.mpg}.
12055
12056 @example
12057 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12058 @end example
12059
12060 Example with options:
12061 @example
12062 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12063 @end example
12064
12065 @section limiter
12066
12067 Limits the pixel components values to the specified range [min, max].
12068
12069 The filter accepts the following options:
12070
12071 @table @option
12072 @item min
12073 Lower bound. Defaults to the lowest allowed value for the input.
12074
12075 @item max
12076 Upper bound. Defaults to the highest allowed value for the input.
12077
12078 @item planes
12079 Specify which planes will be processed. Defaults to all available.
12080 @end table
12081
12082 @section loop
12083
12084 Loop video frames.
12085
12086 The filter accepts the following options:
12087
12088 @table @option
12089 @item loop
12090 Set the number of loops. Setting this value to -1 will result in infinite loops.
12091 Default is 0.
12092
12093 @item size
12094 Set maximal size in number of frames. Default is 0.
12095
12096 @item start
12097 Set first frame of loop. Default is 0.
12098 @end table
12099
12100 @subsection Examples
12101
12102 @itemize
12103 @item
12104 Loop single first frame infinitely:
12105 @example
12106 loop=loop=-1:size=1:start=0
12107 @end example
12108
12109 @item
12110 Loop single first frame 10 times:
12111 @example
12112 loop=loop=10:size=1:start=0
12113 @end example
12114
12115 @item
12116 Loop 10 first frames 5 times:
12117 @example
12118 loop=loop=5:size=10:start=0
12119 @end example
12120 @end itemize
12121
12122 @section lut1d
12123
12124 Apply a 1D LUT to an input video.
12125
12126 The filter accepts the following options:
12127
12128 @table @option
12129 @item file
12130 Set the 1D LUT file name.
12131
12132 Currently supported formats:
12133 @table @samp
12134 @item cube
12135 Iridas
12136 @item csp
12137 cineSpace
12138 @end table
12139
12140 @item interp
12141 Select interpolation mode.
12142
12143 Available values are:
12144
12145 @table @samp
12146 @item nearest
12147 Use values from the nearest defined point.
12148 @item linear
12149 Interpolate values using the linear interpolation.
12150 @item cosine
12151 Interpolate values using the cosine interpolation.
12152 @item cubic
12153 Interpolate values using the cubic interpolation.
12154 @item spline
12155 Interpolate values using the spline interpolation.
12156 @end table
12157 @end table
12158
12159 @anchor{lut3d}
12160 @section lut3d
12161
12162 Apply a 3D LUT to an input video.
12163
12164 The filter accepts the following options:
12165
12166 @table @option
12167 @item file
12168 Set the 3D LUT file name.
12169
12170 Currently supported formats:
12171 @table @samp
12172 @item 3dl
12173 AfterEffects
12174 @item cube
12175 Iridas
12176 @item dat
12177 DaVinci
12178 @item m3d
12179 Pandora
12180 @item csp
12181 cineSpace
12182 @end table
12183 @item interp
12184 Select interpolation mode.
12185
12186 Available values are:
12187
12188 @table @samp
12189 @item nearest
12190 Use values from the nearest defined point.
12191 @item trilinear
12192 Interpolate values using the 8 points defining a cube.
12193 @item tetrahedral
12194 Interpolate values using a tetrahedron.
12195 @end table
12196 @end table
12197
12198 @section lumakey
12199
12200 Turn certain luma values into transparency.
12201
12202 The filter accepts the following options:
12203
12204 @table @option
12205 @item threshold
12206 Set the luma which will be used as base for transparency.
12207 Default value is @code{0}.
12208
12209 @item tolerance
12210 Set the range of luma values to be keyed out.
12211 Default value is @code{0}.
12212
12213 @item softness
12214 Set the range of softness. Default value is @code{0}.
12215 Use this to control gradual transition from zero to full transparency.
12216 @end table
12217
12218 @section lut, lutrgb, lutyuv
12219
12220 Compute a look-up table for binding each pixel component input value
12221 to an output value, and apply it to the input video.
12222
12223 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12224 to an RGB input video.
12225
12226 These filters accept the following parameters:
12227 @table @option
12228 @item c0
12229 set first pixel component expression
12230 @item c1
12231 set second pixel component expression
12232 @item c2
12233 set third pixel component expression
12234 @item c3
12235 set fourth pixel component expression, corresponds to the alpha component
12236
12237 @item r
12238 set red component expression
12239 @item g
12240 set green component expression
12241 @item b
12242 set blue component expression
12243 @item a
12244 alpha component expression
12245
12246 @item y
12247 set Y/luminance component expression
12248 @item u
12249 set U/Cb component expression
12250 @item v
12251 set V/Cr component expression
12252 @end table
12253
12254 Each of them specifies the expression to use for computing the lookup table for
12255 the corresponding pixel component values.
12256
12257 The exact component associated to each of the @var{c*} options depends on the
12258 format in input.
12259
12260 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12261 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12262
12263 The expressions can contain the following constants and functions:
12264
12265 @table @option
12266 @item w
12267 @item h
12268 The input width and height.
12269
12270 @item val
12271 The input value for the pixel component.
12272
12273 @item clipval
12274 The input value, clipped to the @var{minval}-@var{maxval} range.
12275
12276 @item maxval
12277 The maximum value for the pixel component.
12278
12279 @item minval
12280 The minimum value for the pixel component.
12281
12282 @item negval
12283 The negated value for the pixel component value, clipped to the
12284 @var{minval}-@var{maxval} range; it corresponds to the expression
12285 "maxval-clipval+minval".
12286
12287 @item clip(val)
12288 The computed value in @var{val}, clipped to the
12289 @var{minval}-@var{maxval} range.
12290
12291 @item gammaval(gamma)
12292 The computed gamma correction value of the pixel component value,
12293 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
12294 expression
12295 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
12296
12297 @end table
12298
12299 All expressions default to "val".
12300
12301 @subsection Examples
12302
12303 @itemize
12304 @item
12305 Negate input video:
12306 @example
12307 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
12308 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
12309 @end example
12310
12311 The above is the same as:
12312 @example
12313 lutrgb="r=negval:g=negval:b=negval"
12314 lutyuv="y=negval:u=negval:v=negval"
12315 @end example
12316
12317 @item
12318 Negate luminance:
12319 @example
12320 lutyuv=y=negval
12321 @end example
12322
12323 @item
12324 Remove chroma components, turning the video into a graytone image:
12325 @example
12326 lutyuv="u=128:v=128"
12327 @end example
12328
12329 @item
12330 Apply a luma burning effect:
12331 @example
12332 lutyuv="y=2*val"
12333 @end example
12334
12335 @item
12336 Remove green and blue components:
12337 @example
12338 lutrgb="g=0:b=0"
12339 @end example
12340
12341 @item
12342 Set a constant alpha channel value on input:
12343 @example
12344 format=rgba,lutrgb=a="maxval-minval/2"
12345 @end example
12346
12347 @item
12348 Correct luminance gamma by a factor of 0.5:
12349 @example
12350 lutyuv=y=gammaval(0.5)
12351 @end example
12352
12353 @item
12354 Discard least significant bits of luma:
12355 @example
12356 lutyuv=y='bitand(val, 128+64+32)'
12357 @end example
12358
12359 @item
12360 Technicolor like effect:
12361 @example
12362 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
12363 @end example
12364 @end itemize
12365
12366 @section lut2, tlut2
12367
12368 The @code{lut2} filter takes two input streams and outputs one
12369 stream.
12370
12371 The @code{tlut2} (time lut2) filter takes two consecutive frames
12372 from one single stream.
12373
12374 This filter accepts the following parameters:
12375 @table @option
12376 @item c0
12377 set first pixel component expression
12378 @item c1
12379 set second pixel component expression
12380 @item c2
12381 set third pixel component expression
12382 @item c3
12383 set fourth pixel component expression, corresponds to the alpha component
12384
12385 @item d
12386 set output bit depth, only available for @code{lut2} filter. By default is 0,
12387 which means bit depth is automatically picked from first input format.
12388 @end table
12389
12390 Each of them specifies the expression to use for computing the lookup table for
12391 the corresponding pixel component values.
12392
12393 The exact component associated to each of the @var{c*} options depends on the
12394 format in inputs.
12395
12396 The expressions can contain the following constants:
12397
12398 @table @option
12399 @item w
12400 @item h
12401 The input width and height.
12402
12403 @item x
12404 The first input value for the pixel component.
12405
12406 @item y
12407 The second input value for the pixel component.
12408
12409 @item bdx
12410 The first input video bit depth.
12411
12412 @item bdy
12413 The second input video bit depth.
12414 @end table
12415
12416 All expressions default to "x".
12417
12418 @subsection Examples
12419
12420 @itemize
12421 @item
12422 Highlight differences between two RGB video streams:
12423 @example
12424 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)'
12425 @end example
12426
12427 @item
12428 Highlight differences between two YUV video streams:
12429 @example
12430 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)'
12431 @end example
12432
12433 @item
12434 Show max difference between two video streams:
12435 @example
12436 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)))'
12437 @end example
12438 @end itemize
12439
12440 @section maskedclamp
12441
12442 Clamp the first input stream with the second input and third input stream.
12443
12444 Returns the value of first stream to be between second input
12445 stream - @code{undershoot} and third input stream + @code{overshoot}.
12446
12447 This filter accepts the following options:
12448 @table @option
12449 @item undershoot
12450 Default value is @code{0}.
12451
12452 @item overshoot
12453 Default value is @code{0}.
12454
12455 @item planes
12456 Set which planes will be processed as bitmap, unprocessed planes will be
12457 copied from first stream.
12458 By default value 0xf, all planes will be processed.
12459 @end table
12460
12461 @section maskedmerge
12462
12463 Merge the first input stream with the second input stream using per pixel
12464 weights in the third input stream.
12465
12466 A value of 0 in the third stream pixel component means that pixel component
12467 from first stream is returned unchanged, while maximum value (eg. 255 for
12468 8-bit videos) means that pixel component from second stream is returned
12469 unchanged. Intermediate values define the amount of merging between both
12470 input stream's pixel components.
12471
12472 This filter accepts the following options:
12473 @table @option
12474 @item planes
12475 Set which planes will be processed as bitmap, unprocessed planes will be
12476 copied from first stream.
12477 By default value 0xf, all planes will be processed.
12478 @end table
12479
12480 @section maskfun
12481 Create mask from input video.
12482
12483 For example it is useful to create motion masks after @code{tblend} filter.
12484
12485 This filter accepts the following options:
12486
12487 @table @option
12488 @item low
12489 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
12490
12491 @item high
12492 Set high threshold. Any pixel component higher than this value will be set to max value
12493 allowed for current pixel format.
12494
12495 @item planes
12496 Set planes to filter, by default all available planes are filtered.
12497
12498 @item fill
12499 Fill all frame pixels with this value.
12500
12501 @item sum
12502 Set max average pixel value for frame. If sum of all pixel components is higher that this
12503 average, output frame will be completely filled with value set by @var{fill} option.
12504 Typically useful for scene changes when used in combination with @code{tblend} filter.
12505 @end table
12506
12507 @section mcdeint
12508
12509 Apply motion-compensation deinterlacing.
12510
12511 It needs one field per frame as input and must thus be used together
12512 with yadif=1/3 or equivalent.
12513
12514 This filter accepts the following options:
12515 @table @option
12516 @item mode
12517 Set the deinterlacing mode.
12518
12519 It accepts one of the following values:
12520 @table @samp
12521 @item fast
12522 @item medium
12523 @item slow
12524 use iterative motion estimation
12525 @item extra_slow
12526 like @samp{slow}, but use multiple reference frames.
12527 @end table
12528 Default value is @samp{fast}.
12529
12530 @item parity
12531 Set the picture field parity assumed for the input video. It must be
12532 one of the following values:
12533
12534 @table @samp
12535 @item 0, tff
12536 assume top field first
12537 @item 1, bff
12538 assume bottom field first
12539 @end table
12540
12541 Default value is @samp{bff}.
12542
12543 @item qp
12544 Set per-block quantization parameter (QP) used by the internal
12545 encoder.
12546
12547 Higher values should result in a smoother motion vector field but less
12548 optimal individual vectors. Default value is 1.
12549 @end table
12550
12551 @section mergeplanes
12552
12553 Merge color channel components from several video streams.
12554
12555 The filter accepts up to 4 input streams, and merge selected input
12556 planes to the output video.
12557
12558 This filter accepts the following options:
12559 @table @option
12560 @item mapping
12561 Set input to output plane mapping. Default is @code{0}.
12562
12563 The mappings is specified as a bitmap. It should be specified as a
12564 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
12565 mapping for the first plane of the output stream. 'A' sets the number of
12566 the input stream to use (from 0 to 3), and 'a' the plane number of the
12567 corresponding input to use (from 0 to 3). The rest of the mappings is
12568 similar, 'Bb' describes the mapping for the output stream second
12569 plane, 'Cc' describes the mapping for the output stream third plane and
12570 'Dd' describes the mapping for the output stream fourth plane.
12571
12572 @item format
12573 Set output pixel format. Default is @code{yuva444p}.
12574 @end table
12575
12576 @subsection Examples
12577
12578 @itemize
12579 @item
12580 Merge three gray video streams of same width and height into single video stream:
12581 @example
12582 [a0][a1][a2]mergeplanes=0x001020:yuv444p
12583 @end example
12584
12585 @item
12586 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
12587 @example
12588 [a0][a1]mergeplanes=0x00010210:yuva444p
12589 @end example
12590
12591 @item
12592 Swap Y and A plane in yuva444p stream:
12593 @example
12594 format=yuva444p,mergeplanes=0x03010200:yuva444p
12595 @end example
12596
12597 @item
12598 Swap U and V plane in yuv420p stream:
12599 @example
12600 format=yuv420p,mergeplanes=0x000201:yuv420p
12601 @end example
12602
12603 @item
12604 Cast a rgb24 clip to yuv444p:
12605 @example
12606 format=rgb24,mergeplanes=0x000102:yuv444p
12607 @end example
12608 @end itemize
12609
12610 @section mestimate
12611
12612 Estimate and export motion vectors using block matching algorithms.
12613 Motion vectors are stored in frame side data to be used by other filters.
12614
12615 This filter accepts the following options:
12616 @table @option
12617 @item method
12618 Specify the motion estimation method. Accepts one of the following values:
12619
12620 @table @samp
12621 @item esa
12622 Exhaustive search algorithm.
12623 @item tss
12624 Three step search algorithm.
12625 @item tdls
12626 Two dimensional logarithmic search algorithm.
12627 @item ntss
12628 New three step search algorithm.
12629 @item fss
12630 Four step search algorithm.
12631 @item ds
12632 Diamond search algorithm.
12633 @item hexbs
12634 Hexagon-based search algorithm.
12635 @item epzs
12636 Enhanced predictive zonal search algorithm.
12637 @item umh
12638 Uneven multi-hexagon search algorithm.
12639 @end table
12640 Default value is @samp{esa}.
12641
12642 @item mb_size
12643 Macroblock size. Default @code{16}.
12644
12645 @item search_param
12646 Search parameter. Default @code{7}.
12647 @end table
12648
12649 @section midequalizer
12650
12651 Apply Midway Image Equalization effect using two video streams.
12652
12653 Midway Image Equalization adjusts a pair of images to have the same
12654 histogram, while maintaining their dynamics as much as possible. It's
12655 useful for e.g. matching exposures from a pair of stereo cameras.
12656
12657 This filter has two inputs and one output, which must be of same pixel format, but
12658 may be of different sizes. The output of filter is first input adjusted with
12659 midway histogram of both inputs.
12660
12661 This filter accepts the following option:
12662
12663 @table @option
12664 @item planes
12665 Set which planes to process. Default is @code{15}, which is all available planes.
12666 @end table
12667
12668 @section minterpolate
12669
12670 Convert the video to specified frame rate using motion interpolation.
12671
12672 This filter accepts the following options:
12673 @table @option
12674 @item fps
12675 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}.
12676
12677 @item mi_mode
12678 Motion interpolation mode. Following values are accepted:
12679 @table @samp
12680 @item dup
12681 Duplicate previous or next frame for interpolating new ones.
12682 @item blend
12683 Blend source frames. Interpolated frame is mean of previous and next frames.
12684 @item mci
12685 Motion compensated interpolation. Following options are effective when this mode is selected:
12686
12687 @table @samp
12688 @item mc_mode
12689 Motion compensation mode. Following values are accepted:
12690 @table @samp
12691 @item obmc
12692 Overlapped block motion compensation.
12693 @item aobmc
12694 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
12695 @end table
12696 Default mode is @samp{obmc}.
12697
12698 @item me_mode
12699 Motion estimation mode. Following values are accepted:
12700 @table @samp
12701 @item bidir
12702 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
12703 @item bilat
12704 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
12705 @end table
12706 Default mode is @samp{bilat}.
12707
12708 @item me
12709 The algorithm to be used for motion estimation. Following values are accepted:
12710 @table @samp
12711 @item esa
12712 Exhaustive search algorithm.
12713 @item tss
12714 Three step search algorithm.
12715 @item tdls
12716 Two dimensional logarithmic search algorithm.
12717 @item ntss
12718 New three step search algorithm.
12719 @item fss
12720 Four step search algorithm.
12721 @item ds
12722 Diamond search algorithm.
12723 @item hexbs
12724 Hexagon-based search algorithm.
12725 @item epzs
12726 Enhanced predictive zonal search algorithm.
12727 @item umh
12728 Uneven multi-hexagon search algorithm.
12729 @end table
12730 Default algorithm is @samp{epzs}.
12731
12732 @item mb_size
12733 Macroblock size. Default @code{16}.
12734
12735 @item search_param
12736 Motion estimation search parameter. Default @code{32}.
12737
12738 @item vsbmc
12739 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).
12740 @end table
12741 @end table
12742
12743 @item scd
12744 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:
12745 @table @samp
12746 @item none
12747 Disable scene change detection.
12748 @item fdiff
12749 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
12750 @end table
12751 Default method is @samp{fdiff}.
12752
12753 @item scd_threshold
12754 Scene change detection threshold. Default is @code{5.0}.
12755 @end table
12756
12757 @section mix
12758
12759 Mix several video input streams into one video stream.
12760
12761 A description of the accepted options follows.
12762
12763 @table @option
12764 @item nb_inputs
12765 The number of inputs. If unspecified, it defaults to 2.
12766
12767 @item weights
12768 Specify weight of each input video stream as sequence.
12769 Each weight is separated by space. If number of weights
12770 is smaller than number of @var{frames} last specified
12771 weight will be used for all remaining unset weights.
12772
12773 @item scale
12774 Specify scale, if it is set it will be multiplied with sum
12775 of each weight multiplied with pixel values to give final destination
12776 pixel value. By default @var{scale} is auto scaled to sum of weights.
12777
12778 @item duration
12779 Specify how end of stream is determined.
12780 @table @samp
12781 @item longest
12782 The duration of the longest input. (default)
12783
12784 @item shortest
12785 The duration of the shortest input.
12786
12787 @item first
12788 The duration of the first input.
12789 @end table
12790 @end table
12791
12792 @section mpdecimate
12793
12794 Drop frames that do not differ greatly from the previous frame in
12795 order to reduce frame rate.
12796
12797 The main use of this filter is for very-low-bitrate encoding
12798 (e.g. streaming over dialup modem), but it could in theory be used for
12799 fixing movies that were inverse-telecined incorrectly.
12800
12801 A description of the accepted options follows.
12802
12803 @table @option
12804 @item max
12805 Set the maximum number of consecutive frames which can be dropped (if
12806 positive), or the minimum interval between dropped frames (if
12807 negative). If the value is 0, the frame is dropped disregarding the
12808 number of previous sequentially dropped frames.
12809
12810 Default value is 0.
12811
12812 @item hi
12813 @item lo
12814 @item frac
12815 Set the dropping threshold values.
12816
12817 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
12818 represent actual pixel value differences, so a threshold of 64
12819 corresponds to 1 unit of difference for each pixel, or the same spread
12820 out differently over the block.
12821
12822 A frame is a candidate for dropping if no 8x8 blocks differ by more
12823 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
12824 meaning the whole image) differ by more than a threshold of @option{lo}.
12825
12826 Default value for @option{hi} is 64*12, default value for @option{lo} is
12827 64*5, and default value for @option{frac} is 0.33.
12828 @end table
12829
12830
12831 @section negate
12832
12833 Negate (invert) the input video.
12834
12835 It accepts the following option:
12836
12837 @table @option
12838
12839 @item negate_alpha
12840 With value 1, it negates the alpha component, if present. Default value is 0.
12841 @end table
12842
12843 @anchor{nlmeans}
12844 @section nlmeans
12845
12846 Denoise frames using Non-Local Means algorithm.
12847
12848 Each pixel is adjusted by looking for other pixels with similar contexts. This
12849 context similarity is defined by comparing their surrounding patches of size
12850 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
12851 around the pixel.
12852
12853 Note that the research area defines centers for patches, which means some
12854 patches will be made of pixels outside that research area.
12855
12856 The filter accepts the following options.
12857
12858 @table @option
12859 @item s
12860 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
12861
12862 @item p
12863 Set patch size. Default is 7. Must be odd number in range [0, 99].
12864
12865 @item pc
12866 Same as @option{p} but for chroma planes.
12867
12868 The default value is @var{0} and means automatic.
12869
12870 @item r
12871 Set research size. Default is 15. Must be odd number in range [0, 99].
12872
12873 @item rc
12874 Same as @option{r} but for chroma planes.
12875
12876 The default value is @var{0} and means automatic.
12877 @end table
12878
12879 @section nnedi
12880
12881 Deinterlace video using neural network edge directed interpolation.
12882
12883 This filter accepts the following options:
12884
12885 @table @option
12886 @item weights
12887 Mandatory option, without binary file filter can not work.
12888 Currently file can be found here:
12889 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
12890
12891 @item deint
12892 Set which frames to deinterlace, by default it is @code{all}.
12893 Can be @code{all} or @code{interlaced}.
12894
12895 @item field
12896 Set mode of operation.
12897
12898 Can be one of the following:
12899
12900 @table @samp
12901 @item af
12902 Use frame flags, both fields.
12903 @item a
12904 Use frame flags, single field.
12905 @item t
12906 Use top field only.
12907 @item b
12908 Use bottom field only.
12909 @item tf
12910 Use both fields, top first.
12911 @item bf
12912 Use both fields, bottom first.
12913 @end table
12914
12915 @item planes
12916 Set which planes to process, by default filter process all frames.
12917
12918 @item nsize
12919 Set size of local neighborhood around each pixel, used by the predictor neural
12920 network.
12921
12922 Can be one of the following:
12923
12924 @table @samp
12925 @item s8x6
12926 @item s16x6
12927 @item s32x6
12928 @item s48x6
12929 @item s8x4
12930 @item s16x4
12931 @item s32x4
12932 @end table
12933
12934 @item nns
12935 Set the number of neurons in predictor neural network.
12936 Can be one of the following:
12937
12938 @table @samp
12939 @item n16
12940 @item n32
12941 @item n64
12942 @item n128
12943 @item n256
12944 @end table
12945
12946 @item qual
12947 Controls the number of different neural network predictions that are blended
12948 together to compute the final output value. Can be @code{fast}, default or
12949 @code{slow}.
12950
12951 @item etype
12952 Set which set of weights to use in the predictor.
12953 Can be one of the following:
12954
12955 @table @samp
12956 @item a
12957 weights trained to minimize absolute error
12958 @item s
12959 weights trained to minimize squared error
12960 @end table
12961
12962 @item pscrn
12963 Controls whether or not the prescreener neural network is used to decide
12964 which pixels should be processed by the predictor neural network and which
12965 can be handled by simple cubic interpolation.
12966 The prescreener is trained to know whether cubic interpolation will be
12967 sufficient for a pixel or whether it should be predicted by the predictor nn.
12968 The computational complexity of the prescreener nn is much less than that of
12969 the predictor nn. Since most pixels can be handled by cubic interpolation,
12970 using the prescreener generally results in much faster processing.
12971 The prescreener is pretty accurate, so the difference between using it and not
12972 using it is almost always unnoticeable.
12973
12974 Can be one of the following:
12975
12976 @table @samp
12977 @item none
12978 @item original
12979 @item new
12980 @end table
12981
12982 Default is @code{new}.
12983
12984 @item fapprox
12985 Set various debugging flags.
12986 @end table
12987
12988 @section noformat
12989
12990 Force libavfilter not to use any of the specified pixel formats for the
12991 input to the next filter.
12992
12993 It accepts the following parameters:
12994 @table @option
12995
12996 @item pix_fmts
12997 A '|'-separated list of pixel format names, such as
12998 pix_fmts=yuv420p|monow|rgb24".
12999
13000 @end table
13001
13002 @subsection Examples
13003
13004 @itemize
13005 @item
13006 Force libavfilter to use a format different from @var{yuv420p} for the
13007 input to the vflip filter:
13008 @example
13009 noformat=pix_fmts=yuv420p,vflip
13010 @end example
13011
13012 @item
13013 Convert the input video to any of the formats not contained in the list:
13014 @example
13015 noformat=yuv420p|yuv444p|yuv410p
13016 @end example
13017 @end itemize
13018
13019 @section noise
13020
13021 Add noise on video input frame.
13022
13023 The filter accepts the following options:
13024
13025 @table @option
13026 @item all_seed
13027 @item c0_seed
13028 @item c1_seed
13029 @item c2_seed
13030 @item c3_seed
13031 Set noise seed for specific pixel component or all pixel components in case
13032 of @var{all_seed}. Default value is @code{123457}.
13033
13034 @item all_strength, alls
13035 @item c0_strength, c0s
13036 @item c1_strength, c1s
13037 @item c2_strength, c2s
13038 @item c3_strength, c3s
13039 Set noise strength for specific pixel component or all pixel components in case
13040 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13041
13042 @item all_flags, allf
13043 @item c0_flags, c0f
13044 @item c1_flags, c1f
13045 @item c2_flags, c2f
13046 @item c3_flags, c3f
13047 Set pixel component flags or set flags for all components if @var{all_flags}.
13048 Available values for component flags are:
13049 @table @samp
13050 @item a
13051 averaged temporal noise (smoother)
13052 @item p
13053 mix random noise with a (semi)regular pattern
13054 @item t
13055 temporal noise (noise pattern changes between frames)
13056 @item u
13057 uniform noise (gaussian otherwise)
13058 @end table
13059 @end table
13060
13061 @subsection Examples
13062
13063 Add temporal and uniform noise to input video:
13064 @example
13065 noise=alls=20:allf=t+u
13066 @end example
13067
13068 @section normalize
13069
13070 Normalize RGB video (aka histogram stretching, contrast stretching).
13071 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13072
13073 For each channel of each frame, the filter computes the input range and maps
13074 it linearly to the user-specified output range. The output range defaults
13075 to the full dynamic range from pure black to pure white.
13076
13077 Temporal smoothing can be used on the input range to reduce flickering (rapid
13078 changes in brightness) caused when small dark or bright objects enter or leave
13079 the scene. This is similar to the auto-exposure (automatic gain control) on a
13080 video camera, and, like a video camera, it may cause a period of over- or
13081 under-exposure of the video.
13082
13083 The R,G,B channels can be normalized independently, which may cause some
13084 color shifting, or linked together as a single channel, which prevents
13085 color shifting. Linked normalization preserves hue. Independent normalization
13086 does not, so it can be used to remove some color casts. Independent and linked
13087 normalization can be combined in any ratio.
13088
13089 The normalize filter accepts the following options:
13090
13091 @table @option
13092 @item blackpt
13093 @item whitept
13094 Colors which define the output range. The minimum input value is mapped to
13095 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13096 The defaults are black and white respectively. Specifying white for
13097 @var{blackpt} and black for @var{whitept} will give color-inverted,
13098 normalized video. Shades of grey can be used to reduce the dynamic range
13099 (contrast). Specifying saturated colors here can create some interesting
13100 effects.
13101
13102 @item smoothing
13103 The number of previous frames to use for temporal smoothing. The input range
13104 of each channel is smoothed using a rolling average over the current frame
13105 and the @var{smoothing} previous frames. The default is 0 (no temporal
13106 smoothing).
13107
13108 @item independence
13109 Controls the ratio of independent (color shifting) channel normalization to
13110 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13111 independent. Defaults to 1.0 (fully independent).
13112
13113 @item strength
13114 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13115 expensive no-op. Defaults to 1.0 (full strength).
13116
13117 @end table
13118
13119 @subsection Examples
13120
13121 Stretch video contrast to use the full dynamic range, with no temporal
13122 smoothing; may flicker depending on the source content:
13123 @example
13124 normalize=blackpt=black:whitept=white:smoothing=0
13125 @end example
13126
13127 As above, but with 50 frames of temporal smoothing; flicker should be
13128 reduced, depending on the source content:
13129 @example
13130 normalize=blackpt=black:whitept=white:smoothing=50
13131 @end example
13132
13133 As above, but with hue-preserving linked channel normalization:
13134 @example
13135 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13136 @end example
13137
13138 As above, but with half strength:
13139 @example
13140 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13141 @end example
13142
13143 Map the darkest input color to red, the brightest input color to cyan:
13144 @example
13145 normalize=blackpt=red:whitept=cyan
13146 @end example
13147
13148 @section null
13149
13150 Pass the video source unchanged to the output.
13151
13152 @section ocr
13153 Optical Character Recognition
13154
13155 This filter uses Tesseract for optical character recognition. To enable
13156 compilation of this filter, you need to configure FFmpeg with
13157 @code{--enable-libtesseract}.
13158
13159 It accepts the following options:
13160
13161 @table @option
13162 @item datapath
13163 Set datapath to tesseract data. Default is to use whatever was
13164 set at installation.
13165
13166 @item language
13167 Set language, default is "eng".
13168
13169 @item whitelist
13170 Set character whitelist.
13171
13172 @item blacklist
13173 Set character blacklist.
13174 @end table
13175
13176 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13177 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13178
13179 @section ocv
13180
13181 Apply a video transform using libopencv.
13182
13183 To enable this filter, install the libopencv library and headers and
13184 configure FFmpeg with @code{--enable-libopencv}.
13185
13186 It accepts the following parameters:
13187
13188 @table @option
13189
13190 @item filter_name
13191 The name of the libopencv filter to apply.
13192
13193 @item filter_params
13194 The parameters to pass to the libopencv filter. If not specified, the default
13195 values are assumed.
13196
13197 @end table
13198
13199 Refer to the official libopencv documentation for more precise
13200 information:
13201 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13202
13203 Several libopencv filters are supported; see the following subsections.
13204
13205 @anchor{dilate}
13206 @subsection dilate
13207
13208 Dilate an image by using a specific structuring element.
13209 It corresponds to the libopencv function @code{cvDilate}.
13210
13211 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
13212
13213 @var{struct_el} represents a structuring element, and has the syntax:
13214 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
13215
13216 @var{cols} and @var{rows} represent the number of columns and rows of
13217 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
13218 point, and @var{shape} the shape for the structuring element. @var{shape}
13219 must be "rect", "cross", "ellipse", or "custom".
13220
13221 If the value for @var{shape} is "custom", it must be followed by a
13222 string of the form "=@var{filename}". The file with name
13223 @var{filename} is assumed to represent a binary image, with each
13224 printable character corresponding to a bright pixel. When a custom
13225 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
13226 or columns and rows of the read file are assumed instead.
13227
13228 The default value for @var{struct_el} is "3x3+0x0/rect".
13229
13230 @var{nb_iterations} specifies the number of times the transform is
13231 applied to the image, and defaults to 1.
13232
13233 Some examples:
13234 @example
13235 # Use the default values
13236 ocv=dilate
13237
13238 # Dilate using a structuring element with a 5x5 cross, iterating two times
13239 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
13240
13241 # Read the shape from the file diamond.shape, iterating two times.
13242 # The file diamond.shape may contain a pattern of characters like this
13243 #   *
13244 #  ***
13245 # *****
13246 #  ***
13247 #   *
13248 # The specified columns and rows are ignored
13249 # but the anchor point coordinates are not
13250 ocv=dilate:0x0+2x2/custom=diamond.shape|2
13251 @end example
13252
13253 @subsection erode
13254
13255 Erode an image by using a specific structuring element.
13256 It corresponds to the libopencv function @code{cvErode}.
13257
13258 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
13259 with the same syntax and semantics as the @ref{dilate} filter.
13260
13261 @subsection smooth
13262
13263 Smooth the input video.
13264
13265 The filter takes the following parameters:
13266 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
13267
13268 @var{type} is the type of smooth filter to apply, and must be one of
13269 the following values: "blur", "blur_no_scale", "median", "gaussian",
13270 or "bilateral". The default value is "gaussian".
13271
13272 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
13273 depends on the smooth type. @var{param1} and
13274 @var{param2} accept integer positive values or 0. @var{param3} and
13275 @var{param4} accept floating point values.
13276
13277 The default value for @var{param1} is 3. The default value for the
13278 other parameters is 0.
13279
13280 These parameters correspond to the parameters assigned to the
13281 libopencv function @code{cvSmooth}.
13282
13283 @section oscilloscope
13284
13285 2D Video Oscilloscope.
13286
13287 Useful to measure spatial impulse, step responses, chroma delays, etc.
13288
13289 It accepts the following parameters:
13290
13291 @table @option
13292 @item x
13293 Set scope center x position.
13294
13295 @item y
13296 Set scope center y position.
13297
13298 @item s
13299 Set scope size, relative to frame diagonal.
13300
13301 @item t
13302 Set scope tilt/rotation.
13303
13304 @item o
13305 Set trace opacity.
13306
13307 @item tx
13308 Set trace center x position.
13309
13310 @item ty
13311 Set trace center y position.
13312
13313 @item tw
13314 Set trace width, relative to width of frame.
13315
13316 @item th
13317 Set trace height, relative to height of frame.
13318
13319 @item c
13320 Set which components to trace. By default it traces first three components.
13321
13322 @item g
13323 Draw trace grid. By default is enabled.
13324
13325 @item st
13326 Draw some statistics. By default is enabled.
13327
13328 @item sc
13329 Draw scope. By default is enabled.
13330 @end table
13331
13332 @subsection Examples
13333
13334 @itemize
13335 @item
13336 Inspect full first row of video frame.
13337 @example
13338 oscilloscope=x=0.5:y=0:s=1
13339 @end example
13340
13341 @item
13342 Inspect full last row of video frame.
13343 @example
13344 oscilloscope=x=0.5:y=1:s=1
13345 @end example
13346
13347 @item
13348 Inspect full 5th line of video frame of height 1080.
13349 @example
13350 oscilloscope=x=0.5:y=5/1080:s=1
13351 @end example
13352
13353 @item
13354 Inspect full last column of video frame.
13355 @example
13356 oscilloscope=x=1:y=0.5:s=1:t=1
13357 @end example
13358
13359 @end itemize
13360
13361 @anchor{overlay}
13362 @section overlay
13363
13364 Overlay one video on top of another.
13365
13366 It takes two inputs and has one output. The first input is the "main"
13367 video on which the second input is overlaid.
13368
13369 It accepts the following parameters:
13370
13371 A description of the accepted options follows.
13372
13373 @table @option
13374 @item x
13375 @item y
13376 Set the expression for the x and y coordinates of the overlaid video
13377 on the main video. Default value is "0" for both expressions. In case
13378 the expression is invalid, it is set to a huge value (meaning that the
13379 overlay will not be displayed within the output visible area).
13380
13381 @item eof_action
13382 See @ref{framesync}.
13383
13384 @item eval
13385 Set when the expressions for @option{x}, and @option{y} are evaluated.
13386
13387 It accepts the following values:
13388 @table @samp
13389 @item init
13390 only evaluate expressions once during the filter initialization or
13391 when a command is processed
13392
13393 @item frame
13394 evaluate expressions for each incoming frame
13395 @end table
13396
13397 Default value is @samp{frame}.
13398
13399 @item shortest
13400 See @ref{framesync}.
13401
13402 @item format
13403 Set the format for the output video.
13404
13405 It accepts the following values:
13406 @table @samp
13407 @item yuv420
13408 force YUV420 output
13409
13410 @item yuv422
13411 force YUV422 output
13412
13413 @item yuv444
13414 force YUV444 output
13415
13416 @item rgb
13417 force packed RGB output
13418
13419 @item gbrp
13420 force planar RGB output
13421
13422 @item auto
13423 automatically pick format
13424 @end table
13425
13426 Default value is @samp{yuv420}.
13427
13428 @item repeatlast
13429 See @ref{framesync}.
13430
13431 @item alpha
13432 Set format of alpha of the overlaid video, it can be @var{straight} or
13433 @var{premultiplied}. Default is @var{straight}.
13434 @end table
13435
13436 The @option{x}, and @option{y} expressions can contain the following
13437 parameters.
13438
13439 @table @option
13440 @item main_w, W
13441 @item main_h, H
13442 The main input width and height.
13443
13444 @item overlay_w, w
13445 @item overlay_h, h
13446 The overlay input width and height.
13447
13448 @item x
13449 @item y
13450 The computed values for @var{x} and @var{y}. They are evaluated for
13451 each new frame.
13452
13453 @item hsub
13454 @item vsub
13455 horizontal and vertical chroma subsample values of the output
13456 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
13457 @var{vsub} is 1.
13458
13459 @item n
13460 the number of input frame, starting from 0
13461
13462 @item pos
13463 the position in the file of the input frame, NAN if unknown
13464
13465 @item t
13466 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
13467
13468 @end table
13469
13470 This filter also supports the @ref{framesync} options.
13471
13472 Note that the @var{n}, @var{pos}, @var{t} variables are available only
13473 when evaluation is done @emph{per frame}, and will evaluate to NAN
13474 when @option{eval} is set to @samp{init}.
13475
13476 Be aware that frames are taken from each input video in timestamp
13477 order, hence, if their initial timestamps differ, it is a good idea
13478 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
13479 have them begin in the same zero timestamp, as the example for
13480 the @var{movie} filter does.
13481
13482 You can chain together more overlays but you should test the
13483 efficiency of such approach.
13484
13485 @subsection Commands
13486
13487 This filter supports the following commands:
13488 @table @option
13489 @item x
13490 @item y
13491 Modify the x and y of the overlay input.
13492 The command accepts the same syntax of the corresponding option.
13493
13494 If the specified expression is not valid, it is kept at its current
13495 value.
13496 @end table
13497
13498 @subsection Examples
13499
13500 @itemize
13501 @item
13502 Draw the overlay at 10 pixels from the bottom right corner of the main
13503 video:
13504 @example
13505 overlay=main_w-overlay_w-10:main_h-overlay_h-10
13506 @end example
13507
13508 Using named options the example above becomes:
13509 @example
13510 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
13511 @end example
13512
13513 @item
13514 Insert a transparent PNG logo in the bottom left corner of the input,
13515 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
13516 @example
13517 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
13518 @end example
13519
13520 @item
13521 Insert 2 different transparent PNG logos (second logo on bottom
13522 right corner) using the @command{ffmpeg} tool:
13523 @example
13524 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
13525 @end example
13526
13527 @item
13528 Add a transparent color layer on top of the main video; @code{WxH}
13529 must specify the size of the main input to the overlay filter:
13530 @example
13531 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
13532 @end example
13533
13534 @item
13535 Play an original video and a filtered version (here with the deshake
13536 filter) side by side using the @command{ffplay} tool:
13537 @example
13538 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
13539 @end example
13540
13541 The above command is the same as:
13542 @example
13543 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
13544 @end example
13545
13546 @item
13547 Make a sliding overlay appearing from the left to the right top part of the
13548 screen starting since time 2:
13549 @example
13550 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
13551 @end example
13552
13553 @item
13554 Compose output by putting two input videos side to side:
13555 @example
13556 ffmpeg -i left.avi -i right.avi -filter_complex "
13557 nullsrc=size=200x100 [background];
13558 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
13559 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
13560 [background][left]       overlay=shortest=1       [background+left];
13561 [background+left][right] overlay=shortest=1:x=100 [left+right]
13562 "
13563 @end example
13564
13565 @item
13566 Mask 10-20 seconds of a video by applying the delogo filter to a section
13567 @example
13568 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
13569 -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]'
13570 masked.avi
13571 @end example
13572
13573 @item
13574 Chain several overlays in cascade:
13575 @example
13576 nullsrc=s=200x200 [bg];
13577 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
13578 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
13579 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
13580 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
13581 [in3] null,       [mid2] overlay=100:100 [out0]
13582 @end example
13583
13584 @end itemize
13585
13586 @section owdenoise
13587
13588 Apply Overcomplete Wavelet denoiser.
13589
13590 The filter accepts the following options:
13591
13592 @table @option
13593 @item depth
13594 Set depth.
13595
13596 Larger depth values will denoise lower frequency components more, but
13597 slow down filtering.
13598
13599 Must be an int in the range 8-16, default is @code{8}.
13600
13601 @item luma_strength, ls
13602 Set luma strength.
13603
13604 Must be a double value in the range 0-1000, default is @code{1.0}.
13605
13606 @item chroma_strength, cs
13607 Set chroma strength.
13608
13609 Must be a double value in the range 0-1000, default is @code{1.0}.
13610 @end table
13611
13612 @anchor{pad}
13613 @section pad
13614
13615 Add paddings to the input image, and place the original input at the
13616 provided @var{x}, @var{y} coordinates.
13617
13618 It accepts the following parameters:
13619
13620 @table @option
13621 @item width, w
13622 @item height, h
13623 Specify an expression for the size of the output image with the
13624 paddings added. If the value for @var{width} or @var{height} is 0, the
13625 corresponding input size is used for the output.
13626
13627 The @var{width} expression can reference the value set by the
13628 @var{height} expression, and vice versa.
13629
13630 The default value of @var{width} and @var{height} is 0.
13631
13632 @item x
13633 @item y
13634 Specify the offsets to place the input image at within the padded area,
13635 with respect to the top/left border of the output image.
13636
13637 The @var{x} expression can reference the value set by the @var{y}
13638 expression, and vice versa.
13639
13640 The default value of @var{x} and @var{y} is 0.
13641
13642 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
13643 so the input image is centered on the padded area.
13644
13645 @item color
13646 Specify the color of the padded area. For the syntax of this option,
13647 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13648 manual,ffmpeg-utils}.
13649
13650 The default value of @var{color} is "black".
13651
13652 @item eval
13653 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
13654
13655 It accepts the following values:
13656
13657 @table @samp
13658 @item init
13659 Only evaluate expressions once during the filter initialization or when
13660 a command is processed.
13661
13662 @item frame
13663 Evaluate expressions for each incoming frame.
13664
13665 @end table
13666
13667 Default value is @samp{init}.
13668
13669 @item aspect
13670 Pad to aspect instead to a resolution.
13671
13672 @end table
13673
13674 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
13675 options are expressions containing the following constants:
13676
13677 @table @option
13678 @item in_w
13679 @item in_h
13680 The input video width and height.
13681
13682 @item iw
13683 @item ih
13684 These are the same as @var{in_w} and @var{in_h}.
13685
13686 @item out_w
13687 @item out_h
13688 The output width and height (the size of the padded area), as
13689 specified by the @var{width} and @var{height} expressions.
13690
13691 @item ow
13692 @item oh
13693 These are the same as @var{out_w} and @var{out_h}.
13694
13695 @item x
13696 @item y
13697 The x and y offsets as specified by the @var{x} and @var{y}
13698 expressions, or NAN if not yet specified.
13699
13700 @item a
13701 same as @var{iw} / @var{ih}
13702
13703 @item sar
13704 input sample aspect ratio
13705
13706 @item dar
13707 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
13708
13709 @item hsub
13710 @item vsub
13711 The horizontal and vertical chroma subsample values. For example for the
13712 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13713 @end table
13714
13715 @subsection Examples
13716
13717 @itemize
13718 @item
13719 Add paddings with the color "violet" to the input video. The output video
13720 size is 640x480, and the top-left corner of the input video is placed at
13721 column 0, row 40
13722 @example
13723 pad=640:480:0:40:violet
13724 @end example
13725
13726 The example above is equivalent to the following command:
13727 @example
13728 pad=width=640:height=480:x=0:y=40:color=violet
13729 @end example
13730
13731 @item
13732 Pad the input to get an output with dimensions increased by 3/2,
13733 and put the input video at the center of the padded area:
13734 @example
13735 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
13736 @end example
13737
13738 @item
13739 Pad the input to get a squared output with size equal to the maximum
13740 value between the input width and height, and put the input video at
13741 the center of the padded area:
13742 @example
13743 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
13744 @end example
13745
13746 @item
13747 Pad the input to get a final w/h ratio of 16:9:
13748 @example
13749 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
13750 @end example
13751
13752 @item
13753 In case of anamorphic video, in order to set the output display aspect
13754 correctly, it is necessary to use @var{sar} in the expression,
13755 according to the relation:
13756 @example
13757 (ih * X / ih) * sar = output_dar
13758 X = output_dar / sar
13759 @end example
13760
13761 Thus the previous example needs to be modified to:
13762 @example
13763 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
13764 @end example
13765
13766 @item
13767 Double the output size and put the input video in the bottom-right
13768 corner of the output padded area:
13769 @example
13770 pad="2*iw:2*ih:ow-iw:oh-ih"
13771 @end example
13772 @end itemize
13773
13774 @anchor{palettegen}
13775 @section palettegen
13776
13777 Generate one palette for a whole video stream.
13778
13779 It accepts the following options:
13780
13781 @table @option
13782 @item max_colors
13783 Set the maximum number of colors to quantize in the palette.
13784 Note: the palette will still contain 256 colors; the unused palette entries
13785 will be black.
13786
13787 @item reserve_transparent
13788 Create a palette of 255 colors maximum and reserve the last one for
13789 transparency. Reserving the transparency color is useful for GIF optimization.
13790 If not set, the maximum of colors in the palette will be 256. You probably want
13791 to disable this option for a standalone image.
13792 Set by default.
13793
13794 @item transparency_color
13795 Set the color that will be used as background for transparency.
13796
13797 @item stats_mode
13798 Set statistics mode.
13799
13800 It accepts the following values:
13801 @table @samp
13802 @item full
13803 Compute full frame histograms.
13804 @item diff
13805 Compute histograms only for the part that differs from previous frame. This
13806 might be relevant to give more importance to the moving part of your input if
13807 the background is static.
13808 @item single
13809 Compute new histogram for each frame.
13810 @end table
13811
13812 Default value is @var{full}.
13813 @end table
13814
13815 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
13816 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
13817 color quantization of the palette. This information is also visible at
13818 @var{info} logging level.
13819
13820 @subsection Examples
13821
13822 @itemize
13823 @item
13824 Generate a representative palette of a given video using @command{ffmpeg}:
13825 @example
13826 ffmpeg -i input.mkv -vf palettegen palette.png
13827 @end example
13828 @end itemize
13829
13830 @section paletteuse
13831
13832 Use a palette to downsample an input video stream.
13833
13834 The filter takes two inputs: one video stream and a palette. The palette must
13835 be a 256 pixels image.
13836
13837 It accepts the following options:
13838
13839 @table @option
13840 @item dither
13841 Select dithering mode. Available algorithms are:
13842 @table @samp
13843 @item bayer
13844 Ordered 8x8 bayer dithering (deterministic)
13845 @item heckbert
13846 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
13847 Note: this dithering is sometimes considered "wrong" and is included as a
13848 reference.
13849 @item floyd_steinberg
13850 Floyd and Steingberg dithering (error diffusion)
13851 @item sierra2
13852 Frankie Sierra dithering v2 (error diffusion)
13853 @item sierra2_4a
13854 Frankie Sierra dithering v2 "Lite" (error diffusion)
13855 @end table
13856
13857 Default is @var{sierra2_4a}.
13858
13859 @item bayer_scale
13860 When @var{bayer} dithering is selected, this option defines the scale of the
13861 pattern (how much the crosshatch pattern is visible). A low value means more
13862 visible pattern for less banding, and higher value means less visible pattern
13863 at the cost of more banding.
13864
13865 The option must be an integer value in the range [0,5]. Default is @var{2}.
13866
13867 @item diff_mode
13868 If set, define the zone to process
13869
13870 @table @samp
13871 @item rectangle
13872 Only the changing rectangle will be reprocessed. This is similar to GIF
13873 cropping/offsetting compression mechanism. This option can be useful for speed
13874 if only a part of the image is changing, and has use cases such as limiting the
13875 scope of the error diffusal @option{dither} to the rectangle that bounds the
13876 moving scene (it leads to more deterministic output if the scene doesn't change
13877 much, and as a result less moving noise and better GIF compression).
13878 @end table
13879
13880 Default is @var{none}.
13881
13882 @item new
13883 Take new palette for each output frame.
13884
13885 @item alpha_threshold
13886 Sets the alpha threshold for transparency. Alpha values above this threshold
13887 will be treated as completely opaque, and values below this threshold will be
13888 treated as completely transparent.
13889
13890 The option must be an integer value in the range [0,255]. Default is @var{128}.
13891 @end table
13892
13893 @subsection Examples
13894
13895 @itemize
13896 @item
13897 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
13898 using @command{ffmpeg}:
13899 @example
13900 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
13901 @end example
13902 @end itemize
13903
13904 @section perspective
13905
13906 Correct perspective of video not recorded perpendicular to the screen.
13907
13908 A description of the accepted parameters follows.
13909
13910 @table @option
13911 @item x0
13912 @item y0
13913 @item x1
13914 @item y1
13915 @item x2
13916 @item y2
13917 @item x3
13918 @item y3
13919 Set coordinates expression for top left, top right, bottom left and bottom right corners.
13920 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
13921 If the @code{sense} option is set to @code{source}, then the specified points will be sent
13922 to the corners of the destination. If the @code{sense} option is set to @code{destination},
13923 then the corners of the source will be sent to the specified coordinates.
13924
13925 The expressions can use the following variables:
13926
13927 @table @option
13928 @item W
13929 @item H
13930 the width and height of video frame.
13931 @item in
13932 Input frame count.
13933 @item on
13934 Output frame count.
13935 @end table
13936
13937 @item interpolation
13938 Set interpolation for perspective correction.
13939
13940 It accepts the following values:
13941 @table @samp
13942 @item linear
13943 @item cubic
13944 @end table
13945
13946 Default value is @samp{linear}.
13947
13948 @item sense
13949 Set interpretation of coordinate options.
13950
13951 It accepts the following values:
13952 @table @samp
13953 @item 0, source
13954
13955 Send point in the source specified by the given coordinates to
13956 the corners of the destination.
13957
13958 @item 1, destination
13959
13960 Send the corners of the source to the point in the destination specified
13961 by the given coordinates.
13962
13963 Default value is @samp{source}.
13964 @end table
13965
13966 @item eval
13967 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
13968
13969 It accepts the following values:
13970 @table @samp
13971 @item init
13972 only evaluate expressions once during the filter initialization or
13973 when a command is processed
13974
13975 @item frame
13976 evaluate expressions for each incoming frame
13977 @end table
13978
13979 Default value is @samp{init}.
13980 @end table
13981
13982 @section phase
13983
13984 Delay interlaced video by one field time so that the field order changes.
13985
13986 The intended use is to fix PAL movies that have been captured with the
13987 opposite field order to the film-to-video transfer.
13988
13989 A description of the accepted parameters follows.
13990
13991 @table @option
13992 @item mode
13993 Set phase mode.
13994
13995 It accepts the following values:
13996 @table @samp
13997 @item t
13998 Capture field order top-first, transfer bottom-first.
13999 Filter will delay the bottom field.
14000
14001 @item b
14002 Capture field order bottom-first, transfer top-first.
14003 Filter will delay the top field.
14004
14005 @item p
14006 Capture and transfer with the same field order. This mode only exists
14007 for the documentation of the other options to refer to, but if you
14008 actually select it, the filter will faithfully do nothing.
14009
14010 @item a
14011 Capture field order determined automatically by field flags, transfer
14012 opposite.
14013 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14014 basis using field flags. If no field information is available,
14015 then this works just like @samp{u}.
14016
14017 @item u
14018 Capture unknown or varying, transfer opposite.
14019 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14020 analyzing the images and selecting the alternative that produces best
14021 match between the fields.
14022
14023 @item T
14024 Capture top-first, transfer unknown or varying.
14025 Filter selects among @samp{t} and @samp{p} using image analysis.
14026
14027 @item B
14028 Capture bottom-first, transfer unknown or varying.
14029 Filter selects among @samp{b} and @samp{p} using image analysis.
14030
14031 @item A
14032 Capture determined by field flags, transfer unknown or varying.
14033 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14034 image analysis. If no field information is available, then this works just
14035 like @samp{U}. This is the default mode.
14036
14037 @item U
14038 Both capture and transfer unknown or varying.
14039 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14040 @end table
14041 @end table
14042
14043 @section pixdesctest
14044
14045 Pixel format descriptor test filter, mainly useful for internal
14046 testing. The output video should be equal to the input video.
14047
14048 For example:
14049 @example
14050 format=monow, pixdesctest
14051 @end example
14052
14053 can be used to test the monowhite pixel format descriptor definition.
14054
14055 @section pixscope
14056
14057 Display sample values of color channels. Mainly useful for checking color
14058 and levels. Minimum supported resolution is 640x480.
14059
14060 The filters accept the following options:
14061
14062 @table @option
14063 @item x
14064 Set scope X position, relative offset on X axis.
14065
14066 @item y
14067 Set scope Y position, relative offset on Y axis.
14068
14069 @item w
14070 Set scope width.
14071
14072 @item h
14073 Set scope height.
14074
14075 @item o
14076 Set window opacity. This window also holds statistics about pixel area.
14077
14078 @item wx
14079 Set window X position, relative offset on X axis.
14080
14081 @item wy
14082 Set window Y position, relative offset on Y axis.
14083 @end table
14084
14085 @section pp
14086
14087 Enable the specified chain of postprocessing subfilters using libpostproc. This
14088 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14089 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14090 Each subfilter and some options have a short and a long name that can be used
14091 interchangeably, i.e. dr/dering are the same.
14092
14093 The filters accept the following options:
14094
14095 @table @option
14096 @item subfilters
14097 Set postprocessing subfilters string.
14098 @end table
14099
14100 All subfilters share common options to determine their scope:
14101
14102 @table @option
14103 @item a/autoq
14104 Honor the quality commands for this subfilter.
14105
14106 @item c/chrom
14107 Do chrominance filtering, too (default).
14108
14109 @item y/nochrom
14110 Do luminance filtering only (no chrominance).
14111
14112 @item n/noluma
14113 Do chrominance filtering only (no luminance).
14114 @end table
14115
14116 These options can be appended after the subfilter name, separated by a '|'.
14117
14118 Available subfilters are:
14119
14120 @table @option
14121 @item hb/hdeblock[|difference[|flatness]]
14122 Horizontal deblocking filter
14123 @table @option
14124 @item difference
14125 Difference factor where higher values mean more deblocking (default: @code{32}).
14126 @item flatness
14127 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14128 @end table
14129
14130 @item vb/vdeblock[|difference[|flatness]]
14131 Vertical deblocking filter
14132 @table @option
14133 @item difference
14134 Difference factor where higher values mean more deblocking (default: @code{32}).
14135 @item flatness
14136 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14137 @end table
14138
14139 @item ha/hadeblock[|difference[|flatness]]
14140 Accurate horizontal deblocking filter
14141 @table @option
14142 @item difference
14143 Difference factor where higher values mean more deblocking (default: @code{32}).
14144 @item flatness
14145 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14146 @end table
14147
14148 @item va/vadeblock[|difference[|flatness]]
14149 Accurate vertical deblocking filter
14150 @table @option
14151 @item difference
14152 Difference factor where higher values mean more deblocking (default: @code{32}).
14153 @item flatness
14154 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14155 @end table
14156 @end table
14157
14158 The horizontal and vertical deblocking filters share the difference and
14159 flatness values so you cannot set different horizontal and vertical
14160 thresholds.
14161
14162 @table @option
14163 @item h1/x1hdeblock
14164 Experimental horizontal deblocking filter
14165
14166 @item v1/x1vdeblock
14167 Experimental vertical deblocking filter
14168
14169 @item dr/dering
14170 Deringing filter
14171
14172 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14173 @table @option
14174 @item threshold1
14175 larger -> stronger filtering
14176 @item threshold2
14177 larger -> stronger filtering
14178 @item threshold3
14179 larger -> stronger filtering
14180 @end table
14181
14182 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
14183 @table @option
14184 @item f/fullyrange
14185 Stretch luminance to @code{0-255}.
14186 @end table
14187
14188 @item lb/linblenddeint
14189 Linear blend deinterlacing filter that deinterlaces the given block by
14190 filtering all lines with a @code{(1 2 1)} filter.
14191
14192 @item li/linipoldeint
14193 Linear interpolating deinterlacing filter that deinterlaces the given block by
14194 linearly interpolating every second line.
14195
14196 @item ci/cubicipoldeint
14197 Cubic interpolating deinterlacing filter deinterlaces the given block by
14198 cubically interpolating every second line.
14199
14200 @item md/mediandeint
14201 Median deinterlacing filter that deinterlaces the given block by applying a
14202 median filter to every second line.
14203
14204 @item fd/ffmpegdeint
14205 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
14206 second line with a @code{(-1 4 2 4 -1)} filter.
14207
14208 @item l5/lowpass5
14209 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
14210 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
14211
14212 @item fq/forceQuant[|quantizer]
14213 Overrides the quantizer table from the input with the constant quantizer you
14214 specify.
14215 @table @option
14216 @item quantizer
14217 Quantizer to use
14218 @end table
14219
14220 @item de/default
14221 Default pp filter combination (@code{hb|a,vb|a,dr|a})
14222
14223 @item fa/fast
14224 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
14225
14226 @item ac
14227 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
14228 @end table
14229
14230 @subsection Examples
14231
14232 @itemize
14233 @item
14234 Apply horizontal and vertical deblocking, deringing and automatic
14235 brightness/contrast:
14236 @example
14237 pp=hb/vb/dr/al
14238 @end example
14239
14240 @item
14241 Apply default filters without brightness/contrast correction:
14242 @example
14243 pp=de/-al
14244 @end example
14245
14246 @item
14247 Apply default filters and temporal denoiser:
14248 @example
14249 pp=default/tmpnoise|1|2|3
14250 @end example
14251
14252 @item
14253 Apply deblocking on luminance only, and switch vertical deblocking on or off
14254 automatically depending on available CPU time:
14255 @example
14256 pp=hb|y/vb|a
14257 @end example
14258 @end itemize
14259
14260 @section pp7
14261 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
14262 similar to spp = 6 with 7 point DCT, where only the center sample is
14263 used after IDCT.
14264
14265 The filter accepts the following options:
14266
14267 @table @option
14268 @item qp
14269 Force a constant quantization parameter. It accepts an integer in range
14270 0 to 63. If not set, the filter will use the QP from the video stream
14271 (if available).
14272
14273 @item mode
14274 Set thresholding mode. Available modes are:
14275
14276 @table @samp
14277 @item hard
14278 Set hard thresholding.
14279 @item soft
14280 Set soft thresholding (better de-ringing effect, but likely blurrier).
14281 @item medium
14282 Set medium thresholding (good results, default).
14283 @end table
14284 @end table
14285
14286 @section premultiply
14287 Apply alpha premultiply effect to input video stream using first plane
14288 of second stream as alpha.
14289
14290 Both streams must have same dimensions and same pixel format.
14291
14292 The filter accepts the following option:
14293
14294 @table @option
14295 @item planes
14296 Set which planes will be processed, unprocessed planes will be copied.
14297 By default value 0xf, all planes will be processed.
14298
14299 @item inplace
14300 Do not require 2nd input for processing, instead use alpha plane from input stream.
14301 @end table
14302
14303 @section prewitt
14304 Apply prewitt operator to input video stream.
14305
14306 The filter accepts the following option:
14307
14308 @table @option
14309 @item planes
14310 Set which planes will be processed, unprocessed planes will be copied.
14311 By default value 0xf, all planes will be processed.
14312
14313 @item scale
14314 Set value which will be multiplied with filtered result.
14315
14316 @item delta
14317 Set value which will be added to filtered result.
14318 @end table
14319
14320 @anchor{program_opencl}
14321 @section program_opencl
14322
14323 Filter video using an OpenCL program.
14324
14325 @table @option
14326
14327 @item source
14328 OpenCL program source file.
14329
14330 @item kernel
14331 Kernel name in program.
14332
14333 @item inputs
14334 Number of inputs to the filter.  Defaults to 1.
14335
14336 @item size, s
14337 Size of output frames.  Defaults to the same as the first input.
14338
14339 @end table
14340
14341 The program source file must contain a kernel function with the given name,
14342 which will be run once for each plane of the output.  Each run on a plane
14343 gets enqueued as a separate 2D global NDRange with one work-item for each
14344 pixel to be generated.  The global ID offset for each work-item is therefore
14345 the coordinates of a pixel in the destination image.
14346
14347 The kernel function needs to take the following arguments:
14348 @itemize
14349 @item
14350 Destination image, @var{__write_only image2d_t}.
14351
14352 This image will become the output; the kernel should write all of it.
14353 @item
14354 Frame index, @var{unsigned int}.
14355
14356 This is a counter starting from zero and increasing by one for each frame.
14357 @item
14358 Source images, @var{__read_only image2d_t}.
14359
14360 These are the most recent images on each input.  The kernel may read from
14361 them to generate the output, but they can't be written to.
14362 @end itemize
14363
14364 Example programs:
14365
14366 @itemize
14367 @item
14368 Copy the input to the output (output must be the same size as the input).
14369 @verbatim
14370 __kernel void copy(__write_only image2d_t destination,
14371                    unsigned int index,
14372                    __read_only  image2d_t source)
14373 {
14374     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
14375
14376     int2 location = (int2)(get_global_id(0), get_global_id(1));
14377
14378     float4 value = read_imagef(source, sampler, location);
14379
14380     write_imagef(destination, location, value);
14381 }
14382 @end verbatim
14383
14384 @item
14385 Apply a simple transformation, rotating the input by an amount increasing
14386 with the index counter.  Pixel values are linearly interpolated by the
14387 sampler, and the output need not have the same dimensions as the input.
14388 @verbatim
14389 __kernel void rotate_image(__write_only image2d_t dst,
14390                            unsigned int index,
14391                            __read_only  image2d_t src)
14392 {
14393     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14394                                CLK_FILTER_LINEAR);
14395
14396     float angle = (float)index / 100.0f;
14397
14398     float2 dst_dim = convert_float2(get_image_dim(dst));
14399     float2 src_dim = convert_float2(get_image_dim(src));
14400
14401     float2 dst_cen = dst_dim / 2.0f;
14402     float2 src_cen = src_dim / 2.0f;
14403
14404     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
14405
14406     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
14407     float2 src_pos = {
14408         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
14409         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
14410     };
14411     src_pos = src_pos * src_dim / dst_dim;
14412
14413     float2 src_loc = src_pos + src_cen;
14414
14415     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
14416         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
14417         write_imagef(dst, dst_loc, 0.5f);
14418     else
14419         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
14420 }
14421 @end verbatim
14422
14423 @item
14424 Blend two inputs together, with the amount of each input used varying
14425 with the index counter.
14426 @verbatim
14427 __kernel void blend_images(__write_only image2d_t dst,
14428                            unsigned int index,
14429                            __read_only  image2d_t src1,
14430                            __read_only  image2d_t src2)
14431 {
14432     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14433                                CLK_FILTER_LINEAR);
14434
14435     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
14436
14437     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
14438     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
14439     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
14440
14441     float4 val1 = read_imagef(src1, sampler, src1_loc);
14442     float4 val2 = read_imagef(src2, sampler, src2_loc);
14443
14444     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
14445 }
14446 @end verbatim
14447
14448 @end itemize
14449
14450 @section pseudocolor
14451
14452 Alter frame colors in video with pseudocolors.
14453
14454 This filter accepts the following options:
14455
14456 @table @option
14457 @item c0
14458 set pixel first component expression
14459
14460 @item c1
14461 set pixel second component expression
14462
14463 @item c2
14464 set pixel third component expression
14465
14466 @item c3
14467 set pixel fourth component expression, corresponds to the alpha component
14468
14469 @item i
14470 set component to use as base for altering colors
14471 @end table
14472
14473 Each of them specifies the expression to use for computing the lookup table for
14474 the corresponding pixel component values.
14475
14476 The expressions can contain the following constants and functions:
14477
14478 @table @option
14479 @item w
14480 @item h
14481 The input width and height.
14482
14483 @item val
14484 The input value for the pixel component.
14485
14486 @item ymin, umin, vmin, amin
14487 The minimum allowed component value.
14488
14489 @item ymax, umax, vmax, amax
14490 The maximum allowed component value.
14491 @end table
14492
14493 All expressions default to "val".
14494
14495 @subsection Examples
14496
14497 @itemize
14498 @item
14499 Change too high luma values to gradient:
14500 @example
14501 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'"
14502 @end example
14503 @end itemize
14504
14505 @section psnr
14506
14507 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
14508 Ratio) between two input videos.
14509
14510 This filter takes in input two input videos, the first input is
14511 considered the "main" source and is passed unchanged to the
14512 output. The second input is used as a "reference" video for computing
14513 the PSNR.
14514
14515 Both video inputs must have the same resolution and pixel format for
14516 this filter to work correctly. Also it assumes that both inputs
14517 have the same number of frames, which are compared one by one.
14518
14519 The obtained average PSNR is printed through the logging system.
14520
14521 The filter stores the accumulated MSE (mean squared error) of each
14522 frame, and at the end of the processing it is averaged across all frames
14523 equally, and the following formula is applied to obtain the PSNR:
14524
14525 @example
14526 PSNR = 10*log10(MAX^2/MSE)
14527 @end example
14528
14529 Where MAX is the average of the maximum values of each component of the
14530 image.
14531
14532 The description of the accepted parameters follows.
14533
14534 @table @option
14535 @item stats_file, f
14536 If specified the filter will use the named file to save the PSNR of
14537 each individual frame. When filename equals "-" the data is sent to
14538 standard output.
14539
14540 @item stats_version
14541 Specifies which version of the stats file format to use. Details of
14542 each format are written below.
14543 Default value is 1.
14544
14545 @item stats_add_max
14546 Determines whether the max value is output to the stats log.
14547 Default value is 0.
14548 Requires stats_version >= 2. If this is set and stats_version < 2,
14549 the filter will return an error.
14550 @end table
14551
14552 This filter also supports the @ref{framesync} options.
14553
14554 The file printed if @var{stats_file} is selected, contains a sequence of
14555 key/value pairs of the form @var{key}:@var{value} for each compared
14556 couple of frames.
14557
14558 If a @var{stats_version} greater than 1 is specified, a header line precedes
14559 the list of per-frame-pair stats, with key value pairs following the frame
14560 format with the following parameters:
14561
14562 @table @option
14563 @item psnr_log_version
14564 The version of the log file format. Will match @var{stats_version}.
14565
14566 @item fields
14567 A comma separated list of the per-frame-pair parameters included in
14568 the log.
14569 @end table
14570
14571 A description of each shown per-frame-pair parameter follows:
14572
14573 @table @option
14574 @item n
14575 sequential number of the input frame, starting from 1
14576
14577 @item mse_avg
14578 Mean Square Error pixel-by-pixel average difference of the compared
14579 frames, averaged over all the image components.
14580
14581 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
14582 Mean Square Error pixel-by-pixel average difference of the compared
14583 frames for the component specified by the suffix.
14584
14585 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
14586 Peak Signal to Noise ratio of the compared frames for the component
14587 specified by the suffix.
14588
14589 @item max_avg, max_y, max_u, max_v
14590 Maximum allowed value for each channel, and average over all
14591 channels.
14592 @end table
14593
14594 For example:
14595 @example
14596 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14597 [main][ref] psnr="stats_file=stats.log" [out]
14598 @end example
14599
14600 On this example the input file being processed is compared with the
14601 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
14602 is stored in @file{stats.log}.
14603
14604 @anchor{pullup}
14605 @section pullup
14606
14607 Pulldown reversal (inverse telecine) filter, capable of handling mixed
14608 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
14609 content.
14610
14611 The pullup filter is designed to take advantage of future context in making
14612 its decisions. This filter is stateless in the sense that it does not lock
14613 onto a pattern to follow, but it instead looks forward to the following
14614 fields in order to identify matches and rebuild progressive frames.
14615
14616 To produce content with an even framerate, insert the fps filter after
14617 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
14618 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
14619
14620 The filter accepts the following options:
14621
14622 @table @option
14623 @item jl
14624 @item jr
14625 @item jt
14626 @item jb
14627 These options set the amount of "junk" to ignore at the left, right, top, and
14628 bottom of the image, respectively. Left and right are in units of 8 pixels,
14629 while top and bottom are in units of 2 lines.
14630 The default is 8 pixels on each side.
14631
14632 @item sb
14633 Set the strict breaks. Setting this option to 1 will reduce the chances of
14634 filter generating an occasional mismatched frame, but it may also cause an
14635 excessive number of frames to be dropped during high motion sequences.
14636 Conversely, setting it to -1 will make filter match fields more easily.
14637 This may help processing of video where there is slight blurring between
14638 the fields, but may also cause there to be interlaced frames in the output.
14639 Default value is @code{0}.
14640
14641 @item mp
14642 Set the metric plane to use. It accepts the following values:
14643 @table @samp
14644 @item l
14645 Use luma plane.
14646
14647 @item u
14648 Use chroma blue plane.
14649
14650 @item v
14651 Use chroma red plane.
14652 @end table
14653
14654 This option may be set to use chroma plane instead of the default luma plane
14655 for doing filter's computations. This may improve accuracy on very clean
14656 source material, but more likely will decrease accuracy, especially if there
14657 is chroma noise (rainbow effect) or any grayscale video.
14658 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
14659 load and make pullup usable in realtime on slow machines.
14660 @end table
14661
14662 For best results (without duplicated frames in the output file) it is
14663 necessary to change the output frame rate. For example, to inverse
14664 telecine NTSC input:
14665 @example
14666 ffmpeg -i input -vf pullup -r 24000/1001 ...
14667 @end example
14668
14669 @section qp
14670
14671 Change video quantization parameters (QP).
14672
14673 The filter accepts the following option:
14674
14675 @table @option
14676 @item qp
14677 Set expression for quantization parameter.
14678 @end table
14679
14680 The expression is evaluated through the eval API and can contain, among others,
14681 the following constants:
14682
14683 @table @var
14684 @item known
14685 1 if index is not 129, 0 otherwise.
14686
14687 @item qp
14688 Sequential index starting from -129 to 128.
14689 @end table
14690
14691 @subsection Examples
14692
14693 @itemize
14694 @item
14695 Some equation like:
14696 @example
14697 qp=2+2*sin(PI*qp)
14698 @end example
14699 @end itemize
14700
14701 @section random
14702
14703 Flush video frames from internal cache of frames into a random order.
14704 No frame is discarded.
14705 Inspired by @ref{frei0r} nervous filter.
14706
14707 @table @option
14708 @item frames
14709 Set size in number of frames of internal cache, in range from @code{2} to
14710 @code{512}. Default is @code{30}.
14711
14712 @item seed
14713 Set seed for random number generator, must be an integer included between
14714 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14715 less than @code{0}, the filter will try to use a good random seed on a
14716 best effort basis.
14717 @end table
14718
14719 @section readeia608
14720
14721 Read closed captioning (EIA-608) information from the top lines of a video frame.
14722
14723 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
14724 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
14725 with EIA-608 data (starting from 0). A description of each metadata value follows:
14726
14727 @table @option
14728 @item lavfi.readeia608.X.cc
14729 The two bytes stored as EIA-608 data (printed in hexadecimal).
14730
14731 @item lavfi.readeia608.X.line
14732 The number of the line on which the EIA-608 data was identified and read.
14733 @end table
14734
14735 This filter accepts the following options:
14736
14737 @table @option
14738 @item scan_min
14739 Set the line to start scanning for EIA-608 data. Default is @code{0}.
14740
14741 @item scan_max
14742 Set the line to end scanning for EIA-608 data. Default is @code{29}.
14743
14744 @item mac
14745 Set minimal acceptable amplitude change for sync codes detection.
14746 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
14747
14748 @item spw
14749 Set the ratio of width reserved for sync code detection.
14750 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
14751
14752 @item mhd
14753 Set the max peaks height difference for sync code detection.
14754 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14755
14756 @item mpd
14757 Set max peaks period difference for sync code detection.
14758 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14759
14760 @item msd
14761 Set the first two max start code bits differences.
14762 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
14763
14764 @item bhd
14765 Set the minimum ratio of bits height compared to 3rd start code bit.
14766 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
14767
14768 @item th_w
14769 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
14770
14771 @item th_b
14772 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
14773
14774 @item chp
14775 Enable checking the parity bit. In the event of a parity error, the filter will output
14776 @code{0x00} for that character. Default is false.
14777
14778 @item lp
14779 Lowpass lines prior to further processing. Default is disabled.
14780 @end table
14781
14782 @subsection Examples
14783
14784 @itemize
14785 @item
14786 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
14787 @example
14788 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
14789 @end example
14790 @end itemize
14791
14792 @section readvitc
14793
14794 Read vertical interval timecode (VITC) information from the top lines of a
14795 video frame.
14796
14797 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
14798 timecode value, if a valid timecode has been detected. Further metadata key
14799 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
14800 timecode data has been found or not.
14801
14802 This filter accepts the following options:
14803
14804 @table @option
14805 @item scan_max
14806 Set the maximum number of lines to scan for VITC data. If the value is set to
14807 @code{-1} the full video frame is scanned. Default is @code{45}.
14808
14809 @item thr_b
14810 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
14811 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
14812
14813 @item thr_w
14814 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
14815 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
14816 @end table
14817
14818 @subsection Examples
14819
14820 @itemize
14821 @item
14822 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
14823 draw @code{--:--:--:--} as a placeholder:
14824 @example
14825 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
14826 @end example
14827 @end itemize
14828
14829 @section remap
14830
14831 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
14832
14833 Destination pixel at position (X, Y) will be picked from source (x, y) position
14834 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
14835 value for pixel will be used for destination pixel.
14836
14837 Xmap and Ymap input video streams must be of same dimensions. Output video stream
14838 will have Xmap/Ymap video stream dimensions.
14839 Xmap and Ymap input video streams are 16bit depth, single channel.
14840
14841 @table @option
14842 @item format
14843 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
14844 Default is @code{color}.
14845 @end table
14846
14847 @section removegrain
14848
14849 The removegrain filter is a spatial denoiser for progressive video.
14850
14851 @table @option
14852 @item m0
14853 Set mode for the first plane.
14854
14855 @item m1
14856 Set mode for the second plane.
14857
14858 @item m2
14859 Set mode for the third plane.
14860
14861 @item m3
14862 Set mode for the fourth plane.
14863 @end table
14864
14865 Range of mode is from 0 to 24. Description of each mode follows:
14866
14867 @table @var
14868 @item 0
14869 Leave input plane unchanged. Default.
14870
14871 @item 1
14872 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
14873
14874 @item 2
14875 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
14876
14877 @item 3
14878 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
14879
14880 @item 4
14881 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
14882 This is equivalent to a median filter.
14883
14884 @item 5
14885 Line-sensitive clipping giving the minimal change.
14886
14887 @item 6
14888 Line-sensitive clipping, intermediate.
14889
14890 @item 7
14891 Line-sensitive clipping, intermediate.
14892
14893 @item 8
14894 Line-sensitive clipping, intermediate.
14895
14896 @item 9
14897 Line-sensitive clipping on a line where the neighbours pixels are the closest.
14898
14899 @item 10
14900 Replaces the target pixel with the closest neighbour.
14901
14902 @item 11
14903 [1 2 1] horizontal and vertical kernel blur.
14904
14905 @item 12
14906 Same as mode 11.
14907
14908 @item 13
14909 Bob mode, interpolates top field from the line where the neighbours
14910 pixels are the closest.
14911
14912 @item 14
14913 Bob mode, interpolates bottom field from the line where the neighbours
14914 pixels are the closest.
14915
14916 @item 15
14917 Bob mode, interpolates top field. Same as 13 but with a more complicated
14918 interpolation formula.
14919
14920 @item 16
14921 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
14922 interpolation formula.
14923
14924 @item 17
14925 Clips the pixel with the minimum and maximum of respectively the maximum and
14926 minimum of each pair of opposite neighbour pixels.
14927
14928 @item 18
14929 Line-sensitive clipping using opposite neighbours whose greatest distance from
14930 the current pixel is minimal.
14931
14932 @item 19
14933 Replaces the pixel with the average of its 8 neighbours.
14934
14935 @item 20
14936 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
14937
14938 @item 21
14939 Clips pixels using the averages of opposite neighbour.
14940
14941 @item 22
14942 Same as mode 21 but simpler and faster.
14943
14944 @item 23
14945 Small edge and halo removal, but reputed useless.
14946
14947 @item 24
14948 Similar as 23.
14949 @end table
14950
14951 @section removelogo
14952
14953 Suppress a TV station logo, using an image file to determine which
14954 pixels comprise the logo. It works by filling in the pixels that
14955 comprise the logo with neighboring pixels.
14956
14957 The filter accepts the following options:
14958
14959 @table @option
14960 @item filename, f
14961 Set the filter bitmap file, which can be any image format supported by
14962 libavformat. The width and height of the image file must match those of the
14963 video stream being processed.
14964 @end table
14965
14966 Pixels in the provided bitmap image with a value of zero are not
14967 considered part of the logo, non-zero pixels are considered part of
14968 the logo. If you use white (255) for the logo and black (0) for the
14969 rest, you will be safe. For making the filter bitmap, it is
14970 recommended to take a screen capture of a black frame with the logo
14971 visible, and then using a threshold filter followed by the erode
14972 filter once or twice.
14973
14974 If needed, little splotches can be fixed manually. Remember that if
14975 logo pixels are not covered, the filter quality will be much
14976 reduced. Marking too many pixels as part of the logo does not hurt as
14977 much, but it will increase the amount of blurring needed to cover over
14978 the image and will destroy more information than necessary, and extra
14979 pixels will slow things down on a large logo.
14980
14981 @section repeatfields
14982
14983 This filter uses the repeat_field flag from the Video ES headers and hard repeats
14984 fields based on its value.
14985
14986 @section reverse
14987
14988 Reverse a video clip.
14989
14990 Warning: This filter requires memory to buffer the entire clip, so trimming
14991 is suggested.
14992
14993 @subsection Examples
14994
14995 @itemize
14996 @item
14997 Take the first 5 seconds of a clip, and reverse it.
14998 @example
14999 trim=end=5,reverse
15000 @end example
15001 @end itemize
15002
15003 @section rgbashift
15004 Shift R/G/B/A pixels horizontally and/or vertically.
15005
15006 The filter accepts the following options:
15007 @table @option
15008 @item rh
15009 Set amount to shift red horizontally.
15010 @item rv
15011 Set amount to shift red vertically.
15012 @item gh
15013 Set amount to shift green horizontally.
15014 @item gv
15015 Set amount to shift green vertically.
15016 @item bh
15017 Set amount to shift blue horizontally.
15018 @item bv
15019 Set amount to shift blue vertically.
15020 @item ah
15021 Set amount to shift alpha horizontally.
15022 @item av
15023 Set amount to shift alpha vertically.
15024 @item edge
15025 Set edge mode, can be @var{smear}, default, or @var{warp}.
15026 @end table
15027
15028 @section roberts
15029 Apply roberts cross operator to input video stream.
15030
15031 The filter accepts the following option:
15032
15033 @table @option
15034 @item planes
15035 Set which planes will be processed, unprocessed planes will be copied.
15036 By default value 0xf, all planes will be processed.
15037
15038 @item scale
15039 Set value which will be multiplied with filtered result.
15040
15041 @item delta
15042 Set value which will be added to filtered result.
15043 @end table
15044
15045 @section rotate
15046
15047 Rotate video by an arbitrary angle expressed in radians.
15048
15049 The filter accepts the following options:
15050
15051 A description of the optional parameters follows.
15052 @table @option
15053 @item angle, a
15054 Set an expression for the angle by which to rotate the input video
15055 clockwise, expressed as a number of radians. A negative value will
15056 result in a counter-clockwise rotation. By default it is set to "0".
15057
15058 This expression is evaluated for each frame.
15059
15060 @item out_w, ow
15061 Set the output width expression, default value is "iw".
15062 This expression is evaluated just once during configuration.
15063
15064 @item out_h, oh
15065 Set the output height expression, default value is "ih".
15066 This expression is evaluated just once during configuration.
15067
15068 @item bilinear
15069 Enable bilinear interpolation if set to 1, a value of 0 disables
15070 it. Default value is 1.
15071
15072 @item fillcolor, c
15073 Set the color used to fill the output area not covered by the rotated
15074 image. For the general syntax of this option, check the
15075 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15076 If the special value "none" is selected then no
15077 background is printed (useful for example if the background is never shown).
15078
15079 Default value is "black".
15080 @end table
15081
15082 The expressions for the angle and the output size can contain the
15083 following constants and functions:
15084
15085 @table @option
15086 @item n
15087 sequential number of the input frame, starting from 0. It is always NAN
15088 before the first frame is filtered.
15089
15090 @item t
15091 time in seconds of the input frame, it is set to 0 when the filter is
15092 configured. It is always NAN before the first frame is filtered.
15093
15094 @item hsub
15095 @item vsub
15096 horizontal and vertical chroma subsample values. For example for the
15097 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15098
15099 @item in_w, iw
15100 @item in_h, ih
15101 the input video width and height
15102
15103 @item out_w, ow
15104 @item out_h, oh
15105 the output width and height, that is the size of the padded area as
15106 specified by the @var{width} and @var{height} expressions
15107
15108 @item rotw(a)
15109 @item roth(a)
15110 the minimal width/height required for completely containing the input
15111 video rotated by @var{a} radians.
15112
15113 These are only available when computing the @option{out_w} and
15114 @option{out_h} expressions.
15115 @end table
15116
15117 @subsection Examples
15118
15119 @itemize
15120 @item
15121 Rotate the input by PI/6 radians clockwise:
15122 @example
15123 rotate=PI/6
15124 @end example
15125
15126 @item
15127 Rotate the input by PI/6 radians counter-clockwise:
15128 @example
15129 rotate=-PI/6
15130 @end example
15131
15132 @item
15133 Rotate the input by 45 degrees clockwise:
15134 @example
15135 rotate=45*PI/180
15136 @end example
15137
15138 @item
15139 Apply a constant rotation with period T, starting from an angle of PI/3:
15140 @example
15141 rotate=PI/3+2*PI*t/T
15142 @end example
15143
15144 @item
15145 Make the input video rotation oscillating with a period of T
15146 seconds and an amplitude of A radians:
15147 @example
15148 rotate=A*sin(2*PI/T*t)
15149 @end example
15150
15151 @item
15152 Rotate the video, output size is chosen so that the whole rotating
15153 input video is always completely contained in the output:
15154 @example
15155 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15156 @end example
15157
15158 @item
15159 Rotate the video, reduce the output size so that no background is ever
15160 shown:
15161 @example
15162 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15163 @end example
15164 @end itemize
15165
15166 @subsection Commands
15167
15168 The filter supports the following commands:
15169
15170 @table @option
15171 @item a, angle
15172 Set the angle expression.
15173 The command accepts the same syntax of the corresponding option.
15174
15175 If the specified expression is not valid, it is kept at its current
15176 value.
15177 @end table
15178
15179 @section sab
15180
15181 Apply Shape Adaptive Blur.
15182
15183 The filter accepts the following options:
15184
15185 @table @option
15186 @item luma_radius, lr
15187 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15188 value is 1.0. A greater value will result in a more blurred image, and
15189 in slower processing.
15190
15191 @item luma_pre_filter_radius, lpfr
15192 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15193 value is 1.0.
15194
15195 @item luma_strength, ls
15196 Set luma maximum difference between pixels to still be considered, must
15197 be a value in the 0.1-100.0 range, default value is 1.0.
15198
15199 @item chroma_radius, cr
15200 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15201 greater value will result in a more blurred image, and in slower
15202 processing.
15203
15204 @item chroma_pre_filter_radius, cpfr
15205 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15206
15207 @item chroma_strength, cs
15208 Set chroma maximum difference between pixels to still be considered,
15209 must be a value in the -0.9-100.0 range.
15210 @end table
15211
15212 Each chroma option value, if not explicitly specified, is set to the
15213 corresponding luma option value.
15214
15215 @anchor{scale}
15216 @section scale
15217
15218 Scale (resize) the input video, using the libswscale library.
15219
15220 The scale filter forces the output display aspect ratio to be the same
15221 of the input, by changing the output sample aspect ratio.
15222
15223 If the input image format is different from the format requested by
15224 the next filter, the scale filter will convert the input to the
15225 requested format.
15226
15227 @subsection Options
15228 The filter accepts the following options, or any of the options
15229 supported by the libswscale scaler.
15230
15231 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15232 the complete list of scaler options.
15233
15234 @table @option
15235 @item width, w
15236 @item height, h
15237 Set the output video dimension expression. Default value is the input
15238 dimension.
15239
15240 If the @var{width} or @var{w} value is 0, the input width is used for
15241 the output. If the @var{height} or @var{h} value is 0, the input height
15242 is used for the output.
15243
15244 If one and only one of the values is -n with n >= 1, the scale filter
15245 will use a value that maintains the aspect ratio of the input image,
15246 calculated from the other specified dimension. After that it will,
15247 however, make sure that the calculated dimension is divisible by n and
15248 adjust the value if necessary.
15249
15250 If both values are -n with n >= 1, the behavior will be identical to
15251 both values being set to 0 as previously detailed.
15252
15253 See below for the list of accepted constants for use in the dimension
15254 expression.
15255
15256 @item eval
15257 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15258
15259 @table @samp
15260 @item init
15261 Only evaluate expressions once during the filter initialization or when a command is processed.
15262
15263 @item frame
15264 Evaluate expressions for each incoming frame.
15265
15266 @end table
15267
15268 Default value is @samp{init}.
15269
15270
15271 @item interl
15272 Set the interlacing mode. It accepts the following values:
15273
15274 @table @samp
15275 @item 1
15276 Force interlaced aware scaling.
15277
15278 @item 0
15279 Do not apply interlaced scaling.
15280
15281 @item -1
15282 Select interlaced aware scaling depending on whether the source frames
15283 are flagged as interlaced or not.
15284 @end table
15285
15286 Default value is @samp{0}.
15287
15288 @item flags
15289 Set libswscale scaling flags. See
15290 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15291 complete list of values. If not explicitly specified the filter applies
15292 the default flags.
15293
15294
15295 @item param0, param1
15296 Set libswscale input parameters for scaling algorithms that need them. See
15297 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15298 complete documentation. If not explicitly specified the filter applies
15299 empty parameters.
15300
15301
15302
15303 @item size, s
15304 Set the video size. For the syntax of this option, check the
15305 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15306
15307 @item in_color_matrix
15308 @item out_color_matrix
15309 Set in/output YCbCr color space type.
15310
15311 This allows the autodetected value to be overridden as well as allows forcing
15312 a specific value used for the output and encoder.
15313
15314 If not specified, the color space type depends on the pixel format.
15315
15316 Possible values:
15317
15318 @table @samp
15319 @item auto
15320 Choose automatically.
15321
15322 @item bt709
15323 Format conforming to International Telecommunication Union (ITU)
15324 Recommendation BT.709.
15325
15326 @item fcc
15327 Set color space conforming to the United States Federal Communications
15328 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
15329
15330 @item bt601
15331 @item bt470
15332 @item smpte170m
15333 Set color space conforming to:
15334
15335 @itemize
15336 @item
15337 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
15338
15339 @item
15340 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
15341
15342 @item
15343 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
15344
15345 @end itemize
15346
15347 @item smpte240m
15348 Set color space conforming to SMPTE ST 240:1999.
15349
15350 @item bt2020
15351 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
15352 @end table
15353
15354 @item in_range
15355 @item out_range
15356 Set in/output YCbCr sample range.
15357
15358 This allows the autodetected value to be overridden as well as allows forcing
15359 a specific value used for the output and encoder. If not specified, the
15360 range depends on the pixel format. Possible values:
15361
15362 @table @samp
15363 @item auto/unknown
15364 Choose automatically.
15365
15366 @item jpeg/full/pc
15367 Set full range (0-255 in case of 8-bit luma).
15368
15369 @item mpeg/limited/tv
15370 Set "MPEG" range (16-235 in case of 8-bit luma).
15371 @end table
15372
15373 @item force_original_aspect_ratio
15374 Enable decreasing or increasing output video width or height if necessary to
15375 keep the original aspect ratio. Possible values:
15376
15377 @table @samp
15378 @item disable
15379 Scale the video as specified and disable this feature.
15380
15381 @item decrease
15382 The output video dimensions will automatically be decreased if needed.
15383
15384 @item increase
15385 The output video dimensions will automatically be increased if needed.
15386
15387 @end table
15388
15389 One useful instance of this option is that when you know a specific device's
15390 maximum allowed resolution, you can use this to limit the output video to
15391 that, while retaining the aspect ratio. For example, device A allows
15392 1280x720 playback, and your video is 1920x800. Using this option (set it to
15393 decrease) and specifying 1280x720 to the command line makes the output
15394 1280x533.
15395
15396 Please note that this is a different thing than specifying -1 for @option{w}
15397 or @option{h}, you still need to specify the output resolution for this option
15398 to work.
15399
15400 @item force_divisible_by Ensures that the output resolution is divisible by the
15401 given integer when used together with @option{force_original_aspect_ratio}. This
15402 works similar to using -n in the @option{w} and @option{h} options.
15403
15404 This option respects the value set for @option{force_original_aspect_ratio},
15405 increasing or decreasing the resolution accordingly. This may slightly modify
15406 the video's aspect ration.
15407
15408 This can be handy, for example, if you want to have a video fit within a defined
15409 resolution using the @option{force_original_aspect_ratio} option but have
15410 encoder restrictions when it comes to width or height.
15411
15412 @end table
15413
15414 The values of the @option{w} and @option{h} options are expressions
15415 containing the following constants:
15416
15417 @table @var
15418 @item in_w
15419 @item in_h
15420 The input width and height
15421
15422 @item iw
15423 @item ih
15424 These are the same as @var{in_w} and @var{in_h}.
15425
15426 @item out_w
15427 @item out_h
15428 The output (scaled) width and height
15429
15430 @item ow
15431 @item oh
15432 These are the same as @var{out_w} and @var{out_h}
15433
15434 @item a
15435 The same as @var{iw} / @var{ih}
15436
15437 @item sar
15438 input sample aspect ratio
15439
15440 @item dar
15441 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15442
15443 @item hsub
15444 @item vsub
15445 horizontal and vertical input chroma subsample values. For example for the
15446 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15447
15448 @item ohsub
15449 @item ovsub
15450 horizontal and vertical output chroma subsample values. For example for the
15451 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15452 @end table
15453
15454 @subsection Examples
15455
15456 @itemize
15457 @item
15458 Scale the input video to a size of 200x100
15459 @example
15460 scale=w=200:h=100
15461 @end example
15462
15463 This is equivalent to:
15464 @example
15465 scale=200:100
15466 @end example
15467
15468 or:
15469 @example
15470 scale=200x100
15471 @end example
15472
15473 @item
15474 Specify a size abbreviation for the output size:
15475 @example
15476 scale=qcif
15477 @end example
15478
15479 which can also be written as:
15480 @example
15481 scale=size=qcif
15482 @end example
15483
15484 @item
15485 Scale the input to 2x:
15486 @example
15487 scale=w=2*iw:h=2*ih
15488 @end example
15489
15490 @item
15491 The above is the same as:
15492 @example
15493 scale=2*in_w:2*in_h
15494 @end example
15495
15496 @item
15497 Scale the input to 2x with forced interlaced scaling:
15498 @example
15499 scale=2*iw:2*ih:interl=1
15500 @end example
15501
15502 @item
15503 Scale the input to half size:
15504 @example
15505 scale=w=iw/2:h=ih/2
15506 @end example
15507
15508 @item
15509 Increase the width, and set the height to the same size:
15510 @example
15511 scale=3/2*iw:ow
15512 @end example
15513
15514 @item
15515 Seek Greek harmony:
15516 @example
15517 scale=iw:1/PHI*iw
15518 scale=ih*PHI:ih
15519 @end example
15520
15521 @item
15522 Increase the height, and set the width to 3/2 of the height:
15523 @example
15524 scale=w=3/2*oh:h=3/5*ih
15525 @end example
15526
15527 @item
15528 Increase the size, making the size a multiple of the chroma
15529 subsample values:
15530 @example
15531 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
15532 @end example
15533
15534 @item
15535 Increase the width to a maximum of 500 pixels,
15536 keeping the same aspect ratio as the input:
15537 @example
15538 scale=w='min(500\, iw*3/2):h=-1'
15539 @end example
15540
15541 @item
15542 Make pixels square by combining scale and setsar:
15543 @example
15544 scale='trunc(ih*dar):ih',setsar=1/1
15545 @end example
15546
15547 @item
15548 Make pixels square by combining scale and setsar,
15549 making sure the resulting resolution is even (required by some codecs):
15550 @example
15551 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
15552 @end example
15553 @end itemize
15554
15555 @subsection Commands
15556
15557 This filter supports the following commands:
15558 @table @option
15559 @item width, w
15560 @item height, h
15561 Set the output video dimension expression.
15562 The command accepts the same syntax of the corresponding option.
15563
15564 If the specified expression is not valid, it is kept at its current
15565 value.
15566 @end table
15567
15568 @section scale_npp
15569
15570 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
15571 format conversion on CUDA video frames. Setting the output width and height
15572 works in the same way as for the @var{scale} filter.
15573
15574 The following additional options are accepted:
15575 @table @option
15576 @item format
15577 The pixel format of the output CUDA frames. If set to the string "same" (the
15578 default), the input format will be kept. Note that automatic format negotiation
15579 and conversion is not yet supported for hardware frames
15580
15581 @item interp_algo
15582 The interpolation algorithm used for resizing. One of the following:
15583 @table @option
15584 @item nn
15585 Nearest neighbour.
15586
15587 @item linear
15588 @item cubic
15589 @item cubic2p_bspline
15590 2-parameter cubic (B=1, C=0)
15591
15592 @item cubic2p_catmullrom
15593 2-parameter cubic (B=0, C=1/2)
15594
15595 @item cubic2p_b05c03
15596 2-parameter cubic (B=1/2, C=3/10)
15597
15598 @item super
15599 Supersampling
15600
15601 @item lanczos
15602 @end table
15603
15604 @end table
15605
15606 @section scale2ref
15607
15608 Scale (resize) the input video, based on a reference video.
15609
15610 See the scale filter for available options, scale2ref supports the same but
15611 uses the reference video instead of the main input as basis. scale2ref also
15612 supports the following additional constants for the @option{w} and
15613 @option{h} options:
15614
15615 @table @var
15616 @item main_w
15617 @item main_h
15618 The main input video's width and height
15619
15620 @item main_a
15621 The same as @var{main_w} / @var{main_h}
15622
15623 @item main_sar
15624 The main input video's sample aspect ratio
15625
15626 @item main_dar, mdar
15627 The main input video's display aspect ratio. Calculated from
15628 @code{(main_w / main_h) * main_sar}.
15629
15630 @item main_hsub
15631 @item main_vsub
15632 The main input video's horizontal and vertical chroma subsample values.
15633 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
15634 is 1.
15635 @end table
15636
15637 @subsection Examples
15638
15639 @itemize
15640 @item
15641 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
15642 @example
15643 'scale2ref[b][a];[a][b]overlay'
15644 @end example
15645
15646 @item
15647 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
15648 @example
15649 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
15650 @end example
15651 @end itemize
15652
15653 @anchor{selectivecolor}
15654 @section selectivecolor
15655
15656 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
15657 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
15658 by the "purity" of the color (that is, how saturated it already is).
15659
15660 This filter is similar to the Adobe Photoshop Selective Color tool.
15661
15662 The filter accepts the following options:
15663
15664 @table @option
15665 @item correction_method
15666 Select color correction method.
15667
15668 Available values are:
15669 @table @samp
15670 @item absolute
15671 Specified adjustments are applied "as-is" (added/subtracted to original pixel
15672 component value).
15673 @item relative
15674 Specified adjustments are relative to the original component value.
15675 @end table
15676 Default is @code{absolute}.
15677 @item reds
15678 Adjustments for red pixels (pixels where the red component is the maximum)
15679 @item yellows
15680 Adjustments for yellow pixels (pixels where the blue component is the minimum)
15681 @item greens
15682 Adjustments for green pixels (pixels where the green component is the maximum)
15683 @item cyans
15684 Adjustments for cyan pixels (pixels where the red component is the minimum)
15685 @item blues
15686 Adjustments for blue pixels (pixels where the blue component is the maximum)
15687 @item magentas
15688 Adjustments for magenta pixels (pixels where the green component is the minimum)
15689 @item whites
15690 Adjustments for white pixels (pixels where all components are greater than 128)
15691 @item neutrals
15692 Adjustments for all pixels except pure black and pure white
15693 @item blacks
15694 Adjustments for black pixels (pixels where all components are lesser than 128)
15695 @item psfile
15696 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
15697 @end table
15698
15699 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
15700 4 space separated floating point adjustment values in the [-1,1] range,
15701 respectively to adjust the amount of cyan, magenta, yellow and black for the
15702 pixels of its range.
15703
15704 @subsection Examples
15705
15706 @itemize
15707 @item
15708 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
15709 increase magenta by 27% in blue areas:
15710 @example
15711 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
15712 @end example
15713
15714 @item
15715 Use a Photoshop selective color preset:
15716 @example
15717 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
15718 @end example
15719 @end itemize
15720
15721 @anchor{separatefields}
15722 @section separatefields
15723
15724 The @code{separatefields} takes a frame-based video input and splits
15725 each frame into its components fields, producing a new half height clip
15726 with twice the frame rate and twice the frame count.
15727
15728 This filter use field-dominance information in frame to decide which
15729 of each pair of fields to place first in the output.
15730 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
15731
15732 @section setdar, setsar
15733
15734 The @code{setdar} filter sets the Display Aspect Ratio for the filter
15735 output video.
15736
15737 This is done by changing the specified Sample (aka Pixel) Aspect
15738 Ratio, according to the following equation:
15739 @example
15740 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
15741 @end example
15742
15743 Keep in mind that the @code{setdar} filter does not modify the pixel
15744 dimensions of the video frame. Also, the display aspect ratio set by
15745 this filter may be changed by later filters in the filterchain,
15746 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
15747 applied.
15748
15749 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
15750 the filter output video.
15751
15752 Note that as a consequence of the application of this filter, the
15753 output display aspect ratio will change according to the equation
15754 above.
15755
15756 Keep in mind that the sample aspect ratio set by the @code{setsar}
15757 filter may be changed by later filters in the filterchain, e.g. if
15758 another "setsar" or a "setdar" filter is applied.
15759
15760 It accepts the following parameters:
15761
15762 @table @option
15763 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
15764 Set the aspect ratio used by the filter.
15765
15766 The parameter can be a floating point number string, an expression, or
15767 a string of the form @var{num}:@var{den}, where @var{num} and
15768 @var{den} are the numerator and denominator of the aspect ratio. If
15769 the parameter is not specified, it is assumed the value "0".
15770 In case the form "@var{num}:@var{den}" is used, the @code{:} character
15771 should be escaped.
15772
15773 @item max
15774 Set the maximum integer value to use for expressing numerator and
15775 denominator when reducing the expressed aspect ratio to a rational.
15776 Default value is @code{100}.
15777
15778 @end table
15779
15780 The parameter @var{sar} is an expression containing
15781 the following constants:
15782
15783 @table @option
15784 @item E, PI, PHI
15785 These are approximated values for the mathematical constants e
15786 (Euler's number), pi (Greek pi), and phi (the golden ratio).
15787
15788 @item w, h
15789 The input width and height.
15790
15791 @item a
15792 These are the same as @var{w} / @var{h}.
15793
15794 @item sar
15795 The input sample aspect ratio.
15796
15797 @item dar
15798 The input display aspect ratio. It is the same as
15799 (@var{w} / @var{h}) * @var{sar}.
15800
15801 @item hsub, vsub
15802 Horizontal and vertical chroma subsample values. For example, for the
15803 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15804 @end table
15805
15806 @subsection Examples
15807
15808 @itemize
15809
15810 @item
15811 To change the display aspect ratio to 16:9, specify one of the following:
15812 @example
15813 setdar=dar=1.77777
15814 setdar=dar=16/9
15815 @end example
15816
15817 @item
15818 To change the sample aspect ratio to 10:11, specify:
15819 @example
15820 setsar=sar=10/11
15821 @end example
15822
15823 @item
15824 To set a display aspect ratio of 16:9, and specify a maximum integer value of
15825 1000 in the aspect ratio reduction, use the command:
15826 @example
15827 setdar=ratio=16/9:max=1000
15828 @end example
15829
15830 @end itemize
15831
15832 @anchor{setfield}
15833 @section setfield
15834
15835 Force field for the output video frame.
15836
15837 The @code{setfield} filter marks the interlace type field for the
15838 output frames. It does not change the input frame, but only sets the
15839 corresponding property, which affects how the frame is treated by
15840 following filters (e.g. @code{fieldorder} or @code{yadif}).
15841
15842 The filter accepts the following options:
15843
15844 @table @option
15845
15846 @item mode
15847 Available values are:
15848
15849 @table @samp
15850 @item auto
15851 Keep the same field property.
15852
15853 @item bff
15854 Mark the frame as bottom-field-first.
15855
15856 @item tff
15857 Mark the frame as top-field-first.
15858
15859 @item prog
15860 Mark the frame as progressive.
15861 @end table
15862 @end table
15863
15864 @anchor{setparams}
15865 @section setparams
15866
15867 Force frame parameter for the output video frame.
15868
15869 The @code{setparams} filter marks interlace and color range for the
15870 output frames. It does not change the input frame, but only sets the
15871 corresponding property, which affects how the frame is treated by
15872 filters/encoders.
15873
15874 @table @option
15875 @item field_mode
15876 Available values are:
15877
15878 @table @samp
15879 @item auto
15880 Keep the same field property (default).
15881
15882 @item bff
15883 Mark the frame as bottom-field-first.
15884
15885 @item tff
15886 Mark the frame as top-field-first.
15887
15888 @item prog
15889 Mark the frame as progressive.
15890 @end table
15891
15892 @item range
15893 Available values are:
15894
15895 @table @samp
15896 @item auto
15897 Keep the same color range property (default).
15898
15899 @item unspecified, unknown
15900 Mark the frame as unspecified color range.
15901
15902 @item limited, tv, mpeg
15903 Mark the frame as limited range.
15904
15905 @item full, pc, jpeg
15906 Mark the frame as full range.
15907 @end table
15908
15909 @item color_primaries
15910 Set the color primaries.
15911 Available values are:
15912
15913 @table @samp
15914 @item auto
15915 Keep the same color primaries property (default).
15916
15917 @item bt709
15918 @item unknown
15919 @item bt470m
15920 @item bt470bg
15921 @item smpte170m
15922 @item smpte240m
15923 @item film
15924 @item bt2020
15925 @item smpte428
15926 @item smpte431
15927 @item smpte432
15928 @item jedec-p22
15929 @end table
15930
15931 @item color_trc
15932 Set the color transfer.
15933 Available values are:
15934
15935 @table @samp
15936 @item auto
15937 Keep the same color trc property (default).
15938
15939 @item bt709
15940 @item unknown
15941 @item bt470m
15942 @item bt470bg
15943 @item smpte170m
15944 @item smpte240m
15945 @item linear
15946 @item log100
15947 @item log316
15948 @item iec61966-2-4
15949 @item bt1361e
15950 @item iec61966-2-1
15951 @item bt2020-10
15952 @item bt2020-12
15953 @item smpte2084
15954 @item smpte428
15955 @item arib-std-b67
15956 @end table
15957
15958 @item colorspace
15959 Set the colorspace.
15960 Available values are:
15961
15962 @table @samp
15963 @item auto
15964 Keep the same colorspace property (default).
15965
15966 @item gbr
15967 @item bt709
15968 @item unknown
15969 @item fcc
15970 @item bt470bg
15971 @item smpte170m
15972 @item smpte240m
15973 @item ycgco
15974 @item bt2020nc
15975 @item bt2020c
15976 @item smpte2085
15977 @item chroma-derived-nc
15978 @item chroma-derived-c
15979 @item ictcp
15980 @end table
15981 @end table
15982
15983 @section showinfo
15984
15985 Show a line containing various information for each input video frame.
15986 The input video is not modified.
15987
15988 This filter supports the following options:
15989
15990 @table @option
15991 @item checksum
15992 Calculate checksums of each plane. By default enabled.
15993 @end table
15994
15995 The shown line contains a sequence of key/value pairs of the form
15996 @var{key}:@var{value}.
15997
15998 The following values are shown in the output:
15999
16000 @table @option
16001 @item n
16002 The (sequential) number of the input frame, starting from 0.
16003
16004 @item pts
16005 The Presentation TimeStamp of the input frame, expressed as a number of
16006 time base units. The time base unit depends on the filter input pad.
16007
16008 @item pts_time
16009 The Presentation TimeStamp of the input frame, expressed as a number of
16010 seconds.
16011
16012 @item pos
16013 The position of the frame in the input stream, or -1 if this information is
16014 unavailable and/or meaningless (for example in case of synthetic video).
16015
16016 @item fmt
16017 The pixel format name.
16018
16019 @item sar
16020 The sample aspect ratio of the input frame, expressed in the form
16021 @var{num}/@var{den}.
16022
16023 @item s
16024 The size of the input frame. For the syntax of this option, check the
16025 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16026
16027 @item i
16028 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16029 for bottom field first).
16030
16031 @item iskey
16032 This is 1 if the frame is a key frame, 0 otherwise.
16033
16034 @item type
16035 The picture type of the input frame ("I" for an I-frame, "P" for a
16036 P-frame, "B" for a B-frame, or "?" for an unknown type).
16037 Also refer to the documentation of the @code{AVPictureType} enum and of
16038 the @code{av_get_picture_type_char} function defined in
16039 @file{libavutil/avutil.h}.
16040
16041 @item checksum
16042 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16043
16044 @item plane_checksum
16045 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16046 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16047 @end table
16048
16049 @section showpalette
16050
16051 Displays the 256 colors palette of each frame. This filter is only relevant for
16052 @var{pal8} pixel format frames.
16053
16054 It accepts the following option:
16055
16056 @table @option
16057 @item s
16058 Set the size of the box used to represent one palette color entry. Default is
16059 @code{30} (for a @code{30x30} pixel box).
16060 @end table
16061
16062 @section shuffleframes
16063
16064 Reorder and/or duplicate and/or drop video frames.
16065
16066 It accepts the following parameters:
16067
16068 @table @option
16069 @item mapping
16070 Set the destination indexes of input frames.
16071 This is space or '|' separated list of indexes that maps input frames to output
16072 frames. Number of indexes also sets maximal value that each index may have.
16073 '-1' index have special meaning and that is to drop frame.
16074 @end table
16075
16076 The first frame has the index 0. The default is to keep the input unchanged.
16077
16078 @subsection Examples
16079
16080 @itemize
16081 @item
16082 Swap second and third frame of every three frames of the input:
16083 @example
16084 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16085 @end example
16086
16087 @item
16088 Swap 10th and 1st frame of every ten frames of the input:
16089 @example
16090 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16091 @end example
16092 @end itemize
16093
16094 @section shuffleplanes
16095
16096 Reorder and/or duplicate video planes.
16097
16098 It accepts the following parameters:
16099
16100 @table @option
16101
16102 @item map0
16103 The index of the input plane to be used as the first output plane.
16104
16105 @item map1
16106 The index of the input plane to be used as the second output plane.
16107
16108 @item map2
16109 The index of the input plane to be used as the third output plane.
16110
16111 @item map3
16112 The index of the input plane to be used as the fourth output plane.
16113
16114 @end table
16115
16116 The first plane has the index 0. The default is to keep the input unchanged.
16117
16118 @subsection Examples
16119
16120 @itemize
16121 @item
16122 Swap the second and third planes of the input:
16123 @example
16124 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16125 @end example
16126 @end itemize
16127
16128 @anchor{signalstats}
16129 @section signalstats
16130 Evaluate various visual metrics that assist in determining issues associated
16131 with the digitization of analog video media.
16132
16133 By default the filter will log these metadata values:
16134
16135 @table @option
16136 @item YMIN
16137 Display the minimal Y value contained within the input frame. Expressed in
16138 range of [0-255].
16139
16140 @item YLOW
16141 Display the Y value at the 10% percentile within the input frame. Expressed in
16142 range of [0-255].
16143
16144 @item YAVG
16145 Display the average Y value within the input frame. Expressed in range of
16146 [0-255].
16147
16148 @item YHIGH
16149 Display the Y value at the 90% percentile within the input frame. Expressed in
16150 range of [0-255].
16151
16152 @item YMAX
16153 Display the maximum Y value contained within the input frame. Expressed in
16154 range of [0-255].
16155
16156 @item UMIN
16157 Display the minimal U value contained within the input frame. Expressed in
16158 range of [0-255].
16159
16160 @item ULOW
16161 Display the U value at the 10% percentile within the input frame. Expressed in
16162 range of [0-255].
16163
16164 @item UAVG
16165 Display the average U value within the input frame. Expressed in range of
16166 [0-255].
16167
16168 @item UHIGH
16169 Display the U value at the 90% percentile within the input frame. Expressed in
16170 range of [0-255].
16171
16172 @item UMAX
16173 Display the maximum U value contained within the input frame. Expressed in
16174 range of [0-255].
16175
16176 @item VMIN
16177 Display the minimal V value contained within the input frame. Expressed in
16178 range of [0-255].
16179
16180 @item VLOW
16181 Display the V value at the 10% percentile within the input frame. Expressed in
16182 range of [0-255].
16183
16184 @item VAVG
16185 Display the average V value within the input frame. Expressed in range of
16186 [0-255].
16187
16188 @item VHIGH
16189 Display the V value at the 90% percentile within the input frame. Expressed in
16190 range of [0-255].
16191
16192 @item VMAX
16193 Display the maximum V value contained within the input frame. Expressed in
16194 range of [0-255].
16195
16196 @item SATMIN
16197 Display the minimal saturation value contained within the input frame.
16198 Expressed in range of [0-~181.02].
16199
16200 @item SATLOW
16201 Display the saturation value at the 10% percentile within the input frame.
16202 Expressed in range of [0-~181.02].
16203
16204 @item SATAVG
16205 Display the average saturation value within the input frame. Expressed in range
16206 of [0-~181.02].
16207
16208 @item SATHIGH
16209 Display the saturation value at the 90% percentile within the input frame.
16210 Expressed in range of [0-~181.02].
16211
16212 @item SATMAX
16213 Display the maximum saturation value contained within the input frame.
16214 Expressed in range of [0-~181.02].
16215
16216 @item HUEMED
16217 Display the median value for hue within the input frame. Expressed in range of
16218 [0-360].
16219
16220 @item HUEAVG
16221 Display the average value for hue within the input frame. Expressed in range of
16222 [0-360].
16223
16224 @item YDIF
16225 Display the average of sample value difference between all values of the Y
16226 plane in the current frame and corresponding values of the previous input frame.
16227 Expressed in range of [0-255].
16228
16229 @item UDIF
16230 Display the average of sample value difference between all values of the U
16231 plane in the current frame and corresponding values of the previous input frame.
16232 Expressed in range of [0-255].
16233
16234 @item VDIF
16235 Display the average of sample value difference between all values of the V
16236 plane in the current frame and corresponding values of the previous input frame.
16237 Expressed in range of [0-255].
16238
16239 @item YBITDEPTH
16240 Display bit depth of Y plane in current frame.
16241 Expressed in range of [0-16].
16242
16243 @item UBITDEPTH
16244 Display bit depth of U plane in current frame.
16245 Expressed in range of [0-16].
16246
16247 @item VBITDEPTH
16248 Display bit depth of V plane in current frame.
16249 Expressed in range of [0-16].
16250 @end table
16251
16252 The filter accepts the following options:
16253
16254 @table @option
16255 @item stat
16256 @item out
16257
16258 @option{stat} specify an additional form of image analysis.
16259 @option{out} output video with the specified type of pixel highlighted.
16260
16261 Both options accept the following values:
16262
16263 @table @samp
16264 @item tout
16265 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
16266 unlike the neighboring pixels of the same field. Examples of temporal outliers
16267 include the results of video dropouts, head clogs, or tape tracking issues.
16268
16269 @item vrep
16270 Identify @var{vertical line repetition}. Vertical line repetition includes
16271 similar rows of pixels within a frame. In born-digital video vertical line
16272 repetition is common, but this pattern is uncommon in video digitized from an
16273 analog source. When it occurs in video that results from the digitization of an
16274 analog source it can indicate concealment from a dropout compensator.
16275
16276 @item brng
16277 Identify pixels that fall outside of legal broadcast range.
16278 @end table
16279
16280 @item color, c
16281 Set the highlight color for the @option{out} option. The default color is
16282 yellow.
16283 @end table
16284
16285 @subsection Examples
16286
16287 @itemize
16288 @item
16289 Output data of various video metrics:
16290 @example
16291 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
16292 @end example
16293
16294 @item
16295 Output specific data about the minimum and maximum values of the Y plane per frame:
16296 @example
16297 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
16298 @end example
16299
16300 @item
16301 Playback video while highlighting pixels that are outside of broadcast range in red.
16302 @example
16303 ffplay example.mov -vf signalstats="out=brng:color=red"
16304 @end example
16305
16306 @item
16307 Playback video with signalstats metadata drawn over the frame.
16308 @example
16309 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
16310 @end example
16311
16312 The contents of signalstat_drawtext.txt used in the command are:
16313 @example
16314 time %@{pts:hms@}
16315 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
16316 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
16317 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
16318 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
16319
16320 @end example
16321 @end itemize
16322
16323 @anchor{signature}
16324 @section signature
16325
16326 Calculates the MPEG-7 Video Signature. The filter can handle more than one
16327 input. In this case the matching between the inputs can be calculated additionally.
16328 The filter always passes through the first input. The signature of each stream can
16329 be written into a file.
16330
16331 It accepts the following options:
16332
16333 @table @option
16334 @item detectmode
16335 Enable or disable the matching process.
16336
16337 Available values are:
16338
16339 @table @samp
16340 @item off
16341 Disable the calculation of a matching (default).
16342 @item full
16343 Calculate the matching for the whole video and output whether the whole video
16344 matches or only parts.
16345 @item fast
16346 Calculate only until a matching is found or the video ends. Should be faster in
16347 some cases.
16348 @end table
16349
16350 @item nb_inputs
16351 Set the number of inputs. The option value must be a non negative integer.
16352 Default value is 1.
16353
16354 @item filename
16355 Set the path to which the output is written. If there is more than one input,
16356 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
16357 integer), that will be replaced with the input number. If no filename is
16358 specified, no output will be written. This is the default.
16359
16360 @item format
16361 Choose the output format.
16362
16363 Available values are:
16364
16365 @table @samp
16366 @item binary
16367 Use the specified binary representation (default).
16368 @item xml
16369 Use the specified xml representation.
16370 @end table
16371
16372 @item th_d
16373 Set threshold to detect one word as similar. The option value must be an integer
16374 greater than zero. The default value is 9000.
16375
16376 @item th_dc
16377 Set threshold to detect all words as similar. The option value must be an integer
16378 greater than zero. The default value is 60000.
16379
16380 @item th_xh
16381 Set threshold to detect frames as similar. The option value must be an integer
16382 greater than zero. The default value is 116.
16383
16384 @item th_di
16385 Set the minimum length of a sequence in frames to recognize it as matching
16386 sequence. The option value must be a non negative integer value.
16387 The default value is 0.
16388
16389 @item th_it
16390 Set the minimum relation, that matching frames to all frames must have.
16391 The option value must be a double value between 0 and 1. The default value is 0.5.
16392 @end table
16393
16394 @subsection Examples
16395
16396 @itemize
16397 @item
16398 To calculate the signature of an input video and store it in signature.bin:
16399 @example
16400 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
16401 @end example
16402
16403 @item
16404 To detect whether two videos match and store the signatures in XML format in
16405 signature0.xml and signature1.xml:
16406 @example
16407 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 -
16408 @end example
16409
16410 @end itemize
16411
16412 @anchor{smartblur}
16413 @section smartblur
16414
16415 Blur the input video without impacting the outlines.
16416
16417 It accepts the following options:
16418
16419 @table @option
16420 @item luma_radius, lr
16421 Set the luma radius. The option value must be a float number in
16422 the range [0.1,5.0] that specifies the variance of the gaussian filter
16423 used to blur the image (slower if larger). Default value is 1.0.
16424
16425 @item luma_strength, ls
16426 Set the luma strength. The option value must be a float number
16427 in the range [-1.0,1.0] that configures the blurring. A value included
16428 in [0.0,1.0] will blur the image whereas a value included in
16429 [-1.0,0.0] will sharpen the image. Default value is 1.0.
16430
16431 @item luma_threshold, lt
16432 Set the luma threshold used as a coefficient to determine
16433 whether a pixel should be blurred or not. The option value must be an
16434 integer in the range [-30,30]. A value of 0 will filter all the image,
16435 a value included in [0,30] will filter flat areas and a value included
16436 in [-30,0] will filter edges. Default value is 0.
16437
16438 @item chroma_radius, cr
16439 Set the chroma radius. The option value must be a float number in
16440 the range [0.1,5.0] that specifies the variance of the gaussian filter
16441 used to blur the image (slower if larger). Default value is @option{luma_radius}.
16442
16443 @item chroma_strength, cs
16444 Set the chroma strength. The option value must be a float number
16445 in the range [-1.0,1.0] that configures the blurring. A value included
16446 in [0.0,1.0] will blur the image whereas a value included in
16447 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
16448
16449 @item chroma_threshold, ct
16450 Set the chroma threshold used as a coefficient to determine
16451 whether a pixel should be blurred or not. The option value must be an
16452 integer in the range [-30,30]. A value of 0 will filter all the image,
16453 a value included in [0,30] will filter flat areas and a value included
16454 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
16455 @end table
16456
16457 If a chroma option is not explicitly set, the corresponding luma value
16458 is set.
16459
16460 @section sobel
16461 Apply sobel operator to input video stream.
16462
16463 The filter accepts the following option:
16464
16465 @table @option
16466 @item planes
16467 Set which planes will be processed, unprocessed planes will be copied.
16468 By default value 0xf, all planes will be processed.
16469
16470 @item scale
16471 Set value which will be multiplied with filtered result.
16472
16473 @item delta
16474 Set value which will be added to filtered result.
16475 @end table
16476
16477 @anchor{spp}
16478 @section spp
16479
16480 Apply a simple postprocessing filter that compresses and decompresses the image
16481 at several (or - in the case of @option{quality} level @code{6} - all) shifts
16482 and average the results.
16483
16484 The filter accepts the following options:
16485
16486 @table @option
16487 @item quality
16488 Set quality. This option defines the number of levels for averaging. It accepts
16489 an integer in the range 0-6. If set to @code{0}, the filter will have no
16490 effect. A value of @code{6} means the higher quality. For each increment of
16491 that value the speed drops by a factor of approximately 2.  Default value is
16492 @code{3}.
16493
16494 @item qp
16495 Force a constant quantization parameter. If not set, the filter will use the QP
16496 from the video stream (if available).
16497
16498 @item mode
16499 Set thresholding mode. Available modes are:
16500
16501 @table @samp
16502 @item hard
16503 Set hard thresholding (default).
16504 @item soft
16505 Set soft thresholding (better de-ringing effect, but likely blurrier).
16506 @end table
16507
16508 @item use_bframe_qp
16509 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
16510 option may cause flicker since the B-Frames have often larger QP. Default is
16511 @code{0} (not enabled).
16512 @end table
16513
16514 @section sr
16515
16516 Scale the input by applying one of the super-resolution methods based on
16517 convolutional neural networks. Supported models:
16518
16519 @itemize
16520 @item
16521 Super-Resolution Convolutional Neural Network model (SRCNN).
16522 See @url{https://arxiv.org/abs/1501.00092}.
16523
16524 @item
16525 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
16526 See @url{https://arxiv.org/abs/1609.05158}.
16527 @end itemize
16528
16529 Training scripts as well as scripts for model file (.pb) saving can be found at
16530 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
16531 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
16532
16533 Native model files (.model) can be generated from TensorFlow model
16534 files (.pb) by using tools/python/convert.py
16535
16536 The filter accepts the following options:
16537
16538 @table @option
16539 @item dnn_backend
16540 Specify which DNN backend to use for model loading and execution. This option accepts
16541 the following values:
16542
16543 @table @samp
16544 @item native
16545 Native implementation of DNN loading and execution.
16546
16547 @item tensorflow
16548 TensorFlow backend. To enable this backend you
16549 need to install the TensorFlow for C library (see
16550 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
16551 @code{--enable-libtensorflow}
16552 @end table
16553
16554 Default value is @samp{native}.
16555
16556 @item model
16557 Set path to model file specifying network architecture and its parameters.
16558 Note that different backends use different file formats. TensorFlow backend
16559 can load files for both formats, while native backend can load files for only
16560 its format.
16561
16562 @item scale_factor
16563 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
16564 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
16565 input upscaled using bicubic upscaling with proper scale factor.
16566 @end table
16567
16568 @section ssim
16569
16570 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
16571
16572 This filter takes in input two input videos, the first input is
16573 considered the "main" source and is passed unchanged to the
16574 output. The second input is used as a "reference" video for computing
16575 the SSIM.
16576
16577 Both video inputs must have the same resolution and pixel format for
16578 this filter to work correctly. Also it assumes that both inputs
16579 have the same number of frames, which are compared one by one.
16580
16581 The filter stores the calculated SSIM of each frame.
16582
16583 The description of the accepted parameters follows.
16584
16585 @table @option
16586 @item stats_file, f
16587 If specified the filter will use the named file to save the SSIM of
16588 each individual frame. When filename equals "-" the data is sent to
16589 standard output.
16590 @end table
16591
16592 The file printed if @var{stats_file} is selected, contains a sequence of
16593 key/value pairs of the form @var{key}:@var{value} for each compared
16594 couple of frames.
16595
16596 A description of each shown parameter follows:
16597
16598 @table @option
16599 @item n
16600 sequential number of the input frame, starting from 1
16601
16602 @item Y, U, V, R, G, B
16603 SSIM of the compared frames for the component specified by the suffix.
16604
16605 @item All
16606 SSIM of the compared frames for the whole frame.
16607
16608 @item dB
16609 Same as above but in dB representation.
16610 @end table
16611
16612 This filter also supports the @ref{framesync} options.
16613
16614 For example:
16615 @example
16616 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16617 [main][ref] ssim="stats_file=stats.log" [out]
16618 @end example
16619
16620 On this example the input file being processed is compared with the
16621 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
16622 is stored in @file{stats.log}.
16623
16624 Another example with both psnr and ssim at same time:
16625 @example
16626 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
16627 @end example
16628
16629 @section stereo3d
16630
16631 Convert between different stereoscopic image formats.
16632
16633 The filters accept the following options:
16634
16635 @table @option
16636 @item in
16637 Set stereoscopic image format of input.
16638
16639 Available values for input image formats are:
16640 @table @samp
16641 @item sbsl
16642 side by side parallel (left eye left, right eye right)
16643
16644 @item sbsr
16645 side by side crosseye (right eye left, left eye right)
16646
16647 @item sbs2l
16648 side by side parallel with half width resolution
16649 (left eye left, right eye right)
16650
16651 @item sbs2r
16652 side by side crosseye with half width resolution
16653 (right eye left, left eye right)
16654
16655 @item abl
16656 @item tbl
16657 above-below (left eye above, right eye below)
16658
16659 @item abr
16660 @item tbr
16661 above-below (right eye above, left eye below)
16662
16663 @item ab2l
16664 @item tb2l
16665 above-below with half height resolution
16666 (left eye above, right eye below)
16667
16668 @item ab2r
16669 @item tb2r
16670 above-below with half height resolution
16671 (right eye above, left eye below)
16672
16673 @item al
16674 alternating frames (left eye first, right eye second)
16675
16676 @item ar
16677 alternating frames (right eye first, left eye second)
16678
16679 @item irl
16680 interleaved rows (left eye has top row, right eye starts on next row)
16681
16682 @item irr
16683 interleaved rows (right eye has top row, left eye starts on next row)
16684
16685 @item icl
16686 interleaved columns, left eye first
16687
16688 @item icr
16689 interleaved columns, right eye first
16690
16691 Default value is @samp{sbsl}.
16692 @end table
16693
16694 @item out
16695 Set stereoscopic image format of output.
16696
16697 @table @samp
16698 @item sbsl
16699 side by side parallel (left eye left, right eye right)
16700
16701 @item sbsr
16702 side by side crosseye (right eye left, left eye right)
16703
16704 @item sbs2l
16705 side by side parallel with half width resolution
16706 (left eye left, right eye right)
16707
16708 @item sbs2r
16709 side by side crosseye with half width resolution
16710 (right eye left, left eye right)
16711
16712 @item abl
16713 @item tbl
16714 above-below (left eye above, right eye below)
16715
16716 @item abr
16717 @item tbr
16718 above-below (right eye above, left eye below)
16719
16720 @item ab2l
16721 @item tb2l
16722 above-below with half height resolution
16723 (left eye above, right eye below)
16724
16725 @item ab2r
16726 @item tb2r
16727 above-below with half height resolution
16728 (right eye above, left eye below)
16729
16730 @item al
16731 alternating frames (left eye first, right eye second)
16732
16733 @item ar
16734 alternating frames (right eye first, left eye second)
16735
16736 @item irl
16737 interleaved rows (left eye has top row, right eye starts on next row)
16738
16739 @item irr
16740 interleaved rows (right eye has top row, left eye starts on next row)
16741
16742 @item arbg
16743 anaglyph red/blue gray
16744 (red filter on left eye, blue filter on right eye)
16745
16746 @item argg
16747 anaglyph red/green gray
16748 (red filter on left eye, green filter on right eye)
16749
16750 @item arcg
16751 anaglyph red/cyan gray
16752 (red filter on left eye, cyan filter on right eye)
16753
16754 @item arch
16755 anaglyph red/cyan half colored
16756 (red filter on left eye, cyan filter on right eye)
16757
16758 @item arcc
16759 anaglyph red/cyan color
16760 (red filter on left eye, cyan filter on right eye)
16761
16762 @item arcd
16763 anaglyph red/cyan color optimized with the least squares projection of dubois
16764 (red filter on left eye, cyan filter on right eye)
16765
16766 @item agmg
16767 anaglyph green/magenta gray
16768 (green filter on left eye, magenta filter on right eye)
16769
16770 @item agmh
16771 anaglyph green/magenta half colored
16772 (green filter on left eye, magenta filter on right eye)
16773
16774 @item agmc
16775 anaglyph green/magenta colored
16776 (green filter on left eye, magenta filter on right eye)
16777
16778 @item agmd
16779 anaglyph green/magenta color optimized with the least squares projection of dubois
16780 (green filter on left eye, magenta filter on right eye)
16781
16782 @item aybg
16783 anaglyph yellow/blue gray
16784 (yellow filter on left eye, blue filter on right eye)
16785
16786 @item aybh
16787 anaglyph yellow/blue half colored
16788 (yellow filter on left eye, blue filter on right eye)
16789
16790 @item aybc
16791 anaglyph yellow/blue colored
16792 (yellow filter on left eye, blue filter on right eye)
16793
16794 @item aybd
16795 anaglyph yellow/blue color optimized with the least squares projection of dubois
16796 (yellow filter on left eye, blue filter on right eye)
16797
16798 @item ml
16799 mono output (left eye only)
16800
16801 @item mr
16802 mono output (right eye only)
16803
16804 @item chl
16805 checkerboard, left eye first
16806
16807 @item chr
16808 checkerboard, right eye first
16809
16810 @item icl
16811 interleaved columns, left eye first
16812
16813 @item icr
16814 interleaved columns, right eye first
16815
16816 @item hdmi
16817 HDMI frame pack
16818 @end table
16819
16820 Default value is @samp{arcd}.
16821 @end table
16822
16823 @subsection Examples
16824
16825 @itemize
16826 @item
16827 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
16828 @example
16829 stereo3d=sbsl:aybd
16830 @end example
16831
16832 @item
16833 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
16834 @example
16835 stereo3d=abl:sbsr
16836 @end example
16837 @end itemize
16838
16839 @section streamselect, astreamselect
16840 Select video or audio streams.
16841
16842 The filter accepts the following options:
16843
16844 @table @option
16845 @item inputs
16846 Set number of inputs. Default is 2.
16847
16848 @item map
16849 Set input indexes to remap to outputs.
16850 @end table
16851
16852 @subsection Commands
16853
16854 The @code{streamselect} and @code{astreamselect} filter supports the following
16855 commands:
16856
16857 @table @option
16858 @item map
16859 Set input indexes to remap to outputs.
16860 @end table
16861
16862 @subsection Examples
16863
16864 @itemize
16865 @item
16866 Select first 5 seconds 1st stream and rest of time 2nd stream:
16867 @example
16868 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
16869 @end example
16870
16871 @item
16872 Same as above, but for audio:
16873 @example
16874 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
16875 @end example
16876 @end itemize
16877
16878 @anchor{subtitles}
16879 @section subtitles
16880
16881 Draw subtitles on top of input video using the libass library.
16882
16883 To enable compilation of this filter you need to configure FFmpeg with
16884 @code{--enable-libass}. This filter also requires a build with libavcodec and
16885 libavformat to convert the passed subtitles file to ASS (Advanced Substation
16886 Alpha) subtitles format.
16887
16888 The filter accepts the following options:
16889
16890 @table @option
16891 @item filename, f
16892 Set the filename of the subtitle file to read. It must be specified.
16893
16894 @item original_size
16895 Specify the size of the original video, the video for which the ASS file
16896 was composed. For the syntax of this option, check the
16897 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16898 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
16899 correctly scale the fonts if the aspect ratio has been changed.
16900
16901 @item fontsdir
16902 Set a directory path containing fonts that can be used by the filter.
16903 These fonts will be used in addition to whatever the font provider uses.
16904
16905 @item alpha
16906 Process alpha channel, by default alpha channel is untouched.
16907
16908 @item charenc
16909 Set subtitles input character encoding. @code{subtitles} filter only. Only
16910 useful if not UTF-8.
16911
16912 @item stream_index, si
16913 Set subtitles stream index. @code{subtitles} filter only.
16914
16915 @item force_style
16916 Override default style or script info parameters of the subtitles. It accepts a
16917 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
16918 @end table
16919
16920 If the first key is not specified, it is assumed that the first value
16921 specifies the @option{filename}.
16922
16923 For example, to render the file @file{sub.srt} on top of the input
16924 video, use the command:
16925 @example
16926 subtitles=sub.srt
16927 @end example
16928
16929 which is equivalent to:
16930 @example
16931 subtitles=filename=sub.srt
16932 @end example
16933
16934 To render the default subtitles stream from file @file{video.mkv}, use:
16935 @example
16936 subtitles=video.mkv
16937 @end example
16938
16939 To render the second subtitles stream from that file, use:
16940 @example
16941 subtitles=video.mkv:si=1
16942 @end example
16943
16944 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
16945 @code{DejaVu Serif}, use:
16946 @example
16947 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
16948 @end example
16949
16950 @section super2xsai
16951
16952 Scale the input by 2x and smooth using the Super2xSaI (Scale and
16953 Interpolate) pixel art scaling algorithm.
16954
16955 Useful for enlarging pixel art images without reducing sharpness.
16956
16957 @section swaprect
16958
16959 Swap two rectangular objects in video.
16960
16961 This filter accepts the following options:
16962
16963 @table @option
16964 @item w
16965 Set object width.
16966
16967 @item h
16968 Set object height.
16969
16970 @item x1
16971 Set 1st rect x coordinate.
16972
16973 @item y1
16974 Set 1st rect y coordinate.
16975
16976 @item x2
16977 Set 2nd rect x coordinate.
16978
16979 @item y2
16980 Set 2nd rect y coordinate.
16981
16982 All expressions are evaluated once for each frame.
16983 @end table
16984
16985 The all options are expressions containing the following constants:
16986
16987 @table @option
16988 @item w
16989 @item h
16990 The input width and height.
16991
16992 @item a
16993 same as @var{w} / @var{h}
16994
16995 @item sar
16996 input sample aspect ratio
16997
16998 @item dar
16999 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17000
17001 @item n
17002 The number of the input frame, starting from 0.
17003
17004 @item t
17005 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17006
17007 @item pos
17008 the position in the file of the input frame, NAN if unknown
17009 @end table
17010
17011 @section swapuv
17012 Swap U & V plane.
17013
17014 @section telecine
17015
17016 Apply telecine process to the video.
17017
17018 This filter accepts the following options:
17019
17020 @table @option
17021 @item first_field
17022 @table @samp
17023 @item top, t
17024 top field first
17025 @item bottom, b
17026 bottom field first
17027 The default value is @code{top}.
17028 @end table
17029
17030 @item pattern
17031 A string of numbers representing the pulldown pattern you wish to apply.
17032 The default value is @code{23}.
17033 @end table
17034
17035 @example
17036 Some typical patterns:
17037
17038 NTSC output (30i):
17039 27.5p: 32222
17040 24p: 23 (classic)
17041 24p: 2332 (preferred)
17042 20p: 33
17043 18p: 334
17044 16p: 3444
17045
17046 PAL output (25i):
17047 27.5p: 12222
17048 24p: 222222222223 ("Euro pulldown")
17049 16.67p: 33
17050 16p: 33333334
17051 @end example
17052
17053 @section threshold
17054
17055 Apply threshold effect to video stream.
17056
17057 This filter needs four video streams to perform thresholding.
17058 First stream is stream we are filtering.
17059 Second stream is holding threshold values, third stream is holding min values,
17060 and last, fourth stream is holding max values.
17061
17062 The filter accepts the following option:
17063
17064 @table @option
17065 @item planes
17066 Set which planes will be processed, unprocessed planes will be copied.
17067 By default value 0xf, all planes will be processed.
17068 @end table
17069
17070 For example if first stream pixel's component value is less then threshold value
17071 of pixel component from 2nd threshold stream, third stream value will picked,
17072 otherwise fourth stream pixel component value will be picked.
17073
17074 Using color source filter one can perform various types of thresholding:
17075
17076 @subsection Examples
17077
17078 @itemize
17079 @item
17080 Binary threshold, using gray color as threshold:
17081 @example
17082 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
17083 @end example
17084
17085 @item
17086 Inverted binary threshold, using gray color as threshold:
17087 @example
17088 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
17089 @end example
17090
17091 @item
17092 Truncate binary threshold, using gray color as threshold:
17093 @example
17094 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
17095 @end example
17096
17097 @item
17098 Threshold to zero, using gray color as threshold:
17099 @example
17100 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
17101 @end example
17102
17103 @item
17104 Inverted threshold to zero, using gray color as threshold:
17105 @example
17106 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
17107 @end example
17108 @end itemize
17109
17110 @section thumbnail
17111 Select the most representative frame in a given sequence of consecutive frames.
17112
17113 The filter accepts the following options:
17114
17115 @table @option
17116 @item n
17117 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
17118 will pick one of them, and then handle the next batch of @var{n} frames until
17119 the end. Default is @code{100}.
17120 @end table
17121
17122 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
17123 value will result in a higher memory usage, so a high value is not recommended.
17124
17125 @subsection Examples
17126
17127 @itemize
17128 @item
17129 Extract one picture each 50 frames:
17130 @example
17131 thumbnail=50
17132 @end example
17133
17134 @item
17135 Complete example of a thumbnail creation with @command{ffmpeg}:
17136 @example
17137 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
17138 @end example
17139 @end itemize
17140
17141 @section tile
17142
17143 Tile several successive frames together.
17144
17145 The filter accepts the following options:
17146
17147 @table @option
17148
17149 @item layout
17150 Set the grid size (i.e. the number of lines and columns). For the syntax of
17151 this option, check the
17152 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17153
17154 @item nb_frames
17155 Set the maximum number of frames to render in the given area. It must be less
17156 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
17157 the area will be used.
17158
17159 @item margin
17160 Set the outer border margin in pixels.
17161
17162 @item padding
17163 Set the inner border thickness (i.e. the number of pixels between frames). For
17164 more advanced padding options (such as having different values for the edges),
17165 refer to the pad video filter.
17166
17167 @item color
17168 Specify the color of the unused area. For the syntax of this option, check the
17169 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17170 The default value of @var{color} is "black".
17171
17172 @item overlap
17173 Set the number of frames to overlap when tiling several successive frames together.
17174 The value must be between @code{0} and @var{nb_frames - 1}.
17175
17176 @item init_padding
17177 Set the number of frames to initially be empty before displaying first output frame.
17178 This controls how soon will one get first output frame.
17179 The value must be between @code{0} and @var{nb_frames - 1}.
17180 @end table
17181
17182 @subsection Examples
17183
17184 @itemize
17185 @item
17186 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
17187 @example
17188 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
17189 @end example
17190 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
17191 duplicating each output frame to accommodate the originally detected frame
17192 rate.
17193
17194 @item
17195 Display @code{5} pictures in an area of @code{3x2} frames,
17196 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
17197 mixed flat and named options:
17198 @example
17199 tile=3x2:nb_frames=5:padding=7:margin=2
17200 @end example
17201 @end itemize
17202
17203 @section tinterlace
17204
17205 Perform various types of temporal field interlacing.
17206
17207 Frames are counted starting from 1, so the first input frame is
17208 considered odd.
17209
17210 The filter accepts the following options:
17211
17212 @table @option
17213
17214 @item mode
17215 Specify the mode of the interlacing. This option can also be specified
17216 as a value alone. See below for a list of values for this option.
17217
17218 Available values are:
17219
17220 @table @samp
17221 @item merge, 0
17222 Move odd frames into the upper field, even into the lower field,
17223 generating a double height frame at half frame rate.
17224 @example
17225  ------> time
17226 Input:
17227 Frame 1         Frame 2         Frame 3         Frame 4
17228
17229 11111           22222           33333           44444
17230 11111           22222           33333           44444
17231 11111           22222           33333           44444
17232 11111           22222           33333           44444
17233
17234 Output:
17235 11111                           33333
17236 22222                           44444
17237 11111                           33333
17238 22222                           44444
17239 11111                           33333
17240 22222                           44444
17241 11111                           33333
17242 22222                           44444
17243 @end example
17244
17245 @item drop_even, 1
17246 Only output odd frames, even frames are dropped, generating a frame with
17247 unchanged height at half frame rate.
17248
17249 @example
17250  ------> time
17251 Input:
17252 Frame 1         Frame 2         Frame 3         Frame 4
17253
17254 11111           22222           33333           44444
17255 11111           22222           33333           44444
17256 11111           22222           33333           44444
17257 11111           22222           33333           44444
17258
17259 Output:
17260 11111                           33333
17261 11111                           33333
17262 11111                           33333
17263 11111                           33333
17264 @end example
17265
17266 @item drop_odd, 2
17267 Only output even frames, odd frames are dropped, generating a frame with
17268 unchanged height at half frame rate.
17269
17270 @example
17271  ------> time
17272 Input:
17273 Frame 1         Frame 2         Frame 3         Frame 4
17274
17275 11111           22222           33333           44444
17276 11111           22222           33333           44444
17277 11111           22222           33333           44444
17278 11111           22222           33333           44444
17279
17280 Output:
17281                 22222                           44444
17282                 22222                           44444
17283                 22222                           44444
17284                 22222                           44444
17285 @end example
17286
17287 @item pad, 3
17288 Expand each frame to full height, but pad alternate lines with black,
17289 generating a frame with double height at the same input frame rate.
17290
17291 @example
17292  ------> time
17293 Input:
17294 Frame 1         Frame 2         Frame 3         Frame 4
17295
17296 11111           22222           33333           44444
17297 11111           22222           33333           44444
17298 11111           22222           33333           44444
17299 11111           22222           33333           44444
17300
17301 Output:
17302 11111           .....           33333           .....
17303 .....           22222           .....           44444
17304 11111           .....           33333           .....
17305 .....           22222           .....           44444
17306 11111           .....           33333           .....
17307 .....           22222           .....           44444
17308 11111           .....           33333           .....
17309 .....           22222           .....           44444
17310 @end example
17311
17312
17313 @item interleave_top, 4
17314 Interleave the upper field from odd frames with the lower field from
17315 even frames, generating a frame with unchanged height at half frame rate.
17316
17317 @example
17318  ------> time
17319 Input:
17320 Frame 1         Frame 2         Frame 3         Frame 4
17321
17322 11111<-         22222           33333<-         44444
17323 11111           22222<-         33333           44444<-
17324 11111<-         22222           33333<-         44444
17325 11111           22222<-         33333           44444<-
17326
17327 Output:
17328 11111                           33333
17329 22222                           44444
17330 11111                           33333
17331 22222                           44444
17332 @end example
17333
17334
17335 @item interleave_bottom, 5
17336 Interleave the lower field from odd frames with the upper field from
17337 even frames, generating a frame with unchanged height at half frame rate.
17338
17339 @example
17340  ------> time
17341 Input:
17342 Frame 1         Frame 2         Frame 3         Frame 4
17343
17344 11111           22222<-         33333           44444<-
17345 11111<-         22222           33333<-         44444
17346 11111           22222<-         33333           44444<-
17347 11111<-         22222           33333<-         44444
17348
17349 Output:
17350 22222                           44444
17351 11111                           33333
17352 22222                           44444
17353 11111                           33333
17354 @end example
17355
17356
17357 @item interlacex2, 6
17358 Double frame rate with unchanged height. Frames are inserted each
17359 containing the second temporal field from the previous input frame and
17360 the first temporal field from the next input frame. This mode relies on
17361 the top_field_first flag. Useful for interlaced video displays with no
17362 field synchronisation.
17363
17364 @example
17365  ------> time
17366 Input:
17367 Frame 1         Frame 2         Frame 3         Frame 4
17368
17369 11111           22222           33333           44444
17370  11111           22222           33333           44444
17371 11111           22222           33333           44444
17372  11111           22222           33333           44444
17373
17374 Output:
17375 11111   22222   22222   33333   33333   44444   44444
17376  11111   11111   22222   22222   33333   33333   44444
17377 11111   22222   22222   33333   33333   44444   44444
17378  11111   11111   22222   22222   33333   33333   44444
17379 @end example
17380
17381
17382 @item mergex2, 7
17383 Move odd frames into the upper field, even into the lower field,
17384 generating a double height frame at same frame rate.
17385
17386 @example
17387  ------> time
17388 Input:
17389 Frame 1         Frame 2         Frame 3         Frame 4
17390
17391 11111           22222           33333           44444
17392 11111           22222           33333           44444
17393 11111           22222           33333           44444
17394 11111           22222           33333           44444
17395
17396 Output:
17397 11111           33333           33333           55555
17398 22222           22222           44444           44444
17399 11111           33333           33333           55555
17400 22222           22222           44444           44444
17401 11111           33333           33333           55555
17402 22222           22222           44444           44444
17403 11111           33333           33333           55555
17404 22222           22222           44444           44444
17405 @end example
17406
17407 @end table
17408
17409 Numeric values are deprecated but are accepted for backward
17410 compatibility reasons.
17411
17412 Default mode is @code{merge}.
17413
17414 @item flags
17415 Specify flags influencing the filter process.
17416
17417 Available value for @var{flags} is:
17418
17419 @table @option
17420 @item low_pass_filter, vlpf
17421 Enable linear vertical low-pass filtering in the filter.
17422 Vertical low-pass filtering is required when creating an interlaced
17423 destination from a progressive source which contains high-frequency
17424 vertical detail. Filtering will reduce interlace 'twitter' and Moire
17425 patterning.
17426
17427 @item complex_filter, cvlpf
17428 Enable complex vertical low-pass filtering.
17429 This will slightly less reduce interlace 'twitter' and Moire
17430 patterning but better retain detail and subjective sharpness impression.
17431
17432 @end table
17433
17434 Vertical low-pass filtering can only be enabled for @option{mode}
17435 @var{interleave_top} and @var{interleave_bottom}.
17436
17437 @end table
17438
17439 @section tmix
17440
17441 Mix successive video frames.
17442
17443 A description of the accepted options follows.
17444
17445 @table @option
17446 @item frames
17447 The number of successive frames to mix. If unspecified, it defaults to 3.
17448
17449 @item weights
17450 Specify weight of each input video frame.
17451 Each weight is separated by space. If number of weights is smaller than
17452 number of @var{frames} last specified weight will be used for all remaining
17453 unset weights.
17454
17455 @item scale
17456 Specify scale, if it is set it will be multiplied with sum
17457 of each weight multiplied with pixel values to give final destination
17458 pixel value. By default @var{scale} is auto scaled to sum of weights.
17459 @end table
17460
17461 @subsection Examples
17462
17463 @itemize
17464 @item
17465 Average 7 successive frames:
17466 @example
17467 tmix=frames=7:weights="1 1 1 1 1 1 1"
17468 @end example
17469
17470 @item
17471 Apply simple temporal convolution:
17472 @example
17473 tmix=frames=3:weights="-1 3 -1"
17474 @end example
17475
17476 @item
17477 Similar as above but only showing temporal differences:
17478 @example
17479 tmix=frames=3:weights="-1 2 -1":scale=1
17480 @end example
17481 @end itemize
17482
17483 @anchor{tonemap}
17484 @section tonemap
17485 Tone map colors from different dynamic ranges.
17486
17487 This filter expects data in single precision floating point, as it needs to
17488 operate on (and can output) out-of-range values. Another filter, such as
17489 @ref{zscale}, is needed to convert the resulting frame to a usable format.
17490
17491 The tonemapping algorithms implemented only work on linear light, so input
17492 data should be linearized beforehand (and possibly correctly tagged).
17493
17494 @example
17495 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
17496 @end example
17497
17498 @subsection Options
17499 The filter accepts the following options.
17500
17501 @table @option
17502 @item tonemap
17503 Set the tone map algorithm to use.
17504
17505 Possible values are:
17506 @table @var
17507 @item none
17508 Do not apply any tone map, only desaturate overbright pixels.
17509
17510 @item clip
17511 Hard-clip any out-of-range values. Use it for perfect color accuracy for
17512 in-range values, while distorting out-of-range values.
17513
17514 @item linear
17515 Stretch the entire reference gamut to a linear multiple of the display.
17516
17517 @item gamma
17518 Fit a logarithmic transfer between the tone curves.
17519
17520 @item reinhard
17521 Preserve overall image brightness with a simple curve, using nonlinear
17522 contrast, which results in flattening details and degrading color accuracy.
17523
17524 @item hable
17525 Preserve both dark and bright details better than @var{reinhard}, at the cost
17526 of slightly darkening everything. Use it when detail preservation is more
17527 important than color and brightness accuracy.
17528
17529 @item mobius
17530 Smoothly map out-of-range values, while retaining contrast and colors for
17531 in-range material as much as possible. Use it when color accuracy is more
17532 important than detail preservation.
17533 @end table
17534
17535 Default is none.
17536
17537 @item param
17538 Tune the tone mapping algorithm.
17539
17540 This affects the following algorithms:
17541 @table @var
17542 @item none
17543 Ignored.
17544
17545 @item linear
17546 Specifies the scale factor to use while stretching.
17547 Default to 1.0.
17548
17549 @item gamma
17550 Specifies the exponent of the function.
17551 Default to 1.8.
17552
17553 @item clip
17554 Specify an extra linear coefficient to multiply into the signal before clipping.
17555 Default to 1.0.
17556
17557 @item reinhard
17558 Specify the local contrast coefficient at the display peak.
17559 Default to 0.5, which means that in-gamut values will be about half as bright
17560 as when clipping.
17561
17562 @item hable
17563 Ignored.
17564
17565 @item mobius
17566 Specify the transition point from linear to mobius transform. Every value
17567 below this point is guaranteed to be mapped 1:1. The higher the value, the
17568 more accurate the result will be, at the cost of losing bright details.
17569 Default to 0.3, which due to the steep initial slope still preserves in-range
17570 colors fairly accurately.
17571 @end table
17572
17573 @item desat
17574 Apply desaturation for highlights that exceed this level of brightness. The
17575 higher the parameter, the more color information will be preserved. This
17576 setting helps prevent unnaturally blown-out colors for super-highlights, by
17577 (smoothly) turning into white instead. This makes images feel more natural,
17578 at the cost of reducing information about out-of-range colors.
17579
17580 The default of 2.0 is somewhat conservative and will mostly just apply to
17581 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
17582
17583 This option works only if the input frame has a supported color tag.
17584
17585 @item peak
17586 Override signal/nominal/reference peak with this value. Useful when the
17587 embedded peak information in display metadata is not reliable or when tone
17588 mapping from a lower range to a higher range.
17589 @end table
17590
17591 @section tpad
17592
17593 Temporarily pad video frames.
17594
17595 The filter accepts the following options:
17596
17597 @table @option
17598 @item start
17599 Specify number of delay frames before input video stream.
17600
17601 @item stop
17602 Specify number of padding frames after input video stream.
17603 Set to -1 to pad indefinitely.
17604
17605 @item start_mode
17606 Set kind of frames added to beginning of stream.
17607 Can be either @var{add} or @var{clone}.
17608 With @var{add} frames of solid-color are added.
17609 With @var{clone} frames are clones of first frame.
17610
17611 @item stop_mode
17612 Set kind of frames added to end of stream.
17613 Can be either @var{add} or @var{clone}.
17614 With @var{add} frames of solid-color are added.
17615 With @var{clone} frames are clones of last frame.
17616
17617 @item start_duration, stop_duration
17618 Specify the duration of the start/stop delay. See
17619 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17620 for the accepted syntax.
17621 These options override @var{start} and @var{stop}.
17622
17623 @item color
17624 Specify the color of the padded area. For the syntax of this option,
17625 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
17626 manual,ffmpeg-utils}.
17627
17628 The default value of @var{color} is "black".
17629 @end table
17630
17631 @anchor{transpose}
17632 @section transpose
17633
17634 Transpose rows with columns in the input video and optionally flip it.
17635
17636 It accepts the following parameters:
17637
17638 @table @option
17639
17640 @item dir
17641 Specify the transposition direction.
17642
17643 Can assume the following values:
17644 @table @samp
17645 @item 0, 4, cclock_flip
17646 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
17647 @example
17648 L.R     L.l
17649 . . ->  . .
17650 l.r     R.r
17651 @end example
17652
17653 @item 1, 5, clock
17654 Rotate by 90 degrees clockwise, that is:
17655 @example
17656 L.R     l.L
17657 . . ->  . .
17658 l.r     r.R
17659 @end example
17660
17661 @item 2, 6, cclock
17662 Rotate by 90 degrees counterclockwise, that is:
17663 @example
17664 L.R     R.r
17665 . . ->  . .
17666 l.r     L.l
17667 @end example
17668
17669 @item 3, 7, clock_flip
17670 Rotate by 90 degrees clockwise and vertically flip, that is:
17671 @example
17672 L.R     r.R
17673 . . ->  . .
17674 l.r     l.L
17675 @end example
17676 @end table
17677
17678 For values between 4-7, the transposition is only done if the input
17679 video geometry is portrait and not landscape. These values are
17680 deprecated, the @code{passthrough} option should be used instead.
17681
17682 Numerical values are deprecated, and should be dropped in favor of
17683 symbolic constants.
17684
17685 @item passthrough
17686 Do not apply the transposition if the input geometry matches the one
17687 specified by the specified value. It accepts the following values:
17688 @table @samp
17689 @item none
17690 Always apply transposition.
17691 @item portrait
17692 Preserve portrait geometry (when @var{height} >= @var{width}).
17693 @item landscape
17694 Preserve landscape geometry (when @var{width} >= @var{height}).
17695 @end table
17696
17697 Default value is @code{none}.
17698 @end table
17699
17700 For example to rotate by 90 degrees clockwise and preserve portrait
17701 layout:
17702 @example
17703 transpose=dir=1:passthrough=portrait
17704 @end example
17705
17706 The command above can also be specified as:
17707 @example
17708 transpose=1:portrait
17709 @end example
17710
17711 @section transpose_npp
17712
17713 Transpose rows with columns in the input video and optionally flip it.
17714 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
17715
17716 It accepts the following parameters:
17717
17718 @table @option
17719
17720 @item dir
17721 Specify the transposition direction.
17722
17723 Can assume the following values:
17724 @table @samp
17725 @item cclock_flip
17726 Rotate by 90 degrees counterclockwise and vertically flip. (default)
17727
17728 @item clock
17729 Rotate by 90 degrees clockwise.
17730
17731 @item cclock
17732 Rotate by 90 degrees counterclockwise.
17733
17734 @item clock_flip
17735 Rotate by 90 degrees clockwise and vertically flip.
17736 @end table
17737
17738 @item passthrough
17739 Do not apply the transposition if the input geometry matches the one
17740 specified by the specified value. It accepts the following values:
17741 @table @samp
17742 @item none
17743 Always apply transposition. (default)
17744 @item portrait
17745 Preserve portrait geometry (when @var{height} >= @var{width}).
17746 @item landscape
17747 Preserve landscape geometry (when @var{width} >= @var{height}).
17748 @end table
17749
17750 @end table
17751
17752 @section trim
17753 Trim the input so that the output contains one continuous subpart of the input.
17754
17755 It accepts the following parameters:
17756 @table @option
17757 @item start
17758 Specify the time of the start of the kept section, i.e. the frame with the
17759 timestamp @var{start} will be the first frame in the output.
17760
17761 @item end
17762 Specify the time of the first frame that will be dropped, i.e. the frame
17763 immediately preceding the one with the timestamp @var{end} will be the last
17764 frame in the output.
17765
17766 @item start_pts
17767 This is the same as @var{start}, except this option sets the start timestamp
17768 in timebase units instead of seconds.
17769
17770 @item end_pts
17771 This is the same as @var{end}, except this option sets the end timestamp
17772 in timebase units instead of seconds.
17773
17774 @item duration
17775 The maximum duration of the output in seconds.
17776
17777 @item start_frame
17778 The number of the first frame that should be passed to the output.
17779
17780 @item end_frame
17781 The number of the first frame that should be dropped.
17782 @end table
17783
17784 @option{start}, @option{end}, and @option{duration} are expressed as time
17785 duration specifications; see
17786 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17787 for the accepted syntax.
17788
17789 Note that the first two sets of the start/end options and the @option{duration}
17790 option look at the frame timestamp, while the _frame variants simply count the
17791 frames that pass through the filter. Also note that this filter does not modify
17792 the timestamps. If you wish for the output timestamps to start at zero, insert a
17793 setpts filter after the trim filter.
17794
17795 If multiple start or end options are set, this filter tries to be greedy and
17796 keep all the frames that match at least one of the specified constraints. To keep
17797 only the part that matches all the constraints at once, chain multiple trim
17798 filters.
17799
17800 The defaults are such that all the input is kept. So it is possible to set e.g.
17801 just the end values to keep everything before the specified time.
17802
17803 Examples:
17804 @itemize
17805 @item
17806 Drop everything except the second minute of input:
17807 @example
17808 ffmpeg -i INPUT -vf trim=60:120
17809 @end example
17810
17811 @item
17812 Keep only the first second:
17813 @example
17814 ffmpeg -i INPUT -vf trim=duration=1
17815 @end example
17816
17817 @end itemize
17818
17819 @section unpremultiply
17820 Apply alpha unpremultiply effect to input video stream using first plane
17821 of second stream as alpha.
17822
17823 Both streams must have same dimensions and same pixel format.
17824
17825 The filter accepts the following option:
17826
17827 @table @option
17828 @item planes
17829 Set which planes will be processed, unprocessed planes will be copied.
17830 By default value 0xf, all planes will be processed.
17831
17832 If the format has 1 or 2 components, then luma is bit 0.
17833 If the format has 3 or 4 components:
17834 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
17835 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
17836 If present, the alpha channel is always the last bit.
17837
17838 @item inplace
17839 Do not require 2nd input for processing, instead use alpha plane from input stream.
17840 @end table
17841
17842 @anchor{unsharp}
17843 @section unsharp
17844
17845 Sharpen or blur the input video.
17846
17847 It accepts the following parameters:
17848
17849 @table @option
17850 @item luma_msize_x, lx
17851 Set the luma matrix horizontal size. It must be an odd integer between
17852 3 and 23. The default value is 5.
17853
17854 @item luma_msize_y, ly
17855 Set the luma matrix vertical size. It must be an odd integer between 3
17856 and 23. The default value is 5.
17857
17858 @item luma_amount, la
17859 Set the luma effect strength. It must be a floating point number, reasonable
17860 values lay between -1.5 and 1.5.
17861
17862 Negative values will blur the input video, while positive values will
17863 sharpen it, a value of zero will disable the effect.
17864
17865 Default value is 1.0.
17866
17867 @item chroma_msize_x, cx
17868 Set the chroma matrix horizontal size. It must be an odd integer
17869 between 3 and 23. The default value is 5.
17870
17871 @item chroma_msize_y, cy
17872 Set the chroma matrix vertical size. It must be an odd integer
17873 between 3 and 23. The default value is 5.
17874
17875 @item chroma_amount, ca
17876 Set the chroma effect strength. It must be a floating point number, reasonable
17877 values lay between -1.5 and 1.5.
17878
17879 Negative values will blur the input video, while positive values will
17880 sharpen it, a value of zero will disable the effect.
17881
17882 Default value is 0.0.
17883
17884 @end table
17885
17886 All parameters are optional and default to the equivalent of the
17887 string '5:5:1.0:5:5:0.0'.
17888
17889 @subsection Examples
17890
17891 @itemize
17892 @item
17893 Apply strong luma sharpen effect:
17894 @example
17895 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
17896 @end example
17897
17898 @item
17899 Apply a strong blur of both luma and chroma parameters:
17900 @example
17901 unsharp=7:7:-2:7:7:-2
17902 @end example
17903 @end itemize
17904
17905 @section uspp
17906
17907 Apply ultra slow/simple postprocessing filter that compresses and decompresses
17908 the image at several (or - in the case of @option{quality} level @code{8} - all)
17909 shifts and average the results.
17910
17911 The way this differs from the behavior of spp is that uspp actually encodes &
17912 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
17913 DCT similar to MJPEG.
17914
17915 The filter accepts the following options:
17916
17917 @table @option
17918 @item quality
17919 Set quality. This option defines the number of levels for averaging. It accepts
17920 an integer in the range 0-8. If set to @code{0}, the filter will have no
17921 effect. A value of @code{8} means the higher quality. For each increment of
17922 that value the speed drops by a factor of approximately 2.  Default value is
17923 @code{3}.
17924
17925 @item qp
17926 Force a constant quantization parameter. If not set, the filter will use the QP
17927 from the video stream (if available).
17928 @end table
17929
17930 @section v360
17931
17932 Convert 360 videos between various formats.
17933
17934 The filter accepts the following options:
17935
17936 @table @option
17937
17938 @item input
17939 @item output
17940 Set format of the input/output video.
17941
17942 Available formats:
17943
17944 @table @samp
17945
17946 @item e
17947 @item equirect
17948 Equirectangular projection.
17949
17950 @item c3x2
17951 @item c6x1
17952 @item c1x6
17953 Cubemap with 3x2/6x1/1x6 layout.
17954
17955 Format specific options:
17956
17957 @table @option
17958 @item in_pad
17959 @item out_pad
17960 Set padding proportion for the input/output cubemap. Values in decimals.
17961
17962 Example values:
17963 @table @samp
17964 @item 0
17965 No padding.
17966 @item 0.01
17967 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)
17968 @end table
17969
17970 Default value is @b{@samp{0}}.
17971
17972 @item fin_pad
17973 @item fout_pad
17974 Set fixed padding for the input/output cubemap. Values in pixels.
17975
17976 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
17977
17978 @item in_forder
17979 @item out_forder
17980 Set order of faces for the input/output cubemap. Choose one direction for each position.
17981
17982 Designation of directions:
17983 @table @samp
17984 @item r
17985 right
17986 @item l
17987 left
17988 @item u
17989 up
17990 @item d
17991 down
17992 @item f
17993 forward
17994 @item b
17995 back
17996 @end table
17997
17998 Default value is @b{@samp{rludfb}}.
17999
18000 @item in_frot
18001 @item out_frot
18002 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18003
18004 Designation of angles:
18005 @table @samp
18006 @item 0
18007 0 degrees clockwise
18008 @item 1
18009 90 degrees clockwise
18010 @item 2
18011 180 degrees clockwise
18012 @item 3
18013 270 degrees clockwise
18014 @end table
18015
18016 Default value is @b{@samp{000000}}.
18017 @end table
18018
18019 @item eac
18020 Equi-Angular Cubemap.
18021
18022 @item flat
18023 @item gnomonic
18024 @item rectilinear
18025 Regular video. @i{(output only)}
18026
18027 Format specific options:
18028 @table @option
18029 @item h_fov
18030 @item v_fov
18031 @item d_fov
18032 Set horizontal/vertical/diagonal field of view. Values in degrees.
18033
18034 If diagonal field of view is set it overrides horizontal and vertical field of view.
18035 @end table
18036
18037 @item dfisheye
18038 Dual fisheye.
18039
18040 Format specific options:
18041 @table @option
18042 @item in_pad
18043 @item out_pad
18044 Set padding proportion. Values in decimals.
18045
18046 Example values:
18047 @table @samp
18048 @item 0
18049 No padding.
18050 @item 0.01
18051 1% padding.
18052 @end table
18053
18054 Default value is @b{@samp{0}}.
18055 @end table
18056
18057 @item barrel
18058 @item fb
18059 Facebook's 360 format.
18060
18061 @item sg
18062 Stereographic format.
18063
18064 Format specific options:
18065 @table @option
18066 @item h_fov
18067 @item v_fov
18068 @item d_fov
18069 Set horizontal/vertical/diagonal field of view. Values in degrees.
18070
18071 If diagonal field of view is set it overrides horizontal and vertical field of view.
18072 @end table
18073
18074 @item mercator
18075 Mercator format.
18076
18077 @item ball
18078 Ball format, gives significant distortion toward the back.
18079
18080 @item hammer
18081 Hammer-Aitoff map projection format.
18082
18083 @item sinusoidal
18084 Sinusoidal map projection format.
18085
18086 @end table
18087
18088 @item interp
18089 Set interpolation method.@*
18090 @i{Note: more complex interpolation methods require much more memory to run.}
18091
18092 Available methods:
18093
18094 @table @samp
18095 @item near
18096 @item nearest
18097 Nearest neighbour.
18098 @item line
18099 @item linear
18100 Bilinear interpolation.
18101 @item cube
18102 @item cubic
18103 Bicubic interpolation.
18104 @item lanc
18105 @item lanczos
18106 Lanczos interpolation.
18107 @end table
18108
18109 Default value is @b{@samp{line}}.
18110
18111 @item w
18112 @item h
18113 Set the output video resolution.
18114
18115 Default resolution depends on formats.
18116
18117 @item in_stereo
18118 @item out_stereo
18119 Set the input/output stereo format.
18120
18121 @table @samp
18122 @item 2d
18123 2D mono
18124 @item sbs
18125 Side by side
18126 @item tb
18127 Top bottom
18128 @end table
18129
18130 Default value is @b{@samp{2d}} for input and output format.
18131
18132 @item yaw
18133 @item pitch
18134 @item roll
18135 Set rotation for the output video. Values in degrees.
18136
18137 @item rorder
18138 Set rotation order for the output video. Choose one item for each position.
18139
18140 @table @samp
18141 @item y, Y
18142 yaw
18143 @item p, P
18144 pitch
18145 @item r, R
18146 roll
18147 @end table
18148
18149 Default value is @b{@samp{ypr}}.
18150
18151 @item h_flip
18152 @item v_flip
18153 @item d_flip
18154 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
18155
18156 @item ih_flip
18157 @item iv_flip
18158 Set if input video is flipped horizontally/vertically. Boolean values.
18159
18160 @item in_trans
18161 Set if input video is transposed. Boolean value, by default disabled.
18162
18163 @item out_trans
18164 Set if output video needs to be transposed. Boolean value, by default disabled.
18165
18166 @end table
18167
18168 @subsection Examples
18169
18170 @itemize
18171 @item
18172 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
18173 @example
18174 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
18175 @end example
18176 @item
18177 Extract back view of Equi-Angular Cubemap:
18178 @example
18179 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
18180 @end example
18181 @item
18182 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
18183 @example
18184 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
18185 @end example
18186 @end itemize
18187
18188 @section vaguedenoiser
18189
18190 Apply a wavelet based denoiser.
18191
18192 It transforms each frame from the video input into the wavelet domain,
18193 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
18194 the obtained coefficients. It does an inverse wavelet transform after.
18195 Due to wavelet properties, it should give a nice smoothed result, and
18196 reduced noise, without blurring picture features.
18197
18198 This filter accepts the following options:
18199
18200 @table @option
18201 @item threshold
18202 The filtering strength. The higher, the more filtered the video will be.
18203 Hard thresholding can use a higher threshold than soft thresholding
18204 before the video looks overfiltered. Default value is 2.
18205
18206 @item method
18207 The filtering method the filter will use.
18208
18209 It accepts the following values:
18210 @table @samp
18211 @item hard
18212 All values under the threshold will be zeroed.
18213
18214 @item soft
18215 All values under the threshold will be zeroed. All values above will be
18216 reduced by the threshold.
18217
18218 @item garrote
18219 Scales or nullifies coefficients - intermediary between (more) soft and
18220 (less) hard thresholding.
18221 @end table
18222
18223 Default is garrote.
18224
18225 @item nsteps
18226 Number of times, the wavelet will decompose the picture. Picture can't
18227 be decomposed beyond a particular point (typically, 8 for a 640x480
18228 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
18229
18230 @item percent
18231 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
18232
18233 @item planes
18234 A list of the planes to process. By default all planes are processed.
18235 @end table
18236
18237 @section vectorscope
18238
18239 Display 2 color component values in the two dimensional graph (which is called
18240 a vectorscope).
18241
18242 This filter accepts the following options:
18243
18244 @table @option
18245 @item mode, m
18246 Set vectorscope mode.
18247
18248 It accepts the following values:
18249 @table @samp
18250 @item gray
18251 Gray values are displayed on graph, higher brightness means more pixels have
18252 same component color value on location in graph. This is the default mode.
18253
18254 @item color
18255 Gray values are displayed on graph. Surrounding pixels values which are not
18256 present in video frame are drawn in gradient of 2 color components which are
18257 set by option @code{x} and @code{y}. The 3rd color component is static.
18258
18259 @item color2
18260 Actual color components values present in video frame are displayed on graph.
18261
18262 @item color3
18263 Similar as color2 but higher frequency of same values @code{x} and @code{y}
18264 on graph increases value of another color component, which is luminance by
18265 default values of @code{x} and @code{y}.
18266
18267 @item color4
18268 Actual colors present in video frame are displayed on graph. If two different
18269 colors map to same position on graph then color with higher value of component
18270 not present in graph is picked.
18271
18272 @item color5
18273 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
18274 component picked from radial gradient.
18275 @end table
18276
18277 @item x
18278 Set which color component will be represented on X-axis. Default is @code{1}.
18279
18280 @item y
18281 Set which color component will be represented on Y-axis. Default is @code{2}.
18282
18283 @item intensity, i
18284 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
18285 of color component which represents frequency of (X, Y) location in graph.
18286
18287 @item envelope, e
18288 @table @samp
18289 @item none
18290 No envelope, this is default.
18291
18292 @item instant
18293 Instant envelope, even darkest single pixel will be clearly highlighted.
18294
18295 @item peak
18296 Hold maximum and minimum values presented in graph over time. This way you
18297 can still spot out of range values without constantly looking at vectorscope.
18298
18299 @item peak+instant
18300 Peak and instant envelope combined together.
18301 @end table
18302
18303 @item graticule, g
18304 Set what kind of graticule to draw.
18305 @table @samp
18306 @item none
18307 @item green
18308 @item color
18309 @end table
18310
18311 @item opacity, o
18312 Set graticule opacity.
18313
18314 @item flags, f
18315 Set graticule flags.
18316
18317 @table @samp
18318 @item white
18319 Draw graticule for white point.
18320
18321 @item black
18322 Draw graticule for black point.
18323
18324 @item name
18325 Draw color points short names.
18326 @end table
18327
18328 @item bgopacity, b
18329 Set background opacity.
18330
18331 @item lthreshold, l
18332 Set low threshold for color component not represented on X or Y axis.
18333 Values lower than this value will be ignored. Default is 0.
18334 Note this value is multiplied with actual max possible value one pixel component
18335 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
18336 is 0.1 * 255 = 25.
18337
18338 @item hthreshold, h
18339 Set high threshold for color component not represented on X or Y axis.
18340 Values higher than this value will be ignored. Default is 1.
18341 Note this value is multiplied with actual max possible value one pixel component
18342 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
18343 is 0.9 * 255 = 230.
18344
18345 @item colorspace, c
18346 Set what kind of colorspace to use when drawing graticule.
18347 @table @samp
18348 @item auto
18349 @item 601
18350 @item 709
18351 @end table
18352 Default is auto.
18353 @end table
18354
18355 @anchor{vidstabdetect}
18356 @section vidstabdetect
18357
18358 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
18359 @ref{vidstabtransform} for pass 2.
18360
18361 This filter generates a file with relative translation and rotation
18362 transform information about subsequent frames, which is then used by
18363 the @ref{vidstabtransform} filter.
18364
18365 To enable compilation of this filter you need to configure FFmpeg with
18366 @code{--enable-libvidstab}.
18367
18368 This filter accepts the following options:
18369
18370 @table @option
18371 @item result
18372 Set the path to the file used to write the transforms information.
18373 Default value is @file{transforms.trf}.
18374
18375 @item shakiness
18376 Set how shaky the video is and how quick the camera is. It accepts an
18377 integer in the range 1-10, a value of 1 means little shakiness, a
18378 value of 10 means strong shakiness. Default value is 5.
18379
18380 @item accuracy
18381 Set the accuracy of the detection process. It must be a value in the
18382 range 1-15. A value of 1 means low accuracy, a value of 15 means high
18383 accuracy. Default value is 15.
18384
18385 @item stepsize
18386 Set stepsize of the search process. The region around minimum is
18387 scanned with 1 pixel resolution. Default value is 6.
18388
18389 @item mincontrast
18390 Set minimum contrast. Below this value a local measurement field is
18391 discarded. Must be a floating point value in the range 0-1. Default
18392 value is 0.3.
18393
18394 @item tripod
18395 Set reference frame number for tripod mode.
18396
18397 If enabled, the motion of the frames is compared to a reference frame
18398 in the filtered stream, identified by the specified number. The idea
18399 is to compensate all movements in a more-or-less static scene and keep
18400 the camera view absolutely still.
18401
18402 If set to 0, it is disabled. The frames are counted starting from 1.
18403
18404 @item show
18405 Show fields and transforms in the resulting frames. It accepts an
18406 integer in the range 0-2. Default value is 0, which disables any
18407 visualization.
18408 @end table
18409
18410 @subsection Examples
18411
18412 @itemize
18413 @item
18414 Use default values:
18415 @example
18416 vidstabdetect
18417 @end example
18418
18419 @item
18420 Analyze strongly shaky movie and put the results in file
18421 @file{mytransforms.trf}:
18422 @example
18423 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
18424 @end example
18425
18426 @item
18427 Visualize the result of internal transformations in the resulting
18428 video:
18429 @example
18430 vidstabdetect=show=1
18431 @end example
18432
18433 @item
18434 Analyze a video with medium shakiness using @command{ffmpeg}:
18435 @example
18436 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
18437 @end example
18438 @end itemize
18439
18440 @anchor{vidstabtransform}
18441 @section vidstabtransform
18442
18443 Video stabilization/deshaking: pass 2 of 2,
18444 see @ref{vidstabdetect} for pass 1.
18445
18446 Read a file with transform information for each frame and
18447 apply/compensate them. Together with the @ref{vidstabdetect}
18448 filter this can be used to deshake videos. See also
18449 @url{http://public.hronopik.de/vid.stab}. It is important to also use
18450 the @ref{unsharp} filter, see below.
18451
18452 To enable compilation of this filter you need to configure FFmpeg with
18453 @code{--enable-libvidstab}.
18454
18455 @subsection Options
18456
18457 @table @option
18458 @item input
18459 Set path to the file used to read the transforms. Default value is
18460 @file{transforms.trf}.
18461
18462 @item smoothing
18463 Set the number of frames (value*2 + 1) used for lowpass filtering the
18464 camera movements. Default value is 10.
18465
18466 For example a number of 10 means that 21 frames are used (10 in the
18467 past and 10 in the future) to smoothen the motion in the video. A
18468 larger value leads to a smoother video, but limits the acceleration of
18469 the camera (pan/tilt movements). 0 is a special case where a static
18470 camera is simulated.
18471
18472 @item optalgo
18473 Set the camera path optimization algorithm.
18474
18475 Accepted values are:
18476 @table @samp
18477 @item gauss
18478 gaussian kernel low-pass filter on camera motion (default)
18479 @item avg
18480 averaging on transformations
18481 @end table
18482
18483 @item maxshift
18484 Set maximal number of pixels to translate frames. Default value is -1,
18485 meaning no limit.
18486
18487 @item maxangle
18488 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
18489 value is -1, meaning no limit.
18490
18491 @item crop
18492 Specify how to deal with borders that may be visible due to movement
18493 compensation.
18494
18495 Available values are:
18496 @table @samp
18497 @item keep
18498 keep image information from previous frame (default)
18499 @item black
18500 fill the border black
18501 @end table
18502
18503 @item invert
18504 Invert transforms if set to 1. Default value is 0.
18505
18506 @item relative
18507 Consider transforms as relative to previous frame if set to 1,
18508 absolute if set to 0. Default value is 0.
18509
18510 @item zoom
18511 Set percentage to zoom. A positive value will result in a zoom-in
18512 effect, a negative value in a zoom-out effect. Default value is 0 (no
18513 zoom).
18514
18515 @item optzoom
18516 Set optimal zooming to avoid borders.
18517
18518 Accepted values are:
18519 @table @samp
18520 @item 0
18521 disabled
18522 @item 1
18523 optimal static zoom value is determined (only very strong movements
18524 will lead to visible borders) (default)
18525 @item 2
18526 optimal adaptive zoom value is determined (no borders will be
18527 visible), see @option{zoomspeed}
18528 @end table
18529
18530 Note that the value given at zoom is added to the one calculated here.
18531
18532 @item zoomspeed
18533 Set percent to zoom maximally each frame (enabled when
18534 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
18535 0.25.
18536
18537 @item interpol
18538 Specify type of interpolation.
18539
18540 Available values are:
18541 @table @samp
18542 @item no
18543 no interpolation
18544 @item linear
18545 linear only horizontal
18546 @item bilinear
18547 linear in both directions (default)
18548 @item bicubic
18549 cubic in both directions (slow)
18550 @end table
18551
18552 @item tripod
18553 Enable virtual tripod mode if set to 1, which is equivalent to
18554 @code{relative=0:smoothing=0}. Default value is 0.
18555
18556 Use also @code{tripod} option of @ref{vidstabdetect}.
18557
18558 @item debug
18559 Increase log verbosity if set to 1. Also the detected global motions
18560 are written to the temporary file @file{global_motions.trf}. Default
18561 value is 0.
18562 @end table
18563
18564 @subsection Examples
18565
18566 @itemize
18567 @item
18568 Use @command{ffmpeg} for a typical stabilization with default values:
18569 @example
18570 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
18571 @end example
18572
18573 Note the use of the @ref{unsharp} filter which is always recommended.
18574
18575 @item
18576 Zoom in a bit more and load transform data from a given file:
18577 @example
18578 vidstabtransform=zoom=5:input="mytransforms.trf"
18579 @end example
18580
18581 @item
18582 Smoothen the video even more:
18583 @example
18584 vidstabtransform=smoothing=30
18585 @end example
18586 @end itemize
18587
18588 @section vflip
18589
18590 Flip the input video vertically.
18591
18592 For example, to vertically flip a video with @command{ffmpeg}:
18593 @example
18594 ffmpeg -i in.avi -vf "vflip" out.avi
18595 @end example
18596
18597 @section vfrdet
18598
18599 Detect variable frame rate video.
18600
18601 This filter tries to detect if the input is variable or constant frame rate.
18602
18603 At end it will output number of frames detected as having variable delta pts,
18604 and ones with constant delta pts.
18605 If there was frames with variable delta, than it will also show min and max delta
18606 encountered.
18607
18608 @section vibrance
18609
18610 Boost or alter saturation.
18611
18612 The filter accepts the following options:
18613 @table @option
18614 @item intensity
18615 Set strength of boost if positive value or strength of alter if negative value.
18616 Default is 0. Allowed range is from -2 to 2.
18617
18618 @item rbal
18619 Set the red balance. Default is 1. Allowed range is from -10 to 10.
18620
18621 @item gbal
18622 Set the green balance. Default is 1. Allowed range is from -10 to 10.
18623
18624 @item bbal
18625 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
18626
18627 @item rlum
18628 Set the red luma coefficient.
18629
18630 @item glum
18631 Set the green luma coefficient.
18632
18633 @item blum
18634 Set the blue luma coefficient.
18635
18636 @item alternate
18637 If @code{intensity} is negative and this is set to 1, colors will change,
18638 otherwise colors will be less saturated, more towards gray.
18639 @end table
18640
18641 @anchor{vignette}
18642 @section vignette
18643
18644 Make or reverse a natural vignetting effect.
18645
18646 The filter accepts the following options:
18647
18648 @table @option
18649 @item angle, a
18650 Set lens angle expression as a number of radians.
18651
18652 The value is clipped in the @code{[0,PI/2]} range.
18653
18654 Default value: @code{"PI/5"}
18655
18656 @item x0
18657 @item y0
18658 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
18659 by default.
18660
18661 @item mode
18662 Set forward/backward mode.
18663
18664 Available modes are:
18665 @table @samp
18666 @item forward
18667 The larger the distance from the central point, the darker the image becomes.
18668
18669 @item backward
18670 The larger the distance from the central point, the brighter the image becomes.
18671 This can be used to reverse a vignette effect, though there is no automatic
18672 detection to extract the lens @option{angle} and other settings (yet). It can
18673 also be used to create a burning effect.
18674 @end table
18675
18676 Default value is @samp{forward}.
18677
18678 @item eval
18679 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
18680
18681 It accepts the following values:
18682 @table @samp
18683 @item init
18684 Evaluate expressions only once during the filter initialization.
18685
18686 @item frame
18687 Evaluate expressions for each incoming frame. This is way slower than the
18688 @samp{init} mode since it requires all the scalers to be re-computed, but it
18689 allows advanced dynamic expressions.
18690 @end table
18691
18692 Default value is @samp{init}.
18693
18694 @item dither
18695 Set dithering to reduce the circular banding effects. Default is @code{1}
18696 (enabled).
18697
18698 @item aspect
18699 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
18700 Setting this value to the SAR of the input will make a rectangular vignetting
18701 following the dimensions of the video.
18702
18703 Default is @code{1/1}.
18704 @end table
18705
18706 @subsection Expressions
18707
18708 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
18709 following parameters.
18710
18711 @table @option
18712 @item w
18713 @item h
18714 input width and height
18715
18716 @item n
18717 the number of input frame, starting from 0
18718
18719 @item pts
18720 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
18721 @var{TB} units, NAN if undefined
18722
18723 @item r
18724 frame rate of the input video, NAN if the input frame rate is unknown
18725
18726 @item t
18727 the PTS (Presentation TimeStamp) of the filtered video frame,
18728 expressed in seconds, NAN if undefined
18729
18730 @item tb
18731 time base of the input video
18732 @end table
18733
18734
18735 @subsection Examples
18736
18737 @itemize
18738 @item
18739 Apply simple strong vignetting effect:
18740 @example
18741 vignette=PI/4
18742 @end example
18743
18744 @item
18745 Make a flickering vignetting:
18746 @example
18747 vignette='PI/4+random(1)*PI/50':eval=frame
18748 @end example
18749
18750 @end itemize
18751
18752 @section vmafmotion
18753
18754 Obtain the average vmaf motion score of a video.
18755 It is one of the component filters of VMAF.
18756
18757 The obtained average motion score is printed through the logging system.
18758
18759 In the below example the input file @file{ref.mpg} is being processed and score
18760 is computed.
18761
18762 @example
18763 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
18764 @end example
18765
18766 @section vstack
18767 Stack input videos vertically.
18768
18769 All streams must be of same pixel format and of same width.
18770
18771 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
18772 to create same output.
18773
18774 The filter accepts the following options:
18775
18776 @table @option
18777 @item inputs
18778 Set number of input streams. Default is 2.
18779
18780 @item shortest
18781 If set to 1, force the output to terminate when the shortest input
18782 terminates. Default value is 0.
18783 @end table
18784
18785 @section w3fdif
18786
18787 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
18788 Deinterlacing Filter").
18789
18790 Based on the process described by Martin Weston for BBC R&D, and
18791 implemented based on the de-interlace algorithm written by Jim
18792 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
18793 uses filter coefficients calculated by BBC R&D.
18794
18795 This filter uses field-dominance information in frame to decide which
18796 of each pair of fields to place first in the output.
18797 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
18798
18799 There are two sets of filter coefficients, so called "simple"
18800 and "complex". Which set of filter coefficients is used can
18801 be set by passing an optional parameter:
18802
18803 @table @option
18804 @item filter
18805 Set the interlacing filter coefficients. Accepts one of the following values:
18806
18807 @table @samp
18808 @item simple
18809 Simple filter coefficient set.
18810 @item complex
18811 More-complex filter coefficient set.
18812 @end table
18813 Default value is @samp{complex}.
18814
18815 @item deint
18816 Specify which frames to deinterlace. Accepts one of the following values:
18817
18818 @table @samp
18819 @item all
18820 Deinterlace all frames,
18821 @item interlaced
18822 Only deinterlace frames marked as interlaced.
18823 @end table
18824
18825 Default value is @samp{all}.
18826 @end table
18827
18828 @section waveform
18829 Video waveform monitor.
18830
18831 The waveform monitor plots color component intensity. By default luminance
18832 only. Each column of the waveform corresponds to a column of pixels in the
18833 source video.
18834
18835 It accepts the following options:
18836
18837 @table @option
18838 @item mode, m
18839 Can be either @code{row}, or @code{column}. Default is @code{column}.
18840 In row mode, the graph on the left side represents color component value 0 and
18841 the right side represents value = 255. In column mode, the top side represents
18842 color component value = 0 and bottom side represents value = 255.
18843
18844 @item intensity, i
18845 Set intensity. Smaller values are useful to find out how many values of the same
18846 luminance are distributed across input rows/columns.
18847 Default value is @code{0.04}. Allowed range is [0, 1].
18848
18849 @item mirror, r
18850 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
18851 In mirrored mode, higher values will be represented on the left
18852 side for @code{row} mode and at the top for @code{column} mode. Default is
18853 @code{1} (mirrored).
18854
18855 @item display, d
18856 Set display mode.
18857 It accepts the following values:
18858 @table @samp
18859 @item overlay
18860 Presents information identical to that in the @code{parade}, except
18861 that the graphs representing color components are superimposed directly
18862 over one another.
18863
18864 This display mode makes it easier to spot relative differences or similarities
18865 in overlapping areas of the color components that are supposed to be identical,
18866 such as neutral whites, grays, or blacks.
18867
18868 @item stack
18869 Display separate graph for the color components side by side in
18870 @code{row} mode or one below the other in @code{column} mode.
18871
18872 @item parade
18873 Display separate graph for the color components side by side in
18874 @code{column} mode or one below the other in @code{row} mode.
18875
18876 Using this display mode makes it easy to spot color casts in the highlights
18877 and shadows of an image, by comparing the contours of the top and the bottom
18878 graphs of each waveform. Since whites, grays, and blacks are characterized
18879 by exactly equal amounts of red, green, and blue, neutral areas of the picture
18880 should display three waveforms of roughly equal width/height. If not, the
18881 correction is easy to perform by making level adjustments the three waveforms.
18882 @end table
18883 Default is @code{stack}.
18884
18885 @item components, c
18886 Set which color components to display. Default is 1, which means only luminance
18887 or red color component if input is in RGB colorspace. If is set for example to
18888 7 it will display all 3 (if) available color components.
18889
18890 @item envelope, e
18891 @table @samp
18892 @item none
18893 No envelope, this is default.
18894
18895 @item instant
18896 Instant envelope, minimum and maximum values presented in graph will be easily
18897 visible even with small @code{step} value.
18898
18899 @item peak
18900 Hold minimum and maximum values presented in graph across time. This way you
18901 can still spot out of range values without constantly looking at waveforms.
18902
18903 @item peak+instant
18904 Peak and instant envelope combined together.
18905 @end table
18906
18907 @item filter, f
18908 @table @samp
18909 @item lowpass
18910 No filtering, this is default.
18911
18912 @item flat
18913 Luma and chroma combined together.
18914
18915 @item aflat
18916 Similar as above, but shows difference between blue and red chroma.
18917
18918 @item xflat
18919 Similar as above, but use different colors.
18920
18921 @item chroma
18922 Displays only chroma.
18923
18924 @item color
18925 Displays actual color value on waveform.
18926
18927 @item acolor
18928 Similar as above, but with luma showing frequency of chroma values.
18929 @end table
18930
18931 @item graticule, g
18932 Set which graticule to display.
18933
18934 @table @samp
18935 @item none
18936 Do not display graticule.
18937
18938 @item green
18939 Display green graticule showing legal broadcast ranges.
18940
18941 @item orange
18942 Display orange graticule showing legal broadcast ranges.
18943 @end table
18944
18945 @item opacity, o
18946 Set graticule opacity.
18947
18948 @item flags, fl
18949 Set graticule flags.
18950
18951 @table @samp
18952 @item numbers
18953 Draw numbers above lines. By default enabled.
18954
18955 @item dots
18956 Draw dots instead of lines.
18957 @end table
18958
18959 @item scale, s
18960 Set scale used for displaying graticule.
18961
18962 @table @samp
18963 @item digital
18964 @item millivolts
18965 @item ire
18966 @end table
18967 Default is digital.
18968
18969 @item bgopacity, b
18970 Set background opacity.
18971 @end table
18972
18973 @section weave, doubleweave
18974
18975 The @code{weave} takes a field-based video input and join
18976 each two sequential fields into single frame, producing a new double
18977 height clip with half the frame rate and half the frame count.
18978
18979 The @code{doubleweave} works same as @code{weave} but without
18980 halving frame rate and frame count.
18981
18982 It accepts the following option:
18983
18984 @table @option
18985 @item first_field
18986 Set first field. Available values are:
18987
18988 @table @samp
18989 @item top, t
18990 Set the frame as top-field-first.
18991
18992 @item bottom, b
18993 Set the frame as bottom-field-first.
18994 @end table
18995 @end table
18996
18997 @subsection Examples
18998
18999 @itemize
19000 @item
19001 Interlace video using @ref{select} and @ref{separatefields} filter:
19002 @example
19003 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
19004 @end example
19005 @end itemize
19006
19007 @section xbr
19008 Apply the xBR high-quality magnification filter which is designed for pixel
19009 art. It follows a set of edge-detection rules, see
19010 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
19011
19012 It accepts the following option:
19013
19014 @table @option
19015 @item n
19016 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
19017 @code{3xBR} and @code{4} for @code{4xBR}.
19018 Default is @code{3}.
19019 @end table
19020
19021 @section xmedian
19022 Pick median pixels from several input videos.
19023
19024 The filter accepts the following options:
19025
19026 @table @option
19027 @item inputs
19028 Set number of inputs.
19029 Default is 3. Allowed range is from 3 to 255.
19030 If number of inputs is even number, than result will be mean value between two median values.
19031
19032 @item planes
19033 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19034 @end table
19035
19036 @section xstack
19037 Stack video inputs into custom layout.
19038
19039 All streams must be of same pixel format.
19040
19041 The filter accepts the following options:
19042
19043 @table @option
19044 @item inputs
19045 Set number of input streams. Default is 2.
19046
19047 @item layout
19048 Specify layout of inputs.
19049 This option requires the desired layout configuration to be explicitly set by the user.
19050 This sets position of each video input in output. Each input
19051 is separated by '|'.
19052 The first number represents the column, and the second number represents the row.
19053 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
19054 where X is video input from which to take width or height.
19055 Multiple values can be used when separated by '+'. In such
19056 case values are summed together.
19057
19058 Note that if inputs are of different sizes gaps may appear, as not all of
19059 the output video frame will be filled. Similarly, videos can overlap each
19060 other if their position doesn't leave enough space for the full frame of
19061 adjoining videos.
19062
19063 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
19064 a layout must be set by the user.
19065
19066 @item shortest
19067 If set to 1, force the output to terminate when the shortest input
19068 terminates. Default value is 0.
19069 @end table
19070
19071 @subsection Examples
19072
19073 @itemize
19074 @item
19075 Display 4 inputs into 2x2 grid.
19076
19077 Layout:
19078 @example
19079 input1(0, 0)  | input3(w0, 0)
19080 input2(0, h0) | input4(w0, h0)
19081 @end example
19082
19083 @example
19084 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
19085 @end example
19086
19087 Note that if inputs are of different sizes, gaps or overlaps may occur.
19088
19089 @item
19090 Display 4 inputs into 1x4 grid.
19091
19092 Layout:
19093 @example
19094 input1(0, 0)
19095 input2(0, h0)
19096 input3(0, h0+h1)
19097 input4(0, h0+h1+h2)
19098 @end example
19099
19100 @example
19101 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
19102 @end example
19103
19104 Note that if inputs are of different widths, unused space will appear.
19105
19106 @item
19107 Display 9 inputs into 3x3 grid.
19108
19109 Layout:
19110 @example
19111 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
19112 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
19113 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
19114 @end example
19115
19116 @example
19117 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
19118 @end example
19119
19120 Note that if inputs are of different sizes, gaps or overlaps may occur.
19121
19122 @item
19123 Display 16 inputs into 4x4 grid.
19124
19125 Layout:
19126 @example
19127 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
19128 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
19129 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
19130 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
19131 @end example
19132
19133 @example
19134 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|
19135 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
19136 @end example
19137
19138 Note that if inputs are of different sizes, gaps or overlaps may occur.
19139
19140 @end itemize
19141
19142 @anchor{yadif}
19143 @section yadif
19144
19145 Deinterlace the input video ("yadif" means "yet another deinterlacing
19146 filter").
19147
19148 It accepts the following parameters:
19149
19150
19151 @table @option
19152
19153 @item mode
19154 The interlacing mode to adopt. It accepts one of the following values:
19155
19156 @table @option
19157 @item 0, send_frame
19158 Output one frame for each frame.
19159 @item 1, send_field
19160 Output one frame for each field.
19161 @item 2, send_frame_nospatial
19162 Like @code{send_frame}, but it skips the spatial interlacing check.
19163 @item 3, send_field_nospatial
19164 Like @code{send_field}, but it skips the spatial interlacing check.
19165 @end table
19166
19167 The default value is @code{send_frame}.
19168
19169 @item parity
19170 The picture field parity assumed for the input interlaced video. It accepts one
19171 of the following values:
19172
19173 @table @option
19174 @item 0, tff
19175 Assume the top field is first.
19176 @item 1, bff
19177 Assume the bottom field is first.
19178 @item -1, auto
19179 Enable automatic detection of field parity.
19180 @end table
19181
19182 The default value is @code{auto}.
19183 If the interlacing is unknown or the decoder does not export this information,
19184 top field first will be assumed.
19185
19186 @item deint
19187 Specify which frames to deinterlace. Accepts one of the following
19188 values:
19189
19190 @table @option
19191 @item 0, all
19192 Deinterlace all frames.
19193 @item 1, interlaced
19194 Only deinterlace frames marked as interlaced.
19195 @end table
19196
19197 The default value is @code{all}.
19198 @end table
19199
19200 @section yadif_cuda
19201
19202 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
19203 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
19204 and/or nvenc.
19205
19206 It accepts the following parameters:
19207
19208
19209 @table @option
19210
19211 @item mode
19212 The interlacing mode to adopt. It accepts one of the following values:
19213
19214 @table @option
19215 @item 0, send_frame
19216 Output one frame for each frame.
19217 @item 1, send_field
19218 Output one frame for each field.
19219 @item 2, send_frame_nospatial
19220 Like @code{send_frame}, but it skips the spatial interlacing check.
19221 @item 3, send_field_nospatial
19222 Like @code{send_field}, but it skips the spatial interlacing check.
19223 @end table
19224
19225 The default value is @code{send_frame}.
19226
19227 @item parity
19228 The picture field parity assumed for the input interlaced video. It accepts one
19229 of the following values:
19230
19231 @table @option
19232 @item 0, tff
19233 Assume the top field is first.
19234 @item 1, bff
19235 Assume the bottom field is first.
19236 @item -1, auto
19237 Enable automatic detection of field parity.
19238 @end table
19239
19240 The default value is @code{auto}.
19241 If the interlacing is unknown or the decoder does not export this information,
19242 top field first will be assumed.
19243
19244 @item deint
19245 Specify which frames to deinterlace. Accepts one of the following
19246 values:
19247
19248 @table @option
19249 @item 0, all
19250 Deinterlace all frames.
19251 @item 1, interlaced
19252 Only deinterlace frames marked as interlaced.
19253 @end table
19254
19255 The default value is @code{all}.
19256 @end table
19257
19258 @section zoompan
19259
19260 Apply Zoom & Pan effect.
19261
19262 This filter accepts the following options:
19263
19264 @table @option
19265 @item zoom, z
19266 Set the zoom expression. Range is 1-10. Default is 1.
19267
19268 @item x
19269 @item y
19270 Set the x and y expression. Default is 0.
19271
19272 @item d
19273 Set the duration expression in number of frames.
19274 This sets for how many number of frames effect will last for
19275 single input image.
19276
19277 @item s
19278 Set the output image size, default is 'hd720'.
19279
19280 @item fps
19281 Set the output frame rate, default is '25'.
19282 @end table
19283
19284 Each expression can contain the following constants:
19285
19286 @table @option
19287 @item in_w, iw
19288 Input width.
19289
19290 @item in_h, ih
19291 Input height.
19292
19293 @item out_w, ow
19294 Output width.
19295
19296 @item out_h, oh
19297 Output height.
19298
19299 @item in
19300 Input frame count.
19301
19302 @item on
19303 Output frame count.
19304
19305 @item x
19306 @item y
19307 Last calculated 'x' and 'y' position from 'x' and 'y' expression
19308 for current input frame.
19309
19310 @item px
19311 @item py
19312 'x' and 'y' of last output frame of previous input frame or 0 when there was
19313 not yet such frame (first input frame).
19314
19315 @item zoom
19316 Last calculated zoom from 'z' expression for current input frame.
19317
19318 @item pzoom
19319 Last calculated zoom of last output frame of previous input frame.
19320
19321 @item duration
19322 Number of output frames for current input frame. Calculated from 'd' expression
19323 for each input frame.
19324
19325 @item pduration
19326 number of output frames created for previous input frame
19327
19328 @item a
19329 Rational number: input width / input height
19330
19331 @item sar
19332 sample aspect ratio
19333
19334 @item dar
19335 display aspect ratio
19336
19337 @end table
19338
19339 @subsection Examples
19340
19341 @itemize
19342 @item
19343 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
19344 @example
19345 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
19346 @end example
19347
19348 @item
19349 Zoom-in up to 1.5 and pan always at center of picture:
19350 @example
19351 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
19352 @end example
19353
19354 @item
19355 Same as above but without pausing:
19356 @example
19357 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
19358 @end example
19359 @end itemize
19360
19361 @anchor{zscale}
19362 @section zscale
19363 Scale (resize) the input video, using the z.lib library:
19364 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
19365 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
19366
19367 The zscale filter forces the output display aspect ratio to be the same
19368 as the input, by changing the output sample aspect ratio.
19369
19370 If the input image format is different from the format requested by
19371 the next filter, the zscale filter will convert the input to the
19372 requested format.
19373
19374 @subsection Options
19375 The filter accepts the following options.
19376
19377 @table @option
19378 @item width, w
19379 @item height, h
19380 Set the output video dimension expression. Default value is the input
19381 dimension.
19382
19383 If the @var{width} or @var{w} value is 0, the input width is used for
19384 the output. If the @var{height} or @var{h} value is 0, the input height
19385 is used for the output.
19386
19387 If one and only one of the values is -n with n >= 1, the zscale filter
19388 will use a value that maintains the aspect ratio of the input image,
19389 calculated from the other specified dimension. After that it will,
19390 however, make sure that the calculated dimension is divisible by n and
19391 adjust the value if necessary.
19392
19393 If both values are -n with n >= 1, the behavior will be identical to
19394 both values being set to 0 as previously detailed.
19395
19396 See below for the list of accepted constants for use in the dimension
19397 expression.
19398
19399 @item size, s
19400 Set the video size. For the syntax of this option, check the
19401 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19402
19403 @item dither, d
19404 Set the dither type.
19405
19406 Possible values are:
19407 @table @var
19408 @item none
19409 @item ordered
19410 @item random
19411 @item error_diffusion
19412 @end table
19413
19414 Default is none.
19415
19416 @item filter, f
19417 Set the resize filter type.
19418
19419 Possible values are:
19420 @table @var
19421 @item point
19422 @item bilinear
19423 @item bicubic
19424 @item spline16
19425 @item spline36
19426 @item lanczos
19427 @end table
19428
19429 Default is bilinear.
19430
19431 @item range, r
19432 Set the color range.
19433
19434 Possible values are:
19435 @table @var
19436 @item input
19437 @item limited
19438 @item full
19439 @end table
19440
19441 Default is same as input.
19442
19443 @item primaries, p
19444 Set the color primaries.
19445
19446 Possible values are:
19447 @table @var
19448 @item input
19449 @item 709
19450 @item unspecified
19451 @item 170m
19452 @item 240m
19453 @item 2020
19454 @end table
19455
19456 Default is same as input.
19457
19458 @item transfer, t
19459 Set the transfer characteristics.
19460
19461 Possible values are:
19462 @table @var
19463 @item input
19464 @item 709
19465 @item unspecified
19466 @item 601
19467 @item linear
19468 @item 2020_10
19469 @item 2020_12
19470 @item smpte2084
19471 @item iec61966-2-1
19472 @item arib-std-b67
19473 @end table
19474
19475 Default is same as input.
19476
19477 @item matrix, m
19478 Set the colorspace matrix.
19479
19480 Possible value are:
19481 @table @var
19482 @item input
19483 @item 709
19484 @item unspecified
19485 @item 470bg
19486 @item 170m
19487 @item 2020_ncl
19488 @item 2020_cl
19489 @end table
19490
19491 Default is same as input.
19492
19493 @item rangein, rin
19494 Set the input color range.
19495
19496 Possible values are:
19497 @table @var
19498 @item input
19499 @item limited
19500 @item full
19501 @end table
19502
19503 Default is same as input.
19504
19505 @item primariesin, pin
19506 Set the input color primaries.
19507
19508 Possible values are:
19509 @table @var
19510 @item input
19511 @item 709
19512 @item unspecified
19513 @item 170m
19514 @item 240m
19515 @item 2020
19516 @end table
19517
19518 Default is same as input.
19519
19520 @item transferin, tin
19521 Set the input transfer characteristics.
19522
19523 Possible values are:
19524 @table @var
19525 @item input
19526 @item 709
19527 @item unspecified
19528 @item 601
19529 @item linear
19530 @item 2020_10
19531 @item 2020_12
19532 @end table
19533
19534 Default is same as input.
19535
19536 @item matrixin, min
19537 Set the input colorspace matrix.
19538
19539 Possible value are:
19540 @table @var
19541 @item input
19542 @item 709
19543 @item unspecified
19544 @item 470bg
19545 @item 170m
19546 @item 2020_ncl
19547 @item 2020_cl
19548 @end table
19549
19550 @item chromal, c
19551 Set the output chroma location.
19552
19553 Possible values are:
19554 @table @var
19555 @item input
19556 @item left
19557 @item center
19558 @item topleft
19559 @item top
19560 @item bottomleft
19561 @item bottom
19562 @end table
19563
19564 @item chromalin, cin
19565 Set the input chroma location.
19566
19567 Possible values are:
19568 @table @var
19569 @item input
19570 @item left
19571 @item center
19572 @item topleft
19573 @item top
19574 @item bottomleft
19575 @item bottom
19576 @end table
19577
19578 @item npl
19579 Set the nominal peak luminance.
19580 @end table
19581
19582 The values of the @option{w} and @option{h} options are expressions
19583 containing the following constants:
19584
19585 @table @var
19586 @item in_w
19587 @item in_h
19588 The input width and height
19589
19590 @item iw
19591 @item ih
19592 These are the same as @var{in_w} and @var{in_h}.
19593
19594 @item out_w
19595 @item out_h
19596 The output (scaled) width and height
19597
19598 @item ow
19599 @item oh
19600 These are the same as @var{out_w} and @var{out_h}
19601
19602 @item a
19603 The same as @var{iw} / @var{ih}
19604
19605 @item sar
19606 input sample aspect ratio
19607
19608 @item dar
19609 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
19610
19611 @item hsub
19612 @item vsub
19613 horizontal and vertical input chroma subsample values. For example for the
19614 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19615
19616 @item ohsub
19617 @item ovsub
19618 horizontal and vertical output chroma subsample values. For example for the
19619 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19620 @end table
19621
19622 @table @option
19623 @end table
19624
19625 @c man end VIDEO FILTERS
19626
19627 @chapter OpenCL Video Filters
19628 @c man begin OPENCL VIDEO FILTERS
19629
19630 Below is a description of the currently available OpenCL video filters.
19631
19632 To enable compilation of these filters you need to configure FFmpeg with
19633 @code{--enable-opencl}.
19634
19635 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
19636 @table @option
19637
19638 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
19639 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
19640 given device parameters.
19641
19642 @item -filter_hw_device @var{name}
19643 Pass the hardware device called @var{name} to all filters in any filter graph.
19644
19645 @end table
19646
19647 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
19648
19649 @itemize
19650 @item
19651 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
19652 @example
19653 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
19654 @end example
19655 @end itemize
19656
19657 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.
19658
19659 @section avgblur_opencl
19660
19661 Apply average blur filter.
19662
19663 The filter accepts the following options:
19664
19665 @table @option
19666 @item sizeX
19667 Set horizontal radius size.
19668 Range is @code{[1, 1024]} and default value is @code{1}.
19669
19670 @item planes
19671 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19672
19673 @item sizeY
19674 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
19675 @end table
19676
19677 @subsection Example
19678
19679 @itemize
19680 @item
19681 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.
19682 @example
19683 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
19684 @end example
19685 @end itemize
19686
19687 @section boxblur_opencl
19688
19689 Apply a boxblur algorithm to the input video.
19690
19691 It accepts the following parameters:
19692
19693 @table @option
19694
19695 @item luma_radius, lr
19696 @item luma_power, lp
19697 @item chroma_radius, cr
19698 @item chroma_power, cp
19699 @item alpha_radius, ar
19700 @item alpha_power, ap
19701
19702 @end table
19703
19704 A description of the accepted options follows.
19705
19706 @table @option
19707 @item luma_radius, lr
19708 @item chroma_radius, cr
19709 @item alpha_radius, ar
19710 Set an expression for the box radius in pixels used for blurring the
19711 corresponding input plane.
19712
19713 The radius value must be a non-negative number, and must not be
19714 greater than the value of the expression @code{min(w,h)/2} for the
19715 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
19716 planes.
19717
19718 Default value for @option{luma_radius} is "2". If not specified,
19719 @option{chroma_radius} and @option{alpha_radius} default to the
19720 corresponding value set for @option{luma_radius}.
19721
19722 The expressions can contain the following constants:
19723 @table @option
19724 @item w
19725 @item h
19726 The input width and height in pixels.
19727
19728 @item cw
19729 @item ch
19730 The input chroma image width and height in pixels.
19731
19732 @item hsub
19733 @item vsub
19734 The horizontal and vertical chroma subsample values. For example, for the
19735 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
19736 @end table
19737
19738 @item luma_power, lp
19739 @item chroma_power, cp
19740 @item alpha_power, ap
19741 Specify how many times the boxblur filter is applied to the
19742 corresponding plane.
19743
19744 Default value for @option{luma_power} is 2. If not specified,
19745 @option{chroma_power} and @option{alpha_power} default to the
19746 corresponding value set for @option{luma_power}.
19747
19748 A value of 0 will disable the effect.
19749 @end table
19750
19751 @subsection Examples
19752
19753 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.
19754
19755 @itemize
19756 @item
19757 Apply a boxblur filter with the luma, chroma, and alpha radius
19758 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.
19759 @example
19760 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
19761 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
19762 @end example
19763
19764 @item
19765 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.
19766
19767 For the luma plane, a 2x2 box radius will be run once.
19768
19769 For the chroma plane, a 4x4 box radius will be run 5 times.
19770
19771 For the alpha plane, a 3x3 box radius will be run 7 times.
19772 @example
19773 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
19774 @end example
19775 @end itemize
19776
19777 @section convolution_opencl
19778
19779 Apply convolution of 3x3, 5x5, 7x7 matrix.
19780
19781 The filter accepts the following options:
19782
19783 @table @option
19784 @item 0m
19785 @item 1m
19786 @item 2m
19787 @item 3m
19788 Set matrix for each plane.
19789 Matrix is sequence of 9, 25 or 49 signed numbers.
19790 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
19791
19792 @item 0rdiv
19793 @item 1rdiv
19794 @item 2rdiv
19795 @item 3rdiv
19796 Set multiplier for calculated value for each plane.
19797 If unset or 0, it will be sum of all matrix elements.
19798 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
19799
19800 @item 0bias
19801 @item 1bias
19802 @item 2bias
19803 @item 3bias
19804 Set bias for each plane. This value is added to the result of the multiplication.
19805 Useful for making the overall image brighter or darker.
19806 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
19807
19808 @end table
19809
19810 @subsection Examples
19811
19812 @itemize
19813 @item
19814 Apply sharpen:
19815 @example
19816 -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
19817 @end example
19818
19819 @item
19820 Apply blur:
19821 @example
19822 -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
19823 @end example
19824
19825 @item
19826 Apply edge enhance:
19827 @example
19828 -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
19829 @end example
19830
19831 @item
19832 Apply edge detect:
19833 @example
19834 -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
19835 @end example
19836
19837 @item
19838 Apply laplacian edge detector which includes diagonals:
19839 @example
19840 -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
19841 @end example
19842
19843 @item
19844 Apply emboss:
19845 @example
19846 -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
19847 @end example
19848 @end itemize
19849
19850 @section dilation_opencl
19851
19852 Apply dilation effect to the video.
19853
19854 This filter replaces the pixel by the local(3x3) maximum.
19855
19856 It accepts the following options:
19857
19858 @table @option
19859 @item threshold0
19860 @item threshold1
19861 @item threshold2
19862 @item threshold3
19863 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19864 If @code{0}, plane will remain unchanged.
19865
19866 @item coordinates
19867 Flag which specifies the pixel to refer to.
19868 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19869
19870 Flags to local 3x3 coordinates region centered on @code{x}:
19871
19872     1 2 3
19873
19874     4 x 5
19875
19876     6 7 8
19877 @end table
19878
19879 @subsection Example
19880
19881 @itemize
19882 @item
19883 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.
19884 @example
19885 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19886 @end example
19887 @end itemize
19888
19889 @section erosion_opencl
19890
19891 Apply erosion effect to the video.
19892
19893 This filter replaces the pixel by the local(3x3) minimum.
19894
19895 It accepts the following options:
19896
19897 @table @option
19898 @item threshold0
19899 @item threshold1
19900 @item threshold2
19901 @item threshold3
19902 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19903 If @code{0}, plane will remain unchanged.
19904
19905 @item coordinates
19906 Flag which specifies the pixel to refer to.
19907 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19908
19909 Flags to local 3x3 coordinates region centered on @code{x}:
19910
19911     1 2 3
19912
19913     4 x 5
19914
19915     6 7 8
19916 @end table
19917
19918 @subsection Example
19919
19920 @itemize
19921 @item
19922 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.
19923 @example
19924 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19925 @end example
19926 @end itemize
19927
19928 @section colorkey_opencl
19929 RGB colorspace color keying.
19930
19931 The filter accepts the following options:
19932
19933 @table @option
19934 @item color
19935 The color which will be replaced with transparency.
19936
19937 @item similarity
19938 Similarity percentage with the key color.
19939
19940 0.01 matches only the exact key color, while 1.0 matches everything.
19941
19942 @item blend
19943 Blend percentage.
19944
19945 0.0 makes pixels either fully transparent, or not transparent at all.
19946
19947 Higher values result in semi-transparent pixels, with a higher transparency
19948 the more similar the pixels color is to the key color.
19949 @end table
19950
19951 @subsection Examples
19952
19953 @itemize
19954 @item
19955 Make every semi-green pixel in the input transparent with some slight blending:
19956 @example
19957 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
19958 @end example
19959 @end itemize
19960
19961 @section deshake_opencl
19962 Feature-point based video stabilization filter.
19963
19964 The filter accepts the following options:
19965
19966 @table @option
19967 @item tripod
19968 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
19969
19970 @item debug
19971 Whether or not additional debug info should be displayed, both in the processed output and in the console.
19972
19973 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
19974
19975 Viewing point matches in the output video is only supported for RGB input.
19976
19977 Defaults to @code{0}.
19978
19979 @item adaptive_crop
19980 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
19981
19982 Defaults to @code{1}.
19983
19984 @item refine_features
19985 Whether or not feature points should be refined at a sub-pixel level.
19986
19987 This can be turned off for a slight performance gain at the cost of precision.
19988
19989 Defaults to @code{1}.
19990
19991 @item smooth_strength
19992 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
19993
19994 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
19995
19996 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
19997
19998 Defaults to @code{0.0}.
19999
20000 @item smooth_window_multiplier
20001 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
20002
20003 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
20004
20005 Acceptable values range from @code{0.1} to @code{10.0}.
20006
20007 Larger values increase the amount of motion data available for determining how to smooth the camera path,
20008 potentially improving smoothness, but also increase latency and memory usage.
20009
20010 Defaults to @code{2.0}.
20011
20012 @end table
20013
20014 @subsection Examples
20015
20016 @itemize
20017 @item
20018 Stabilize a video with a fixed, medium smoothing strength:
20019 @example
20020 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
20021 @end example
20022
20023 @item
20024 Stabilize a video with debugging (both in console and in rendered video):
20025 @example
20026 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
20027 @end example
20028 @end itemize
20029
20030 @section nlmeans_opencl
20031
20032 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
20033
20034 @section overlay_opencl
20035
20036 Overlay one video on top of another.
20037
20038 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
20039 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
20040
20041 The filter accepts the following options:
20042
20043 @table @option
20044
20045 @item x
20046 Set the x coordinate of the overlaid video on the main video.
20047 Default value is @code{0}.
20048
20049 @item y
20050 Set the x coordinate of the overlaid video on the main video.
20051 Default value is @code{0}.
20052
20053 @end table
20054
20055 @subsection Examples
20056
20057 @itemize
20058 @item
20059 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
20060 @example
20061 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
20062 @end example
20063 @item
20064 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
20065 @example
20066 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
20067 @end example
20068
20069 @end itemize
20070
20071 @section prewitt_opencl
20072
20073 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
20074
20075 The filter accepts the following option:
20076
20077 @table @option
20078 @item planes
20079 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20080
20081 @item scale
20082 Set value which will be multiplied with filtered result.
20083 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20084
20085 @item delta
20086 Set value which will be added to filtered result.
20087 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20088 @end table
20089
20090 @subsection Example
20091
20092 @itemize
20093 @item
20094 Apply the Prewitt operator with scale set to 2 and delta set to 10.
20095 @example
20096 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
20097 @end example
20098 @end itemize
20099
20100 @section roberts_opencl
20101 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
20102
20103 The filter accepts the following option:
20104
20105 @table @option
20106 @item planes
20107 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20108
20109 @item scale
20110 Set value which will be multiplied with filtered result.
20111 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20112
20113 @item delta
20114 Set value which will be added to filtered result.
20115 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20116 @end table
20117
20118 @subsection Example
20119
20120 @itemize
20121 @item
20122 Apply the Roberts cross operator with scale set to 2 and delta set to 10
20123 @example
20124 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
20125 @end example
20126 @end itemize
20127
20128 @section sobel_opencl
20129
20130 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
20131
20132 The filter accepts the following option:
20133
20134 @table @option
20135 @item planes
20136 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20137
20138 @item scale
20139 Set value which will be multiplied with filtered result.
20140 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20141
20142 @item delta
20143 Set value which will be added to filtered result.
20144 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20145 @end table
20146
20147 @subsection Example
20148
20149 @itemize
20150 @item
20151 Apply sobel operator with scale set to 2 and delta set to 10
20152 @example
20153 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
20154 @end example
20155 @end itemize
20156
20157 @section tonemap_opencl
20158
20159 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
20160
20161 It accepts the following parameters:
20162
20163 @table @option
20164 @item tonemap
20165 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
20166
20167 @item param
20168 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
20169
20170 @item desat
20171 Apply desaturation for highlights that exceed this level of brightness. The
20172 higher the parameter, the more color information will be preserved. This
20173 setting helps prevent unnaturally blown-out colors for super-highlights, by
20174 (smoothly) turning into white instead. This makes images feel more natural,
20175 at the cost of reducing information about out-of-range colors.
20176
20177 The default value is 0.5, and the algorithm here is a little different from
20178 the cpu version tonemap currently. A setting of 0.0 disables this option.
20179
20180 @item threshold
20181 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
20182 is used to detect whether the scene has changed or not. If the distance between
20183 the current frame average brightness and the current running average exceeds
20184 a threshold value, we would re-calculate scene average and peak brightness.
20185 The default value is 0.2.
20186
20187 @item format
20188 Specify the output pixel format.
20189
20190 Currently supported formats are:
20191 @table @var
20192 @item p010
20193 @item nv12
20194 @end table
20195
20196 @item range, r
20197 Set the output color range.
20198
20199 Possible values are:
20200 @table @var
20201 @item tv/mpeg
20202 @item pc/jpeg
20203 @end table
20204
20205 Default is same as input.
20206
20207 @item primaries, p
20208 Set the output color primaries.
20209
20210 Possible values are:
20211 @table @var
20212 @item bt709
20213 @item bt2020
20214 @end table
20215
20216 Default is same as input.
20217
20218 @item transfer, t
20219 Set the output transfer characteristics.
20220
20221 Possible values are:
20222 @table @var
20223 @item bt709
20224 @item bt2020
20225 @end table
20226
20227 Default is bt709.
20228
20229 @item matrix, m
20230 Set the output colorspace matrix.
20231
20232 Possible value are:
20233 @table @var
20234 @item bt709
20235 @item bt2020
20236 @end table
20237
20238 Default is same as input.
20239
20240 @end table
20241
20242 @subsection Example
20243
20244 @itemize
20245 @item
20246 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
20247 @example
20248 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
20249 @end example
20250 @end itemize
20251
20252 @section unsharp_opencl
20253
20254 Sharpen or blur the input video.
20255
20256 It accepts the following parameters:
20257
20258 @table @option
20259 @item luma_msize_x, lx
20260 Set the luma matrix horizontal size.
20261 Range is @code{[1, 23]} and default value is @code{5}.
20262
20263 @item luma_msize_y, ly
20264 Set the luma matrix vertical size.
20265 Range is @code{[1, 23]} and default value is @code{5}.
20266
20267 @item luma_amount, la
20268 Set the luma effect strength.
20269 Range is @code{[-10, 10]} and default value is @code{1.0}.
20270
20271 Negative values will blur the input video, while positive values will
20272 sharpen it, a value of zero will disable the effect.
20273
20274 @item chroma_msize_x, cx
20275 Set the chroma matrix horizontal size.
20276 Range is @code{[1, 23]} and default value is @code{5}.
20277
20278 @item chroma_msize_y, cy
20279 Set the chroma matrix vertical size.
20280 Range is @code{[1, 23]} and default value is @code{5}.
20281
20282 @item chroma_amount, ca
20283 Set the chroma effect strength.
20284 Range is @code{[-10, 10]} and default value is @code{0.0}.
20285
20286 Negative values will blur the input video, while positive values will
20287 sharpen it, a value of zero will disable the effect.
20288
20289 @end table
20290
20291 All parameters are optional and default to the equivalent of the
20292 string '5:5:1.0:5:5:0.0'.
20293
20294 @subsection Examples
20295
20296 @itemize
20297 @item
20298 Apply strong luma sharpen effect:
20299 @example
20300 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
20301 @end example
20302
20303 @item
20304 Apply a strong blur of both luma and chroma parameters:
20305 @example
20306 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
20307 @end example
20308 @end itemize
20309
20310 @c man end OPENCL VIDEO FILTERS
20311
20312 @chapter Video Sources
20313 @c man begin VIDEO SOURCES
20314
20315 Below is a description of the currently available video sources.
20316
20317 @section buffer
20318
20319 Buffer video frames, and make them available to the filter chain.
20320
20321 This source is mainly intended for a programmatic use, in particular
20322 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
20323
20324 It accepts the following parameters:
20325
20326 @table @option
20327
20328 @item video_size
20329 Specify the size (width and height) of the buffered video frames. For the
20330 syntax of this option, check the
20331 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20332
20333 @item width
20334 The input video width.
20335
20336 @item height
20337 The input video height.
20338
20339 @item pix_fmt
20340 A string representing the pixel format of the buffered video frames.
20341 It may be a number corresponding to a pixel format, or a pixel format
20342 name.
20343
20344 @item time_base
20345 Specify the timebase assumed by the timestamps of the buffered frames.
20346
20347 @item frame_rate
20348 Specify the frame rate expected for the video stream.
20349
20350 @item pixel_aspect, sar
20351 The sample (pixel) aspect ratio of the input video.
20352
20353 @item sws_param
20354 Specify the optional parameters to be used for the scale filter which
20355 is automatically inserted when an input change is detected in the
20356 input size or format.
20357
20358 @item hw_frames_ctx
20359 When using a hardware pixel format, this should be a reference to an
20360 AVHWFramesContext describing input frames.
20361 @end table
20362
20363 For example:
20364 @example
20365 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
20366 @end example
20367
20368 will instruct the source to accept video frames with size 320x240 and
20369 with format "yuv410p", assuming 1/24 as the timestamps timebase and
20370 square pixels (1:1 sample aspect ratio).
20371 Since the pixel format with name "yuv410p" corresponds to the number 6
20372 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
20373 this example corresponds to:
20374 @example
20375 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
20376 @end example
20377
20378 Alternatively, the options can be specified as a flat string, but this
20379 syntax is deprecated:
20380
20381 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}[:@var{sws_param}]
20382
20383 @section cellauto
20384
20385 Create a pattern generated by an elementary cellular automaton.
20386
20387 The initial state of the cellular automaton can be defined through the
20388 @option{filename} and @option{pattern} options. If such options are
20389 not specified an initial state is created randomly.
20390
20391 At each new frame a new row in the video is filled with the result of
20392 the cellular automaton next generation. The behavior when the whole
20393 frame is filled is defined by the @option{scroll} option.
20394
20395 This source accepts the following options:
20396
20397 @table @option
20398 @item filename, f
20399 Read the initial cellular automaton state, i.e. the starting row, from
20400 the specified file.
20401 In the file, each non-whitespace character is considered an alive
20402 cell, a newline will terminate the row, and further characters in the
20403 file will be ignored.
20404
20405 @item pattern, p
20406 Read the initial cellular automaton state, i.e. the starting row, from
20407 the specified string.
20408
20409 Each non-whitespace character in the string is considered an alive
20410 cell, a newline will terminate the row, and further characters in the
20411 string will be ignored.
20412
20413 @item rate, r
20414 Set the video rate, that is the number of frames generated per second.
20415 Default is 25.
20416
20417 @item random_fill_ratio, ratio
20418 Set the random fill ratio for the initial cellular automaton row. It
20419 is a floating point number value ranging from 0 to 1, defaults to
20420 1/PHI.
20421
20422 This option is ignored when a file or a pattern is specified.
20423
20424 @item random_seed, seed
20425 Set the seed for filling randomly the initial row, must be an integer
20426 included between 0 and UINT32_MAX. If not specified, or if explicitly
20427 set to -1, the filter will try to use a good random seed on a best
20428 effort basis.
20429
20430 @item rule
20431 Set the cellular automaton rule, it is a number ranging from 0 to 255.
20432 Default value is 110.
20433
20434 @item size, s
20435 Set the size of the output video. For the syntax of this option, check the
20436 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20437
20438 If @option{filename} or @option{pattern} is specified, the size is set
20439 by default to the width of the specified initial state row, and the
20440 height is set to @var{width} * PHI.
20441
20442 If @option{size} is set, it must contain the width of the specified
20443 pattern string, and the specified pattern will be centered in the
20444 larger row.
20445
20446 If a filename or a pattern string is not specified, the size value
20447 defaults to "320x518" (used for a randomly generated initial state).
20448
20449 @item scroll
20450 If set to 1, scroll the output upward when all the rows in the output
20451 have been already filled. If set to 0, the new generated row will be
20452 written over the top row just after the bottom row is filled.
20453 Defaults to 1.
20454
20455 @item start_full, full
20456 If set to 1, completely fill the output with generated rows before
20457 outputting the first frame.
20458 This is the default behavior, for disabling set the value to 0.
20459
20460 @item stitch
20461 If set to 1, stitch the left and right row edges together.
20462 This is the default behavior, for disabling set the value to 0.
20463 @end table
20464
20465 @subsection Examples
20466
20467 @itemize
20468 @item
20469 Read the initial state from @file{pattern}, and specify an output of
20470 size 200x400.
20471 @example
20472 cellauto=f=pattern:s=200x400
20473 @end example
20474
20475 @item
20476 Generate a random initial row with a width of 200 cells, with a fill
20477 ratio of 2/3:
20478 @example
20479 cellauto=ratio=2/3:s=200x200
20480 @end example
20481
20482 @item
20483 Create a pattern generated by rule 18 starting by a single alive cell
20484 centered on an initial row with width 100:
20485 @example
20486 cellauto=p=@@:s=100x400:full=0:rule=18
20487 @end example
20488
20489 @item
20490 Specify a more elaborated initial pattern:
20491 @example
20492 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
20493 @end example
20494
20495 @end itemize
20496
20497 @anchor{coreimagesrc}
20498 @section coreimagesrc
20499 Video source generated on GPU using Apple's CoreImage API on OSX.
20500
20501 This video source is a specialized version of the @ref{coreimage} video filter.
20502 Use a core image generator at the beginning of the applied filterchain to
20503 generate the content.
20504
20505 The coreimagesrc video source accepts the following options:
20506 @table @option
20507 @item list_generators
20508 List all available generators along with all their respective options as well as
20509 possible minimum and maximum values along with the default values.
20510 @example
20511 list_generators=true
20512 @end example
20513
20514 @item size, s
20515 Specify the size of the sourced video. For the syntax of this option, check the
20516 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20517 The default value is @code{320x240}.
20518
20519 @item rate, r
20520 Specify the frame rate of the sourced video, as the number of frames
20521 generated per second. It has to be a string in the format
20522 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20523 number or a valid video frame rate abbreviation. The default value is
20524 "25".
20525
20526 @item sar
20527 Set the sample aspect ratio of the sourced video.
20528
20529 @item duration, d
20530 Set the duration of the sourced video. See
20531 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20532 for the accepted syntax.
20533
20534 If not specified, or the expressed duration is negative, the video is
20535 supposed to be generated forever.
20536 @end table
20537
20538 Additionally, all options of the @ref{coreimage} video filter are accepted.
20539 A complete filterchain can be used for further processing of the
20540 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
20541 and examples for details.
20542
20543 @subsection Examples
20544
20545 @itemize
20546
20547 @item
20548 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
20549 given as complete and escaped command-line for Apple's standard bash shell:
20550 @example
20551 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
20552 @end example
20553 This example is equivalent to the QRCode example of @ref{coreimage} without the
20554 need for a nullsrc video source.
20555 @end itemize
20556
20557
20558 @section mandelbrot
20559
20560 Generate a Mandelbrot set fractal, and progressively zoom towards the
20561 point specified with @var{start_x} and @var{start_y}.
20562
20563 This source accepts the following options:
20564
20565 @table @option
20566
20567 @item end_pts
20568 Set the terminal pts value. Default value is 400.
20569
20570 @item end_scale
20571 Set the terminal scale value.
20572 Must be a floating point value. Default value is 0.3.
20573
20574 @item inner
20575 Set the inner coloring mode, that is the algorithm used to draw the
20576 Mandelbrot fractal internal region.
20577
20578 It shall assume one of the following values:
20579 @table @option
20580 @item black
20581 Set black mode.
20582 @item convergence
20583 Show time until convergence.
20584 @item mincol
20585 Set color based on point closest to the origin of the iterations.
20586 @item period
20587 Set period mode.
20588 @end table
20589
20590 Default value is @var{mincol}.
20591
20592 @item bailout
20593 Set the bailout value. Default value is 10.0.
20594
20595 @item maxiter
20596 Set the maximum of iterations performed by the rendering
20597 algorithm. Default value is 7189.
20598
20599 @item outer
20600 Set outer coloring mode.
20601 It shall assume one of following values:
20602 @table @option
20603 @item iteration_count
20604 Set iteration count mode.
20605 @item normalized_iteration_count
20606 set normalized iteration count mode.
20607 @end table
20608 Default value is @var{normalized_iteration_count}.
20609
20610 @item rate, r
20611 Set frame rate, expressed as number of frames per second. Default
20612 value is "25".
20613
20614 @item size, s
20615 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
20616 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
20617
20618 @item start_scale
20619 Set the initial scale value. Default value is 3.0.
20620
20621 @item start_x
20622 Set the initial x position. Must be a floating point value between
20623 -100 and 100. Default value is -0.743643887037158704752191506114774.
20624
20625 @item start_y
20626 Set the initial y position. Must be a floating point value between
20627 -100 and 100. Default value is -0.131825904205311970493132056385139.
20628 @end table
20629
20630 @section mptestsrc
20631
20632 Generate various test patterns, as generated by the MPlayer test filter.
20633
20634 The size of the generated video is fixed, and is 256x256.
20635 This source is useful in particular for testing encoding features.
20636
20637 This source accepts the following options:
20638
20639 @table @option
20640
20641 @item rate, r
20642 Specify the frame rate of the sourced video, as the number of frames
20643 generated per second. It has to be a string in the format
20644 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20645 number or a valid video frame rate abbreviation. The default value is
20646 "25".
20647
20648 @item duration, d
20649 Set the duration of the sourced video. See
20650 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20651 for the accepted syntax.
20652
20653 If not specified, or the expressed duration is negative, the video is
20654 supposed to be generated forever.
20655
20656 @item test, t
20657
20658 Set the number or the name of the test to perform. Supported tests are:
20659 @table @option
20660 @item dc_luma
20661 @item dc_chroma
20662 @item freq_luma
20663 @item freq_chroma
20664 @item amp_luma
20665 @item amp_chroma
20666 @item cbp
20667 @item mv
20668 @item ring1
20669 @item ring2
20670 @item all
20671
20672 @end table
20673
20674 Default value is "all", which will cycle through the list of all tests.
20675 @end table
20676
20677 Some examples:
20678 @example
20679 mptestsrc=t=dc_luma
20680 @end example
20681
20682 will generate a "dc_luma" test pattern.
20683
20684 @section frei0r_src
20685
20686 Provide a frei0r source.
20687
20688 To enable compilation of this filter you need to install the frei0r
20689 header and configure FFmpeg with @code{--enable-frei0r}.
20690
20691 This source accepts the following parameters:
20692
20693 @table @option
20694
20695 @item size
20696 The size of the video to generate. For the syntax of this option, check the
20697 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20698
20699 @item framerate
20700 The framerate of the generated video. It may be a string of the form
20701 @var{num}/@var{den} or a frame rate abbreviation.
20702
20703 @item filter_name
20704 The name to the frei0r source to load. For more information regarding frei0r and
20705 how to set the parameters, read the @ref{frei0r} section in the video filters
20706 documentation.
20707
20708 @item filter_params
20709 A '|'-separated list of parameters to pass to the frei0r source.
20710
20711 @end table
20712
20713 For example, to generate a frei0r partik0l source with size 200x200
20714 and frame rate 10 which is overlaid on the overlay filter main input:
20715 @example
20716 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
20717 @end example
20718
20719 @section life
20720
20721 Generate a life pattern.
20722
20723 This source is based on a generalization of John Conway's life game.
20724
20725 The sourced input represents a life grid, each pixel represents a cell
20726 which can be in one of two possible states, alive or dead. Every cell
20727 interacts with its eight neighbours, which are the cells that are
20728 horizontally, vertically, or diagonally adjacent.
20729
20730 At each interaction the grid evolves according to the adopted rule,
20731 which specifies the number of neighbor alive cells which will make a
20732 cell stay alive or born. The @option{rule} option allows one to specify
20733 the rule to adopt.
20734
20735 This source accepts the following options:
20736
20737 @table @option
20738 @item filename, f
20739 Set the file from which to read the initial grid state. In the file,
20740 each non-whitespace character is considered an alive cell, and newline
20741 is used to delimit the end of each row.
20742
20743 If this option is not specified, the initial grid is generated
20744 randomly.
20745
20746 @item rate, r
20747 Set the video rate, that is the number of frames generated per second.
20748 Default is 25.
20749
20750 @item random_fill_ratio, ratio
20751 Set the random fill ratio for the initial random grid. It is a
20752 floating point number value ranging from 0 to 1, defaults to 1/PHI.
20753 It is ignored when a file is specified.
20754
20755 @item random_seed, seed
20756 Set the seed for filling the initial random grid, must be an integer
20757 included between 0 and UINT32_MAX. If not specified, or if explicitly
20758 set to -1, the filter will try to use a good random seed on a best
20759 effort basis.
20760
20761 @item rule
20762 Set the life rule.
20763
20764 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
20765 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
20766 @var{NS} specifies the number of alive neighbor cells which make a
20767 live cell stay alive, and @var{NB} the number of alive neighbor cells
20768 which make a dead cell to become alive (i.e. to "born").
20769 "s" and "b" can be used in place of "S" and "B", respectively.
20770
20771 Alternatively a rule can be specified by an 18-bits integer. The 9
20772 high order bits are used to encode the next cell state if it is alive
20773 for each number of neighbor alive cells, the low order bits specify
20774 the rule for "borning" new cells. Higher order bits encode for an
20775 higher number of neighbor cells.
20776 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
20777 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
20778
20779 Default value is "S23/B3", which is the original Conway's game of life
20780 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
20781 cells, and will born a new cell if there are three alive cells around
20782 a dead cell.
20783
20784 @item size, s
20785 Set the size of the output video. For the syntax of this option, check the
20786 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20787
20788 If @option{filename} is specified, the size is set by default to the
20789 same size of the input file. If @option{size} is set, it must contain
20790 the size specified in the input file, and the initial grid defined in
20791 that file is centered in the larger resulting area.
20792
20793 If a filename is not specified, the size value defaults to "320x240"
20794 (used for a randomly generated initial grid).
20795
20796 @item stitch
20797 If set to 1, stitch the left and right grid edges together, and the
20798 top and bottom edges also. Defaults to 1.
20799
20800 @item mold
20801 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
20802 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
20803 value from 0 to 255.
20804
20805 @item life_color
20806 Set the color of living (or new born) cells.
20807
20808 @item death_color
20809 Set the color of dead cells. If @option{mold} is set, this is the first color
20810 used to represent a dead cell.
20811
20812 @item mold_color
20813 Set mold color, for definitely dead and moldy cells.
20814
20815 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
20816 ffmpeg-utils manual,ffmpeg-utils}.
20817 @end table
20818
20819 @subsection Examples
20820
20821 @itemize
20822 @item
20823 Read a grid from @file{pattern}, and center it on a grid of size
20824 300x300 pixels:
20825 @example
20826 life=f=pattern:s=300x300
20827 @end example
20828
20829 @item
20830 Generate a random grid of size 200x200, with a fill ratio of 2/3:
20831 @example
20832 life=ratio=2/3:s=200x200
20833 @end example
20834
20835 @item
20836 Specify a custom rule for evolving a randomly generated grid:
20837 @example
20838 life=rule=S14/B34
20839 @end example
20840
20841 @item
20842 Full example with slow death effect (mold) using @command{ffplay}:
20843 @example
20844 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
20845 @end example
20846 @end itemize
20847
20848 @anchor{allrgb}
20849 @anchor{allyuv}
20850 @anchor{color}
20851 @anchor{haldclutsrc}
20852 @anchor{nullsrc}
20853 @anchor{pal75bars}
20854 @anchor{pal100bars}
20855 @anchor{rgbtestsrc}
20856 @anchor{smptebars}
20857 @anchor{smptehdbars}
20858 @anchor{testsrc}
20859 @anchor{testsrc2}
20860 @anchor{yuvtestsrc}
20861 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
20862
20863 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
20864
20865 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
20866
20867 The @code{color} source provides an uniformly colored input.
20868
20869 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
20870 @ref{haldclut} filter.
20871
20872 The @code{nullsrc} source returns unprocessed video frames. It is
20873 mainly useful to be employed in analysis / debugging tools, or as the
20874 source for filters which ignore the input data.
20875
20876 The @code{pal75bars} source generates a color bars pattern, based on
20877 EBU PAL recommendations with 75% color levels.
20878
20879 The @code{pal100bars} source generates a color bars pattern, based on
20880 EBU PAL recommendations with 100% color levels.
20881
20882 The @code{rgbtestsrc} source generates an RGB test pattern useful for
20883 detecting RGB vs BGR issues. You should see a red, green and blue
20884 stripe from top to bottom.
20885
20886 The @code{smptebars} source generates a color bars pattern, based on
20887 the SMPTE Engineering Guideline EG 1-1990.
20888
20889 The @code{smptehdbars} source generates a color bars pattern, based on
20890 the SMPTE RP 219-2002.
20891
20892 The @code{testsrc} source generates a test video pattern, showing a
20893 color pattern, a scrolling gradient and a timestamp. This is mainly
20894 intended for testing purposes.
20895
20896 The @code{testsrc2} source is similar to testsrc, but supports more
20897 pixel formats instead of just @code{rgb24}. This allows using it as an
20898 input for other tests without requiring a format conversion.
20899
20900 The @code{yuvtestsrc} source generates an YUV test pattern. You should
20901 see a y, cb and cr stripe from top to bottom.
20902
20903 The sources accept the following parameters:
20904
20905 @table @option
20906
20907 @item level
20908 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
20909 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
20910 pixels to be used as identity matrix for 3D lookup tables. Each component is
20911 coded on a @code{1/(N*N)} scale.
20912
20913 @item color, c
20914 Specify the color of the source, only available in the @code{color}
20915 source. For the syntax of this option, check the
20916 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
20917
20918 @item size, s
20919 Specify the size of the sourced video. For the syntax of this option, check the
20920 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20921 The default value is @code{320x240}.
20922
20923 This option is not available with the @code{allrgb}, @code{allyuv}, and
20924 @code{haldclutsrc} filters.
20925
20926 @item rate, r
20927 Specify the frame rate of the sourced video, as the number of frames
20928 generated per second. It has to be a string in the format
20929 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20930 number or a valid video frame rate abbreviation. The default value is
20931 "25".
20932
20933 @item duration, d
20934 Set the duration of the sourced video. See
20935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20936 for the accepted syntax.
20937
20938 If not specified, or the expressed duration is negative, the video is
20939 supposed to be generated forever.
20940
20941 @item sar
20942 Set the sample aspect ratio of the sourced video.
20943
20944 @item alpha
20945 Specify the alpha (opacity) of the background, only available in the
20946 @code{testsrc2} source. The value must be between 0 (fully transparent) and
20947 255 (fully opaque, the default).
20948
20949 @item decimals, n
20950 Set the number of decimals to show in the timestamp, only available in the
20951 @code{testsrc} source.
20952
20953 The displayed timestamp value will correspond to the original
20954 timestamp value multiplied by the power of 10 of the specified
20955 value. Default value is 0.
20956 @end table
20957
20958 @subsection Examples
20959
20960 @itemize
20961 @item
20962 Generate a video with a duration of 5.3 seconds, with size
20963 176x144 and a frame rate of 10 frames per second:
20964 @example
20965 testsrc=duration=5.3:size=qcif:rate=10
20966 @end example
20967
20968 @item
20969 The following graph description will generate a red source
20970 with an opacity of 0.2, with size "qcif" and a frame rate of 10
20971 frames per second:
20972 @example
20973 color=c=red@@0.2:s=qcif:r=10
20974 @end example
20975
20976 @item
20977 If the input content is to be ignored, @code{nullsrc} can be used. The
20978 following command generates noise in the luminance plane by employing
20979 the @code{geq} filter:
20980 @example
20981 nullsrc=s=256x256, geq=random(1)*255:128:128
20982 @end example
20983 @end itemize
20984
20985 @subsection Commands
20986
20987 The @code{color} source supports the following commands:
20988
20989 @table @option
20990 @item c, color
20991 Set the color of the created image. Accepts the same syntax of the
20992 corresponding @option{color} option.
20993 @end table
20994
20995 @section openclsrc
20996
20997 Generate video using an OpenCL program.
20998
20999 @table @option
21000
21001 @item source
21002 OpenCL program source file.
21003
21004 @item kernel
21005 Kernel name in program.
21006
21007 @item size, s
21008 Size of frames to generate.  This must be set.
21009
21010 @item format
21011 Pixel format to use for the generated frames.  This must be set.
21012
21013 @item rate, r
21014 Number of frames generated every second.  Default value is '25'.
21015
21016 @end table
21017
21018 For details of how the program loading works, see the @ref{program_opencl}
21019 filter.
21020
21021 Example programs:
21022
21023 @itemize
21024 @item
21025 Generate a colour ramp by setting pixel values from the position of the pixel
21026 in the output image.  (Note that this will work with all pixel formats, but
21027 the generated output will not be the same.)
21028 @verbatim
21029 __kernel void ramp(__write_only image2d_t dst,
21030                    unsigned int index)
21031 {
21032     int2 loc = (int2)(get_global_id(0), get_global_id(1));
21033
21034     float4 val;
21035     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
21036
21037     write_imagef(dst, loc, val);
21038 }
21039 @end verbatim
21040
21041 @item
21042 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
21043 @verbatim
21044 __kernel void sierpinski_carpet(__write_only image2d_t dst,
21045                                 unsigned int index)
21046 {
21047     int2 loc = (int2)(get_global_id(0), get_global_id(1));
21048
21049     float4 value = 0.0f;
21050     int x = loc.x + index;
21051     int y = loc.y + index;
21052     while (x > 0 || y > 0) {
21053         if (x % 3 == 1 && y % 3 == 1) {
21054             value = 1.0f;
21055             break;
21056         }
21057         x /= 3;
21058         y /= 3;
21059     }
21060
21061     write_imagef(dst, loc, value);
21062 }
21063 @end verbatim
21064
21065 @end itemize
21066
21067 @section sierpinski
21068
21069 Generate a Sierpinksi carpet fractal, and randomly pan around.
21070
21071 This source accepts the following options:
21072
21073 @table @option
21074 @item size, s
21075 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
21076 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
21077
21078 @item rate, r
21079 Set frame rate, expressed as number of frames per second. Default
21080 value is "25".
21081
21082 @item seed
21083 Set seed which is used for random panning.
21084
21085 @item jump
21086 Set max jump for single pan destination. Allowed range is from 1 to 10000.
21087 @end table
21088
21089 @c man end VIDEO SOURCES
21090
21091 @chapter Video Sinks
21092 @c man begin VIDEO SINKS
21093
21094 Below is a description of the currently available video sinks.
21095
21096 @section buffersink
21097
21098 Buffer video frames, and make them available to the end of the filter
21099 graph.
21100
21101 This sink is mainly intended for programmatic use, in particular
21102 through the interface defined in @file{libavfilter/buffersink.h}
21103 or the options system.
21104
21105 It accepts a pointer to an AVBufferSinkContext structure, which
21106 defines the incoming buffers' formats, to be passed as the opaque
21107 parameter to @code{avfilter_init_filter} for initialization.
21108
21109 @section nullsink
21110
21111 Null video sink: do absolutely nothing with the input video. It is
21112 mainly useful as a template and for use in analysis / debugging
21113 tools.
21114
21115 @c man end VIDEO SINKS
21116
21117 @chapter Multimedia Filters
21118 @c man begin MULTIMEDIA FILTERS
21119
21120 Below is a description of the currently available multimedia filters.
21121
21122 @section abitscope
21123
21124 Convert input audio to a video output, displaying the audio bit scope.
21125
21126 The filter accepts the following options:
21127
21128 @table @option
21129 @item rate, r
21130 Set frame rate, expressed as number of frames per second. Default
21131 value is "25".
21132
21133 @item size, s
21134 Specify the video size for the output. For the syntax of this option, check the
21135 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21136 Default value is @code{1024x256}.
21137
21138 @item colors
21139 Specify list of colors separated by space or by '|' which will be used to
21140 draw channels. Unrecognized or missing colors will be replaced
21141 by white color.
21142 @end table
21143
21144 @section ahistogram
21145
21146 Convert input audio to a video output, displaying the volume histogram.
21147
21148 The filter accepts the following options:
21149
21150 @table @option
21151 @item dmode
21152 Specify how histogram is calculated.
21153
21154 It accepts the following values:
21155 @table @samp
21156 @item single
21157 Use single histogram for all channels.
21158 @item separate
21159 Use separate histogram for each channel.
21160 @end table
21161 Default is @code{single}.
21162
21163 @item rate, r
21164 Set frame rate, expressed as number of frames per second. Default
21165 value is "25".
21166
21167 @item size, s
21168 Specify the video size for the output. For the syntax of this option, check the
21169 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21170 Default value is @code{hd720}.
21171
21172 @item scale
21173 Set display scale.
21174
21175 It accepts the following values:
21176 @table @samp
21177 @item log
21178 logarithmic
21179 @item sqrt
21180 square root
21181 @item cbrt
21182 cubic root
21183 @item lin
21184 linear
21185 @item rlog
21186 reverse logarithmic
21187 @end table
21188 Default is @code{log}.
21189
21190 @item ascale
21191 Set amplitude scale.
21192
21193 It accepts the following values:
21194 @table @samp
21195 @item log
21196 logarithmic
21197 @item lin
21198 linear
21199 @end table
21200 Default is @code{log}.
21201
21202 @item acount
21203 Set how much frames to accumulate in histogram.
21204 Default is 1. Setting this to -1 accumulates all frames.
21205
21206 @item rheight
21207 Set histogram ratio of window height.
21208
21209 @item slide
21210 Set sonogram sliding.
21211
21212 It accepts the following values:
21213 @table @samp
21214 @item replace
21215 replace old rows with new ones.
21216 @item scroll
21217 scroll from top to bottom.
21218 @end table
21219 Default is @code{replace}.
21220 @end table
21221
21222 @section aphasemeter
21223
21224 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
21225 representing mean phase of current audio frame. A video output can also be produced and is
21226 enabled by default. The audio is passed through as first output.
21227
21228 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
21229 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
21230 and @code{1} means channels are in phase.
21231
21232 The filter accepts the following options, all related to its video output:
21233
21234 @table @option
21235 @item rate, r
21236 Set the output frame rate. Default value is @code{25}.
21237
21238 @item size, s
21239 Set the video size for the output. For the syntax of this option, check the
21240 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21241 Default value is @code{800x400}.
21242
21243 @item rc
21244 @item gc
21245 @item bc
21246 Specify the red, green, blue contrast. Default values are @code{2},
21247 @code{7} and @code{1}.
21248 Allowed range is @code{[0, 255]}.
21249
21250 @item mpc
21251 Set color which will be used for drawing median phase. If color is
21252 @code{none} which is default, no median phase value will be drawn.
21253
21254 @item video
21255 Enable video output. Default is enabled.
21256 @end table
21257
21258 @section avectorscope
21259
21260 Convert input audio to a video output, representing the audio vector
21261 scope.
21262
21263 The filter is used to measure the difference between channels of stereo
21264 audio stream. A monoaural signal, consisting of identical left and right
21265 signal, results in straight vertical line. Any stereo separation is visible
21266 as a deviation from this line, creating a Lissajous figure.
21267 If the straight (or deviation from it) but horizontal line appears this
21268 indicates that the left and right channels are out of phase.
21269
21270 The filter accepts the following options:
21271
21272 @table @option
21273 @item mode, m
21274 Set the vectorscope mode.
21275
21276 Available values are:
21277 @table @samp
21278 @item lissajous
21279 Lissajous rotated by 45 degrees.
21280
21281 @item lissajous_xy
21282 Same as above but not rotated.
21283
21284 @item polar
21285 Shape resembling half of circle.
21286 @end table
21287
21288 Default value is @samp{lissajous}.
21289
21290 @item size, s
21291 Set the video size for the output. For the syntax of this option, check the
21292 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21293 Default value is @code{400x400}.
21294
21295 @item rate, r
21296 Set the output frame rate. Default value is @code{25}.
21297
21298 @item rc
21299 @item gc
21300 @item bc
21301 @item ac
21302 Specify the red, green, blue and alpha contrast. Default values are @code{40},
21303 @code{160}, @code{80} and @code{255}.
21304 Allowed range is @code{[0, 255]}.
21305
21306 @item rf
21307 @item gf
21308 @item bf
21309 @item af
21310 Specify the red, green, blue and alpha fade. Default values are @code{15},
21311 @code{10}, @code{5} and @code{5}.
21312 Allowed range is @code{[0, 255]}.
21313
21314 @item zoom
21315 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
21316 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
21317
21318 @item draw
21319 Set the vectorscope drawing mode.
21320
21321 Available values are:
21322 @table @samp
21323 @item dot
21324 Draw dot for each sample.
21325
21326 @item line
21327 Draw line between previous and current sample.
21328 @end table
21329
21330 Default value is @samp{dot}.
21331
21332 @item scale
21333 Specify amplitude scale of audio samples.
21334
21335 Available values are:
21336 @table @samp
21337 @item lin
21338 Linear.
21339
21340 @item sqrt
21341 Square root.
21342
21343 @item cbrt
21344 Cubic root.
21345
21346 @item log
21347 Logarithmic.
21348 @end table
21349
21350 @item swap
21351 Swap left channel axis with right channel axis.
21352
21353 @item mirror
21354 Mirror axis.
21355
21356 @table @samp
21357 @item none
21358 No mirror.
21359
21360 @item x
21361 Mirror only x axis.
21362
21363 @item y
21364 Mirror only y axis.
21365
21366 @item xy
21367 Mirror both axis.
21368 @end table
21369
21370 @end table
21371
21372 @subsection Examples
21373
21374 @itemize
21375 @item
21376 Complete example using @command{ffplay}:
21377 @example
21378 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
21379              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
21380 @end example
21381 @end itemize
21382
21383 @section bench, abench
21384
21385 Benchmark part of a filtergraph.
21386
21387 The filter accepts the following options:
21388
21389 @table @option
21390 @item action
21391 Start or stop a timer.
21392
21393 Available values are:
21394 @table @samp
21395 @item start
21396 Get the current time, set it as frame metadata (using the key
21397 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
21398
21399 @item stop
21400 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
21401 the input frame metadata to get the time difference. Time difference, average,
21402 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
21403 @code{min}) are then printed. The timestamps are expressed in seconds.
21404 @end table
21405 @end table
21406
21407 @subsection Examples
21408
21409 @itemize
21410 @item
21411 Benchmark @ref{selectivecolor} filter:
21412 @example
21413 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
21414 @end example
21415 @end itemize
21416
21417 @section concat
21418
21419 Concatenate audio and video streams, joining them together one after the
21420 other.
21421
21422 The filter works on segments of synchronized video and audio streams. All
21423 segments must have the same number of streams of each type, and that will
21424 also be the number of streams at output.
21425
21426 The filter accepts the following options:
21427
21428 @table @option
21429
21430 @item n
21431 Set the number of segments. Default is 2.
21432
21433 @item v
21434 Set the number of output video streams, that is also the number of video
21435 streams in each segment. Default is 1.
21436
21437 @item a
21438 Set the number of output audio streams, that is also the number of audio
21439 streams in each segment. Default is 0.
21440
21441 @item unsafe
21442 Activate unsafe mode: do not fail if segments have a different format.
21443
21444 @end table
21445
21446 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
21447 @var{a} audio outputs.
21448
21449 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
21450 segment, in the same order as the outputs, then the inputs for the second
21451 segment, etc.
21452
21453 Related streams do not always have exactly the same duration, for various
21454 reasons including codec frame size or sloppy authoring. For that reason,
21455 related synchronized streams (e.g. a video and its audio track) should be
21456 concatenated at once. The concat filter will use the duration of the longest
21457 stream in each segment (except the last one), and if necessary pad shorter
21458 audio streams with silence.
21459
21460 For this filter to work correctly, all segments must start at timestamp 0.
21461
21462 All corresponding streams must have the same parameters in all segments; the
21463 filtering system will automatically select a common pixel format for video
21464 streams, and a common sample format, sample rate and channel layout for
21465 audio streams, but other settings, such as resolution, must be converted
21466 explicitly by the user.
21467
21468 Different frame rates are acceptable but will result in variable frame rate
21469 at output; be sure to configure the output file to handle it.
21470
21471 @subsection Examples
21472
21473 @itemize
21474 @item
21475 Concatenate an opening, an episode and an ending, all in bilingual version
21476 (video in stream 0, audio in streams 1 and 2):
21477 @example
21478 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
21479   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
21480    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
21481   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
21482 @end example
21483
21484 @item
21485 Concatenate two parts, handling audio and video separately, using the
21486 (a)movie sources, and adjusting the resolution:
21487 @example
21488 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
21489 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
21490 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
21491 @end example
21492 Note that a desync will happen at the stitch if the audio and video streams
21493 do not have exactly the same duration in the first file.
21494
21495 @end itemize
21496
21497 @subsection Commands
21498
21499 This filter supports the following commands:
21500 @table @option
21501 @item next
21502 Close the current segment and step to the next one
21503 @end table
21504
21505 @section drawgraph, adrawgraph
21506
21507 Draw a graph using input video or audio metadata.
21508
21509 It accepts the following parameters:
21510
21511 @table @option
21512 @item m1
21513 Set 1st frame metadata key from which metadata values will be used to draw a graph.
21514
21515 @item fg1
21516 Set 1st foreground color expression.
21517
21518 @item m2
21519 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
21520
21521 @item fg2
21522 Set 2nd foreground color expression.
21523
21524 @item m3
21525 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
21526
21527 @item fg3
21528 Set 3rd foreground color expression.
21529
21530 @item m4
21531 Set 4th frame metadata key from which metadata values will be used to draw a graph.
21532
21533 @item fg4
21534 Set 4th foreground color expression.
21535
21536 @item min
21537 Set minimal value of metadata value.
21538
21539 @item max
21540 Set maximal value of metadata value.
21541
21542 @item bg
21543 Set graph background color. Default is white.
21544
21545 @item mode
21546 Set graph mode.
21547
21548 Available values for mode is:
21549 @table @samp
21550 @item bar
21551 @item dot
21552 @item line
21553 @end table
21554
21555 Default is @code{line}.
21556
21557 @item slide
21558 Set slide mode.
21559
21560 Available values for slide is:
21561 @table @samp
21562 @item frame
21563 Draw new frame when right border is reached.
21564
21565 @item replace
21566 Replace old columns with new ones.
21567
21568 @item scroll
21569 Scroll from right to left.
21570
21571 @item rscroll
21572 Scroll from left to right.
21573
21574 @item picture
21575 Draw single picture.
21576 @end table
21577
21578 Default is @code{frame}.
21579
21580 @item size
21581 Set size of graph video. For the syntax of this option, check the
21582 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21583 The default value is @code{900x256}.
21584
21585 The foreground color expressions can use the following variables:
21586 @table @option
21587 @item MIN
21588 Minimal value of metadata value.
21589
21590 @item MAX
21591 Maximal value of metadata value.
21592
21593 @item VAL
21594 Current metadata key value.
21595 @end table
21596
21597 The color is defined as 0xAABBGGRR.
21598 @end table
21599
21600 Example using metadata from @ref{signalstats} filter:
21601 @example
21602 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
21603 @end example
21604
21605 Example using metadata from @ref{ebur128} filter:
21606 @example
21607 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
21608 @end example
21609
21610 @anchor{ebur128}
21611 @section ebur128
21612
21613 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
21614 level. By default, it logs a message at a frequency of 10Hz with the
21615 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
21616 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
21617
21618 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
21619 sample format is double-precision floating point. The input stream will be converted to
21620 this specification, if needed. Users may need to insert aformat and/or aresample filters
21621 after this filter to obtain the original parameters.
21622
21623 The filter also has a video output (see the @var{video} option) with a real
21624 time graph to observe the loudness evolution. The graphic contains the logged
21625 message mentioned above, so it is not printed anymore when this option is set,
21626 unless the verbose logging is set. The main graphing area contains the
21627 short-term loudness (3 seconds of analysis), and the gauge on the right is for
21628 the momentary loudness (400 milliseconds), but can optionally be configured
21629 to instead display short-term loudness (see @var{gauge}).
21630
21631 The green area marks a  +/- 1LU target range around the target loudness
21632 (-23LUFS by default, unless modified through @var{target}).
21633
21634 More information about the Loudness Recommendation EBU R128 on
21635 @url{http://tech.ebu.ch/loudness}.
21636
21637 The filter accepts the following options:
21638
21639 @table @option
21640
21641 @item video
21642 Activate the video output. The audio stream is passed unchanged whether this
21643 option is set or no. The video stream will be the first output stream if
21644 activated. Default is @code{0}.
21645
21646 @item size
21647 Set the video size. This option is for video only. For the syntax of this
21648 option, check the
21649 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21650 Default and minimum resolution is @code{640x480}.
21651
21652 @item meter
21653 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
21654 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
21655 other integer value between this range is allowed.
21656
21657 @item metadata
21658 Set metadata injection. If set to @code{1}, the audio input will be segmented
21659 into 100ms output frames, each of them containing various loudness information
21660 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
21661
21662 Default is @code{0}.
21663
21664 @item framelog
21665 Force the frame logging level.
21666
21667 Available values are:
21668 @table @samp
21669 @item info
21670 information logging level
21671 @item verbose
21672 verbose logging level
21673 @end table
21674
21675 By default, the logging level is set to @var{info}. If the @option{video} or
21676 the @option{metadata} options are set, it switches to @var{verbose}.
21677
21678 @item peak
21679 Set peak mode(s).
21680
21681 Available modes can be cumulated (the option is a @code{flag} type). Possible
21682 values are:
21683 @table @samp
21684 @item none
21685 Disable any peak mode (default).
21686 @item sample
21687 Enable sample-peak mode.
21688
21689 Simple peak mode looking for the higher sample value. It logs a message
21690 for sample-peak (identified by @code{SPK}).
21691 @item true
21692 Enable true-peak mode.
21693
21694 If enabled, the peak lookup is done on an over-sampled version of the input
21695 stream for better peak accuracy. It logs a message for true-peak.
21696 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
21697 This mode requires a build with @code{libswresample}.
21698 @end table
21699
21700 @item dualmono
21701 Treat mono input files as "dual mono". If a mono file is intended for playback
21702 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
21703 If set to @code{true}, this option will compensate for this effect.
21704 Multi-channel input files are not affected by this option.
21705
21706 @item panlaw
21707 Set a specific pan law to be used for the measurement of dual mono files.
21708 This parameter is optional, and has a default value of -3.01dB.
21709
21710 @item target
21711 Set a specific target level (in LUFS) used as relative zero in the visualization.
21712 This parameter is optional and has a default value of -23LUFS as specified
21713 by EBU R128. However, material published online may prefer a level of -16LUFS
21714 (e.g. for use with podcasts or video platforms).
21715
21716 @item gauge
21717 Set the value displayed by the gauge. Valid values are @code{momentary} and s
21718 @code{shortterm}. By default the momentary value will be used, but in certain
21719 scenarios it may be more useful to observe the short term value instead (e.g.
21720 live mixing).
21721
21722 @item scale
21723 Sets the display scale for the loudness. Valid parameters are @code{absolute}
21724 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
21725 video output, not the summary or continuous log output.
21726 @end table
21727
21728 @subsection Examples
21729
21730 @itemize
21731 @item
21732 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
21733 @example
21734 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
21735 @end example
21736
21737 @item
21738 Run an analysis with @command{ffmpeg}:
21739 @example
21740 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
21741 @end example
21742 @end itemize
21743
21744 @section interleave, ainterleave
21745
21746 Temporally interleave frames from several inputs.
21747
21748 @code{interleave} works with video inputs, @code{ainterleave} with audio.
21749
21750 These filters read frames from several inputs and send the oldest
21751 queued frame to the output.
21752
21753 Input streams must have well defined, monotonically increasing frame
21754 timestamp values.
21755
21756 In order to submit one frame to output, these filters need to enqueue
21757 at least one frame for each input, so they cannot work in case one
21758 input is not yet terminated and will not receive incoming frames.
21759
21760 For example consider the case when one input is a @code{select} filter
21761 which always drops input frames. The @code{interleave} filter will keep
21762 reading from that input, but it will never be able to send new frames
21763 to output until the input sends an end-of-stream signal.
21764
21765 Also, depending on inputs synchronization, the filters will drop
21766 frames in case one input receives more frames than the other ones, and
21767 the queue is already filled.
21768
21769 These filters accept the following options:
21770
21771 @table @option
21772 @item nb_inputs, n
21773 Set the number of different inputs, it is 2 by default.
21774 @end table
21775
21776 @subsection Examples
21777
21778 @itemize
21779 @item
21780 Interleave frames belonging to different streams using @command{ffmpeg}:
21781 @example
21782 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
21783 @end example
21784
21785 @item
21786 Add flickering blur effect:
21787 @example
21788 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
21789 @end example
21790 @end itemize
21791
21792 @section metadata, ametadata
21793
21794 Manipulate frame metadata.
21795
21796 This filter accepts the following options:
21797
21798 @table @option
21799 @item mode
21800 Set mode of operation of the filter.
21801
21802 Can be one of the following:
21803
21804 @table @samp
21805 @item select
21806 If both @code{value} and @code{key} is set, select frames
21807 which have such metadata. If only @code{key} is set, select
21808 every frame that has such key in metadata.
21809
21810 @item add
21811 Add new metadata @code{key} and @code{value}. If key is already available
21812 do nothing.
21813
21814 @item modify
21815 Modify value of already present key.
21816
21817 @item delete
21818 If @code{value} is set, delete only keys that have such value.
21819 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
21820 the frame.
21821
21822 @item print
21823 Print key and its value if metadata was found. If @code{key} is not set print all
21824 metadata values available in frame.
21825 @end table
21826
21827 @item key
21828 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
21829
21830 @item value
21831 Set metadata value which will be used. This option is mandatory for
21832 @code{modify} and @code{add} mode.
21833
21834 @item function
21835 Which function to use when comparing metadata value and @code{value}.
21836
21837 Can be one of following:
21838
21839 @table @samp
21840 @item same_str
21841 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
21842
21843 @item starts_with
21844 Values are interpreted as strings, returns true if metadata value starts with
21845 the @code{value} option string.
21846
21847 @item less
21848 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
21849
21850 @item equal
21851 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
21852
21853 @item greater
21854 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
21855
21856 @item expr
21857 Values are interpreted as floats, returns true if expression from option @code{expr}
21858 evaluates to true.
21859
21860 @item ends_with
21861 Values are interpreted as strings, returns true if metadata value ends with
21862 the @code{value} option string.
21863 @end table
21864
21865 @item expr
21866 Set expression which is used when @code{function} is set to @code{expr}.
21867 The expression is evaluated through the eval API and can contain the following
21868 constants:
21869
21870 @table @option
21871 @item VALUE1
21872 Float representation of @code{value} from metadata key.
21873
21874 @item VALUE2
21875 Float representation of @code{value} as supplied by user in @code{value} option.
21876 @end table
21877
21878 @item file
21879 If specified in @code{print} mode, output is written to the named file. Instead of
21880 plain filename any writable url can be specified. Filename ``-'' is a shorthand
21881 for standard output. If @code{file} option is not set, output is written to the log
21882 with AV_LOG_INFO loglevel.
21883
21884 @end table
21885
21886 @subsection Examples
21887
21888 @itemize
21889 @item
21890 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
21891 between 0 and 1.
21892 @example
21893 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
21894 @end example
21895 @item
21896 Print silencedetect output to file @file{metadata.txt}.
21897 @example
21898 silencedetect,ametadata=mode=print:file=metadata.txt
21899 @end example
21900 @item
21901 Direct all metadata to a pipe with file descriptor 4.
21902 @example
21903 metadata=mode=print:file='pipe\:4'
21904 @end example
21905 @end itemize
21906
21907 @section perms, aperms
21908
21909 Set read/write permissions for the output frames.
21910
21911 These filters are mainly aimed at developers to test direct path in the
21912 following filter in the filtergraph.
21913
21914 The filters accept the following options:
21915
21916 @table @option
21917 @item mode
21918 Select the permissions mode.
21919
21920 It accepts the following values:
21921 @table @samp
21922 @item none
21923 Do nothing. This is the default.
21924 @item ro
21925 Set all the output frames read-only.
21926 @item rw
21927 Set all the output frames directly writable.
21928 @item toggle
21929 Make the frame read-only if writable, and writable if read-only.
21930 @item random
21931 Set each output frame read-only or writable randomly.
21932 @end table
21933
21934 @item seed
21935 Set the seed for the @var{random} mode, must be an integer included between
21936 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
21937 @code{-1}, the filter will try to use a good random seed on a best effort
21938 basis.
21939 @end table
21940
21941 Note: in case of auto-inserted filter between the permission filter and the
21942 following one, the permission might not be received as expected in that
21943 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
21944 perms/aperms filter can avoid this problem.
21945
21946 @section realtime, arealtime
21947
21948 Slow down filtering to match real time approximately.
21949
21950 These filters will pause the filtering for a variable amount of time to
21951 match the output rate with the input timestamps.
21952 They are similar to the @option{re} option to @code{ffmpeg}.
21953
21954 They accept the following options:
21955
21956 @table @option
21957 @item limit
21958 Time limit for the pauses. Any pause longer than that will be considered
21959 a timestamp discontinuity and reset the timer. Default is 2 seconds.
21960 @item speed
21961 Speed factor for processing. The value must be a float larger than zero.
21962 Values larger than 1.0 will result in faster than realtime processing,
21963 smaller will slow processing down. The @var{limit} is automatically adapted
21964 accordingly. Default is 1.0.
21965
21966 A processing speed faster than what is possible without these filters cannot
21967 be achieved.
21968 @end table
21969
21970 @anchor{select}
21971 @section select, aselect
21972
21973 Select frames to pass in output.
21974
21975 This filter accepts the following options:
21976
21977 @table @option
21978
21979 @item expr, e
21980 Set expression, which is evaluated for each input frame.
21981
21982 If the expression is evaluated to zero, the frame is discarded.
21983
21984 If the evaluation result is negative or NaN, the frame is sent to the
21985 first output; otherwise it is sent to the output with index
21986 @code{ceil(val)-1}, assuming that the input index starts from 0.
21987
21988 For example a value of @code{1.2} corresponds to the output with index
21989 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
21990
21991 @item outputs, n
21992 Set the number of outputs. The output to which to send the selected
21993 frame is based on the result of the evaluation. Default value is 1.
21994 @end table
21995
21996 The expression can contain the following constants:
21997
21998 @table @option
21999 @item n
22000 The (sequential) number of the filtered frame, starting from 0.
22001
22002 @item selected_n
22003 The (sequential) number of the selected frame, starting from 0.
22004
22005 @item prev_selected_n
22006 The sequential number of the last selected frame. It's NAN if undefined.
22007
22008 @item TB
22009 The timebase of the input timestamps.
22010
22011 @item pts
22012 The PTS (Presentation TimeStamp) of the filtered video frame,
22013 expressed in @var{TB} units. It's NAN if undefined.
22014
22015 @item t
22016 The PTS of the filtered video frame,
22017 expressed in seconds. It's NAN if undefined.
22018
22019 @item prev_pts
22020 The PTS of the previously filtered video frame. It's NAN if undefined.
22021
22022 @item prev_selected_pts
22023 The PTS of the last previously filtered video frame. It's NAN if undefined.
22024
22025 @item prev_selected_t
22026 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
22027
22028 @item start_pts
22029 The PTS of the first video frame in the video. It's NAN if undefined.
22030
22031 @item start_t
22032 The time of the first video frame in the video. It's NAN if undefined.
22033
22034 @item pict_type @emph{(video only)}
22035 The type of the filtered frame. It can assume one of the following
22036 values:
22037 @table @option
22038 @item I
22039 @item P
22040 @item B
22041 @item S
22042 @item SI
22043 @item SP
22044 @item BI
22045 @end table
22046
22047 @item interlace_type @emph{(video only)}
22048 The frame interlace type. It can assume one of the following values:
22049 @table @option
22050 @item PROGRESSIVE
22051 The frame is progressive (not interlaced).
22052 @item TOPFIRST
22053 The frame is top-field-first.
22054 @item BOTTOMFIRST
22055 The frame is bottom-field-first.
22056 @end table
22057
22058 @item consumed_sample_n @emph{(audio only)}
22059 the number of selected samples before the current frame
22060
22061 @item samples_n @emph{(audio only)}
22062 the number of samples in the current frame
22063
22064 @item sample_rate @emph{(audio only)}
22065 the input sample rate
22066
22067 @item key
22068 This is 1 if the filtered frame is a key-frame, 0 otherwise.
22069
22070 @item pos
22071 the position in the file of the filtered frame, -1 if the information
22072 is not available (e.g. for synthetic video)
22073
22074 @item scene @emph{(video only)}
22075 value between 0 and 1 to indicate a new scene; a low value reflects a low
22076 probability for the current frame to introduce a new scene, while a higher
22077 value means the current frame is more likely to be one (see the example below)
22078
22079 @item concatdec_select
22080 The concat demuxer can select only part of a concat input file by setting an
22081 inpoint and an outpoint, but the output packets may not be entirely contained
22082 in the selected interval. By using this variable, it is possible to skip frames
22083 generated by the concat demuxer which are not exactly contained in the selected
22084 interval.
22085
22086 This works by comparing the frame pts against the @var{lavf.concat.start_time}
22087 and the @var{lavf.concat.duration} packet metadata values which are also
22088 present in the decoded frames.
22089
22090 The @var{concatdec_select} variable is -1 if the frame pts is at least
22091 start_time and either the duration metadata is missing or the frame pts is less
22092 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
22093 missing.
22094
22095 That basically means that an input frame is selected if its pts is within the
22096 interval set by the concat demuxer.
22097
22098 @end table
22099
22100 The default value of the select expression is "1".
22101
22102 @subsection Examples
22103
22104 @itemize
22105 @item
22106 Select all frames in input:
22107 @example
22108 select
22109 @end example
22110
22111 The example above is the same as:
22112 @example
22113 select=1
22114 @end example
22115
22116 @item
22117 Skip all frames:
22118 @example
22119 select=0
22120 @end example
22121
22122 @item
22123 Select only I-frames:
22124 @example
22125 select='eq(pict_type\,I)'
22126 @end example
22127
22128 @item
22129 Select one frame every 100:
22130 @example
22131 select='not(mod(n\,100))'
22132 @end example
22133
22134 @item
22135 Select only frames contained in the 10-20 time interval:
22136 @example
22137 select=between(t\,10\,20)
22138 @end example
22139
22140 @item
22141 Select only I-frames contained in the 10-20 time interval:
22142 @example
22143 select=between(t\,10\,20)*eq(pict_type\,I)
22144 @end example
22145
22146 @item
22147 Select frames with a minimum distance of 10 seconds:
22148 @example
22149 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
22150 @end example
22151
22152 @item
22153 Use aselect to select only audio frames with samples number > 100:
22154 @example
22155 aselect='gt(samples_n\,100)'
22156 @end example
22157
22158 @item
22159 Create a mosaic of the first scenes:
22160 @example
22161 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
22162 @end example
22163
22164 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
22165 choice.
22166
22167 @item
22168 Send even and odd frames to separate outputs, and compose them:
22169 @example
22170 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
22171 @end example
22172
22173 @item
22174 Select useful frames from an ffconcat file which is using inpoints and
22175 outpoints but where the source files are not intra frame only.
22176 @example
22177 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
22178 @end example
22179 @end itemize
22180
22181 @section sendcmd, asendcmd
22182
22183 Send commands to filters in the filtergraph.
22184
22185 These filters read commands to be sent to other filters in the
22186 filtergraph.
22187
22188 @code{sendcmd} must be inserted between two video filters,
22189 @code{asendcmd} must be inserted between two audio filters, but apart
22190 from that they act the same way.
22191
22192 The specification of commands can be provided in the filter arguments
22193 with the @var{commands} option, or in a file specified by the
22194 @var{filename} option.
22195
22196 These filters accept the following options:
22197 @table @option
22198 @item commands, c
22199 Set the commands to be read and sent to the other filters.
22200 @item filename, f
22201 Set the filename of the commands to be read and sent to the other
22202 filters.
22203 @end table
22204
22205 @subsection Commands syntax
22206
22207 A commands description consists of a sequence of interval
22208 specifications, comprising a list of commands to be executed when a
22209 particular event related to that interval occurs. The occurring event
22210 is typically the current frame time entering or leaving a given time
22211 interval.
22212
22213 An interval is specified by the following syntax:
22214 @example
22215 @var{START}[-@var{END}] @var{COMMANDS};
22216 @end example
22217
22218 The time interval is specified by the @var{START} and @var{END} times.
22219 @var{END} is optional and defaults to the maximum time.
22220
22221 The current frame time is considered within the specified interval if
22222 it is included in the interval [@var{START}, @var{END}), that is when
22223 the time is greater or equal to @var{START} and is lesser than
22224 @var{END}.
22225
22226 @var{COMMANDS} consists of a sequence of one or more command
22227 specifications, separated by ",", relating to that interval.  The
22228 syntax of a command specification is given by:
22229 @example
22230 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
22231 @end example
22232
22233 @var{FLAGS} is optional and specifies the type of events relating to
22234 the time interval which enable sending the specified command, and must
22235 be a non-null sequence of identifier flags separated by "+" or "|" and
22236 enclosed between "[" and "]".
22237
22238 The following flags are recognized:
22239 @table @option
22240 @item enter
22241 The command is sent when the current frame timestamp enters the
22242 specified interval. In other words, the command is sent when the
22243 previous frame timestamp was not in the given interval, and the
22244 current is.
22245
22246 @item leave
22247 The command is sent when the current frame timestamp leaves the
22248 specified interval. In other words, the command is sent when the
22249 previous frame timestamp was in the given interval, and the
22250 current is not.
22251 @end table
22252
22253 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
22254 assumed.
22255
22256 @var{TARGET} specifies the target of the command, usually the name of
22257 the filter class or a specific filter instance name.
22258
22259 @var{COMMAND} specifies the name of the command for the target filter.
22260
22261 @var{ARG} is optional and specifies the optional list of argument for
22262 the given @var{COMMAND}.
22263
22264 Between one interval specification and another, whitespaces, or
22265 sequences of characters starting with @code{#} until the end of line,
22266 are ignored and can be used to annotate comments.
22267
22268 A simplified BNF description of the commands specification syntax
22269 follows:
22270 @example
22271 @var{COMMAND_FLAG}  ::= "enter" | "leave"
22272 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
22273 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
22274 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
22275 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
22276 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
22277 @end example
22278
22279 @subsection Examples
22280
22281 @itemize
22282 @item
22283 Specify audio tempo change at second 4:
22284 @example
22285 asendcmd=c='4.0 atempo tempo 1.5',atempo
22286 @end example
22287
22288 @item
22289 Target a specific filter instance:
22290 @example
22291 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
22292 @end example
22293
22294 @item
22295 Specify a list of drawtext and hue commands in a file.
22296 @example
22297 # show text in the interval 5-10
22298 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
22299          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
22300
22301 # desaturate the image in the interval 15-20
22302 15.0-20.0 [enter] hue s 0,
22303           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
22304           [leave] hue s 1,
22305           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
22306
22307 # apply an exponential saturation fade-out effect, starting from time 25
22308 25 [enter] hue s exp(25-t)
22309 @end example
22310
22311 A filtergraph allowing to read and process the above command list
22312 stored in a file @file{test.cmd}, can be specified with:
22313 @example
22314 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
22315 @end example
22316 @end itemize
22317
22318 @anchor{setpts}
22319 @section setpts, asetpts
22320
22321 Change the PTS (presentation timestamp) of the input frames.
22322
22323 @code{setpts} works on video frames, @code{asetpts} on audio frames.
22324
22325 This filter accepts the following options:
22326
22327 @table @option
22328
22329 @item expr
22330 The expression which is evaluated for each frame to construct its timestamp.
22331
22332 @end table
22333
22334 The expression is evaluated through the eval API and can contain the following
22335 constants:
22336
22337 @table @option
22338 @item FRAME_RATE, FR
22339 frame rate, only defined for constant frame-rate video
22340
22341 @item PTS
22342 The presentation timestamp in input
22343
22344 @item N
22345 The count of the input frame for video or the number of consumed samples,
22346 not including the current frame for audio, starting from 0.
22347
22348 @item NB_CONSUMED_SAMPLES
22349 The number of consumed samples, not including the current frame (only
22350 audio)
22351
22352 @item NB_SAMPLES, S
22353 The number of samples in the current frame (only audio)
22354
22355 @item SAMPLE_RATE, SR
22356 The audio sample rate.
22357
22358 @item STARTPTS
22359 The PTS of the first frame.
22360
22361 @item STARTT
22362 the time in seconds of the first frame
22363
22364 @item INTERLACED
22365 State whether the current frame is interlaced.
22366
22367 @item T
22368 the time in seconds of the current frame
22369
22370 @item POS
22371 original position in the file of the frame, or undefined if undefined
22372 for the current frame
22373
22374 @item PREV_INPTS
22375 The previous input PTS.
22376
22377 @item PREV_INT
22378 previous input time in seconds
22379
22380 @item PREV_OUTPTS
22381 The previous output PTS.
22382
22383 @item PREV_OUTT
22384 previous output time in seconds
22385
22386 @item RTCTIME
22387 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
22388 instead.
22389
22390 @item RTCSTART
22391 The wallclock (RTC) time at the start of the movie in microseconds.
22392
22393 @item TB
22394 The timebase of the input timestamps.
22395
22396 @end table
22397
22398 @subsection Examples
22399
22400 @itemize
22401 @item
22402 Start counting PTS from zero
22403 @example
22404 setpts=PTS-STARTPTS
22405 @end example
22406
22407 @item
22408 Apply fast motion effect:
22409 @example
22410 setpts=0.5*PTS
22411 @end example
22412
22413 @item
22414 Apply slow motion effect:
22415 @example
22416 setpts=2.0*PTS
22417 @end example
22418
22419 @item
22420 Set fixed rate of 25 frames per second:
22421 @example
22422 setpts=N/(25*TB)
22423 @end example
22424
22425 @item
22426 Set fixed rate 25 fps with some jitter:
22427 @example
22428 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
22429 @end example
22430
22431 @item
22432 Apply an offset of 10 seconds to the input PTS:
22433 @example
22434 setpts=PTS+10/TB
22435 @end example
22436
22437 @item
22438 Generate timestamps from a "live source" and rebase onto the current timebase:
22439 @example
22440 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
22441 @end example
22442
22443 @item
22444 Generate timestamps by counting samples:
22445 @example
22446 asetpts=N/SR/TB
22447 @end example
22448
22449 @end itemize
22450
22451 @section setrange
22452
22453 Force color range for the output video frame.
22454
22455 The @code{setrange} filter marks the color range property for the
22456 output frames. It does not change the input frame, but only sets the
22457 corresponding property, which affects how the frame is treated by
22458 following filters.
22459
22460 The filter accepts the following options:
22461
22462 @table @option
22463
22464 @item range
22465 Available values are:
22466
22467 @table @samp
22468 @item auto
22469 Keep the same color range property.
22470
22471 @item unspecified, unknown
22472 Set the color range as unspecified.
22473
22474 @item limited, tv, mpeg
22475 Set the color range as limited.
22476
22477 @item full, pc, jpeg
22478 Set the color range as full.
22479 @end table
22480 @end table
22481
22482 @section settb, asettb
22483
22484 Set the timebase to use for the output frames timestamps.
22485 It is mainly useful for testing timebase configuration.
22486
22487 It accepts the following parameters:
22488
22489 @table @option
22490
22491 @item expr, tb
22492 The expression which is evaluated into the output timebase.
22493
22494 @end table
22495
22496 The value for @option{tb} is an arithmetic expression representing a
22497 rational. The expression can contain the constants "AVTB" (the default
22498 timebase), "intb" (the input timebase) and "sr" (the sample rate,
22499 audio only). Default value is "intb".
22500
22501 @subsection Examples
22502
22503 @itemize
22504 @item
22505 Set the timebase to 1/25:
22506 @example
22507 settb=expr=1/25
22508 @end example
22509
22510 @item
22511 Set the timebase to 1/10:
22512 @example
22513 settb=expr=0.1
22514 @end example
22515
22516 @item
22517 Set the timebase to 1001/1000:
22518 @example
22519 settb=1+0.001
22520 @end example
22521
22522 @item
22523 Set the timebase to 2*intb:
22524 @example
22525 settb=2*intb
22526 @end example
22527
22528 @item
22529 Set the default timebase value:
22530 @example
22531 settb=AVTB
22532 @end example
22533 @end itemize
22534
22535 @section showcqt
22536 Convert input audio to a video output representing frequency spectrum
22537 logarithmically using Brown-Puckette constant Q transform algorithm with
22538 direct frequency domain coefficient calculation (but the transform itself
22539 is not really constant Q, instead the Q factor is actually variable/clamped),
22540 with musical tone scale, from E0 to D#10.
22541
22542 The filter accepts the following options:
22543
22544 @table @option
22545 @item size, s
22546 Specify the video size for the output. It must be even. For the syntax of this option,
22547 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22548 Default value is @code{1920x1080}.
22549
22550 @item fps, rate, r
22551 Set the output frame rate. Default value is @code{25}.
22552
22553 @item bar_h
22554 Set the bargraph height. It must be even. Default value is @code{-1} which
22555 computes the bargraph height automatically.
22556
22557 @item axis_h
22558 Set the axis height. It must be even. Default value is @code{-1} which computes
22559 the axis height automatically.
22560
22561 @item sono_h
22562 Set the sonogram height. It must be even. Default value is @code{-1} which
22563 computes the sonogram height automatically.
22564
22565 @item fullhd
22566 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
22567 instead. Default value is @code{1}.
22568
22569 @item sono_v, volume
22570 Specify the sonogram volume expression. It can contain variables:
22571 @table @option
22572 @item bar_v
22573 the @var{bar_v} evaluated expression
22574 @item frequency, freq, f
22575 the frequency where it is evaluated
22576 @item timeclamp, tc
22577 the value of @var{timeclamp} option
22578 @end table
22579 and functions:
22580 @table @option
22581 @item a_weighting(f)
22582 A-weighting of equal loudness
22583 @item b_weighting(f)
22584 B-weighting of equal loudness
22585 @item c_weighting(f)
22586 C-weighting of equal loudness.
22587 @end table
22588 Default value is @code{16}.
22589
22590 @item bar_v, volume2
22591 Specify the bargraph volume expression. It can contain variables:
22592 @table @option
22593 @item sono_v
22594 the @var{sono_v} evaluated expression
22595 @item frequency, freq, f
22596 the frequency where it is evaluated
22597 @item timeclamp, tc
22598 the value of @var{timeclamp} option
22599 @end table
22600 and functions:
22601 @table @option
22602 @item a_weighting(f)
22603 A-weighting of equal loudness
22604 @item b_weighting(f)
22605 B-weighting of equal loudness
22606 @item c_weighting(f)
22607 C-weighting of equal loudness.
22608 @end table
22609 Default value is @code{sono_v}.
22610
22611 @item sono_g, gamma
22612 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
22613 higher gamma makes the spectrum having more range. Default value is @code{3}.
22614 Acceptable range is @code{[1, 7]}.
22615
22616 @item bar_g, gamma2
22617 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
22618 @code{[1, 7]}.
22619
22620 @item bar_t
22621 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
22622 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
22623
22624 @item timeclamp, tc
22625 Specify the transform timeclamp. At low frequency, there is trade-off between
22626 accuracy in time domain and frequency domain. If timeclamp is lower,
22627 event in time domain is represented more accurately (such as fast bass drum),
22628 otherwise event in frequency domain is represented more accurately
22629 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
22630
22631 @item attack
22632 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
22633 limits future samples by applying asymmetric windowing in time domain, useful
22634 when low latency is required. Accepted range is @code{[0, 1]}.
22635
22636 @item basefreq
22637 Specify the transform base frequency. Default value is @code{20.01523126408007475},
22638 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
22639
22640 @item endfreq
22641 Specify the transform end frequency. Default value is @code{20495.59681441799654},
22642 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
22643
22644 @item coeffclamp
22645 This option is deprecated and ignored.
22646
22647 @item tlength
22648 Specify the transform length in time domain. Use this option to control accuracy
22649 trade-off between time domain and frequency domain at every frequency sample.
22650 It can contain variables:
22651 @table @option
22652 @item frequency, freq, f
22653 the frequency where it is evaluated
22654 @item timeclamp, tc
22655 the value of @var{timeclamp} option.
22656 @end table
22657 Default value is @code{384*tc/(384+tc*f)}.
22658
22659 @item count
22660 Specify the transform count for every video frame. Default value is @code{6}.
22661 Acceptable range is @code{[1, 30]}.
22662
22663 @item fcount
22664 Specify the transform count for every single pixel. Default value is @code{0},
22665 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
22666
22667 @item fontfile
22668 Specify font file for use with freetype to draw the axis. If not specified,
22669 use embedded font. Note that drawing with font file or embedded font is not
22670 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
22671 option instead.
22672
22673 @item font
22674 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
22675 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
22676 escaping.
22677
22678 @item fontcolor
22679 Specify font color expression. This is arithmetic expression that should return
22680 integer value 0xRRGGBB. It can contain variables:
22681 @table @option
22682 @item frequency, freq, f
22683 the frequency where it is evaluated
22684 @item timeclamp, tc
22685 the value of @var{timeclamp} option
22686 @end table
22687 and functions:
22688 @table @option
22689 @item midi(f)
22690 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
22691 @item r(x), g(x), b(x)
22692 red, green, and blue value of intensity x.
22693 @end table
22694 Default value is @code{st(0, (midi(f)-59.5)/12);
22695 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
22696 r(1-ld(1)) + b(ld(1))}.
22697
22698 @item axisfile
22699 Specify image file to draw the axis. This option override @var{fontfile} and
22700 @var{fontcolor} option.
22701
22702 @item axis, text
22703 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
22704 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
22705 Default value is @code{1}.
22706
22707 @item csp
22708 Set colorspace. The accepted values are:
22709 @table @samp
22710 @item unspecified
22711 Unspecified (default)
22712
22713 @item bt709
22714 BT.709
22715
22716 @item fcc
22717 FCC
22718
22719 @item bt470bg
22720 BT.470BG or BT.601-6 625
22721
22722 @item smpte170m
22723 SMPTE-170M or BT.601-6 525
22724
22725 @item smpte240m
22726 SMPTE-240M
22727
22728 @item bt2020ncl
22729 BT.2020 with non-constant luminance
22730
22731 @end table
22732
22733 @item cscheme
22734 Set spectrogram color scheme. This is list of floating point values with format
22735 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
22736 The default is @code{1|0.5|0|0|0.5|1}.
22737
22738 @end table
22739
22740 @subsection Examples
22741
22742 @itemize
22743 @item
22744 Playing audio while showing the spectrum:
22745 @example
22746 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
22747 @end example
22748
22749 @item
22750 Same as above, but with frame rate 30 fps:
22751 @example
22752 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
22753 @end example
22754
22755 @item
22756 Playing at 1280x720:
22757 @example
22758 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
22759 @end example
22760
22761 @item
22762 Disable sonogram display:
22763 @example
22764 sono_h=0
22765 @end example
22766
22767 @item
22768 A1 and its harmonics: A1, A2, (near)E3, A3:
22769 @example
22770 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),
22771                  asplit[a][out1]; [a] showcqt [out0]'
22772 @end example
22773
22774 @item
22775 Same as above, but with more accuracy in frequency domain:
22776 @example
22777 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),
22778                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
22779 @end example
22780
22781 @item
22782 Custom volume:
22783 @example
22784 bar_v=10:sono_v=bar_v*a_weighting(f)
22785 @end example
22786
22787 @item
22788 Custom gamma, now spectrum is linear to the amplitude.
22789 @example
22790 bar_g=2:sono_g=2
22791 @end example
22792
22793 @item
22794 Custom tlength equation:
22795 @example
22796 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)))'
22797 @end example
22798
22799 @item
22800 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
22801 @example
22802 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
22803 @end example
22804
22805 @item
22806 Custom font using fontconfig:
22807 @example
22808 font='Courier New,Monospace,mono|bold'
22809 @end example
22810
22811 @item
22812 Custom frequency range with custom axis using image file:
22813 @example
22814 axisfile=myaxis.png:basefreq=40:endfreq=10000
22815 @end example
22816 @end itemize
22817
22818 @section showfreqs
22819
22820 Convert input audio to video output representing the audio power spectrum.
22821 Audio amplitude is on Y-axis while frequency is on X-axis.
22822
22823 The filter accepts the following options:
22824
22825 @table @option
22826 @item size, s
22827 Specify size of video. For the syntax of this option, check the
22828 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22829 Default is @code{1024x512}.
22830
22831 @item mode
22832 Set display mode.
22833 This set how each frequency bin will be represented.
22834
22835 It accepts the following values:
22836 @table @samp
22837 @item line
22838 @item bar
22839 @item dot
22840 @end table
22841 Default is @code{bar}.
22842
22843 @item ascale
22844 Set amplitude scale.
22845
22846 It accepts the following values:
22847 @table @samp
22848 @item lin
22849 Linear scale.
22850
22851 @item sqrt
22852 Square root scale.
22853
22854 @item cbrt
22855 Cubic root scale.
22856
22857 @item log
22858 Logarithmic scale.
22859 @end table
22860 Default is @code{log}.
22861
22862 @item fscale
22863 Set frequency scale.
22864
22865 It accepts the following values:
22866 @table @samp
22867 @item lin
22868 Linear scale.
22869
22870 @item log
22871 Logarithmic scale.
22872
22873 @item rlog
22874 Reverse logarithmic scale.
22875 @end table
22876 Default is @code{lin}.
22877
22878 @item win_size
22879 Set window size. Allowed range is from 16 to 65536.
22880
22881 Default is @code{2048}
22882
22883 @item win_func
22884 Set windowing function.
22885
22886 It accepts the following values:
22887 @table @samp
22888 @item rect
22889 @item bartlett
22890 @item hanning
22891 @item hamming
22892 @item blackman
22893 @item welch
22894 @item flattop
22895 @item bharris
22896 @item bnuttall
22897 @item bhann
22898 @item sine
22899 @item nuttall
22900 @item lanczos
22901 @item gauss
22902 @item tukey
22903 @item dolph
22904 @item cauchy
22905 @item parzen
22906 @item poisson
22907 @item bohman
22908 @end table
22909 Default is @code{hanning}.
22910
22911 @item overlap
22912 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
22913 which means optimal overlap for selected window function will be picked.
22914
22915 @item averaging
22916 Set time averaging. Setting this to 0 will display current maximal peaks.
22917 Default is @code{1}, which means time averaging is disabled.
22918
22919 @item colors
22920 Specify list of colors separated by space or by '|' which will be used to
22921 draw channel frequencies. Unrecognized or missing colors will be replaced
22922 by white color.
22923
22924 @item cmode
22925 Set channel display mode.
22926
22927 It accepts the following values:
22928 @table @samp
22929 @item combined
22930 @item separate
22931 @end table
22932 Default is @code{combined}.
22933
22934 @item minamp
22935 Set minimum amplitude used in @code{log} amplitude scaler.
22936
22937 @end table
22938
22939 @section showspatial
22940
22941 Convert stereo input audio to a video output, representing the spatial relationship
22942 between two channels.
22943
22944 The filter accepts the following options:
22945
22946 @table @option
22947 @item size, s
22948 Specify the video size for the output. For the syntax of this option, check the
22949 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22950 Default value is @code{512x512}.
22951
22952 @item win_size
22953 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
22954
22955 @item win_func
22956 Set window function.
22957
22958 It accepts the following values:
22959 @table @samp
22960 @item rect
22961 @item bartlett
22962 @item hann
22963 @item hanning
22964 @item hamming
22965 @item blackman
22966 @item welch
22967 @item flattop
22968 @item bharris
22969 @item bnuttall
22970 @item bhann
22971 @item sine
22972 @item nuttall
22973 @item lanczos
22974 @item gauss
22975 @item tukey
22976 @item dolph
22977 @item cauchy
22978 @item parzen
22979 @item poisson
22980 @item bohman
22981 @end table
22982
22983 Default value is @code{hann}.
22984
22985 @item overlap
22986 Set ratio of overlap window. Default value is @code{0.5}.
22987 When value is @code{1} overlap is set to recommended size for specific
22988 window function currently used.
22989 @end table
22990
22991 @anchor{showspectrum}
22992 @section showspectrum
22993
22994 Convert input audio to a video output, representing the audio frequency
22995 spectrum.
22996
22997 The filter accepts the following options:
22998
22999 @table @option
23000 @item size, s
23001 Specify the video size for the output. For the syntax of this option, check the
23002 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23003 Default value is @code{640x512}.
23004
23005 @item slide
23006 Specify how the spectrum should slide along the window.
23007
23008 It accepts the following values:
23009 @table @samp
23010 @item replace
23011 the samples start again on the left when they reach the right
23012 @item scroll
23013 the samples scroll from right to left
23014 @item fullframe
23015 frames are only produced when the samples reach the right
23016 @item rscroll
23017 the samples scroll from left to right
23018 @end table
23019
23020 Default value is @code{replace}.
23021
23022 @item mode
23023 Specify display mode.
23024
23025 It accepts the following values:
23026 @table @samp
23027 @item combined
23028 all channels are displayed in the same row
23029 @item separate
23030 all channels are displayed in separate rows
23031 @end table
23032
23033 Default value is @samp{combined}.
23034
23035 @item color
23036 Specify display color mode.
23037
23038 It accepts the following values:
23039 @table @samp
23040 @item channel
23041 each channel is displayed in a separate color
23042 @item intensity
23043 each channel is displayed using the same color scheme
23044 @item rainbow
23045 each channel is displayed using the rainbow color scheme
23046 @item moreland
23047 each channel is displayed using the moreland color scheme
23048 @item nebulae
23049 each channel is displayed using the nebulae color scheme
23050 @item fire
23051 each channel is displayed using the fire color scheme
23052 @item fiery
23053 each channel is displayed using the fiery color scheme
23054 @item fruit
23055 each channel is displayed using the fruit color scheme
23056 @item cool
23057 each channel is displayed using the cool color scheme
23058 @item magma
23059 each channel is displayed using the magma color scheme
23060 @item green
23061 each channel is displayed using the green color scheme
23062 @item viridis
23063 each channel is displayed using the viridis color scheme
23064 @item plasma
23065 each channel is displayed using the plasma color scheme
23066 @item cividis
23067 each channel is displayed using the cividis color scheme
23068 @item terrain
23069 each channel is displayed using the terrain color scheme
23070 @end table
23071
23072 Default value is @samp{channel}.
23073
23074 @item scale
23075 Specify scale used for calculating intensity color values.
23076
23077 It accepts the following values:
23078 @table @samp
23079 @item lin
23080 linear
23081 @item sqrt
23082 square root, default
23083 @item cbrt
23084 cubic root
23085 @item log
23086 logarithmic
23087 @item 4thrt
23088 4th root
23089 @item 5thrt
23090 5th root
23091 @end table
23092
23093 Default value is @samp{sqrt}.
23094
23095 @item fscale
23096 Specify frequency scale.
23097
23098 It accepts the following values:
23099 @table @samp
23100 @item lin
23101 linear
23102 @item log
23103 logarithmic
23104 @end table
23105
23106 Default value is @samp{lin}.
23107
23108 @item saturation
23109 Set saturation modifier for displayed colors. Negative values provide
23110 alternative color scheme. @code{0} is no saturation at all.
23111 Saturation must be in [-10.0, 10.0] range.
23112 Default value is @code{1}.
23113
23114 @item win_func
23115 Set window function.
23116
23117 It accepts the following values:
23118 @table @samp
23119 @item rect
23120 @item bartlett
23121 @item hann
23122 @item hanning
23123 @item hamming
23124 @item blackman
23125 @item welch
23126 @item flattop
23127 @item bharris
23128 @item bnuttall
23129 @item bhann
23130 @item sine
23131 @item nuttall
23132 @item lanczos
23133 @item gauss
23134 @item tukey
23135 @item dolph
23136 @item cauchy
23137 @item parzen
23138 @item poisson
23139 @item bohman
23140 @end table
23141
23142 Default value is @code{hann}.
23143
23144 @item orientation
23145 Set orientation of time vs frequency axis. Can be @code{vertical} or
23146 @code{horizontal}. Default is @code{vertical}.
23147
23148 @item overlap
23149 Set ratio of overlap window. Default value is @code{0}.
23150 When value is @code{1} overlap is set to recommended size for specific
23151 window function currently used.
23152
23153 @item gain
23154 Set scale gain for calculating intensity color values.
23155 Default value is @code{1}.
23156
23157 @item data
23158 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
23159
23160 @item rotation
23161 Set color rotation, must be in [-1.0, 1.0] range.
23162 Default value is @code{0}.
23163
23164 @item start
23165 Set start frequency from which to display spectrogram. Default is @code{0}.
23166
23167 @item stop
23168 Set stop frequency to which to display spectrogram. Default is @code{0}.
23169
23170 @item fps
23171 Set upper frame rate limit. Default is @code{auto}, unlimited.
23172
23173 @item legend
23174 Draw time and frequency axes and legends. Default is disabled.
23175 @end table
23176
23177 The usage is very similar to the showwaves filter; see the examples in that
23178 section.
23179
23180 @subsection Examples
23181
23182 @itemize
23183 @item
23184 Large window with logarithmic color scaling:
23185 @example
23186 showspectrum=s=1280x480:scale=log
23187 @end example
23188
23189 @item
23190 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
23191 @example
23192 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23193              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
23194 @end example
23195 @end itemize
23196
23197 @section showspectrumpic
23198
23199 Convert input audio to a single video frame, representing the audio frequency
23200 spectrum.
23201
23202 The filter accepts the following options:
23203
23204 @table @option
23205 @item size, s
23206 Specify the video size for the output. For the syntax of this option, check the
23207 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23208 Default value is @code{4096x2048}.
23209
23210 @item mode
23211 Specify display mode.
23212
23213 It accepts the following values:
23214 @table @samp
23215 @item combined
23216 all channels are displayed in the same row
23217 @item separate
23218 all channels are displayed in separate rows
23219 @end table
23220 Default value is @samp{combined}.
23221
23222 @item color
23223 Specify display color mode.
23224
23225 It accepts the following values:
23226 @table @samp
23227 @item channel
23228 each channel is displayed in a separate color
23229 @item intensity
23230 each channel is displayed using the same color scheme
23231 @item rainbow
23232 each channel is displayed using the rainbow color scheme
23233 @item moreland
23234 each channel is displayed using the moreland color scheme
23235 @item nebulae
23236 each channel is displayed using the nebulae color scheme
23237 @item fire
23238 each channel is displayed using the fire color scheme
23239 @item fiery
23240 each channel is displayed using the fiery color scheme
23241 @item fruit
23242 each channel is displayed using the fruit color scheme
23243 @item cool
23244 each channel is displayed using the cool color scheme
23245 @item magma
23246 each channel is displayed using the magma color scheme
23247 @item green
23248 each channel is displayed using the green color scheme
23249 @item viridis
23250 each channel is displayed using the viridis color scheme
23251 @item plasma
23252 each channel is displayed using the plasma color scheme
23253 @item cividis
23254 each channel is displayed using the cividis color scheme
23255 @item terrain
23256 each channel is displayed using the terrain color scheme
23257 @end table
23258 Default value is @samp{intensity}.
23259
23260 @item scale
23261 Specify scale used for calculating intensity color values.
23262
23263 It accepts the following values:
23264 @table @samp
23265 @item lin
23266 linear
23267 @item sqrt
23268 square root, default
23269 @item cbrt
23270 cubic root
23271 @item log
23272 logarithmic
23273 @item 4thrt
23274 4th root
23275 @item 5thrt
23276 5th root
23277 @end table
23278 Default value is @samp{log}.
23279
23280 @item fscale
23281 Specify frequency scale.
23282
23283 It accepts the following values:
23284 @table @samp
23285 @item lin
23286 linear
23287 @item log
23288 logarithmic
23289 @end table
23290
23291 Default value is @samp{lin}.
23292
23293 @item saturation
23294 Set saturation modifier for displayed colors. Negative values provide
23295 alternative color scheme. @code{0} is no saturation at all.
23296 Saturation must be in [-10.0, 10.0] range.
23297 Default value is @code{1}.
23298
23299 @item win_func
23300 Set window function.
23301
23302 It accepts the following values:
23303 @table @samp
23304 @item rect
23305 @item bartlett
23306 @item hann
23307 @item hanning
23308 @item hamming
23309 @item blackman
23310 @item welch
23311 @item flattop
23312 @item bharris
23313 @item bnuttall
23314 @item bhann
23315 @item sine
23316 @item nuttall
23317 @item lanczos
23318 @item gauss
23319 @item tukey
23320 @item dolph
23321 @item cauchy
23322 @item parzen
23323 @item poisson
23324 @item bohman
23325 @end table
23326 Default value is @code{hann}.
23327
23328 @item orientation
23329 Set orientation of time vs frequency axis. Can be @code{vertical} or
23330 @code{horizontal}. Default is @code{vertical}.
23331
23332 @item gain
23333 Set scale gain for calculating intensity color values.
23334 Default value is @code{1}.
23335
23336 @item legend
23337 Draw time and frequency axes and legends. Default is enabled.
23338
23339 @item rotation
23340 Set color rotation, must be in [-1.0, 1.0] range.
23341 Default value is @code{0}.
23342
23343 @item start
23344 Set start frequency from which to display spectrogram. Default is @code{0}.
23345
23346 @item stop
23347 Set stop frequency to which to display spectrogram. Default is @code{0}.
23348 @end table
23349
23350 @subsection Examples
23351
23352 @itemize
23353 @item
23354 Extract an audio spectrogram of a whole audio track
23355 in a 1024x1024 picture using @command{ffmpeg}:
23356 @example
23357 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
23358 @end example
23359 @end itemize
23360
23361 @section showvolume
23362
23363 Convert input audio volume to a video output.
23364
23365 The filter accepts the following options:
23366
23367 @table @option
23368 @item rate, r
23369 Set video rate.
23370
23371 @item b
23372 Set border width, allowed range is [0, 5]. Default is 1.
23373
23374 @item w
23375 Set channel width, allowed range is [80, 8192]. Default is 400.
23376
23377 @item h
23378 Set channel height, allowed range is [1, 900]. Default is 20.
23379
23380 @item f
23381 Set fade, allowed range is [0, 1]. Default is 0.95.
23382
23383 @item c
23384 Set volume color expression.
23385
23386 The expression can use the following variables:
23387
23388 @table @option
23389 @item VOLUME
23390 Current max volume of channel in dB.
23391
23392 @item PEAK
23393 Current peak.
23394
23395 @item CHANNEL
23396 Current channel number, starting from 0.
23397 @end table
23398
23399 @item t
23400 If set, displays channel names. Default is enabled.
23401
23402 @item v
23403 If set, displays volume values. Default is enabled.
23404
23405 @item o
23406 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
23407 default is @code{h}.
23408
23409 @item s
23410 Set step size, allowed range is [0, 5]. Default is 0, which means
23411 step is disabled.
23412
23413 @item p
23414 Set background opacity, allowed range is [0, 1]. Default is 0.
23415
23416 @item m
23417 Set metering mode, can be peak: @code{p} or rms: @code{r},
23418 default is @code{p}.
23419
23420 @item ds
23421 Set display scale, can be linear: @code{lin} or log: @code{log},
23422 default is @code{lin}.
23423
23424 @item dm
23425 In second.
23426 If set to > 0., display a line for the max level
23427 in the previous seconds.
23428 default is disabled: @code{0.}
23429
23430 @item dmc
23431 The color of the max line. Use when @code{dm} option is set to > 0.
23432 default is: @code{orange}
23433 @end table
23434
23435 @section showwaves
23436
23437 Convert input audio to a video output, representing the samples waves.
23438
23439 The filter accepts the following options:
23440
23441 @table @option
23442 @item size, s
23443 Specify the video size for the output. For the syntax of this option, check the
23444 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23445 Default value is @code{600x240}.
23446
23447 @item mode
23448 Set display mode.
23449
23450 Available values are:
23451 @table @samp
23452 @item point
23453 Draw a point for each sample.
23454
23455 @item line
23456 Draw a vertical line for each sample.
23457
23458 @item p2p
23459 Draw a point for each sample and a line between them.
23460
23461 @item cline
23462 Draw a centered vertical line for each sample.
23463 @end table
23464
23465 Default value is @code{point}.
23466
23467 @item n
23468 Set the number of samples which are printed on the same column. A
23469 larger value will decrease the frame rate. Must be a positive
23470 integer. This option can be set only if the value for @var{rate}
23471 is not explicitly specified.
23472
23473 @item rate, r
23474 Set the (approximate) output frame rate. This is done by setting the
23475 option @var{n}. Default value is "25".
23476
23477 @item split_channels
23478 Set if channels should be drawn separately or overlap. Default value is 0.
23479
23480 @item colors
23481 Set colors separated by '|' which are going to be used for drawing of each channel.
23482
23483 @item scale
23484 Set amplitude scale.
23485
23486 Available values are:
23487 @table @samp
23488 @item lin
23489 Linear.
23490
23491 @item log
23492 Logarithmic.
23493
23494 @item sqrt
23495 Square root.
23496
23497 @item cbrt
23498 Cubic root.
23499 @end table
23500
23501 Default is linear.
23502
23503 @item draw
23504 Set the draw mode. This is mostly useful to set for high @var{n}.
23505
23506 Available values are:
23507 @table @samp
23508 @item scale
23509 Scale pixel values for each drawn sample.
23510
23511 @item full
23512 Draw every sample directly.
23513 @end table
23514
23515 Default value is @code{scale}.
23516 @end table
23517
23518 @subsection Examples
23519
23520 @itemize
23521 @item
23522 Output the input file audio and the corresponding video representation
23523 at the same time:
23524 @example
23525 amovie=a.mp3,asplit[out0],showwaves[out1]
23526 @end example
23527
23528 @item
23529 Create a synthetic signal and show it with showwaves, forcing a
23530 frame rate of 30 frames per second:
23531 @example
23532 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
23533 @end example
23534 @end itemize
23535
23536 @section showwavespic
23537
23538 Convert input audio to a single video frame, representing the samples waves.
23539
23540 The filter accepts the following options:
23541
23542 @table @option
23543 @item size, s
23544 Specify the video size for the output. For the syntax of this option, check the
23545 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23546 Default value is @code{600x240}.
23547
23548 @item split_channels
23549 Set if channels should be drawn separately or overlap. Default value is 0.
23550
23551 @item colors
23552 Set colors separated by '|' which are going to be used for drawing of each channel.
23553
23554 @item scale
23555 Set amplitude scale.
23556
23557 Available values are:
23558 @table @samp
23559 @item lin
23560 Linear.
23561
23562 @item log
23563 Logarithmic.
23564
23565 @item sqrt
23566 Square root.
23567
23568 @item cbrt
23569 Cubic root.
23570 @end table
23571
23572 Default is linear.
23573
23574 @item draw
23575 Set the draw mode.
23576
23577 Available values are:
23578 @table @samp
23579 @item scale
23580 Scale pixel values for each drawn sample.
23581
23582 @item full
23583 Draw every sample directly.
23584 @end table
23585
23586 Default value is @code{scale}.
23587 @end table
23588
23589 @subsection Examples
23590
23591 @itemize
23592 @item
23593 Extract a channel split representation of the wave form of a whole audio track
23594 in a 1024x800 picture using @command{ffmpeg}:
23595 @example
23596 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
23597 @end example
23598 @end itemize
23599
23600 @section sidedata, asidedata
23601
23602 Delete frame side data, or select frames based on it.
23603
23604 This filter accepts the following options:
23605
23606 @table @option
23607 @item mode
23608 Set mode of operation of the filter.
23609
23610 Can be one of the following:
23611
23612 @table @samp
23613 @item select
23614 Select every frame with side data of @code{type}.
23615
23616 @item delete
23617 Delete side data of @code{type}. If @code{type} is not set, delete all side
23618 data in the frame.
23619
23620 @end table
23621
23622 @item type
23623 Set side data type used with all modes. Must be set for @code{select} mode. For
23624 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
23625 in @file{libavutil/frame.h}. For example, to choose
23626 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
23627
23628 @end table
23629
23630 @section spectrumsynth
23631
23632 Sythesize audio from 2 input video spectrums, first input stream represents
23633 magnitude across time and second represents phase across time.
23634 The filter will transform from frequency domain as displayed in videos back
23635 to time domain as presented in audio output.
23636
23637 This filter is primarily created for reversing processed @ref{showspectrum}
23638 filter outputs, but can synthesize sound from other spectrograms too.
23639 But in such case results are going to be poor if the phase data is not
23640 available, because in such cases phase data need to be recreated, usually
23641 it's just recreated from random noise.
23642 For best results use gray only output (@code{channel} color mode in
23643 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
23644 @code{lin} scale for phase video. To produce phase, for 2nd video, use
23645 @code{data} option. Inputs videos should generally use @code{fullframe}
23646 slide mode as that saves resources needed for decoding video.
23647
23648 The filter accepts the following options:
23649
23650 @table @option
23651 @item sample_rate
23652 Specify sample rate of output audio, the sample rate of audio from which
23653 spectrum was generated may differ.
23654
23655 @item channels
23656 Set number of channels represented in input video spectrums.
23657
23658 @item scale
23659 Set scale which was used when generating magnitude input spectrum.
23660 Can be @code{lin} or @code{log}. Default is @code{log}.
23661
23662 @item slide
23663 Set slide which was used when generating inputs spectrums.
23664 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
23665 Default is @code{fullframe}.
23666
23667 @item win_func
23668 Set window function used for resynthesis.
23669
23670 @item overlap
23671 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
23672 which means optimal overlap for selected window function will be picked.
23673
23674 @item orientation
23675 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
23676 Default is @code{vertical}.
23677 @end table
23678
23679 @subsection Examples
23680
23681 @itemize
23682 @item
23683 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
23684 then resynthesize videos back to audio with spectrumsynth:
23685 @example
23686 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
23687 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
23688 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
23689 @end example
23690 @end itemize
23691
23692 @section split, asplit
23693
23694 Split input into several identical outputs.
23695
23696 @code{asplit} works with audio input, @code{split} with video.
23697
23698 The filter accepts a single parameter which specifies the number of outputs. If
23699 unspecified, it defaults to 2.
23700
23701 @subsection Examples
23702
23703 @itemize
23704 @item
23705 Create two separate outputs from the same input:
23706 @example
23707 [in] split [out0][out1]
23708 @end example
23709
23710 @item
23711 To create 3 or more outputs, you need to specify the number of
23712 outputs, like in:
23713 @example
23714 [in] asplit=3 [out0][out1][out2]
23715 @end example
23716
23717 @item
23718 Create two separate outputs from the same input, one cropped and
23719 one padded:
23720 @example
23721 [in] split [splitout1][splitout2];
23722 [splitout1] crop=100:100:0:0    [cropout];
23723 [splitout2] pad=200:200:100:100 [padout];
23724 @end example
23725
23726 @item
23727 Create 5 copies of the input audio with @command{ffmpeg}:
23728 @example
23729 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
23730 @end example
23731 @end itemize
23732
23733 @section zmq, azmq
23734
23735 Receive commands sent through a libzmq client, and forward them to
23736 filters in the filtergraph.
23737
23738 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
23739 must be inserted between two video filters, @code{azmq} between two
23740 audio filters. Both are capable to send messages to any filter type.
23741
23742 To enable these filters you need to install the libzmq library and
23743 headers and configure FFmpeg with @code{--enable-libzmq}.
23744
23745 For more information about libzmq see:
23746 @url{http://www.zeromq.org/}
23747
23748 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
23749 receives messages sent through a network interface defined by the
23750 @option{bind_address} (or the abbreviation "@option{b}") option.
23751 Default value of this option is @file{tcp://localhost:5555}. You may
23752 want to alter this value to your needs, but do not forget to escape any
23753 ':' signs (see @ref{filtergraph escaping}).
23754
23755 The received message must be in the form:
23756 @example
23757 @var{TARGET} @var{COMMAND} [@var{ARG}]
23758 @end example
23759
23760 @var{TARGET} specifies the target of the command, usually the name of
23761 the filter class or a specific filter instance name. The default
23762 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
23763 but you can override this by using the @samp{filter_name@@id} syntax
23764 (see @ref{Filtergraph syntax}).
23765
23766 @var{COMMAND} specifies the name of the command for the target filter.
23767
23768 @var{ARG} is optional and specifies the optional argument list for the
23769 given @var{COMMAND}.
23770
23771 Upon reception, the message is processed and the corresponding command
23772 is injected into the filtergraph. Depending on the result, the filter
23773 will send a reply to the client, adopting the format:
23774 @example
23775 @var{ERROR_CODE} @var{ERROR_REASON}
23776 @var{MESSAGE}
23777 @end example
23778
23779 @var{MESSAGE} is optional.
23780
23781 @subsection Examples
23782
23783 Look at @file{tools/zmqsend} for an example of a zmq client which can
23784 be used to send commands processed by these filters.
23785
23786 Consider the following filtergraph generated by @command{ffplay}.
23787 In this example the last overlay filter has an instance name. All other
23788 filters will have default instance names.
23789
23790 @example
23791 ffplay -dumpgraph 1 -f lavfi "
23792 color=s=100x100:c=red  [l];
23793 color=s=100x100:c=blue [r];
23794 nullsrc=s=200x100, zmq [bg];
23795 [bg][l]   overlay     [bg+l];
23796 [bg+l][r] overlay@@my=x=100 "
23797 @end example
23798
23799 To change the color of the left side of the video, the following
23800 command can be used:
23801 @example
23802 echo Parsed_color_0 c yellow | tools/zmqsend
23803 @end example
23804
23805 To change the right side:
23806 @example
23807 echo Parsed_color_1 c pink | tools/zmqsend
23808 @end example
23809
23810 To change the position of the right side:
23811 @example
23812 echo overlay@@my x 150 | tools/zmqsend
23813 @end example
23814
23815
23816 @c man end MULTIMEDIA FILTERS
23817
23818 @chapter Multimedia Sources
23819 @c man begin MULTIMEDIA SOURCES
23820
23821 Below is a description of the currently available multimedia sources.
23822
23823 @section amovie
23824
23825 This is the same as @ref{movie} source, except it selects an audio
23826 stream by default.
23827
23828 @anchor{movie}
23829 @section movie
23830
23831 Read audio and/or video stream(s) from a movie container.
23832
23833 It accepts the following parameters:
23834
23835 @table @option
23836 @item filename
23837 The name of the resource to read (not necessarily a file; it can also be a
23838 device or a stream accessed through some protocol).
23839
23840 @item format_name, f
23841 Specifies the format assumed for the movie to read, and can be either
23842 the name of a container or an input device. If not specified, the
23843 format is guessed from @var{movie_name} or by probing.
23844
23845 @item seek_point, sp
23846 Specifies the seek point in seconds. The frames will be output
23847 starting from this seek point. The parameter is evaluated with
23848 @code{av_strtod}, so the numerical value may be suffixed by an IS
23849 postfix. The default value is "0".
23850
23851 @item streams, s
23852 Specifies the streams to read. Several streams can be specified,
23853 separated by "+". The source will then have as many outputs, in the
23854 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
23855 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
23856 respectively the default (best suited) video and audio stream. Default
23857 is "dv", or "da" if the filter is called as "amovie".
23858
23859 @item stream_index, si
23860 Specifies the index of the video stream to read. If the value is -1,
23861 the most suitable video stream will be automatically selected. The default
23862 value is "-1". Deprecated. If the filter is called "amovie", it will select
23863 audio instead of video.
23864
23865 @item loop
23866 Specifies how many times to read the stream in sequence.
23867 If the value is 0, the stream will be looped infinitely.
23868 Default value is "1".
23869
23870 Note that when the movie is looped the source timestamps are not
23871 changed, so it will generate non monotonically increasing timestamps.
23872
23873 @item discontinuity
23874 Specifies the time difference between frames above which the point is
23875 considered a timestamp discontinuity which is removed by adjusting the later
23876 timestamps.
23877 @end table
23878
23879 It allows overlaying a second video on top of the main input of
23880 a filtergraph, as shown in this graph:
23881 @example
23882 input -----------> deltapts0 --> overlay --> output
23883                                     ^
23884                                     |
23885 movie --> scale--> deltapts1 -------+
23886 @end example
23887 @subsection Examples
23888
23889 @itemize
23890 @item
23891 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
23892 on top of the input labelled "in":
23893 @example
23894 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
23895 [in] setpts=PTS-STARTPTS [main];
23896 [main][over] overlay=16:16 [out]
23897 @end example
23898
23899 @item
23900 Read from a video4linux2 device, and overlay it on top of the input
23901 labelled "in":
23902 @example
23903 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
23904 [in] setpts=PTS-STARTPTS [main];
23905 [main][over] overlay=16:16 [out]
23906 @end example
23907
23908 @item
23909 Read the first video stream and the audio stream with id 0x81 from
23910 dvd.vob; the video is connected to the pad named "video" and the audio is
23911 connected to the pad named "audio":
23912 @example
23913 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
23914 @end example
23915 @end itemize
23916
23917 @subsection Commands
23918
23919 Both movie and amovie support the following commands:
23920 @table @option
23921 @item seek
23922 Perform seek using "av_seek_frame".
23923 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
23924 @itemize
23925 @item
23926 @var{stream_index}: If stream_index is -1, a default
23927 stream is selected, and @var{timestamp} is automatically converted
23928 from AV_TIME_BASE units to the stream specific time_base.
23929 @item
23930 @var{timestamp}: Timestamp in AVStream.time_base units
23931 or, if no stream is specified, in AV_TIME_BASE units.
23932 @item
23933 @var{flags}: Flags which select direction and seeking mode.
23934 @end itemize
23935
23936 @item get_duration
23937 Get movie duration in AV_TIME_BASE units.
23938
23939 @end table
23940
23941 @c man end MULTIMEDIA SOURCES