]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/af_surround: allow user to change overlap and win_func
[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 sound 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.
1128
1129 It accepts the following values:
1130 @table @samp
1131 @item w16
1132 @item w32
1133 @item w64
1134 @item w128
1135 @item w256
1136 @item w512
1137 @item w1024
1138 @item w2048
1139 @item w4096
1140 @item w8192
1141 @item w16384
1142 @item w32768
1143 @item w65536
1144 @end table
1145 Default is @code{w4096}
1146
1147 @item win_func
1148 Set window function. Default is @code{hann}.
1149
1150 @item overlap
1151 Set window overlap. If set to 1, the recommended overlap for selected
1152 window function will be picked. Default is @code{0.75}.
1153 @end table
1154
1155 @subsection Examples
1156
1157 @itemize
1158 @item
1159 Leave almost only low frequencies in audio:
1160 @example
1161 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1162 @end example
1163 @end itemize
1164
1165 @anchor{afir}
1166 @section afir
1167
1168 Apply an arbitrary Frequency Impulse Response filter.
1169
1170 This filter is designed for applying long FIR filters,
1171 up to 60 seconds long.
1172
1173 It can be used as component for digital crossover filters,
1174 room equalization, cross talk cancellation, wavefield synthesis,
1175 auralization, ambiophonics, ambisonics and spatialization.
1176
1177 This filter uses second stream as FIR coefficients.
1178 If second stream holds single channel, it will be used
1179 for all input channels in first stream, otherwise
1180 number of channels in second stream must be same as
1181 number of channels in first stream.
1182
1183 It accepts the following parameters:
1184
1185 @table @option
1186 @item dry
1187 Set dry gain. This sets input gain.
1188
1189 @item wet
1190 Set wet gain. This sets final output gain.
1191
1192 @item length
1193 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1194
1195 @item gtype
1196 Enable applying gain measured from power of IR.
1197
1198 Set which approach to use for auto gain measurement.
1199
1200 @table @option
1201 @item none
1202 Do not apply any gain.
1203
1204 @item peak
1205 select peak gain, very conservative approach. This is default value.
1206
1207 @item dc
1208 select DC gain, limited application.
1209
1210 @item gn
1211 select gain to noise approach, this is most popular one.
1212 @end table
1213
1214 @item irgain
1215 Set gain to be applied to IR coefficients before filtering.
1216 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1217
1218 @item irfmt
1219 Set format of IR stream. Can be @code{mono} or @code{input}.
1220 Default is @code{input}.
1221
1222 @item maxir
1223 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1224 Allowed range is 0.1 to 60 seconds.
1225
1226 @item response
1227 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1228 By default it is disabled.
1229
1230 @item channel
1231 Set for which IR channel to display frequency response. By default is first channel
1232 displayed. This option is used only when @var{response} is enabled.
1233
1234 @item size
1235 Set video stream size. This option is used only when @var{response} is enabled.
1236
1237 @item rate
1238 Set video stream frame rate. This option is used only when @var{response} is enabled.
1239
1240 @item minp
1241 Set minimal partition size used for convolution. Default is @var{8192}.
1242 Allowed range is from @var{8} to @var{32768}.
1243 Lower values decreases latency at cost of higher CPU usage.
1244
1245 @item maxp
1246 Set maximal partition size used for convolution. Default is @var{8192}.
1247 Allowed range is from @var{8} to @var{32768}.
1248 Lower values may increase CPU usage.
1249 @end table
1250
1251 @subsection Examples
1252
1253 @itemize
1254 @item
1255 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1256 @example
1257 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1258 @end example
1259 @end itemize
1260
1261 @anchor{aformat}
1262 @section aformat
1263
1264 Set output format constraints for the input audio. The framework will
1265 negotiate the most appropriate format to minimize conversions.
1266
1267 It accepts the following parameters:
1268 @table @option
1269
1270 @item sample_fmts
1271 A '|'-separated list of requested sample formats.
1272
1273 @item sample_rates
1274 A '|'-separated list of requested sample rates.
1275
1276 @item channel_layouts
1277 A '|'-separated list of requested channel layouts.
1278
1279 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1280 for the required syntax.
1281 @end table
1282
1283 If a parameter is omitted, all values are allowed.
1284
1285 Force the output to either unsigned 8-bit or signed 16-bit stereo
1286 @example
1287 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1288 @end example
1289
1290 @section agate
1291
1292 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1293 processing reduces disturbing noise between useful signals.
1294
1295 Gating is done by detecting the volume below a chosen level @var{threshold}
1296 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1297 floor is set via @var{range}. Because an exact manipulation of the signal
1298 would cause distortion of the waveform the reduction can be levelled over
1299 time. This is done by setting @var{attack} and @var{release}.
1300
1301 @var{attack} determines how long the signal has to fall below the threshold
1302 before any reduction will occur and @var{release} sets the time the signal
1303 has to rise above the threshold to reduce the reduction again.
1304 Shorter signals than the chosen attack time will be left untouched.
1305
1306 @table @option
1307 @item level_in
1308 Set input level before filtering.
1309 Default is 1. Allowed range is from 0.015625 to 64.
1310
1311 @item mode
1312 Set the mode of operation. Can be @code{upward} or @code{downward}.
1313 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1314 will be amplified, expanding dynamic range in upward direction.
1315 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1316
1317 @item range
1318 Set the level of gain reduction when the signal is below the threshold.
1319 Default is 0.06125. Allowed range is from 0 to 1.
1320 Setting this to 0 disables reduction and then filter behaves like expander.
1321
1322 @item threshold
1323 If a signal rises above this level the gain reduction is released.
1324 Default is 0.125. Allowed range is from 0 to 1.
1325
1326 @item ratio
1327 Set a ratio by which the signal is reduced.
1328 Default is 2. Allowed range is from 1 to 9000.
1329
1330 @item attack
1331 Amount of milliseconds the signal has to rise above the threshold before gain
1332 reduction stops.
1333 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1334
1335 @item release
1336 Amount of milliseconds the signal has to fall below the threshold before the
1337 reduction is increased again. Default is 250 milliseconds.
1338 Allowed range is from 0.01 to 9000.
1339
1340 @item makeup
1341 Set amount of amplification of signal after processing.
1342 Default is 1. Allowed range is from 1 to 64.
1343
1344 @item knee
1345 Curve the sharp knee around the threshold to enter gain reduction more softly.
1346 Default is 2.828427125. Allowed range is from 1 to 8.
1347
1348 @item detection
1349 Choose if exact signal should be taken for detection or an RMS like one.
1350 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1351
1352 @item link
1353 Choose if the average level between all channels or the louder channel affects
1354 the reduction.
1355 Default is @code{average}. Can be @code{average} or @code{maximum}.
1356 @end table
1357
1358 @section aiir
1359
1360 Apply an arbitrary Infinite Impulse Response filter.
1361
1362 It accepts the following parameters:
1363
1364 @table @option
1365 @item z
1366 Set numerator/zeros coefficients.
1367
1368 @item p
1369 Set denominator/poles coefficients.
1370
1371 @item k
1372 Set channels gains.
1373
1374 @item dry_gain
1375 Set input gain.
1376
1377 @item wet_gain
1378 Set output gain.
1379
1380 @item f
1381 Set coefficients format.
1382
1383 @table @samp
1384 @item tf
1385 transfer function
1386 @item zp
1387 Z-plane zeros/poles, cartesian (default)
1388 @item pr
1389 Z-plane zeros/poles, polar radians
1390 @item pd
1391 Z-plane zeros/poles, polar degrees
1392 @end table
1393
1394 @item r
1395 Set kind of processing.
1396 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1397
1398 @item e
1399 Set filtering precision.
1400
1401 @table @samp
1402 @item dbl
1403 double-precision floating-point (default)
1404 @item flt
1405 single-precision floating-point
1406 @item i32
1407 32-bit integers
1408 @item i16
1409 16-bit integers
1410 @end table
1411
1412 @item response
1413 Show IR frequency response, magnitude and phase in additional video stream.
1414 By default it is disabled.
1415
1416 @item channel
1417 Set for which IR channel to display frequency response. By default is first channel
1418 displayed. This option is used only when @var{response} is enabled.
1419
1420 @item size
1421 Set video stream size. This option is used only when @var{response} is enabled.
1422 @end table
1423
1424 Coefficients in @code{tf} format are separated by spaces and are in ascending
1425 order.
1426
1427 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1428 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1429 imaginary unit.
1430
1431 Different coefficients and gains can be provided for every channel, in such case
1432 use '|' to separate coefficients or gains. Last provided coefficients will be
1433 used for all remaining channels.
1434
1435 @subsection Examples
1436
1437 @itemize
1438 @item
1439 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1440 @example
1441 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
1442 @end example
1443
1444 @item
1445 Same as above but in @code{zp} format:
1446 @example
1447 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
1448 @end example
1449 @end itemize
1450
1451 @section alimiter
1452
1453 The limiter prevents an input signal from rising over a desired threshold.
1454 This limiter uses lookahead technology to prevent your signal from distorting.
1455 It means that there is a small delay after the signal is processed. Keep in mind
1456 that the delay it produces is the attack time you set.
1457
1458 The filter accepts the following options:
1459
1460 @table @option
1461 @item level_in
1462 Set input gain. Default is 1.
1463
1464 @item level_out
1465 Set output gain. Default is 1.
1466
1467 @item limit
1468 Don't let signals above this level pass the limiter. Default is 1.
1469
1470 @item attack
1471 The limiter will reach its attenuation level in this amount of time in
1472 milliseconds. Default is 5 milliseconds.
1473
1474 @item release
1475 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1476 Default is 50 milliseconds.
1477
1478 @item asc
1479 When gain reduction is always needed ASC takes care of releasing to an
1480 average reduction level rather than reaching a reduction of 0 in the release
1481 time.
1482
1483 @item asc_level
1484 Select how much the release time is affected by ASC, 0 means nearly no changes
1485 in release time while 1 produces higher release times.
1486
1487 @item level
1488 Auto level output signal. Default is enabled.
1489 This normalizes audio back to 0dB if enabled.
1490 @end table
1491
1492 Depending on picked setting it is recommended to upsample input 2x or 4x times
1493 with @ref{aresample} before applying this filter.
1494
1495 @section allpass
1496
1497 Apply a two-pole all-pass filter with central frequency (in Hz)
1498 @var{frequency}, and filter-width @var{width}.
1499 An all-pass filter changes the audio's frequency to phase relationship
1500 without changing its frequency to amplitude relationship.
1501
1502 The filter accepts the following options:
1503
1504 @table @option
1505 @item frequency, f
1506 Set frequency in Hz.
1507
1508 @item width_type, t
1509 Set method to specify band-width of filter.
1510 @table @option
1511 @item h
1512 Hz
1513 @item q
1514 Q-Factor
1515 @item o
1516 octave
1517 @item s
1518 slope
1519 @item k
1520 kHz
1521 @end table
1522
1523 @item width, w
1524 Specify the band-width of a filter in width_type units.
1525
1526 @item channels, c
1527 Specify which channels to filter, by default all available are filtered.
1528 @end table
1529
1530 @subsection Commands
1531
1532 This filter supports the following commands:
1533 @table @option
1534 @item frequency, f
1535 Change allpass frequency.
1536 Syntax for the command is : "@var{frequency}"
1537
1538 @item width_type, t
1539 Change allpass width_type.
1540 Syntax for the command is : "@var{width_type}"
1541
1542 @item width, w
1543 Change allpass width.
1544 Syntax for the command is : "@var{width}"
1545 @end table
1546
1547 @section aloop
1548
1549 Loop audio samples.
1550
1551 The filter accepts the following options:
1552
1553 @table @option
1554 @item loop
1555 Set the number of loops. Setting this value to -1 will result in infinite loops.
1556 Default is 0.
1557
1558 @item size
1559 Set maximal number of samples. Default is 0.
1560
1561 @item start
1562 Set first sample of loop. Default is 0.
1563 @end table
1564
1565 @anchor{amerge}
1566 @section amerge
1567
1568 Merge two or more audio streams into a single multi-channel stream.
1569
1570 The filter accepts the following options:
1571
1572 @table @option
1573
1574 @item inputs
1575 Set the number of inputs. Default is 2.
1576
1577 @end table
1578
1579 If the channel layouts of the inputs are disjoint, and therefore compatible,
1580 the channel layout of the output will be set accordingly and the channels
1581 will be reordered as necessary. If the channel layouts of the inputs are not
1582 disjoint, the output will have all the channels of the first input then all
1583 the channels of the second input, in that order, and the channel layout of
1584 the output will be the default value corresponding to the total number of
1585 channels.
1586
1587 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1588 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1589 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1590 first input, b1 is the first channel of the second input).
1591
1592 On the other hand, if both input are in stereo, the output channels will be
1593 in the default order: a1, a2, b1, b2, and the channel layout will be
1594 arbitrarily set to 4.0, which may or may not be the expected value.
1595
1596 All inputs must have the same sample rate, and format.
1597
1598 If inputs do not have the same duration, the output will stop with the
1599 shortest.
1600
1601 @subsection Examples
1602
1603 @itemize
1604 @item
1605 Merge two mono files into a stereo stream:
1606 @example
1607 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1608 @end example
1609
1610 @item
1611 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1612 @example
1613 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
1614 @end example
1615 @end itemize
1616
1617 @section amix
1618
1619 Mixes multiple audio inputs into a single output.
1620
1621 Note that this filter only supports float samples (the @var{amerge}
1622 and @var{pan} audio filters support many formats). If the @var{amix}
1623 input has integer samples then @ref{aresample} will be automatically
1624 inserted to perform the conversion to float samples.
1625
1626 For example
1627 @example
1628 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1629 @end example
1630 will mix 3 input audio streams to a single output with the same duration as the
1631 first input and a dropout transition time of 3 seconds.
1632
1633 It accepts the following parameters:
1634 @table @option
1635
1636 @item inputs
1637 The number of inputs. If unspecified, it defaults to 2.
1638
1639 @item duration
1640 How to determine the end-of-stream.
1641 @table @option
1642
1643 @item longest
1644 The duration of the longest input. (default)
1645
1646 @item shortest
1647 The duration of the shortest input.
1648
1649 @item first
1650 The duration of the first input.
1651
1652 @end table
1653
1654 @item dropout_transition
1655 The transition time, in seconds, for volume renormalization when an input
1656 stream ends. The default value is 2 seconds.
1657
1658 @item weights
1659 Specify weight of each input audio stream as sequence.
1660 Each weight is separated by space. By default all inputs have same weight.
1661 @end table
1662
1663 @section amultiply
1664
1665 Multiply first audio stream with second audio stream and store result
1666 in output audio stream. Multiplication is done by multiplying each
1667 sample from first stream with sample at same position from second stream.
1668
1669 With this element-wise multiplication one can create amplitude fades and
1670 amplitude modulations.
1671
1672 @section anequalizer
1673
1674 High-order parametric multiband equalizer for each channel.
1675
1676 It accepts the following parameters:
1677 @table @option
1678 @item params
1679
1680 This option string is in format:
1681 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1682 Each equalizer band is separated by '|'.
1683
1684 @table @option
1685 @item chn
1686 Set channel number to which equalization will be applied.
1687 If input doesn't have that channel the entry is ignored.
1688
1689 @item f
1690 Set central frequency for band.
1691 If input doesn't have that frequency the entry is ignored.
1692
1693 @item w
1694 Set band width in hertz.
1695
1696 @item g
1697 Set band gain in dB.
1698
1699 @item t
1700 Set filter type for band, optional, can be:
1701
1702 @table @samp
1703 @item 0
1704 Butterworth, this is default.
1705
1706 @item 1
1707 Chebyshev type 1.
1708
1709 @item 2
1710 Chebyshev type 2.
1711 @end table
1712 @end table
1713
1714 @item curves
1715 With this option activated frequency response of anequalizer is displayed
1716 in video stream.
1717
1718 @item size
1719 Set video stream size. Only useful if curves option is activated.
1720
1721 @item mgain
1722 Set max gain that will be displayed. Only useful if curves option is activated.
1723 Setting this to a reasonable value makes it possible to display gain which is derived from
1724 neighbour bands which are too close to each other and thus produce higher gain
1725 when both are activated.
1726
1727 @item fscale
1728 Set frequency scale used to draw frequency response in video output.
1729 Can be linear or logarithmic. Default is logarithmic.
1730
1731 @item colors
1732 Set color for each channel curve which is going to be displayed in video stream.
1733 This is list of color names separated by space or by '|'.
1734 Unrecognised or missing colors will be replaced by white color.
1735 @end table
1736
1737 @subsection Examples
1738
1739 @itemize
1740 @item
1741 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1742 for first 2 channels using Chebyshev type 1 filter:
1743 @example
1744 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1745 @end example
1746 @end itemize
1747
1748 @subsection Commands
1749
1750 This filter supports the following commands:
1751 @table @option
1752 @item change
1753 Alter existing filter parameters.
1754 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1755
1756 @var{fN} is existing filter number, starting from 0, if no such filter is available
1757 error is returned.
1758 @var{freq} set new frequency parameter.
1759 @var{width} set new width parameter in herz.
1760 @var{gain} set new gain parameter in dB.
1761
1762 Full filter invocation with asendcmd may look like this:
1763 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1764 @end table
1765
1766 @section anlmdn
1767
1768 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1769
1770 Each sample is adjusted by looking for other samples with similar contexts. This
1771 context similarity is defined by comparing their surrounding patches of size
1772 @option{p}. Patches are searched in an area of @option{r} around the sample.
1773
1774 The filter accepts the following options.
1775
1776 @table @option
1777 @item s
1778 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1779
1780 @item p
1781 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1782 Default value is 2 milliseconds.
1783
1784 @item r
1785 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1786 Default value is 6 milliseconds.
1787
1788 @item o
1789 Set the output mode.
1790
1791 It accepts the following values:
1792 @table @option
1793 @item i
1794 Pass input unchanged.
1795
1796 @item o
1797 Pass noise filtered out.
1798
1799 @item n
1800 Pass only noise.
1801
1802 Default value is @var{o}.
1803 @end table
1804 @end table
1805
1806 @section anull
1807
1808 Pass the audio source unchanged to the output.
1809
1810 @section apad
1811
1812 Pad the end of an audio stream with silence.
1813
1814 This can be used together with @command{ffmpeg} @option{-shortest} to
1815 extend audio streams to the same length as the video stream.
1816
1817 A description of the accepted options follows.
1818
1819 @table @option
1820 @item packet_size
1821 Set silence packet size. Default value is 4096.
1822
1823 @item pad_len
1824 Set the number of samples of silence to add to the end. After the
1825 value is reached, the stream is terminated. This option is mutually
1826 exclusive with @option{whole_len}.
1827
1828 @item whole_len
1829 Set the minimum total number of samples in the output audio stream. If
1830 the value is longer than the input audio length, silence is added to
1831 the end, until the value is reached. This option is mutually exclusive
1832 with @option{pad_len}.
1833
1834 @item pad_dur
1835 Specify the duration of samples of silence to add. See
1836 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1837 for the accepted syntax. Used only if set to non-zero value.
1838
1839 @item whole_dur
1840 Specify the minimum total duration in the output audio stream. See
1841 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1842 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1843 the input audio length, silence is added to the end, until the value is reached.
1844 This option is mutually exclusive with @option{pad_dur}
1845 @end table
1846
1847 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1848 nor @option{whole_dur} option is set, the filter will add silence to the end of
1849 the input stream indefinitely.
1850
1851 @subsection Examples
1852
1853 @itemize
1854 @item
1855 Add 1024 samples of silence to the end of the input:
1856 @example
1857 apad=pad_len=1024
1858 @end example
1859
1860 @item
1861 Make sure the audio output will contain at least 10000 samples, pad
1862 the input with silence if required:
1863 @example
1864 apad=whole_len=10000
1865 @end example
1866
1867 @item
1868 Use @command{ffmpeg} to pad the audio input with silence, so that the
1869 video stream will always result the shortest and will be converted
1870 until the end in the output file when using the @option{shortest}
1871 option:
1872 @example
1873 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1874 @end example
1875 @end itemize
1876
1877 @section aphaser
1878 Add a phasing effect to the input audio.
1879
1880 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1881 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1882
1883 A description of the accepted parameters follows.
1884
1885 @table @option
1886 @item in_gain
1887 Set input gain. Default is 0.4.
1888
1889 @item out_gain
1890 Set output gain. Default is 0.74
1891
1892 @item delay
1893 Set delay in milliseconds. Default is 3.0.
1894
1895 @item decay
1896 Set decay. Default is 0.4.
1897
1898 @item speed
1899 Set modulation speed in Hz. Default is 0.5.
1900
1901 @item type
1902 Set modulation type. Default is triangular.
1903
1904 It accepts the following values:
1905 @table @samp
1906 @item triangular, t
1907 @item sinusoidal, s
1908 @end table
1909 @end table
1910
1911 @section apulsator
1912
1913 Audio pulsator is something between an autopanner and a tremolo.
1914 But it can produce funny stereo effects as well. Pulsator changes the volume
1915 of the left and right channel based on a LFO (low frequency oscillator) with
1916 different waveforms and shifted phases.
1917 This filter have the ability to define an offset between left and right
1918 channel. An offset of 0 means that both LFO shapes match each other.
1919 The left and right channel are altered equally - a conventional tremolo.
1920 An offset of 50% means that the shape of the right channel is exactly shifted
1921 in phase (or moved backwards about half of the frequency) - pulsator acts as
1922 an autopanner. At 1 both curves match again. Every setting in between moves the
1923 phase shift gapless between all stages and produces some "bypassing" sounds with
1924 sine and triangle waveforms. The more you set the offset near 1 (starting from
1925 the 0.5) the faster the signal passes from the left to the right speaker.
1926
1927 The filter accepts the following options:
1928
1929 @table @option
1930 @item level_in
1931 Set input gain. By default it is 1. Range is [0.015625 - 64].
1932
1933 @item level_out
1934 Set output gain. By default it is 1. Range is [0.015625 - 64].
1935
1936 @item mode
1937 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1938 sawup or sawdown. Default is sine.
1939
1940 @item amount
1941 Set modulation. Define how much of original signal is affected by the LFO.
1942
1943 @item offset_l
1944 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1945
1946 @item offset_r
1947 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1948
1949 @item width
1950 Set pulse width. Default is 1. Allowed range is [0 - 2].
1951
1952 @item timing
1953 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1954
1955 @item bpm
1956 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1957 is set to bpm.
1958
1959 @item ms
1960 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1961 is set to ms.
1962
1963 @item hz
1964 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1965 if timing is set to hz.
1966 @end table
1967
1968 @anchor{aresample}
1969 @section aresample
1970
1971 Resample the input audio to the specified parameters, using the
1972 libswresample library. If none are specified then the filter will
1973 automatically convert between its input and output.
1974
1975 This filter is also able to stretch/squeeze the audio data to make it match
1976 the timestamps or to inject silence / cut out audio to make it match the
1977 timestamps, do a combination of both or do neither.
1978
1979 The filter accepts the syntax
1980 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1981 expresses a sample rate and @var{resampler_options} is a list of
1982 @var{key}=@var{value} pairs, separated by ":". See the
1983 @ref{Resampler Options,,"Resampler Options" section in the
1984 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1985 for the complete list of supported options.
1986
1987 @subsection Examples
1988
1989 @itemize
1990 @item
1991 Resample the input audio to 44100Hz:
1992 @example
1993 aresample=44100
1994 @end example
1995
1996 @item
1997 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1998 samples per second compensation:
1999 @example
2000 aresample=async=1000
2001 @end example
2002 @end itemize
2003
2004 @section areverse
2005
2006 Reverse an audio clip.
2007
2008 Warning: This filter requires memory to buffer the entire clip, so trimming
2009 is suggested.
2010
2011 @subsection Examples
2012
2013 @itemize
2014 @item
2015 Take the first 5 seconds of a clip, and reverse it.
2016 @example
2017 atrim=end=5,areverse
2018 @end example
2019 @end itemize
2020
2021 @section asetnsamples
2022
2023 Set the number of samples per each output audio frame.
2024
2025 The last output packet may contain a different number of samples, as
2026 the filter will flush all the remaining samples when the input audio
2027 signals its end.
2028
2029 The filter accepts the following options:
2030
2031 @table @option
2032
2033 @item nb_out_samples, n
2034 Set the number of frames per each output audio frame. The number is
2035 intended as the number of samples @emph{per each channel}.
2036 Default value is 1024.
2037
2038 @item pad, p
2039 If set to 1, the filter will pad the last audio frame with zeroes, so
2040 that the last frame will contain the same number of samples as the
2041 previous ones. Default value is 1.
2042 @end table
2043
2044 For example, to set the number of per-frame samples to 1234 and
2045 disable padding for the last frame, use:
2046 @example
2047 asetnsamples=n=1234:p=0
2048 @end example
2049
2050 @section asetrate
2051
2052 Set the sample rate without altering the PCM data.
2053 This will result in a change of speed and pitch.
2054
2055 The filter accepts the following options:
2056
2057 @table @option
2058 @item sample_rate, r
2059 Set the output sample rate. Default is 44100 Hz.
2060 @end table
2061
2062 @section ashowinfo
2063
2064 Show a line containing various information for each input audio frame.
2065 The input audio is not modified.
2066
2067 The shown line contains a sequence of key/value pairs of the form
2068 @var{key}:@var{value}.
2069
2070 The following values are shown in the output:
2071
2072 @table @option
2073 @item n
2074 The (sequential) number of the input frame, starting from 0.
2075
2076 @item pts
2077 The presentation timestamp of the input frame, in time base units; the time base
2078 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2079
2080 @item pts_time
2081 The presentation timestamp of the input frame in seconds.
2082
2083 @item pos
2084 position of the frame in the input stream, -1 if this information in
2085 unavailable and/or meaningless (for example in case of synthetic audio)
2086
2087 @item fmt
2088 The sample format.
2089
2090 @item chlayout
2091 The channel layout.
2092
2093 @item rate
2094 The sample rate for the audio frame.
2095
2096 @item nb_samples
2097 The number of samples (per channel) in the frame.
2098
2099 @item checksum
2100 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2101 audio, the data is treated as if all the planes were concatenated.
2102
2103 @item plane_checksums
2104 A list of Adler-32 checksums for each data plane.
2105 @end table
2106
2107 @anchor{astats}
2108 @section astats
2109
2110 Display time domain statistical information about the audio channels.
2111 Statistics are calculated and displayed for each audio channel and,
2112 where applicable, an overall figure is also given.
2113
2114 It accepts the following option:
2115 @table @option
2116 @item length
2117 Short window length in seconds, used for peak and trough RMS measurement.
2118 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2119
2120 @item metadata
2121
2122 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2123 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2124 disabled.
2125
2126 Available keys for each channel are:
2127 DC_offset
2128 Min_level
2129 Max_level
2130 Min_difference
2131 Max_difference
2132 Mean_difference
2133 RMS_difference
2134 Peak_level
2135 RMS_peak
2136 RMS_trough
2137 Crest_factor
2138 Flat_factor
2139 Peak_count
2140 Bit_depth
2141 Dynamic_range
2142 Zero_crossings
2143 Zero_crossings_rate
2144
2145 and for Overall:
2146 DC_offset
2147 Min_level
2148 Max_level
2149 Min_difference
2150 Max_difference
2151 Mean_difference
2152 RMS_difference
2153 Peak_level
2154 RMS_level
2155 RMS_peak
2156 RMS_trough
2157 Flat_factor
2158 Peak_count
2159 Bit_depth
2160 Number_of_samples
2161
2162 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2163 this @code{lavfi.astats.Overall.Peak_count}.
2164
2165 For description what each key means read below.
2166
2167 @item reset
2168 Set number of frame after which stats are going to be recalculated.
2169 Default is disabled.
2170
2171 @item measure_perchannel
2172 Select the entries which need to be measured per channel. The metadata keys can
2173 be used as flags, default is @option{all} which measures everything.
2174 @option{none} disables all per channel measurement.
2175
2176 @item measure_overall
2177 Select the entries which need to be measured overall. The metadata keys can
2178 be used as flags, default is @option{all} which measures everything.
2179 @option{none} disables all overall measurement.
2180
2181 @end table
2182
2183 A description of each shown parameter follows:
2184
2185 @table @option
2186 @item DC offset
2187 Mean amplitude displacement from zero.
2188
2189 @item Min level
2190 Minimal sample level.
2191
2192 @item Max level
2193 Maximal sample level.
2194
2195 @item Min difference
2196 Minimal difference between two consecutive samples.
2197
2198 @item Max difference
2199 Maximal difference between two consecutive samples.
2200
2201 @item Mean difference
2202 Mean difference between two consecutive samples.
2203 The average of each difference between two consecutive samples.
2204
2205 @item RMS difference
2206 Root Mean Square difference between two consecutive samples.
2207
2208 @item Peak level dB
2209 @item RMS level dB
2210 Standard peak and RMS level measured in dBFS.
2211
2212 @item RMS peak dB
2213 @item RMS trough dB
2214 Peak and trough values for RMS level measured over a short window.
2215
2216 @item Crest factor
2217 Standard ratio of peak to RMS level (note: not in dB).
2218
2219 @item Flat factor
2220 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2221 (i.e. either @var{Min level} or @var{Max level}).
2222
2223 @item Peak count
2224 Number of occasions (not the number of samples) that the signal attained either
2225 @var{Min level} or @var{Max level}.
2226
2227 @item Bit depth
2228 Overall bit depth of audio. Number of bits used for each sample.
2229
2230 @item Dynamic range
2231 Measured dynamic range of audio in dB.
2232
2233 @item Zero crossings
2234 Number of points where the waveform crosses the zero level axis.
2235
2236 @item Zero crossings rate
2237 Rate of Zero crossings and number of audio samples.
2238 @end table
2239
2240 @section atempo
2241
2242 Adjust audio tempo.
2243
2244 The filter accepts exactly one parameter, the audio tempo. If not
2245 specified then the filter will assume nominal 1.0 tempo. Tempo must
2246 be in the [0.5, 100.0] range.
2247
2248 Note that tempo greater than 2 will skip some samples rather than
2249 blend them in.  If for any reason this is a concern it is always
2250 possible to daisy-chain several instances of atempo to achieve the
2251 desired product tempo.
2252
2253 @subsection Examples
2254
2255 @itemize
2256 @item
2257 Slow down audio to 80% tempo:
2258 @example
2259 atempo=0.8
2260 @end example
2261
2262 @item
2263 To speed up audio to 300% tempo:
2264 @example
2265 atempo=3
2266 @end example
2267
2268 @item
2269 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2270 @example
2271 atempo=sqrt(3),atempo=sqrt(3)
2272 @end example
2273 @end itemize
2274
2275 @section atrim
2276
2277 Trim the input so that the output contains one continuous subpart of the input.
2278
2279 It accepts the following parameters:
2280 @table @option
2281 @item start
2282 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2283 sample with the timestamp @var{start} will be the first sample in the output.
2284
2285 @item end
2286 Specify time of the first audio sample that will be dropped, i.e. the
2287 audio sample immediately preceding the one with the timestamp @var{end} will be
2288 the last sample in the output.
2289
2290 @item start_pts
2291 Same as @var{start}, except this option sets the start timestamp in samples
2292 instead of seconds.
2293
2294 @item end_pts
2295 Same as @var{end}, except this option sets the end timestamp in samples instead
2296 of seconds.
2297
2298 @item duration
2299 The maximum duration of the output in seconds.
2300
2301 @item start_sample
2302 The number of the first sample that should be output.
2303
2304 @item end_sample
2305 The number of the first sample that should be dropped.
2306 @end table
2307
2308 @option{start}, @option{end}, and @option{duration} are expressed as time
2309 duration specifications; see
2310 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2311
2312 Note that the first two sets of the start/end options and the @option{duration}
2313 option look at the frame timestamp, while the _sample options simply count the
2314 samples that pass through the filter. So start/end_pts and start/end_sample will
2315 give different results when the timestamps are wrong, inexact or do not start at
2316 zero. Also note that this filter does not modify the timestamps. If you wish
2317 to have the output timestamps start at zero, insert the asetpts filter after the
2318 atrim filter.
2319
2320 If multiple start or end options are set, this filter tries to be greedy and
2321 keep all samples that match at least one of the specified constraints. To keep
2322 only the part that matches all the constraints at once, chain multiple atrim
2323 filters.
2324
2325 The defaults are such that all the input is kept. So it is possible to set e.g.
2326 just the end values to keep everything before the specified time.
2327
2328 Examples:
2329 @itemize
2330 @item
2331 Drop everything except the second minute of input:
2332 @example
2333 ffmpeg -i INPUT -af atrim=60:120
2334 @end example
2335
2336 @item
2337 Keep only the first 1000 samples:
2338 @example
2339 ffmpeg -i INPUT -af atrim=end_sample=1000
2340 @end example
2341
2342 @end itemize
2343
2344 @section bandpass
2345
2346 Apply a two-pole Butterworth band-pass filter with central
2347 frequency @var{frequency}, and (3dB-point) band-width width.
2348 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2349 instead of the default: constant 0dB peak gain.
2350 The filter roll off at 6dB per octave (20dB per decade).
2351
2352 The filter accepts the following options:
2353
2354 @table @option
2355 @item frequency, f
2356 Set the filter's central frequency. Default is @code{3000}.
2357
2358 @item csg
2359 Constant skirt gain if set to 1. Defaults to 0.
2360
2361 @item width_type, t
2362 Set method to specify band-width of filter.
2363 @table @option
2364 @item h
2365 Hz
2366 @item q
2367 Q-Factor
2368 @item o
2369 octave
2370 @item s
2371 slope
2372 @item k
2373 kHz
2374 @end table
2375
2376 @item width, w
2377 Specify the band-width of a filter in width_type units.
2378
2379 @item channels, c
2380 Specify which channels to filter, by default all available are filtered.
2381 @end table
2382
2383 @subsection Commands
2384
2385 This filter supports the following commands:
2386 @table @option
2387 @item frequency, f
2388 Change bandpass frequency.
2389 Syntax for the command is : "@var{frequency}"
2390
2391 @item width_type, t
2392 Change bandpass width_type.
2393 Syntax for the command is : "@var{width_type}"
2394
2395 @item width, w
2396 Change bandpass width.
2397 Syntax for the command is : "@var{width}"
2398 @end table
2399
2400 @section bandreject
2401
2402 Apply a two-pole Butterworth band-reject filter with central
2403 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2404 The filter roll off at 6dB per octave (20dB per decade).
2405
2406 The filter accepts the following options:
2407
2408 @table @option
2409 @item frequency, f
2410 Set the filter's central frequency. Default is @code{3000}.
2411
2412 @item width_type, t
2413 Set method to specify band-width of filter.
2414 @table @option
2415 @item h
2416 Hz
2417 @item q
2418 Q-Factor
2419 @item o
2420 octave
2421 @item s
2422 slope
2423 @item k
2424 kHz
2425 @end table
2426
2427 @item width, w
2428 Specify the band-width of a filter in width_type units.
2429
2430 @item channels, c
2431 Specify which channels to filter, by default all available are filtered.
2432 @end table
2433
2434 @subsection Commands
2435
2436 This filter supports the following commands:
2437 @table @option
2438 @item frequency, f
2439 Change bandreject frequency.
2440 Syntax for the command is : "@var{frequency}"
2441
2442 @item width_type, t
2443 Change bandreject width_type.
2444 Syntax for the command is : "@var{width_type}"
2445
2446 @item width, w
2447 Change bandreject width.
2448 Syntax for the command is : "@var{width}"
2449 @end table
2450
2451 @section bass, lowshelf
2452
2453 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2454 shelving filter with a response similar to that of a standard
2455 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2456
2457 The filter accepts the following options:
2458
2459 @table @option
2460 @item gain, g
2461 Give the gain at 0 Hz. Its useful range is about -20
2462 (for a large cut) to +20 (for a large boost).
2463 Beware of clipping when using a positive gain.
2464
2465 @item frequency, f
2466 Set the filter's central frequency and so can be used
2467 to extend or reduce the frequency range to be boosted or cut.
2468 The default value is @code{100} Hz.
2469
2470 @item width_type, t
2471 Set method to specify band-width of filter.
2472 @table @option
2473 @item h
2474 Hz
2475 @item q
2476 Q-Factor
2477 @item o
2478 octave
2479 @item s
2480 slope
2481 @item k
2482 kHz
2483 @end table
2484
2485 @item width, w
2486 Determine how steep is the filter's shelf transition.
2487
2488 @item channels, c
2489 Specify which channels to filter, by default all available are filtered.
2490 @end table
2491
2492 @subsection Commands
2493
2494 This filter supports the following commands:
2495 @table @option
2496 @item frequency, f
2497 Change bass frequency.
2498 Syntax for the command is : "@var{frequency}"
2499
2500 @item width_type, t
2501 Change bass width_type.
2502 Syntax for the command is : "@var{width_type}"
2503
2504 @item width, w
2505 Change bass width.
2506 Syntax for the command is : "@var{width}"
2507
2508 @item gain, g
2509 Change bass gain.
2510 Syntax for the command is : "@var{gain}"
2511 @end table
2512
2513 @section biquad
2514
2515 Apply a biquad IIR filter with the given coefficients.
2516 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2517 are the numerator and denominator coefficients respectively.
2518 and @var{channels}, @var{c} specify which channels to filter, by default all
2519 available are filtered.
2520
2521 @subsection Commands
2522
2523 This filter supports the following commands:
2524 @table @option
2525 @item a0
2526 @item a1
2527 @item a2
2528 @item b0
2529 @item b1
2530 @item b2
2531 Change biquad parameter.
2532 Syntax for the command is : "@var{value}"
2533 @end table
2534
2535 @section bs2b
2536 Bauer stereo to binaural transformation, which improves headphone listening of
2537 stereo audio records.
2538
2539 To enable compilation of this filter you need to configure FFmpeg with
2540 @code{--enable-libbs2b}.
2541
2542 It accepts the following parameters:
2543 @table @option
2544
2545 @item profile
2546 Pre-defined crossfeed level.
2547 @table @option
2548
2549 @item default
2550 Default level (fcut=700, feed=50).
2551
2552 @item cmoy
2553 Chu Moy circuit (fcut=700, feed=60).
2554
2555 @item jmeier
2556 Jan Meier circuit (fcut=650, feed=95).
2557
2558 @end table
2559
2560 @item fcut
2561 Cut frequency (in Hz).
2562
2563 @item feed
2564 Feed level (in Hz).
2565
2566 @end table
2567
2568 @section channelmap
2569
2570 Remap input channels to new locations.
2571
2572 It accepts the following parameters:
2573 @table @option
2574 @item map
2575 Map channels from input to output. The argument is a '|'-separated list of
2576 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2577 @var{in_channel} form. @var{in_channel} can be either the name of the input
2578 channel (e.g. FL for front left) or its index in the input channel layout.
2579 @var{out_channel} is the name of the output channel or its index in the output
2580 channel layout. If @var{out_channel} is not given then it is implicitly an
2581 index, starting with zero and increasing by one for each mapping.
2582
2583 @item channel_layout
2584 The channel layout of the output stream.
2585 @end table
2586
2587 If no mapping is present, the filter will implicitly map input channels to
2588 output channels, preserving indices.
2589
2590 @subsection Examples
2591
2592 @itemize
2593 @item
2594 For example, assuming a 5.1+downmix input MOV file,
2595 @example
2596 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2597 @end example
2598 will create an output WAV file tagged as stereo from the downmix channels of
2599 the input.
2600
2601 @item
2602 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2603 @example
2604 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2605 @end example
2606 @end itemize
2607
2608 @section channelsplit
2609
2610 Split each channel from an input audio stream into a separate output stream.
2611
2612 It accepts the following parameters:
2613 @table @option
2614 @item channel_layout
2615 The channel layout of the input stream. The default is "stereo".
2616 @item channels
2617 A channel layout describing the channels to be extracted as separate output streams
2618 or "all" to extract each input channel as a separate stream. The default is "all".
2619
2620 Choosing channels not present in channel layout in the input will result in an error.
2621 @end table
2622
2623 @subsection Examples
2624
2625 @itemize
2626 @item
2627 For example, assuming a stereo input MP3 file,
2628 @example
2629 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2630 @end example
2631 will create an output Matroska file with two audio streams, one containing only
2632 the left channel and the other the right channel.
2633
2634 @item
2635 Split a 5.1 WAV file into per-channel files:
2636 @example
2637 ffmpeg -i in.wav -filter_complex
2638 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2639 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2640 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2641 side_right.wav
2642 @end example
2643
2644 @item
2645 Extract only LFE from a 5.1 WAV file:
2646 @example
2647 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2648 -map '[LFE]' lfe.wav
2649 @end example
2650 @end itemize
2651
2652 @section chorus
2653 Add a chorus effect to the audio.
2654
2655 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2656
2657 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2658 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2659 The modulation depth defines the range the modulated delay is played before or after
2660 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2661 sound tuned around the original one, like in a chorus where some vocals are slightly
2662 off key.
2663
2664 It accepts the following parameters:
2665 @table @option
2666 @item in_gain
2667 Set input gain. Default is 0.4.
2668
2669 @item out_gain
2670 Set output gain. Default is 0.4.
2671
2672 @item delays
2673 Set delays. A typical delay is around 40ms to 60ms.
2674
2675 @item decays
2676 Set decays.
2677
2678 @item speeds
2679 Set speeds.
2680
2681 @item depths
2682 Set depths.
2683 @end table
2684
2685 @subsection Examples
2686
2687 @itemize
2688 @item
2689 A single delay:
2690 @example
2691 chorus=0.7:0.9:55:0.4:0.25:2
2692 @end example
2693
2694 @item
2695 Two delays:
2696 @example
2697 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2698 @end example
2699
2700 @item
2701 Fuller sounding chorus with three delays:
2702 @example
2703 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
2704 @end example
2705 @end itemize
2706
2707 @section compand
2708 Compress or expand the audio's dynamic range.
2709
2710 It accepts the following parameters:
2711
2712 @table @option
2713
2714 @item attacks
2715 @item decays
2716 A list of times in seconds for each channel over which the instantaneous level
2717 of the input signal is averaged to determine its volume. @var{attacks} refers to
2718 increase of volume and @var{decays} refers to decrease of volume. For most
2719 situations, the attack time (response to the audio getting louder) should be
2720 shorter than the decay time, because the human ear is more sensitive to sudden
2721 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2722 a typical value for decay is 0.8 seconds.
2723 If specified number of attacks & decays is lower than number of channels, the last
2724 set attack/decay will be used for all remaining channels.
2725
2726 @item points
2727 A list of points for the transfer function, specified in dB relative to the
2728 maximum possible signal amplitude. Each key points list must be defined using
2729 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2730 @code{x0/y0 x1/y1 x2/y2 ....}
2731
2732 The input values must be in strictly increasing order but the transfer function
2733 does not have to be monotonically rising. The point @code{0/0} is assumed but
2734 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2735 function are @code{-70/-70|-60/-20|1/0}.
2736
2737 @item soft-knee
2738 Set the curve radius in dB for all joints. It defaults to 0.01.
2739
2740 @item gain
2741 Set the additional gain in dB to be applied at all points on the transfer
2742 function. This allows for easy adjustment of the overall gain.
2743 It defaults to 0.
2744
2745 @item volume
2746 Set an initial volume, in dB, to be assumed for each channel when filtering
2747 starts. This permits the user to supply a nominal level initially, so that, for
2748 example, a very large gain is not applied to initial signal levels before the
2749 companding has begun to operate. A typical value for audio which is initially
2750 quiet is -90 dB. It defaults to 0.
2751
2752 @item delay
2753 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2754 delayed before being fed to the volume adjuster. Specifying a delay
2755 approximately equal to the attack/decay times allows the filter to effectively
2756 operate in predictive rather than reactive mode. It defaults to 0.
2757
2758 @end table
2759
2760 @subsection Examples
2761
2762 @itemize
2763 @item
2764 Make music with both quiet and loud passages suitable for listening to in a
2765 noisy environment:
2766 @example
2767 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2768 @end example
2769
2770 Another example for audio with whisper and explosion parts:
2771 @example
2772 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2773 @end example
2774
2775 @item
2776 A noise gate for when the noise is at a lower level than the signal:
2777 @example
2778 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2779 @end example
2780
2781 @item
2782 Here is another noise gate, this time for when the noise is at a higher level
2783 than the signal (making it, in some ways, similar to squelch):
2784 @example
2785 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2786 @end example
2787
2788 @item
2789 2:1 compression starting at -6dB:
2790 @example
2791 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2792 @end example
2793
2794 @item
2795 2:1 compression starting at -9dB:
2796 @example
2797 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2798 @end example
2799
2800 @item
2801 2:1 compression starting at -12dB:
2802 @example
2803 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2804 @end example
2805
2806 @item
2807 2:1 compression starting at -18dB:
2808 @example
2809 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2810 @end example
2811
2812 @item
2813 3:1 compression starting at -15dB:
2814 @example
2815 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2816 @end example
2817
2818 @item
2819 Compressor/Gate:
2820 @example
2821 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2822 @end example
2823
2824 @item
2825 Expander:
2826 @example
2827 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
2828 @end example
2829
2830 @item
2831 Hard limiter at -6dB:
2832 @example
2833 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2834 @end example
2835
2836 @item
2837 Hard limiter at -12dB:
2838 @example
2839 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2840 @end example
2841
2842 @item
2843 Hard noise gate at -35 dB:
2844 @example
2845 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2846 @end example
2847
2848 @item
2849 Soft limiter:
2850 @example
2851 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2852 @end example
2853 @end itemize
2854
2855 @section compensationdelay
2856
2857 Compensation Delay Line is a metric based delay to compensate differing
2858 positions of microphones or speakers.
2859
2860 For example, you have recorded guitar with two microphones placed in
2861 different location. Because the front of sound wave has fixed speed in
2862 normal conditions, the phasing of microphones can vary and depends on
2863 their location and interposition. The best sound mix can be achieved when
2864 these microphones are in phase (synchronized). Note that distance of
2865 ~30 cm between microphones makes one microphone to capture signal in
2866 antiphase to another microphone. That makes the final mix sounding moody.
2867 This filter helps to solve phasing problems by adding different delays
2868 to each microphone track and make them synchronized.
2869
2870 The best result can be reached when you take one track as base and
2871 synchronize other tracks one by one with it.
2872 Remember that synchronization/delay tolerance depends on sample rate, too.
2873 Higher sample rates will give more tolerance.
2874
2875 It accepts the following parameters:
2876
2877 @table @option
2878 @item mm
2879 Set millimeters distance. This is compensation distance for fine tuning.
2880 Default is 0.
2881
2882 @item cm
2883 Set cm distance. This is compensation distance for tightening distance setup.
2884 Default is 0.
2885
2886 @item m
2887 Set meters distance. This is compensation distance for hard distance setup.
2888 Default is 0.
2889
2890 @item dry
2891 Set dry amount. Amount of unprocessed (dry) signal.
2892 Default is 0.
2893
2894 @item wet
2895 Set wet amount. Amount of processed (wet) signal.
2896 Default is 1.
2897
2898 @item temp
2899 Set temperature degree in Celsius. This is the temperature of the environment.
2900 Default is 20.
2901 @end table
2902
2903 @section crossfeed
2904 Apply headphone crossfeed filter.
2905
2906 Crossfeed is the process of blending the left and right channels of stereo
2907 audio recording.
2908 It is mainly used to reduce extreme stereo separation of low frequencies.
2909
2910 The intent is to produce more speaker like sound to the listener.
2911
2912 The filter accepts the following options:
2913
2914 @table @option
2915 @item strength
2916 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
2917 This sets gain of low shelf filter for side part of stereo image.
2918 Default is -6dB. Max allowed is -30db when strength is set to 1.
2919
2920 @item range
2921 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
2922 This sets cut off frequency of low shelf filter. Default is cut off near
2923 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
2924
2925 @item level_in
2926 Set input gain. Default is 0.9.
2927
2928 @item level_out
2929 Set output gain. Default is 1.
2930 @end table
2931
2932 @section crystalizer
2933 Simple algorithm to expand audio dynamic range.
2934
2935 The filter accepts the following options:
2936
2937 @table @option
2938 @item i
2939 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2940 (unchanged sound) to 10.0 (maximum effect).
2941
2942 @item c
2943 Enable clipping. By default is enabled.
2944 @end table
2945
2946 @section dcshift
2947 Apply a DC shift to the audio.
2948
2949 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2950 in the recording chain) from the audio. The effect of a DC offset is reduced
2951 headroom and hence volume. The @ref{astats} filter can be used to determine if
2952 a signal has a DC offset.
2953
2954 @table @option
2955 @item shift
2956 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2957 the audio.
2958
2959 @item limitergain
2960 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2961 used to prevent clipping.
2962 @end table
2963
2964 @section drmeter
2965 Measure audio dynamic range.
2966
2967 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
2968 is found in transition material. And anything less that 8 have very poor dynamics
2969 and is very compressed.
2970
2971 The filter accepts the following options:
2972
2973 @table @option
2974 @item length
2975 Set window length in seconds used to split audio into segments of equal length.
2976 Default is 3 seconds.
2977 @end table
2978
2979 @section dynaudnorm
2980 Dynamic Audio Normalizer.
2981
2982 This filter applies a certain amount of gain to the input audio in order
2983 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2984 contrast to more "simple" normalization algorithms, the Dynamic Audio
2985 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2986 This allows for applying extra gain to the "quiet" sections of the audio
2987 while avoiding distortions or clipping the "loud" sections. In other words:
2988 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2989 sections, in the sense that the volume of each section is brought to the
2990 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2991 this goal *without* applying "dynamic range compressing". It will retain 100%
2992 of the dynamic range *within* each section of the audio file.
2993
2994 @table @option
2995 @item f
2996 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2997 Default is 500 milliseconds.
2998 The Dynamic Audio Normalizer processes the input audio in small chunks,
2999 referred to as frames. This is required, because a peak magnitude has no
3000 meaning for just a single sample value. Instead, we need to determine the
3001 peak magnitude for a contiguous sequence of sample values. While a "standard"
3002 normalizer would simply use the peak magnitude of the complete file, the
3003 Dynamic Audio Normalizer determines the peak magnitude individually for each
3004 frame. The length of a frame is specified in milliseconds. By default, the
3005 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3006 been found to give good results with most files.
3007 Note that the exact frame length, in number of samples, will be determined
3008 automatically, based on the sampling rate of the individual input audio file.
3009
3010 @item g
3011 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3012 number. Default is 31.
3013 Probably the most important parameter of the Dynamic Audio Normalizer is the
3014 @code{window size} of the Gaussian smoothing filter. The filter's window size
3015 is specified in frames, centered around the current frame. For the sake of
3016 simplicity, this must be an odd number. Consequently, the default value of 31
3017 takes into account the current frame, as well as the 15 preceding frames and
3018 the 15 subsequent frames. Using a larger window results in a stronger
3019 smoothing effect and thus in less gain variation, i.e. slower gain
3020 adaptation. Conversely, using a smaller window results in a weaker smoothing
3021 effect and thus in more gain variation, i.e. faster gain adaptation.
3022 In other words, the more you increase this value, the more the Dynamic Audio
3023 Normalizer will behave like a "traditional" normalization filter. On the
3024 contrary, the more you decrease this value, the more the Dynamic Audio
3025 Normalizer will behave like a dynamic range compressor.
3026
3027 @item p
3028 Set the target peak value. This specifies the highest permissible magnitude
3029 level for the normalized audio input. This filter will try to approach the
3030 target peak magnitude as closely as possible, but at the same time it also
3031 makes sure that the normalized signal will never exceed the peak magnitude.
3032 A frame's maximum local gain factor is imposed directly by the target peak
3033 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3034 It is not recommended to go above this value.
3035
3036 @item m
3037 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3038 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3039 factor for each input frame, i.e. the maximum gain factor that does not
3040 result in clipping or distortion. The maximum gain factor is determined by
3041 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3042 additionally bounds the frame's maximum gain factor by a predetermined
3043 (global) maximum gain factor. This is done in order to avoid excessive gain
3044 factors in "silent" or almost silent frames. By default, the maximum gain
3045 factor is 10.0, For most inputs the default value should be sufficient and
3046 it usually is not recommended to increase this value. Though, for input
3047 with an extremely low overall volume level, it may be necessary to allow even
3048 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3049 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3050 Instead, a "sigmoid" threshold function will be applied. This way, the
3051 gain factors will smoothly approach the threshold value, but never exceed that
3052 value.
3053
3054 @item r
3055 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3056 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3057 This means that the maximum local gain factor for each frame is defined
3058 (only) by the frame's highest magnitude sample. This way, the samples can
3059 be amplified as much as possible without exceeding the maximum signal
3060 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3061 Normalizer can also take into account the frame's root mean square,
3062 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3063 determine the power of a time-varying signal. It is therefore considered
3064 that the RMS is a better approximation of the "perceived loudness" than
3065 just looking at the signal's peak magnitude. Consequently, by adjusting all
3066 frames to a constant RMS value, a uniform "perceived loudness" can be
3067 established. If a target RMS value has been specified, a frame's local gain
3068 factor is defined as the factor that would result in exactly that RMS value.
3069 Note, however, that the maximum local gain factor is still restricted by the
3070 frame's highest magnitude sample, in order to prevent clipping.
3071
3072 @item n
3073 Enable channels coupling. By default is enabled.
3074 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3075 amount. This means the same gain factor will be applied to all channels, i.e.
3076 the maximum possible gain factor is determined by the "loudest" channel.
3077 However, in some recordings, it may happen that the volume of the different
3078 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3079 In this case, this option can be used to disable the channel coupling. This way,
3080 the gain factor will be determined independently for each channel, depending
3081 only on the individual channel's highest magnitude sample. This allows for
3082 harmonizing the volume of the different channels.
3083
3084 @item c
3085 Enable DC bias correction. By default is disabled.
3086 An audio signal (in the time domain) is a sequence of sample values.
3087 In the Dynamic Audio Normalizer these sample values are represented in the
3088 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3089 audio signal, or "waveform", should be centered around the zero point.
3090 That means if we calculate the mean value of all samples in a file, or in a
3091 single frame, then the result should be 0.0 or at least very close to that
3092 value. If, however, there is a significant deviation of the mean value from
3093 0.0, in either positive or negative direction, this is referred to as a
3094 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3095 Audio Normalizer provides optional DC bias correction.
3096 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3097 the mean value, or "DC correction" offset, of each input frame and subtract
3098 that value from all of the frame's sample values which ensures those samples
3099 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3100 boundaries, the DC correction offset values will be interpolated smoothly
3101 between neighbouring frames.
3102
3103 @item b
3104 Enable alternative boundary mode. By default is disabled.
3105 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3106 around each frame. This includes the preceding frames as well as the
3107 subsequent frames. However, for the "boundary" frames, located at the very
3108 beginning and at the very end of the audio file, not all neighbouring
3109 frames are available. In particular, for the first few frames in the audio
3110 file, the preceding frames are not known. And, similarly, for the last few
3111 frames in the audio file, the subsequent frames are not known. Thus, the
3112 question arises which gain factors should be assumed for the missing frames
3113 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3114 to deal with this situation. The default boundary mode assumes a gain factor
3115 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3116 "fade out" at the beginning and at the end of the input, respectively.
3117
3118 @item s
3119 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3120 By default, the Dynamic Audio Normalizer does not apply "traditional"
3121 compression. This means that signal peaks will not be pruned and thus the
3122 full dynamic range will be retained within each local neighbourhood. However,
3123 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3124 normalization algorithm with a more "traditional" compression.
3125 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3126 (thresholding) function. If (and only if) the compression feature is enabled,
3127 all input frames will be processed by a soft knee thresholding function prior
3128 to the actual normalization process. Put simply, the thresholding function is
3129 going to prune all samples whose magnitude exceeds a certain threshold value.
3130 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3131 value. Instead, the threshold value will be adjusted for each individual
3132 frame.
3133 In general, smaller parameters result in stronger compression, and vice versa.
3134 Values below 3.0 are not recommended, because audible distortion may appear.
3135 @end table
3136
3137 @section earwax
3138
3139 Make audio easier to listen to on headphones.
3140
3141 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3142 so that when listened to on headphones the stereo image is moved from
3143 inside your head (standard for headphones) to outside and in front of
3144 the listener (standard for speakers).
3145
3146 Ported from SoX.
3147
3148 @section equalizer
3149
3150 Apply a two-pole peaking equalisation (EQ) filter. With this
3151 filter, the signal-level at and around a selected frequency can
3152 be increased or decreased, whilst (unlike bandpass and bandreject
3153 filters) that at all other frequencies is unchanged.
3154
3155 In order to produce complex equalisation curves, this filter can
3156 be given several times, each with a different central frequency.
3157
3158 The filter accepts the following options:
3159
3160 @table @option
3161 @item frequency, f
3162 Set the filter's central frequency in Hz.
3163
3164 @item width_type, t
3165 Set method to specify band-width of filter.
3166 @table @option
3167 @item h
3168 Hz
3169 @item q
3170 Q-Factor
3171 @item o
3172 octave
3173 @item s
3174 slope
3175 @item k
3176 kHz
3177 @end table
3178
3179 @item width, w
3180 Specify the band-width of a filter in width_type units.
3181
3182 @item gain, g
3183 Set the required gain or attenuation in dB.
3184 Beware of clipping when using a positive gain.
3185
3186 @item channels, c
3187 Specify which channels to filter, by default all available are filtered.
3188 @end table
3189
3190 @subsection Examples
3191 @itemize
3192 @item
3193 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3194 @example
3195 equalizer=f=1000:t=h:width=200:g=-10
3196 @end example
3197
3198 @item
3199 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3200 @example
3201 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3202 @end example
3203 @end itemize
3204
3205 @subsection Commands
3206
3207 This filter supports the following commands:
3208 @table @option
3209 @item frequency, f
3210 Change equalizer frequency.
3211 Syntax for the command is : "@var{frequency}"
3212
3213 @item width_type, t
3214 Change equalizer width_type.
3215 Syntax for the command is : "@var{width_type}"
3216
3217 @item width, w
3218 Change equalizer width.
3219 Syntax for the command is : "@var{width}"
3220
3221 @item gain, g
3222 Change equalizer gain.
3223 Syntax for the command is : "@var{gain}"
3224 @end table
3225
3226 @section extrastereo
3227
3228 Linearly increases the difference between left and right channels which
3229 adds some sort of "live" effect to playback.
3230
3231 The filter accepts the following options:
3232
3233 @table @option
3234 @item m
3235 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3236 (average of both channels), with 1.0 sound will be unchanged, with
3237 -1.0 left and right channels will be swapped.
3238
3239 @item c
3240 Enable clipping. By default is enabled.
3241 @end table
3242
3243 @section firequalizer
3244 Apply FIR Equalization using arbitrary frequency response.
3245
3246 The filter accepts the following option:
3247
3248 @table @option
3249 @item gain
3250 Set gain curve equation (in dB). The expression can contain variables:
3251 @table @option
3252 @item f
3253 the evaluated frequency
3254 @item sr
3255 sample rate
3256 @item ch
3257 channel number, set to 0 when multichannels evaluation is disabled
3258 @item chid
3259 channel id, see libavutil/channel_layout.h, set to the first channel id when
3260 multichannels evaluation is disabled
3261 @item chs
3262 number of channels
3263 @item chlayout
3264 channel_layout, see libavutil/channel_layout.h
3265
3266 @end table
3267 and functions:
3268 @table @option
3269 @item gain_interpolate(f)
3270 interpolate gain on frequency f based on gain_entry
3271 @item cubic_interpolate(f)
3272 same as gain_interpolate, but smoother
3273 @end table
3274 This option is also available as command. Default is @code{gain_interpolate(f)}.
3275
3276 @item gain_entry
3277 Set gain entry for gain_interpolate function. The expression can
3278 contain functions:
3279 @table @option
3280 @item entry(f, g)
3281 store gain entry at frequency f with value g
3282 @end table
3283 This option is also available as command.
3284
3285 @item delay
3286 Set filter delay in seconds. Higher value means more accurate.
3287 Default is @code{0.01}.
3288
3289 @item accuracy
3290 Set filter accuracy in Hz. Lower value means more accurate.
3291 Default is @code{5}.
3292
3293 @item wfunc
3294 Set window function. Acceptable values are:
3295 @table @option
3296 @item rectangular
3297 rectangular window, useful when gain curve is already smooth
3298 @item hann
3299 hann window (default)
3300 @item hamming
3301 hamming window
3302 @item blackman
3303 blackman window
3304 @item nuttall3
3305 3-terms continuous 1st derivative nuttall window
3306 @item mnuttall3
3307 minimum 3-terms discontinuous nuttall window
3308 @item nuttall
3309 4-terms continuous 1st derivative nuttall window
3310 @item bnuttall
3311 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3312 @item bharris
3313 blackman-harris window
3314 @item tukey
3315 tukey window
3316 @end table
3317
3318 @item fixed
3319 If enabled, use fixed number of audio samples. This improves speed when
3320 filtering with large delay. Default is disabled.
3321
3322 @item multi
3323 Enable multichannels evaluation on gain. Default is disabled.
3324
3325 @item zero_phase
3326 Enable zero phase mode by subtracting timestamp to compensate delay.
3327 Default is disabled.
3328
3329 @item scale
3330 Set scale used by gain. Acceptable values are:
3331 @table @option
3332 @item linlin
3333 linear frequency, linear gain
3334 @item linlog
3335 linear frequency, logarithmic (in dB) gain (default)
3336 @item loglin
3337 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3338 @item loglog
3339 logarithmic frequency, logarithmic gain
3340 @end table
3341
3342 @item dumpfile
3343 Set file for dumping, suitable for gnuplot.
3344
3345 @item dumpscale
3346 Set scale for dumpfile. Acceptable values are same with scale option.
3347 Default is linlog.
3348
3349 @item fft2
3350 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3351 Default is disabled.
3352
3353 @item min_phase
3354 Enable minimum phase impulse response. Default is disabled.
3355 @end table
3356
3357 @subsection Examples
3358 @itemize
3359 @item
3360 lowpass at 1000 Hz:
3361 @example
3362 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3363 @end example
3364 @item
3365 lowpass at 1000 Hz with gain_entry:
3366 @example
3367 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3368 @end example
3369 @item
3370 custom equalization:
3371 @example
3372 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3373 @end example
3374 @item
3375 higher delay with zero phase to compensate delay:
3376 @example
3377 firequalizer=delay=0.1:fixed=on:zero_phase=on
3378 @end example
3379 @item
3380 lowpass on left channel, highpass on right channel:
3381 @example
3382 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3383 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3384 @end example
3385 @end itemize
3386
3387 @section flanger
3388 Apply a flanging effect to the audio.
3389
3390 The filter accepts the following options:
3391
3392 @table @option
3393 @item delay
3394 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3395
3396 @item depth
3397 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3398
3399 @item regen
3400 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3401 Default value is 0.
3402
3403 @item width
3404 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3405 Default value is 71.
3406
3407 @item speed
3408 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3409
3410 @item shape
3411 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3412 Default value is @var{sinusoidal}.
3413
3414 @item phase
3415 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3416 Default value is 25.
3417
3418 @item interp
3419 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3420 Default is @var{linear}.
3421 @end table
3422
3423 @section haas
3424 Apply Haas effect to audio.
3425
3426 Note that this makes most sense to apply on mono signals.
3427 With this filter applied to mono signals it give some directionality and
3428 stretches its stereo image.
3429
3430 The filter accepts the following options:
3431
3432 @table @option
3433 @item level_in
3434 Set input level. By default is @var{1}, or 0dB
3435
3436 @item level_out
3437 Set output level. By default is @var{1}, or 0dB.
3438
3439 @item side_gain
3440 Set gain applied to side part of signal. By default is @var{1}.
3441
3442 @item middle_source
3443 Set kind of middle source. Can be one of the following:
3444
3445 @table @samp
3446 @item left
3447 Pick left channel.
3448
3449 @item right
3450 Pick right channel.
3451
3452 @item mid
3453 Pick middle part signal of stereo image.
3454
3455 @item side
3456 Pick side part signal of stereo image.
3457 @end table
3458
3459 @item middle_phase
3460 Change middle phase. By default is disabled.
3461
3462 @item left_delay
3463 Set left channel delay. By default is @var{2.05} milliseconds.
3464
3465 @item left_balance
3466 Set left channel balance. By default is @var{-1}.
3467
3468 @item left_gain
3469 Set left channel gain. By default is @var{1}.
3470
3471 @item left_phase
3472 Change left phase. By default is disabled.
3473
3474 @item right_delay
3475 Set right channel delay. By defaults is @var{2.12} milliseconds.
3476
3477 @item right_balance
3478 Set right channel balance. By default is @var{1}.
3479
3480 @item right_gain
3481 Set right channel gain. By default is @var{1}.
3482
3483 @item right_phase
3484 Change right phase. By default is enabled.
3485 @end table
3486
3487 @section hdcd
3488
3489 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3490 embedded HDCD codes is expanded into a 20-bit PCM stream.
3491
3492 The filter supports the Peak Extend and Low-level Gain Adjustment features
3493 of HDCD, and detects the Transient Filter flag.
3494
3495 @example
3496 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3497 @end example
3498
3499 When using the filter with wav, note the default encoding for wav is 16-bit,
3500 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3501 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3502 @example
3503 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3504 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3505 @end example
3506
3507 The filter accepts the following options:
3508
3509 @table @option
3510 @item disable_autoconvert
3511 Disable any automatic format conversion or resampling in the filter graph.
3512
3513 @item process_stereo
3514 Process the stereo channels together. If target_gain does not match between
3515 channels, consider it invalid and use the last valid target_gain.
3516
3517 @item cdt_ms
3518 Set the code detect timer period in ms.
3519
3520 @item force_pe
3521 Always extend peaks above -3dBFS even if PE isn't signaled.
3522
3523 @item analyze_mode
3524 Replace audio with a solid tone and adjust the amplitude to signal some
3525 specific aspect of the decoding process. The output file can be loaded in
3526 an audio editor alongside the original to aid analysis.
3527
3528 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3529
3530 Modes are:
3531 @table @samp
3532 @item 0, off
3533 Disabled
3534 @item 1, lle
3535 Gain adjustment level at each sample
3536 @item 2, pe
3537 Samples where peak extend occurs
3538 @item 3, cdt
3539 Samples where the code detect timer is active
3540 @item 4, tgm
3541 Samples where the target gain does not match between channels
3542 @end table
3543 @end table
3544
3545 @section headphone
3546
3547 Apply head-related transfer functions (HRTFs) to create virtual
3548 loudspeakers around the user for binaural listening via headphones.
3549 The HRIRs are provided via additional streams, for each channel
3550 one stereo input stream is needed.
3551
3552 The filter accepts the following options:
3553
3554 @table @option
3555 @item map
3556 Set mapping of input streams for convolution.
3557 The argument is a '|'-separated list of channel names in order as they
3558 are given as additional stream inputs for filter.
3559 This also specify number of input streams. Number of input streams
3560 must be not less than number of channels in first stream plus one.
3561
3562 @item gain
3563 Set gain applied to audio. Value is in dB. Default is 0.
3564
3565 @item type
3566 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3567 processing audio in time domain which is slow.
3568 @var{freq} is processing audio in frequency domain which is fast.
3569 Default is @var{freq}.
3570
3571 @item lfe
3572 Set custom gain for LFE channels. Value is in dB. Default is 0.
3573
3574 @item size
3575 Set size of frame in number of samples which will be processed at once.
3576 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3577
3578 @item hrir
3579 Set format of hrir stream.
3580 Default value is @var{stereo}. Alternative value is @var{multich}.
3581 If value is set to @var{stereo}, number of additional streams should
3582 be greater or equal to number of input channels in first input stream.
3583 Also each additional stream should have stereo number of channels.
3584 If value is set to @var{multich}, number of additional streams should
3585 be exactly one. Also number of input channels of additional stream
3586 should be equal or greater than twice number of channels of first input
3587 stream.
3588 @end table
3589
3590 @subsection Examples
3591
3592 @itemize
3593 @item
3594 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3595 each amovie filter use stereo file with IR coefficients as input.
3596 The files give coefficients for each position of virtual loudspeaker:
3597 @example
3598 ffmpeg -i input.wav
3599 -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"
3600 output.wav
3601 @end example
3602
3603 @item
3604 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3605 but now in @var{multich} @var{hrir} format.
3606 @example
3607 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"
3608 output.wav
3609 @end example
3610 @end itemize
3611
3612 @section highpass
3613
3614 Apply a high-pass filter with 3dB point frequency.
3615 The filter can be either single-pole, or double-pole (the default).
3616 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3617
3618 The filter accepts the following options:
3619
3620 @table @option
3621 @item frequency, f
3622 Set frequency in Hz. Default is 3000.
3623
3624 @item poles, p
3625 Set number of poles. Default is 2.
3626
3627 @item width_type, t
3628 Set method to specify band-width of filter.
3629 @table @option
3630 @item h
3631 Hz
3632 @item q
3633 Q-Factor
3634 @item o
3635 octave
3636 @item s
3637 slope
3638 @item k
3639 kHz
3640 @end table
3641
3642 @item width, w
3643 Specify the band-width of a filter in width_type units.
3644 Applies only to double-pole filter.
3645 The default is 0.707q and gives a Butterworth response.
3646
3647 @item channels, c
3648 Specify which channels to filter, by default all available are filtered.
3649 @end table
3650
3651 @subsection Commands
3652
3653 This filter supports the following commands:
3654 @table @option
3655 @item frequency, f
3656 Change highpass frequency.
3657 Syntax for the command is : "@var{frequency}"
3658
3659 @item width_type, t
3660 Change highpass width_type.
3661 Syntax for the command is : "@var{width_type}"
3662
3663 @item width, w
3664 Change highpass width.
3665 Syntax for the command is : "@var{width}"
3666 @end table
3667
3668 @section join
3669
3670 Join multiple input streams into one multi-channel stream.
3671
3672 It accepts the following parameters:
3673 @table @option
3674
3675 @item inputs
3676 The number of input streams. It defaults to 2.
3677
3678 @item channel_layout
3679 The desired output channel layout. It defaults to stereo.
3680
3681 @item map
3682 Map channels from inputs to output. The argument is a '|'-separated list of
3683 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3684 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3685 can be either the name of the input channel (e.g. FL for front left) or its
3686 index in the specified input stream. @var{out_channel} is the name of the output
3687 channel.
3688 @end table
3689
3690 The filter will attempt to guess the mappings when they are not specified
3691 explicitly. It does so by first trying to find an unused matching input channel
3692 and if that fails it picks the first unused input channel.
3693
3694 Join 3 inputs (with properly set channel layouts):
3695 @example
3696 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3697 @end example
3698
3699 Build a 5.1 output from 6 single-channel streams:
3700 @example
3701 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3702 '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'
3703 out
3704 @end example
3705
3706 @section ladspa
3707
3708 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3709
3710 To enable compilation of this filter you need to configure FFmpeg with
3711 @code{--enable-ladspa}.
3712
3713 @table @option
3714 @item file, f
3715 Specifies the name of LADSPA plugin library to load. If the environment
3716 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3717 each one of the directories specified by the colon separated list in
3718 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3719 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3720 @file{/usr/lib/ladspa/}.
3721
3722 @item plugin, p
3723 Specifies the plugin within the library. Some libraries contain only
3724 one plugin, but others contain many of them. If this is not set filter
3725 will list all available plugins within the specified library.
3726
3727 @item controls, c
3728 Set the '|' separated list of controls which are zero or more floating point
3729 values that determine the behavior of the loaded plugin (for example delay,
3730 threshold or gain).
3731 Controls need to be defined using the following syntax:
3732 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3733 @var{valuei} is the value set on the @var{i}-th control.
3734 Alternatively they can be also defined using the following syntax:
3735 @var{value0}|@var{value1}|@var{value2}|..., where
3736 @var{valuei} is the value set on the @var{i}-th control.
3737 If @option{controls} is set to @code{help}, all available controls and
3738 their valid ranges are printed.
3739
3740 @item sample_rate, s
3741 Specify the sample rate, default to 44100. Only used if plugin have
3742 zero inputs.
3743
3744 @item nb_samples, n
3745 Set the number of samples per channel per each output frame, default
3746 is 1024. Only used if plugin have zero inputs.
3747
3748 @item duration, d
3749 Set the minimum duration of the sourced audio. See
3750 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3751 for the accepted syntax.
3752 Note that the resulting duration may be greater than the specified duration,
3753 as the generated audio is always cut at the end of a complete frame.
3754 If not specified, or the expressed duration is negative, the audio is
3755 supposed to be generated forever.
3756 Only used if plugin have zero inputs.
3757
3758 @end table
3759
3760 @subsection Examples
3761
3762 @itemize
3763 @item
3764 List all available plugins within amp (LADSPA example plugin) library:
3765 @example
3766 ladspa=file=amp
3767 @end example
3768
3769 @item
3770 List all available controls and their valid ranges for @code{vcf_notch}
3771 plugin from @code{VCF} library:
3772 @example
3773 ladspa=f=vcf:p=vcf_notch:c=help
3774 @end example
3775
3776 @item
3777 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3778 plugin library:
3779 @example
3780 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3781 @end example
3782
3783 @item
3784 Add reverberation to the audio using TAP-plugins
3785 (Tom's Audio Processing plugins):
3786 @example
3787 ladspa=file=tap_reverb:tap_reverb
3788 @end example
3789
3790 @item
3791 Generate white noise, with 0.2 amplitude:
3792 @example
3793 ladspa=file=cmt:noise_source_white:c=c0=.2
3794 @end example
3795
3796 @item
3797 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3798 @code{C* Audio Plugin Suite} (CAPS) library:
3799 @example
3800 ladspa=file=caps:Click:c=c1=20'
3801 @end example
3802
3803 @item
3804 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3805 @example
3806 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3807 @end example
3808
3809 @item
3810 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3811 @code{SWH Plugins} collection:
3812 @example
3813 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3814 @end example
3815
3816 @item
3817 Attenuate low frequencies using Multiband EQ from Steve Harris
3818 @code{SWH Plugins} collection:
3819 @example
3820 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3821 @end example
3822
3823 @item
3824 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3825 (CAPS) library:
3826 @example
3827 ladspa=caps:Narrower
3828 @end example
3829
3830 @item
3831 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3832 @example
3833 ladspa=caps:White:.2
3834 @end example
3835
3836 @item
3837 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3838 @example
3839 ladspa=caps:Fractal:c=c1=1
3840 @end example
3841
3842 @item
3843 Dynamic volume normalization using @code{VLevel} plugin:
3844 @example
3845 ladspa=vlevel-ladspa:vlevel_mono
3846 @end example
3847 @end itemize
3848
3849 @subsection Commands
3850
3851 This filter supports the following commands:
3852 @table @option
3853 @item cN
3854 Modify the @var{N}-th control value.
3855
3856 If the specified value is not valid, it is ignored and prior one is kept.
3857 @end table
3858
3859 @section loudnorm
3860
3861 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
3862 Support for both single pass (livestreams, files) and double pass (files) modes.
3863 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
3864 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
3865 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
3866
3867 The filter accepts the following options:
3868
3869 @table @option
3870 @item I, i
3871 Set integrated loudness target.
3872 Range is -70.0 - -5.0. Default value is -24.0.
3873
3874 @item LRA, lra
3875 Set loudness range target.
3876 Range is 1.0 - 20.0. Default value is 7.0.
3877
3878 @item TP, tp
3879 Set maximum true peak.
3880 Range is -9.0 - +0.0. Default value is -2.0.
3881
3882 @item measured_I, measured_i
3883 Measured IL of input file.
3884 Range is -99.0 - +0.0.
3885
3886 @item measured_LRA, measured_lra
3887 Measured LRA of input file.
3888 Range is  0.0 - 99.0.
3889
3890 @item measured_TP, measured_tp
3891 Measured true peak of input file.
3892 Range is  -99.0 - +99.0.
3893
3894 @item measured_thresh
3895 Measured threshold of input file.
3896 Range is -99.0 - +0.0.
3897
3898 @item offset
3899 Set offset gain. Gain is applied before the true-peak limiter.
3900 Range is  -99.0 - +99.0. Default is +0.0.
3901
3902 @item linear
3903 Normalize linearly if possible.
3904 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3905 to be specified in order to use this mode.
3906 Options are true or false. Default is true.
3907
3908 @item dual_mono
3909 Treat mono input files as "dual-mono". If a mono file is intended for playback
3910 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3911 If set to @code{true}, this option will compensate for this effect.
3912 Multi-channel input files are not affected by this option.
3913 Options are true or false. Default is false.
3914
3915 @item print_format
3916 Set print format for stats. Options are summary, json, or none.
3917 Default value is none.
3918 @end table
3919
3920 @section lowpass
3921
3922 Apply a low-pass filter with 3dB point frequency.
3923 The filter can be either single-pole or double-pole (the default).
3924 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3925
3926 The filter accepts the following options:
3927
3928 @table @option
3929 @item frequency, f
3930 Set frequency in Hz. Default is 500.
3931
3932 @item poles, p
3933 Set number of poles. Default is 2.
3934
3935 @item width_type, t
3936 Set method to specify band-width of filter.
3937 @table @option
3938 @item h
3939 Hz
3940 @item q
3941 Q-Factor
3942 @item o
3943 octave
3944 @item s
3945 slope
3946 @item k
3947 kHz
3948 @end table
3949
3950 @item width, w
3951 Specify the band-width of a filter in width_type units.
3952 Applies only to double-pole filter.
3953 The default is 0.707q and gives a Butterworth response.
3954
3955 @item channels, c
3956 Specify which channels to filter, by default all available are filtered.
3957 @end table
3958
3959 @subsection Examples
3960 @itemize
3961 @item
3962 Lowpass only LFE channel, it LFE is not present it does nothing:
3963 @example
3964 lowpass=c=LFE
3965 @end example
3966 @end itemize
3967
3968 @subsection Commands
3969
3970 This filter supports the following commands:
3971 @table @option
3972 @item frequency, f
3973 Change lowpass frequency.
3974 Syntax for the command is : "@var{frequency}"
3975
3976 @item width_type, t
3977 Change lowpass width_type.
3978 Syntax for the command is : "@var{width_type}"
3979
3980 @item width, w
3981 Change lowpass width.
3982 Syntax for the command is : "@var{width}"
3983 @end table
3984
3985 @section lv2
3986
3987 Load a LV2 (LADSPA Version 2) plugin.
3988
3989 To enable compilation of this filter you need to configure FFmpeg with
3990 @code{--enable-lv2}.
3991
3992 @table @option
3993 @item plugin, p
3994 Specifies the plugin URI. You may need to escape ':'.
3995
3996 @item controls, c
3997 Set the '|' separated list of controls which are zero or more floating point
3998 values that determine the behavior of the loaded plugin (for example delay,
3999 threshold or gain).
4000 If @option{controls} is set to @code{help}, all available controls and
4001 their valid ranges are printed.
4002
4003 @item sample_rate, s
4004 Specify the sample rate, default to 44100. Only used if plugin have
4005 zero inputs.
4006
4007 @item nb_samples, n
4008 Set the number of samples per channel per each output frame, default
4009 is 1024. Only used if plugin have zero inputs.
4010
4011 @item duration, d
4012 Set the minimum duration of the sourced audio. See
4013 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4014 for the accepted syntax.
4015 Note that the resulting duration may be greater than the specified duration,
4016 as the generated audio is always cut at the end of a complete frame.
4017 If not specified, or the expressed duration is negative, the audio is
4018 supposed to be generated forever.
4019 Only used if plugin have zero inputs.
4020 @end table
4021
4022 @subsection Examples
4023
4024 @itemize
4025 @item
4026 Apply bass enhancer plugin from Calf:
4027 @example
4028 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4029 @end example
4030
4031 @item
4032 Apply vinyl plugin from Calf:
4033 @example
4034 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4035 @end example
4036
4037 @item
4038 Apply bit crusher plugin from ArtyFX:
4039 @example
4040 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4041 @end example
4042 @end itemize
4043
4044 @section mcompand
4045 Multiband Compress or expand the audio's dynamic range.
4046
4047 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4048 This is akin to the crossover of a loudspeaker, and results in flat frequency
4049 response when absent compander action.
4050
4051 It accepts the following parameters:
4052
4053 @table @option
4054 @item args
4055 This option syntax is:
4056 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4057 For explanation of each item refer to compand filter documentation.
4058 @end table
4059
4060 @anchor{pan}
4061 @section pan
4062
4063 Mix channels with specific gain levels. The filter accepts the output
4064 channel layout followed by a set of channels definitions.
4065
4066 This filter is also designed to efficiently remap the channels of an audio
4067 stream.
4068
4069 The filter accepts parameters of the form:
4070 "@var{l}|@var{outdef}|@var{outdef}|..."
4071
4072 @table @option
4073 @item l
4074 output channel layout or number of channels
4075
4076 @item outdef
4077 output channel specification, of the form:
4078 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4079
4080 @item out_name
4081 output channel to define, either a channel name (FL, FR, etc.) or a channel
4082 number (c0, c1, etc.)
4083
4084 @item gain
4085 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4086
4087 @item in_name
4088 input channel to use, see out_name for details; it is not possible to mix
4089 named and numbered input channels
4090 @end table
4091
4092 If the `=' in a channel specification is replaced by `<', then the gains for
4093 that specification will be renormalized so that the total is 1, thus
4094 avoiding clipping noise.
4095
4096 @subsection Mixing examples
4097
4098 For example, if you want to down-mix from stereo to mono, but with a bigger
4099 factor for the left channel:
4100 @example
4101 pan=1c|c0=0.9*c0+0.1*c1
4102 @end example
4103
4104 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4105 7-channels surround:
4106 @example
4107 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4108 @end example
4109
4110 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4111 that should be preferred (see "-ac" option) unless you have very specific
4112 needs.
4113
4114 @subsection Remapping examples
4115
4116 The channel remapping will be effective if, and only if:
4117
4118 @itemize
4119 @item gain coefficients are zeroes or ones,
4120 @item only one input per channel output,
4121 @end itemize
4122
4123 If all these conditions are satisfied, the filter will notify the user ("Pure
4124 channel mapping detected"), and use an optimized and lossless method to do the
4125 remapping.
4126
4127 For example, if you have a 5.1 source and want a stereo audio stream by
4128 dropping the extra channels:
4129 @example
4130 pan="stereo| c0=FL | c1=FR"
4131 @end example
4132
4133 Given the same source, you can also switch front left and front right channels
4134 and keep the input channel layout:
4135 @example
4136 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4137 @end example
4138
4139 If the input is a stereo audio stream, you can mute the front left channel (and
4140 still keep the stereo channel layout) with:
4141 @example
4142 pan="stereo|c1=c1"
4143 @end example
4144
4145 Still with a stereo audio stream input, you can copy the right channel in both
4146 front left and right:
4147 @example
4148 pan="stereo| c0=FR | c1=FR"
4149 @end example
4150
4151 @section replaygain
4152
4153 ReplayGain scanner filter. This filter takes an audio stream as an input and
4154 outputs it unchanged.
4155 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4156
4157 @section resample
4158
4159 Convert the audio sample format, sample rate and channel layout. It is
4160 not meant to be used directly.
4161
4162 @section rubberband
4163 Apply time-stretching and pitch-shifting with librubberband.
4164
4165 To enable compilation of this filter, you need to configure FFmpeg with
4166 @code{--enable-librubberband}.
4167
4168 The filter accepts the following options:
4169
4170 @table @option
4171 @item tempo
4172 Set tempo scale factor.
4173
4174 @item pitch
4175 Set pitch scale factor.
4176
4177 @item transients
4178 Set transients detector.
4179 Possible values are:
4180 @table @var
4181 @item crisp
4182 @item mixed
4183 @item smooth
4184 @end table
4185
4186 @item detector
4187 Set detector.
4188 Possible values are:
4189 @table @var
4190 @item compound
4191 @item percussive
4192 @item soft
4193 @end table
4194
4195 @item phase
4196 Set phase.
4197 Possible values are:
4198 @table @var
4199 @item laminar
4200 @item independent
4201 @end table
4202
4203 @item window
4204 Set processing window size.
4205 Possible values are:
4206 @table @var
4207 @item standard
4208 @item short
4209 @item long
4210 @end table
4211
4212 @item smoothing
4213 Set smoothing.
4214 Possible values are:
4215 @table @var
4216 @item off
4217 @item on
4218 @end table
4219
4220 @item formant
4221 Enable formant preservation when shift pitching.
4222 Possible values are:
4223 @table @var
4224 @item shifted
4225 @item preserved
4226 @end table
4227
4228 @item pitchq
4229 Set pitch quality.
4230 Possible values are:
4231 @table @var
4232 @item quality
4233 @item speed
4234 @item consistency
4235 @end table
4236
4237 @item channels
4238 Set channels.
4239 Possible values are:
4240 @table @var
4241 @item apart
4242 @item together
4243 @end table
4244 @end table
4245
4246 @section sidechaincompress
4247
4248 This filter acts like normal compressor but has the ability to compress
4249 detected signal using second input signal.
4250 It needs two input streams and returns one output stream.
4251 First input stream will be processed depending on second stream signal.
4252 The filtered signal then can be filtered with other filters in later stages of
4253 processing. See @ref{pan} and @ref{amerge} filter.
4254
4255 The filter accepts the following options:
4256
4257 @table @option
4258 @item level_in
4259 Set input gain. Default is 1. Range is between 0.015625 and 64.
4260
4261 @item mode
4262 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4263 Default is @code{downward}.
4264
4265 @item threshold
4266 If a signal of second stream raises above this level it will affect the gain
4267 reduction of first stream.
4268 By default is 0.125. Range is between 0.00097563 and 1.
4269
4270 @item ratio
4271 Set a ratio about which the signal is reduced. 1:2 means that if the level
4272 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4273 Default is 2. Range is between 1 and 20.
4274
4275 @item attack
4276 Amount of milliseconds the signal has to rise above the threshold before gain
4277 reduction starts. Default is 20. Range is between 0.01 and 2000.
4278
4279 @item release
4280 Amount of milliseconds the signal has to fall below the threshold before
4281 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4282
4283 @item makeup
4284 Set the amount by how much signal will be amplified after processing.
4285 Default is 1. Range is from 1 to 64.
4286
4287 @item knee
4288 Curve the sharp knee around the threshold to enter gain reduction more softly.
4289 Default is 2.82843. Range is between 1 and 8.
4290
4291 @item link
4292 Choose if the @code{average} level between all channels of side-chain stream
4293 or the louder(@code{maximum}) channel of side-chain stream affects the
4294 reduction. Default is @code{average}.
4295
4296 @item detection
4297 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4298 of @code{rms}. Default is @code{rms} which is mainly smoother.
4299
4300 @item level_sc
4301 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4302
4303 @item mix
4304 How much to use compressed signal in output. Default is 1.
4305 Range is between 0 and 1.
4306 @end table
4307
4308 @subsection Examples
4309
4310 @itemize
4311 @item
4312 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4313 depending on the signal of 2nd input and later compressed signal to be
4314 merged with 2nd input:
4315 @example
4316 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4317 @end example
4318 @end itemize
4319
4320 @section sidechaingate
4321
4322 A sidechain gate acts like a normal (wideband) gate but has the ability to
4323 filter the detected signal before sending it to the gain reduction stage.
4324 Normally a gate uses the full range signal to detect a level above the
4325 threshold.
4326 For example: If you cut all lower frequencies from your sidechain signal
4327 the gate will decrease the volume of your track only if not enough highs
4328 appear. With this technique you are able to reduce the resonation of a
4329 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4330 guitar.
4331 It needs two input streams and returns one output stream.
4332 First input stream will be processed depending on second stream signal.
4333
4334 The filter accepts the following options:
4335
4336 @table @option
4337 @item level_in
4338 Set input level before filtering.
4339 Default is 1. Allowed range is from 0.015625 to 64.
4340
4341 @item mode
4342 Set the mode of operation. Can be @code{upward} or @code{downward}.
4343 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4344 will be amplified, expanding dynamic range in upward direction.
4345 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4346
4347 @item range
4348 Set the level of gain reduction when the signal is below the threshold.
4349 Default is 0.06125. Allowed range is from 0 to 1.
4350 Setting this to 0 disables reduction and then filter behaves like expander.
4351
4352 @item threshold
4353 If a signal rises above this level the gain reduction is released.
4354 Default is 0.125. Allowed range is from 0 to 1.
4355
4356 @item ratio
4357 Set a ratio about which the signal is reduced.
4358 Default is 2. Allowed range is from 1 to 9000.
4359
4360 @item attack
4361 Amount of milliseconds the signal has to rise above the threshold before gain
4362 reduction stops.
4363 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4364
4365 @item release
4366 Amount of milliseconds the signal has to fall below the threshold before the
4367 reduction is increased again. Default is 250 milliseconds.
4368 Allowed range is from 0.01 to 9000.
4369
4370 @item makeup
4371 Set amount of amplification of signal after processing.
4372 Default is 1. Allowed range is from 1 to 64.
4373
4374 @item knee
4375 Curve the sharp knee around the threshold to enter gain reduction more softly.
4376 Default is 2.828427125. Allowed range is from 1 to 8.
4377
4378 @item detection
4379 Choose if exact signal should be taken for detection or an RMS like one.
4380 Default is rms. Can be peak or rms.
4381
4382 @item link
4383 Choose if the average level between all channels or the louder channel affects
4384 the reduction.
4385 Default is average. Can be average or maximum.
4386
4387 @item level_sc
4388 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4389 @end table
4390
4391 @section silencedetect
4392
4393 Detect silence in an audio stream.
4394
4395 This filter logs a message when it detects that the input audio volume is less
4396 or equal to a noise tolerance value for a duration greater or equal to the
4397 minimum detected noise duration.
4398
4399 The printed times and duration are expressed in seconds.
4400
4401 The filter accepts the following options:
4402
4403 @table @option
4404 @item noise, n
4405 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4406 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4407
4408 @item duration, d
4409 Set silence duration until notification (default is 2 seconds).
4410
4411 @item mono, m
4412 Process each channel separately, instead of combined. By default is disabled.
4413 @end table
4414
4415 @subsection Examples
4416
4417 @itemize
4418 @item
4419 Detect 5 seconds of silence with -50dB noise tolerance:
4420 @example
4421 silencedetect=n=-50dB:d=5
4422 @end example
4423
4424 @item
4425 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4426 tolerance in @file{silence.mp3}:
4427 @example
4428 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4429 @end example
4430 @end itemize
4431
4432 @section silenceremove
4433
4434 Remove silence from the beginning, middle or end of the audio.
4435
4436 The filter accepts the following options:
4437
4438 @table @option
4439 @item start_periods
4440 This value is used to indicate if audio should be trimmed at beginning of
4441 the audio. A value of zero indicates no silence should be trimmed from the
4442 beginning. When specifying a non-zero value, it trims audio up until it
4443 finds non-silence. Normally, when trimming silence from beginning of audio
4444 the @var{start_periods} will be @code{1} but it can be increased to higher
4445 values to trim all audio up to specific count of non-silence periods.
4446 Default value is @code{0}.
4447
4448 @item start_duration
4449 Specify the amount of time that non-silence must be detected before it stops
4450 trimming audio. By increasing the duration, bursts of noises can be treated
4451 as silence and trimmed off. Default value is @code{0}.
4452
4453 @item start_threshold
4454 This indicates what sample value should be treated as silence. For digital
4455 audio, a value of @code{0} may be fine but for audio recorded from analog,
4456 you may wish to increase the value to account for background noise.
4457 Can be specified in dB (in case "dB" is appended to the specified value)
4458 or amplitude ratio. Default value is @code{0}.
4459
4460 @item start_silence
4461 Specify max duration of silence at beginning that will be kept after
4462 trimming. Default is 0, which is equal to trimming all samples detected
4463 as silence.
4464
4465 @item start_mode
4466 Specify mode of detection of silence end in start of multi-channel audio.
4467 Can be @var{any} or @var{all}. Default is @var{any}.
4468 With @var{any}, any sample that is detected as non-silence will cause
4469 stopped trimming of silence.
4470 With @var{all}, only if all channels are detected as non-silence will cause
4471 stopped trimming of silence.
4472
4473 @item stop_periods
4474 Set the count for trimming silence from the end of audio.
4475 To remove silence from the middle of a file, specify a @var{stop_periods}
4476 that is negative. This value is then treated as a positive value and is
4477 used to indicate the effect should restart processing as specified by
4478 @var{start_periods}, making it suitable for removing periods of silence
4479 in the middle of the audio.
4480 Default value is @code{0}.
4481
4482 @item stop_duration
4483 Specify a duration of silence that must exist before audio is not copied any
4484 more. By specifying a higher duration, silence that is wanted can be left in
4485 the audio.
4486 Default value is @code{0}.
4487
4488 @item stop_threshold
4489 This is the same as @option{start_threshold} but for trimming silence from
4490 the end of audio.
4491 Can be specified in dB (in case "dB" is appended to the specified value)
4492 or amplitude ratio. Default value is @code{0}.
4493
4494 @item stop_silence
4495 Specify max duration of silence at end that will be kept after
4496 trimming. Default is 0, which is equal to trimming all samples detected
4497 as silence.
4498
4499 @item stop_mode
4500 Specify mode of detection of silence start in end of multi-channel audio.
4501 Can be @var{any} or @var{all}. Default is @var{any}.
4502 With @var{any}, any sample that is detected as non-silence will cause
4503 stopped trimming of silence.
4504 With @var{all}, only if all channels are detected as non-silence will cause
4505 stopped trimming of silence.
4506
4507 @item detection
4508 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4509 and works better with digital silence which is exactly 0.
4510 Default value is @code{rms}.
4511
4512 @item window
4513 Set duration in number of seconds used to calculate size of window in number
4514 of samples for detecting silence.
4515 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4516 @end table
4517
4518 @subsection Examples
4519
4520 @itemize
4521 @item
4522 The following example shows how this filter can be used to start a recording
4523 that does not contain the delay at the start which usually occurs between
4524 pressing the record button and the start of the performance:
4525 @example
4526 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4527 @end example
4528
4529 @item
4530 Trim all silence encountered from beginning to end where there is more than 1
4531 second of silence in audio:
4532 @example
4533 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4534 @end example
4535 @end itemize
4536
4537 @section sofalizer
4538
4539 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4540 loudspeakers around the user for binaural listening via headphones (audio
4541 formats up to 9 channels supported).
4542 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4543 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4544 Austrian Academy of Sciences.
4545
4546 To enable compilation of this filter you need to configure FFmpeg with
4547 @code{--enable-libmysofa}.
4548
4549 The filter accepts the following options:
4550
4551 @table @option
4552 @item sofa
4553 Set the SOFA file used for rendering.
4554
4555 @item gain
4556 Set gain applied to audio. Value is in dB. Default is 0.
4557
4558 @item rotation
4559 Set rotation of virtual loudspeakers in deg. Default is 0.
4560
4561 @item elevation
4562 Set elevation of virtual speakers in deg. Default is 0.
4563
4564 @item radius
4565 Set distance in meters between loudspeakers and the listener with near-field
4566 HRTFs. Default is 1.
4567
4568 @item type
4569 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4570 processing audio in time domain which is slow.
4571 @var{freq} is processing audio in frequency domain which is fast.
4572 Default is @var{freq}.
4573
4574 @item speakers
4575 Set custom positions of virtual loudspeakers. Syntax for this option is:
4576 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4577 Each virtual loudspeaker is described with short channel name following with
4578 azimuth and elevation in degrees.
4579 Each virtual loudspeaker description is separated by '|'.
4580 For example to override front left and front right channel positions use:
4581 'speakers=FL 45 15|FR 345 15'.
4582 Descriptions with unrecognised channel names are ignored.
4583
4584 @item lfegain
4585 Set custom gain for LFE channels. Value is in dB. Default is 0.
4586
4587 @item framesize
4588 Set custom frame size in number of samples. Default is 1024.
4589 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4590 is set to @var{freq}.
4591
4592 @item normalize
4593 Should all IRs be normalized upon importing SOFA file.
4594 By default is enabled.
4595
4596 @item interpolate
4597 Should nearest IRs be interpolated with neighbor IRs if exact position
4598 does not match. By default is disabled.
4599
4600 @item minphase
4601 Minphase all IRs upon loading of SOFA file. By default is disabled.
4602
4603 @item anglestep
4604 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4605
4606 @item radstep
4607 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4608 @end table
4609
4610 @subsection Examples
4611
4612 @itemize
4613 @item
4614 Using ClubFritz6 sofa file:
4615 @example
4616 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4617 @end example
4618
4619 @item
4620 Using ClubFritz12 sofa file and bigger radius with small rotation:
4621 @example
4622 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4623 @end example
4624
4625 @item
4626 Similar as above but with custom speaker positions for front left, front right, back left and back right
4627 and also with custom gain:
4628 @example
4629 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4630 @end example
4631 @end itemize
4632
4633 @section stereotools
4634
4635 This filter has some handy utilities to manage stereo signals, for converting
4636 M/S stereo recordings to L/R signal while having control over the parameters
4637 or spreading the stereo image of master track.
4638
4639 The filter accepts the following options:
4640
4641 @table @option
4642 @item level_in
4643 Set input level before filtering for both channels. Defaults is 1.
4644 Allowed range is from 0.015625 to 64.
4645
4646 @item level_out
4647 Set output level after filtering for both channels. Defaults is 1.
4648 Allowed range is from 0.015625 to 64.
4649
4650 @item balance_in
4651 Set input balance between both channels. Default is 0.
4652 Allowed range is from -1 to 1.
4653
4654 @item balance_out
4655 Set output balance between both channels. Default is 0.
4656 Allowed range is from -1 to 1.
4657
4658 @item softclip
4659 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4660 clipping. Disabled by default.
4661
4662 @item mutel
4663 Mute the left channel. Disabled by default.
4664
4665 @item muter
4666 Mute the right channel. Disabled by default.
4667
4668 @item phasel
4669 Change the phase of the left channel. Disabled by default.
4670
4671 @item phaser
4672 Change the phase of the right channel. Disabled by default.
4673
4674 @item mode
4675 Set stereo mode. Available values are:
4676
4677 @table @samp
4678 @item lr>lr
4679 Left/Right to Left/Right, this is default.
4680
4681 @item lr>ms
4682 Left/Right to Mid/Side.
4683
4684 @item ms>lr
4685 Mid/Side to Left/Right.
4686
4687 @item lr>ll
4688 Left/Right to Left/Left.
4689
4690 @item lr>rr
4691 Left/Right to Right/Right.
4692
4693 @item lr>l+r
4694 Left/Right to Left + Right.
4695
4696 @item lr>rl
4697 Left/Right to Right/Left.
4698
4699 @item ms>ll
4700 Mid/Side to Left/Left.
4701
4702 @item ms>rr
4703 Mid/Side to Right/Right.
4704 @end table
4705
4706 @item slev
4707 Set level of side signal. Default is 1.
4708 Allowed range is from 0.015625 to 64.
4709
4710 @item sbal
4711 Set balance of side signal. Default is 0.
4712 Allowed range is from -1 to 1.
4713
4714 @item mlev
4715 Set level of the middle signal. Default is 1.
4716 Allowed range is from 0.015625 to 64.
4717
4718 @item mpan
4719 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4720
4721 @item base
4722 Set stereo base between mono and inversed channels. Default is 0.
4723 Allowed range is from -1 to 1.
4724
4725 @item delay
4726 Set delay in milliseconds how much to delay left from right channel and
4727 vice versa. Default is 0. Allowed range is from -20 to 20.
4728
4729 @item sclevel
4730 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4731
4732 @item phase
4733 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4734
4735 @item bmode_in, bmode_out
4736 Set balance mode for balance_in/balance_out option.
4737
4738 Can be one of the following:
4739
4740 @table @samp
4741 @item balance
4742 Classic balance mode. Attenuate one channel at time.
4743 Gain is raised up to 1.
4744
4745 @item amplitude
4746 Similar as classic mode above but gain is raised up to 2.
4747
4748 @item power
4749 Equal power distribution, from -6dB to +6dB range.
4750 @end table
4751 @end table
4752
4753 @subsection Examples
4754
4755 @itemize
4756 @item
4757 Apply karaoke like effect:
4758 @example
4759 stereotools=mlev=0.015625
4760 @end example
4761
4762 @item
4763 Convert M/S signal to L/R:
4764 @example
4765 "stereotools=mode=ms>lr"
4766 @end example
4767 @end itemize
4768
4769 @section stereowiden
4770
4771 This filter enhance the stereo effect by suppressing signal common to both
4772 channels and by delaying the signal of left into right and vice versa,
4773 thereby widening the stereo effect.
4774
4775 The filter accepts the following options:
4776
4777 @table @option
4778 @item delay
4779 Time in milliseconds of the delay of left signal into right and vice versa.
4780 Default is 20 milliseconds.
4781
4782 @item feedback
4783 Amount of gain in delayed signal into right and vice versa. Gives a delay
4784 effect of left signal in right output and vice versa which gives widening
4785 effect. Default is 0.3.
4786
4787 @item crossfeed
4788 Cross feed of left into right with inverted phase. This helps in suppressing
4789 the mono. If the value is 1 it will cancel all the signal common to both
4790 channels. Default is 0.3.
4791
4792 @item drymix
4793 Set level of input signal of original channel. Default is 0.8.
4794 @end table
4795
4796 @section superequalizer
4797 Apply 18 band equalizer.
4798
4799 The filter accepts the following options:
4800 @table @option
4801 @item 1b
4802 Set 65Hz band gain.
4803 @item 2b
4804 Set 92Hz band gain.
4805 @item 3b
4806 Set 131Hz band gain.
4807 @item 4b
4808 Set 185Hz band gain.
4809 @item 5b
4810 Set 262Hz band gain.
4811 @item 6b
4812 Set 370Hz band gain.
4813 @item 7b
4814 Set 523Hz band gain.
4815 @item 8b
4816 Set 740Hz band gain.
4817 @item 9b
4818 Set 1047Hz band gain.
4819 @item 10b
4820 Set 1480Hz band gain.
4821 @item 11b
4822 Set 2093Hz band gain.
4823 @item 12b
4824 Set 2960Hz band gain.
4825 @item 13b
4826 Set 4186Hz band gain.
4827 @item 14b
4828 Set 5920Hz band gain.
4829 @item 15b
4830 Set 8372Hz band gain.
4831 @item 16b
4832 Set 11840Hz band gain.
4833 @item 17b
4834 Set 16744Hz band gain.
4835 @item 18b
4836 Set 20000Hz band gain.
4837 @end table
4838
4839 @section surround
4840 Apply audio surround upmix filter.
4841
4842 This filter allows to produce multichannel output from audio stream.
4843
4844 The filter accepts the following options:
4845
4846 @table @option
4847 @item chl_out
4848 Set output channel layout. By default, this is @var{5.1}.
4849
4850 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4851 for the required syntax.
4852
4853 @item chl_in
4854 Set input channel layout. By default, this is @var{stereo}.
4855
4856 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4857 for the required syntax.
4858
4859 @item level_in
4860 Set input volume level. By default, this is @var{1}.
4861
4862 @item level_out
4863 Set output volume level. By default, this is @var{1}.
4864
4865 @item lfe
4866 Enable LFE channel output if output channel layout has it. By default, this is enabled.
4867
4868 @item lfe_low
4869 Set LFE low cut off frequency. By default, this is @var{128} Hz.
4870
4871 @item lfe_high
4872 Set LFE high cut off frequency. By default, this is @var{256} Hz.
4873
4874 @item fc_in
4875 Set front center input volume. By default, this is @var{1}.
4876
4877 @item fc_out
4878 Set front center output volume. By default, this is @var{1}.
4879
4880 @item lfe_in
4881 Set LFE input volume. By default, this is @var{1}.
4882
4883 @item lfe_out
4884 Set LFE output volume. By default, this is @var{1}.
4885
4886 @item win_func
4887 Set window function, default is @code{hann}.
4888
4889 @item overlap
4890 Set window overlap. If set to 1, the recommended overlap for selected
4891 window function will be picked. Default is @code{0.5}.
4892 @end table
4893
4894 @section treble, highshelf
4895
4896 Boost or cut treble (upper) frequencies of the audio using a two-pole
4897 shelving filter with a response similar to that of a standard
4898 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
4899
4900 The filter accepts the following options:
4901
4902 @table @option
4903 @item gain, g
4904 Give the gain at whichever is the lower of ~22 kHz and the
4905 Nyquist frequency. Its useful range is about -20 (for a large cut)
4906 to +20 (for a large boost). Beware of clipping when using a positive gain.
4907
4908 @item frequency, f
4909 Set the filter's central frequency and so can be used
4910 to extend or reduce the frequency range to be boosted or cut.
4911 The default value is @code{3000} Hz.
4912
4913 @item width_type, t
4914 Set method to specify band-width of filter.
4915 @table @option
4916 @item h
4917 Hz
4918 @item q
4919 Q-Factor
4920 @item o
4921 octave
4922 @item s
4923 slope
4924 @item k
4925 kHz
4926 @end table
4927
4928 @item width, w
4929 Determine how steep is the filter's shelf transition.
4930
4931 @item channels, c
4932 Specify which channels to filter, by default all available are filtered.
4933 @end table
4934
4935 @subsection Commands
4936
4937 This filter supports the following commands:
4938 @table @option
4939 @item frequency, f
4940 Change treble frequency.
4941 Syntax for the command is : "@var{frequency}"
4942
4943 @item width_type, t
4944 Change treble width_type.
4945 Syntax for the command is : "@var{width_type}"
4946
4947 @item width, w
4948 Change treble width.
4949 Syntax for the command is : "@var{width}"
4950
4951 @item gain, g
4952 Change treble gain.
4953 Syntax for the command is : "@var{gain}"
4954 @end table
4955
4956 @section tremolo
4957
4958 Sinusoidal amplitude modulation.
4959
4960 The filter accepts the following options:
4961
4962 @table @option
4963 @item f
4964 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
4965 (20 Hz or lower) will result in a tremolo effect.
4966 This filter may also be used as a ring modulator by specifying
4967 a modulation frequency higher than 20 Hz.
4968 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4969
4970 @item d
4971 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4972 Default value is 0.5.
4973 @end table
4974
4975 @section vibrato
4976
4977 Sinusoidal phase modulation.
4978
4979 The filter accepts the following options:
4980
4981 @table @option
4982 @item f
4983 Modulation frequency in Hertz.
4984 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4985
4986 @item d
4987 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4988 Default value is 0.5.
4989 @end table
4990
4991 @section volume
4992
4993 Adjust the input audio volume.
4994
4995 It accepts the following parameters:
4996 @table @option
4997
4998 @item volume
4999 Set audio volume expression.
5000
5001 Output values are clipped to the maximum value.
5002
5003 The output audio volume is given by the relation:
5004 @example
5005 @var{output_volume} = @var{volume} * @var{input_volume}
5006 @end example
5007
5008 The default value for @var{volume} is "1.0".
5009
5010 @item precision
5011 This parameter represents the mathematical precision.
5012
5013 It determines which input sample formats will be allowed, which affects the
5014 precision of the volume scaling.
5015
5016 @table @option
5017 @item fixed
5018 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5019 @item float
5020 32-bit floating-point; this limits input sample format to FLT. (default)
5021 @item double
5022 64-bit floating-point; this limits input sample format to DBL.
5023 @end table
5024
5025 @item replaygain
5026 Choose the behaviour on encountering ReplayGain side data in input frames.
5027
5028 @table @option
5029 @item drop
5030 Remove ReplayGain side data, ignoring its contents (the default).
5031
5032 @item ignore
5033 Ignore ReplayGain side data, but leave it in the frame.
5034
5035 @item track
5036 Prefer the track gain, if present.
5037
5038 @item album
5039 Prefer the album gain, if present.
5040 @end table
5041
5042 @item replaygain_preamp
5043 Pre-amplification gain in dB to apply to the selected replaygain gain.
5044
5045 Default value for @var{replaygain_preamp} is 0.0.
5046
5047 @item eval
5048 Set when the volume expression is evaluated.
5049
5050 It accepts the following values:
5051 @table @samp
5052 @item once
5053 only evaluate expression once during the filter initialization, or
5054 when the @samp{volume} command is sent
5055
5056 @item frame
5057 evaluate expression for each incoming frame
5058 @end table
5059
5060 Default value is @samp{once}.
5061 @end table
5062
5063 The volume expression can contain the following parameters.
5064
5065 @table @option
5066 @item n
5067 frame number (starting at zero)
5068 @item nb_channels
5069 number of channels
5070 @item nb_consumed_samples
5071 number of samples consumed by the filter
5072 @item nb_samples
5073 number of samples in the current frame
5074 @item pos
5075 original frame position in the file
5076 @item pts
5077 frame PTS
5078 @item sample_rate
5079 sample rate
5080 @item startpts
5081 PTS at start of stream
5082 @item startt
5083 time at start of stream
5084 @item t
5085 frame time
5086 @item tb
5087 timestamp timebase
5088 @item volume
5089 last set volume value
5090 @end table
5091
5092 Note that when @option{eval} is set to @samp{once} only the
5093 @var{sample_rate} and @var{tb} variables are available, all other
5094 variables will evaluate to NAN.
5095
5096 @subsection Commands
5097
5098 This filter supports the following commands:
5099 @table @option
5100 @item volume
5101 Modify the volume expression.
5102 The command accepts the same syntax of the corresponding option.
5103
5104 If the specified expression is not valid, it is kept at its current
5105 value.
5106 @item replaygain_noclip
5107 Prevent clipping by limiting the gain applied.
5108
5109 Default value for @var{replaygain_noclip} is 1.
5110
5111 @end table
5112
5113 @subsection Examples
5114
5115 @itemize
5116 @item
5117 Halve the input audio volume:
5118 @example
5119 volume=volume=0.5
5120 volume=volume=1/2
5121 volume=volume=-6.0206dB
5122 @end example
5123
5124 In all the above example the named key for @option{volume} can be
5125 omitted, for example like in:
5126 @example
5127 volume=0.5
5128 @end example
5129
5130 @item
5131 Increase input audio power by 6 decibels using fixed-point precision:
5132 @example
5133 volume=volume=6dB:precision=fixed
5134 @end example
5135
5136 @item
5137 Fade volume after time 10 with an annihilation period of 5 seconds:
5138 @example
5139 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5140 @end example
5141 @end itemize
5142
5143 @section volumedetect
5144
5145 Detect the volume of the input video.
5146
5147 The filter has no parameters. The input is not modified. Statistics about
5148 the volume will be printed in the log when the input stream end is reached.
5149
5150 In particular it will show the mean volume (root mean square), maximum
5151 volume (on a per-sample basis), and the beginning of a histogram of the
5152 registered volume values (from the maximum value to a cumulated 1/1000 of
5153 the samples).
5154
5155 All volumes are in decibels relative to the maximum PCM value.
5156
5157 @subsection Examples
5158
5159 Here is an excerpt of the output:
5160 @example
5161 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5162 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5163 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5164 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5165 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5166 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5167 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5168 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5169 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5170 @end example
5171
5172 It means that:
5173 @itemize
5174 @item
5175 The mean square energy is approximately -27 dB, or 10^-2.7.
5176 @item
5177 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5178 @item
5179 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5180 @end itemize
5181
5182 In other words, raising the volume by +4 dB does not cause any clipping,
5183 raising it by +5 dB causes clipping for 6 samples, etc.
5184
5185 @c man end AUDIO FILTERS
5186
5187 @chapter Audio Sources
5188 @c man begin AUDIO SOURCES
5189
5190 Below is a description of the currently available audio sources.
5191
5192 @section abuffer
5193
5194 Buffer audio frames, and make them available to the filter chain.
5195
5196 This source is mainly intended for a programmatic use, in particular
5197 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5198
5199 It accepts the following parameters:
5200 @table @option
5201
5202 @item time_base
5203 The timebase which will be used for timestamps of submitted frames. It must be
5204 either a floating-point number or in @var{numerator}/@var{denominator} form.
5205
5206 @item sample_rate
5207 The sample rate of the incoming audio buffers.
5208
5209 @item sample_fmt
5210 The sample format of the incoming audio buffers.
5211 Either a sample format name or its corresponding integer representation from
5212 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5213
5214 @item channel_layout
5215 The channel layout of the incoming audio buffers.
5216 Either a channel layout name from channel_layout_map in
5217 @file{libavutil/channel_layout.c} or its corresponding integer representation
5218 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5219
5220 @item channels
5221 The number of channels of the incoming audio buffers.
5222 If both @var{channels} and @var{channel_layout} are specified, then they
5223 must be consistent.
5224
5225 @end table
5226
5227 @subsection Examples
5228
5229 @example
5230 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5231 @end example
5232
5233 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5234 Since the sample format with name "s16p" corresponds to the number
5235 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5236 equivalent to:
5237 @example
5238 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5239 @end example
5240
5241 @section aevalsrc
5242
5243 Generate an audio signal specified by an expression.
5244
5245 This source accepts in input one or more expressions (one for each
5246 channel), which are evaluated and used to generate a corresponding
5247 audio signal.
5248
5249 This source accepts the following options:
5250
5251 @table @option
5252 @item exprs
5253 Set the '|'-separated expressions list for each separate channel. In case the
5254 @option{channel_layout} option is not specified, the selected channel layout
5255 depends on the number of provided expressions. Otherwise the last
5256 specified expression is applied to the remaining output channels.
5257
5258 @item channel_layout, c
5259 Set the channel layout. The number of channels in the specified layout
5260 must be equal to the number of specified expressions.
5261
5262 @item duration, d
5263 Set the minimum duration of the sourced audio. See
5264 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5265 for the accepted syntax.
5266 Note that the resulting duration may be greater than the specified
5267 duration, as the generated audio is always cut at the end of a
5268 complete frame.
5269
5270 If not specified, or the expressed duration is negative, the audio is
5271 supposed to be generated forever.
5272
5273 @item nb_samples, n
5274 Set the number of samples per channel per each output frame,
5275 default to 1024.
5276
5277 @item sample_rate, s
5278 Specify the sample rate, default to 44100.
5279 @end table
5280
5281 Each expression in @var{exprs} can contain the following constants:
5282
5283 @table @option
5284 @item n
5285 number of the evaluated sample, starting from 0
5286
5287 @item t
5288 time of the evaluated sample expressed in seconds, starting from 0
5289
5290 @item s
5291 sample rate
5292
5293 @end table
5294
5295 @subsection Examples
5296
5297 @itemize
5298 @item
5299 Generate silence:
5300 @example
5301 aevalsrc=0
5302 @end example
5303
5304 @item
5305 Generate a sin signal with frequency of 440 Hz, set sample rate to
5306 8000 Hz:
5307 @example
5308 aevalsrc="sin(440*2*PI*t):s=8000"
5309 @end example
5310
5311 @item
5312 Generate a two channels signal, specify the channel layout (Front
5313 Center + Back Center) explicitly:
5314 @example
5315 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5316 @end example
5317
5318 @item
5319 Generate white noise:
5320 @example
5321 aevalsrc="-2+random(0)"
5322 @end example
5323
5324 @item
5325 Generate an amplitude modulated signal:
5326 @example
5327 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5328 @end example
5329
5330 @item
5331 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5332 @example
5333 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5334 @end example
5335
5336 @end itemize
5337
5338 @section anullsrc
5339
5340 The null audio source, return unprocessed audio frames. It is mainly useful
5341 as a template and to be employed in analysis / debugging tools, or as
5342 the source for filters which ignore the input data (for example the sox
5343 synth filter).
5344
5345 This source accepts the following options:
5346
5347 @table @option
5348
5349 @item channel_layout, cl
5350
5351 Specifies the channel layout, and can be either an integer or a string
5352 representing a channel layout. The default value of @var{channel_layout}
5353 is "stereo".
5354
5355 Check the channel_layout_map definition in
5356 @file{libavutil/channel_layout.c} for the mapping between strings and
5357 channel layout values.
5358
5359 @item sample_rate, r
5360 Specifies the sample rate, and defaults to 44100.
5361
5362 @item nb_samples, n
5363 Set the number of samples per requested frames.
5364
5365 @end table
5366
5367 @subsection Examples
5368
5369 @itemize
5370 @item
5371 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5372 @example
5373 anullsrc=r=48000:cl=4
5374 @end example
5375
5376 @item
5377 Do the same operation with a more obvious syntax:
5378 @example
5379 anullsrc=r=48000:cl=mono
5380 @end example
5381 @end itemize
5382
5383 All the parameters need to be explicitly defined.
5384
5385 @section flite
5386
5387 Synthesize a voice utterance using the libflite library.
5388
5389 To enable compilation of this filter you need to configure FFmpeg with
5390 @code{--enable-libflite}.
5391
5392 Note that versions of the flite library prior to 2.0 are not thread-safe.
5393
5394 The filter accepts the following options:
5395
5396 @table @option
5397
5398 @item list_voices
5399 If set to 1, list the names of the available voices and exit
5400 immediately. Default value is 0.
5401
5402 @item nb_samples, n
5403 Set the maximum number of samples per frame. Default value is 512.
5404
5405 @item textfile
5406 Set the filename containing the text to speak.
5407
5408 @item text
5409 Set the text to speak.
5410
5411 @item voice, v
5412 Set the voice to use for the speech synthesis. Default value is
5413 @code{kal}. See also the @var{list_voices} option.
5414 @end table
5415
5416 @subsection Examples
5417
5418 @itemize
5419 @item
5420 Read from file @file{speech.txt}, and synthesize the text using the
5421 standard flite voice:
5422 @example
5423 flite=textfile=speech.txt
5424 @end example
5425
5426 @item
5427 Read the specified text selecting the @code{slt} voice:
5428 @example
5429 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5430 @end example
5431
5432 @item
5433 Input text to ffmpeg:
5434 @example
5435 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5436 @end example
5437
5438 @item
5439 Make @file{ffplay} speak the specified text, using @code{flite} and
5440 the @code{lavfi} device:
5441 @example
5442 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5443 @end example
5444 @end itemize
5445
5446 For more information about libflite, check:
5447 @url{http://www.festvox.org/flite/}
5448
5449 @section anoisesrc
5450
5451 Generate a noise audio signal.
5452
5453 The filter accepts the following options:
5454
5455 @table @option
5456 @item sample_rate, r
5457 Specify the sample rate. Default value is 48000 Hz.
5458
5459 @item amplitude, a
5460 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5461 is 1.0.
5462
5463 @item duration, d
5464 Specify the duration of the generated audio stream. Not specifying this option
5465 results in noise with an infinite length.
5466
5467 @item color, colour, c
5468 Specify the color of noise. Available noise colors are white, pink, brown,
5469 blue and violet. Default color is white.
5470
5471 @item seed, s
5472 Specify a value used to seed the PRNG.
5473
5474 @item nb_samples, n
5475 Set the number of samples per each output frame, default is 1024.
5476 @end table
5477
5478 @subsection Examples
5479
5480 @itemize
5481
5482 @item
5483 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5484 @example
5485 anoisesrc=d=60:c=pink:r=44100:a=0.5
5486 @end example
5487 @end itemize
5488
5489 @section hilbert
5490
5491 Generate odd-tap Hilbert transform FIR coefficients.
5492
5493 The resulting stream can be used with @ref{afir} filter for phase-shifting
5494 the signal by 90 degrees.
5495
5496 This is used in many matrix coding schemes and for analytic signal generation.
5497 The process is often written as a multiplication by i (or j), the imaginary unit.
5498
5499 The filter accepts the following options:
5500
5501 @table @option
5502
5503 @item sample_rate, s
5504 Set sample rate, default is 44100.
5505
5506 @item taps, t
5507 Set length of FIR filter, default is 22051.
5508
5509 @item nb_samples, n
5510 Set number of samples per each frame.
5511
5512 @item win_func, w
5513 Set window function to be used when generating FIR coefficients.
5514 @end table
5515
5516 @section sinc
5517
5518 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5519
5520 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5521
5522 The filter accepts the following options:
5523
5524 @table @option
5525 @item sample_rate, r
5526 Set sample rate, default is 44100.
5527
5528 @item nb_samples, n
5529 Set number of samples per each frame. Default is 1024.
5530
5531 @item hp
5532 Set high-pass frequency. Default is 0.
5533
5534 @item lp
5535 Set low-pass frequency. Default is 0.
5536 If high-pass frequency is lower than low-pass frequency and low-pass frequency
5537 is higher than 0 then filter will create band-pass filter coefficients,
5538 otherwise band-reject filter coefficients.
5539
5540 @item phase
5541 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
5542
5543 @item beta
5544 Set Kaiser window beta.
5545
5546 @item att
5547 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
5548
5549 @item round
5550 Enable rounding, by default is disabled.
5551
5552 @item hptaps
5553 Set number of taps for high-pass filter.
5554
5555 @item lptaps
5556 Set number of taps for low-pass filter.
5557 @end table
5558
5559 @section sine
5560
5561 Generate an audio signal made of a sine wave with amplitude 1/8.
5562
5563 The audio signal is bit-exact.
5564
5565 The filter accepts the following options:
5566
5567 @table @option
5568
5569 @item frequency, f
5570 Set the carrier frequency. Default is 440 Hz.
5571
5572 @item beep_factor, b
5573 Enable a periodic beep every second with frequency @var{beep_factor} times
5574 the carrier frequency. Default is 0, meaning the beep is disabled.
5575
5576 @item sample_rate, r
5577 Specify the sample rate, default is 44100.
5578
5579 @item duration, d
5580 Specify the duration of the generated audio stream.
5581
5582 @item samples_per_frame
5583 Set the number of samples per output frame.
5584
5585 The expression can contain the following constants:
5586
5587 @table @option
5588 @item n
5589 The (sequential) number of the output audio frame, starting from 0.
5590
5591 @item pts
5592 The PTS (Presentation TimeStamp) of the output audio frame,
5593 expressed in @var{TB} units.
5594
5595 @item t
5596 The PTS of the output audio frame, expressed in seconds.
5597
5598 @item TB
5599 The timebase of the output audio frames.
5600 @end table
5601
5602 Default is @code{1024}.
5603 @end table
5604
5605 @subsection Examples
5606
5607 @itemize
5608
5609 @item
5610 Generate a simple 440 Hz sine wave:
5611 @example
5612 sine
5613 @end example
5614
5615 @item
5616 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5617 @example
5618 sine=220:4:d=5
5619 sine=f=220:b=4:d=5
5620 sine=frequency=220:beep_factor=4:duration=5
5621 @end example
5622
5623 @item
5624 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5625 pattern:
5626 @example
5627 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5628 @end example
5629 @end itemize
5630
5631 @c man end AUDIO SOURCES
5632
5633 @chapter Audio Sinks
5634 @c man begin AUDIO SINKS
5635
5636 Below is a description of the currently available audio sinks.
5637
5638 @section abuffersink
5639
5640 Buffer audio frames, and make them available to the end of filter chain.
5641
5642 This sink is mainly intended for programmatic use, in particular
5643 through the interface defined in @file{libavfilter/buffersink.h}
5644 or the options system.
5645
5646 It accepts a pointer to an AVABufferSinkContext structure, which
5647 defines the incoming buffers' formats, to be passed as the opaque
5648 parameter to @code{avfilter_init_filter} for initialization.
5649 @section anullsink
5650
5651 Null audio sink; do absolutely nothing with the input audio. It is
5652 mainly useful as a template and for use in analysis / debugging
5653 tools.
5654
5655 @c man end AUDIO SINKS
5656
5657 @chapter Video Filters
5658 @c man begin VIDEO FILTERS
5659
5660 When you configure your FFmpeg build, you can disable any of the
5661 existing filters using @code{--disable-filters}.
5662 The configure output will show the video filters included in your
5663 build.
5664
5665 Below is a description of the currently available video filters.
5666
5667 @section alphaextract
5668
5669 Extract the alpha component from the input as a grayscale video. This
5670 is especially useful with the @var{alphamerge} filter.
5671
5672 @section alphamerge
5673
5674 Add or replace the alpha component of the primary input with the
5675 grayscale value of a second input. This is intended for use with
5676 @var{alphaextract} to allow the transmission or storage of frame
5677 sequences that have alpha in a format that doesn't support an alpha
5678 channel.
5679
5680 For example, to reconstruct full frames from a normal YUV-encoded video
5681 and a separate video created with @var{alphaextract}, you might use:
5682 @example
5683 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
5684 @end example
5685
5686 Since this filter is designed for reconstruction, it operates on frame
5687 sequences without considering timestamps, and terminates when either
5688 input reaches end of stream. This will cause problems if your encoding
5689 pipeline drops frames. If you're trying to apply an image as an
5690 overlay to a video stream, consider the @var{overlay} filter instead.
5691
5692 @section amplify
5693
5694 Amplify differences between current pixel and pixels of adjacent frames in
5695 same pixel location.
5696
5697 This filter accepts the following options:
5698
5699 @table @option
5700 @item radius
5701 Set frame radius. Default is 2. Allowed range is from 1 to 63.
5702 For example radius of 3 will instruct filter to calculate average of 7 frames.
5703
5704 @item factor
5705 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
5706
5707 @item threshold
5708 Set threshold for difference amplification. Any difference greater or equal to
5709 this value will not alter source pixel. Default is 10.
5710 Allowed range is from 0 to 65535.
5711
5712 @item tolerance
5713 Set tolerance for difference amplification. Any difference lower to
5714 this value will not alter source pixel. Default is 0.
5715 Allowed range is from 0 to 65535.
5716
5717 @item low
5718 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5719 This option controls maximum possible value that will decrease source pixel value.
5720
5721 @item high
5722 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5723 This option controls maximum possible value that will increase source pixel value.
5724
5725 @item planes
5726 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
5727 @end table
5728
5729 @section ass
5730
5731 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
5732 and libavformat to work. On the other hand, it is limited to ASS (Advanced
5733 Substation Alpha) subtitles files.
5734
5735 This filter accepts the following option in addition to the common options from
5736 the @ref{subtitles} filter:
5737
5738 @table @option
5739 @item shaping
5740 Set the shaping engine
5741
5742 Available values are:
5743 @table @samp
5744 @item auto
5745 The default libass shaping engine, which is the best available.
5746 @item simple
5747 Fast, font-agnostic shaper that can do only substitutions
5748 @item complex
5749 Slower shaper using OpenType for substitutions and positioning
5750 @end table
5751
5752 The default is @code{auto}.
5753 @end table
5754
5755 @section atadenoise
5756 Apply an Adaptive Temporal Averaging Denoiser to the video input.
5757
5758 The filter accepts the following options:
5759
5760 @table @option
5761 @item 0a
5762 Set threshold A for 1st plane. Default is 0.02.
5763 Valid range is 0 to 0.3.
5764
5765 @item 0b
5766 Set threshold B for 1st plane. Default is 0.04.
5767 Valid range is 0 to 5.
5768
5769 @item 1a
5770 Set threshold A for 2nd plane. Default is 0.02.
5771 Valid range is 0 to 0.3.
5772
5773 @item 1b
5774 Set threshold B for 2nd plane. Default is 0.04.
5775 Valid range is 0 to 5.
5776
5777 @item 2a
5778 Set threshold A for 3rd plane. Default is 0.02.
5779 Valid range is 0 to 0.3.
5780
5781 @item 2b
5782 Set threshold B for 3rd plane. Default is 0.04.
5783 Valid range is 0 to 5.
5784
5785 Threshold A is designed to react on abrupt changes in the input signal and
5786 threshold B is designed to react on continuous changes in the input signal.
5787
5788 @item s
5789 Set number of frames filter will use for averaging. Default is 9. Must be odd
5790 number in range [5, 129].
5791
5792 @item p
5793 Set what planes of frame filter will use for averaging. Default is all.
5794 @end table
5795
5796 @section avgblur
5797
5798 Apply average blur filter.
5799
5800 The filter accepts the following options:
5801
5802 @table @option
5803 @item sizeX
5804 Set horizontal radius size.
5805
5806 @item planes
5807 Set which planes to filter. By default all planes are filtered.
5808
5809 @item sizeY
5810 Set vertical radius size, if zero it will be same as @code{sizeX}.
5811 Default is @code{0}.
5812 @end table
5813
5814 @section bbox
5815
5816 Compute the bounding box for the non-black pixels in the input frame
5817 luminance plane.
5818
5819 This filter computes the bounding box containing all the pixels with a
5820 luminance value greater than the minimum allowed value.
5821 The parameters describing the bounding box are printed on the filter
5822 log.
5823
5824 The filter accepts the following option:
5825
5826 @table @option
5827 @item min_val
5828 Set the minimal luminance value. Default is @code{16}.
5829 @end table
5830
5831 @section bitplanenoise
5832
5833 Show and measure bit plane noise.
5834
5835 The filter accepts the following options:
5836
5837 @table @option
5838 @item bitplane
5839 Set which plane to analyze. Default is @code{1}.
5840
5841 @item filter
5842 Filter out noisy pixels from @code{bitplane} set above.
5843 Default is disabled.
5844 @end table
5845
5846 @section blackdetect
5847
5848 Detect video intervals that are (almost) completely black. Can be
5849 useful to detect chapter transitions, commercials, or invalid
5850 recordings. Output lines contains the time for the start, end and
5851 duration of the detected black interval expressed in seconds.
5852
5853 In order to display the output lines, you need to set the loglevel at
5854 least to the AV_LOG_INFO value.
5855
5856 The filter accepts the following options:
5857
5858 @table @option
5859 @item black_min_duration, d
5860 Set the minimum detected black duration expressed in seconds. It must
5861 be a non-negative floating point number.
5862
5863 Default value is 2.0.
5864
5865 @item picture_black_ratio_th, pic_th
5866 Set the threshold for considering a picture "black".
5867 Express the minimum value for the ratio:
5868 @example
5869 @var{nb_black_pixels} / @var{nb_pixels}
5870 @end example
5871
5872 for which a picture is considered black.
5873 Default value is 0.98.
5874
5875 @item pixel_black_th, pix_th
5876 Set the threshold for considering a pixel "black".
5877
5878 The threshold expresses the maximum pixel luminance value for which a
5879 pixel is considered "black". The provided value is scaled according to
5880 the following equation:
5881 @example
5882 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
5883 @end example
5884
5885 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
5886 the input video format, the range is [0-255] for YUV full-range
5887 formats and [16-235] for YUV non full-range formats.
5888
5889 Default value is 0.10.
5890 @end table
5891
5892 The following example sets the maximum pixel threshold to the minimum
5893 value, and detects only black intervals of 2 or more seconds:
5894 @example
5895 blackdetect=d=2:pix_th=0.00
5896 @end example
5897
5898 @section blackframe
5899
5900 Detect frames that are (almost) completely black. Can be useful to
5901 detect chapter transitions or commercials. Output lines consist of
5902 the frame number of the detected frame, the percentage of blackness,
5903 the position in the file if known or -1 and the timestamp in seconds.
5904
5905 In order to display the output lines, you need to set the loglevel at
5906 least to the AV_LOG_INFO value.
5907
5908 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
5909 The value represents the percentage of pixels in the picture that
5910 are below the threshold value.
5911
5912 It accepts the following parameters:
5913
5914 @table @option
5915
5916 @item amount
5917 The percentage of the pixels that have to be below the threshold; it defaults to
5918 @code{98}.
5919
5920 @item threshold, thresh
5921 The threshold below which a pixel value is considered black; it defaults to
5922 @code{32}.
5923
5924 @end table
5925
5926 @section blend, tblend
5927
5928 Blend two video frames into each other.
5929
5930 The @code{blend} filter takes two input streams and outputs one
5931 stream, the first input is the "top" layer and second input is
5932 "bottom" layer.  By default, the output terminates when the longest input terminates.
5933
5934 The @code{tblend} (time blend) filter takes two consecutive frames
5935 from one single stream, and outputs the result obtained by blending
5936 the new frame on top of the old frame.
5937
5938 A description of the accepted options follows.
5939
5940 @table @option
5941 @item c0_mode
5942 @item c1_mode
5943 @item c2_mode
5944 @item c3_mode
5945 @item all_mode
5946 Set blend mode for specific pixel component or all pixel components in case
5947 of @var{all_mode}. Default value is @code{normal}.
5948
5949 Available values for component modes are:
5950 @table @samp
5951 @item addition
5952 @item grainmerge
5953 @item and
5954 @item average
5955 @item burn
5956 @item darken
5957 @item difference
5958 @item grainextract
5959 @item divide
5960 @item dodge
5961 @item freeze
5962 @item exclusion
5963 @item extremity
5964 @item glow
5965 @item hardlight
5966 @item hardmix
5967 @item heat
5968 @item lighten
5969 @item linearlight
5970 @item multiply
5971 @item multiply128
5972 @item negation
5973 @item normal
5974 @item or
5975 @item overlay
5976 @item phoenix
5977 @item pinlight
5978 @item reflect
5979 @item screen
5980 @item softlight
5981 @item subtract
5982 @item vividlight
5983 @item xor
5984 @end table
5985
5986 @item c0_opacity
5987 @item c1_opacity
5988 @item c2_opacity
5989 @item c3_opacity
5990 @item all_opacity
5991 Set blend opacity for specific pixel component or all pixel components in case
5992 of @var{all_opacity}. Only used in combination with pixel component blend modes.
5993
5994 @item c0_expr
5995 @item c1_expr
5996 @item c2_expr
5997 @item c3_expr
5998 @item all_expr
5999 Set blend expression for specific pixel component or all pixel components in case
6000 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6001
6002 The expressions can use the following variables:
6003
6004 @table @option
6005 @item N
6006 The sequential number of the filtered frame, starting from @code{0}.
6007
6008 @item X
6009 @item Y
6010 the coordinates of the current sample
6011
6012 @item W
6013 @item H
6014 the width and height of currently filtered plane
6015
6016 @item SW
6017 @item SH
6018 Width and height scale for the plane being filtered. It is the
6019 ratio between the dimensions of the current plane to the luma plane,
6020 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6021 the luma plane and @code{0.5,0.5} for the chroma planes.
6022
6023 @item T
6024 Time of the current frame, expressed in seconds.
6025
6026 @item TOP, A
6027 Value of pixel component at current location for first video frame (top layer).
6028
6029 @item BOTTOM, B
6030 Value of pixel component at current location for second video frame (bottom layer).
6031 @end table
6032 @end table
6033
6034 The @code{blend} filter also supports the @ref{framesync} options.
6035
6036 @subsection Examples
6037
6038 @itemize
6039 @item
6040 Apply transition from bottom layer to top layer in first 10 seconds:
6041 @example
6042 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6043 @end example
6044
6045 @item
6046 Apply linear horizontal transition from top layer to bottom layer:
6047 @example
6048 blend=all_expr='A*(X/W)+B*(1-X/W)'
6049 @end example
6050
6051 @item
6052 Apply 1x1 checkerboard effect:
6053 @example
6054 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6055 @end example
6056
6057 @item
6058 Apply uncover left effect:
6059 @example
6060 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6061 @end example
6062
6063 @item
6064 Apply uncover down effect:
6065 @example
6066 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6067 @end example
6068
6069 @item
6070 Apply uncover up-left effect:
6071 @example
6072 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6073 @end example
6074
6075 @item
6076 Split diagonally video and shows top and bottom layer on each side:
6077 @example
6078 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6079 @end example
6080
6081 @item
6082 Display differences between the current and the previous frame:
6083 @example
6084 tblend=all_mode=grainextract
6085 @end example
6086 @end itemize
6087
6088 @section bm3d
6089
6090 Denoise frames using Block-Matching 3D algorithm.
6091
6092 The filter accepts the following options.
6093
6094 @table @option
6095 @item sigma
6096 Set denoising strength. Default value is 1.
6097 Allowed range is from 0 to 999.9.
6098 The denoising algorithm is very sensitive to sigma, so adjust it
6099 according to the source.
6100
6101 @item block
6102 Set local patch size. This sets dimensions in 2D.
6103
6104 @item bstep
6105 Set sliding step for processing blocks. Default value is 4.
6106 Allowed range is from 1 to 64.
6107 Smaller values allows processing more reference blocks and is slower.
6108
6109 @item group
6110 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6111 When set to 1, no block matching is done. Larger values allows more blocks
6112 in single group.
6113 Allowed range is from 1 to 256.
6114
6115 @item range
6116 Set radius for search block matching. Default is 9.
6117 Allowed range is from 1 to INT32_MAX.
6118
6119 @item mstep
6120 Set step between two search locations for block matching. Default is 1.
6121 Allowed range is from 1 to 64. Smaller is slower.
6122
6123 @item thmse
6124 Set threshold of mean square error for block matching. Valid range is 0 to
6125 INT32_MAX.
6126
6127 @item hdthr
6128 Set thresholding parameter for hard thresholding in 3D transformed domain.
6129 Larger values results in stronger hard-thresholding filtering in frequency
6130 domain.
6131
6132 @item estim
6133 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6134 Default is @code{basic}.
6135
6136 @item ref
6137 If enabled, filter will use 2nd stream for block matching.
6138 Default is disabled for @code{basic} value of @var{estim} option,
6139 and always enabled if value of @var{estim} is @code{final}.
6140
6141 @item planes
6142 Set planes to filter. Default is all available except alpha.
6143 @end table
6144
6145 @subsection Examples
6146
6147 @itemize
6148 @item
6149 Basic filtering with bm3d:
6150 @example
6151 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6152 @end example
6153
6154 @item
6155 Same as above, but filtering only luma:
6156 @example
6157 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6158 @end example
6159
6160 @item
6161 Same as above, but with both estimation modes:
6162 @example
6163 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
6164 @end example
6165
6166 @item
6167 Same as above, but prefilter with @ref{nlmeans} filter instead:
6168 @example
6169 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
6170 @end example
6171 @end itemize
6172
6173 @section boxblur
6174
6175 Apply a boxblur algorithm to the input video.
6176
6177 It accepts the following parameters:
6178
6179 @table @option
6180
6181 @item luma_radius, lr
6182 @item luma_power, lp
6183 @item chroma_radius, cr
6184 @item chroma_power, cp
6185 @item alpha_radius, ar
6186 @item alpha_power, ap
6187
6188 @end table
6189
6190 A description of the accepted options follows.
6191
6192 @table @option
6193 @item luma_radius, lr
6194 @item chroma_radius, cr
6195 @item alpha_radius, ar
6196 Set an expression for the box radius in pixels used for blurring the
6197 corresponding input plane.
6198
6199 The radius value must be a non-negative number, and must not be
6200 greater than the value of the expression @code{min(w,h)/2} for the
6201 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6202 planes.
6203
6204 Default value for @option{luma_radius} is "2". If not specified,
6205 @option{chroma_radius} and @option{alpha_radius} default to the
6206 corresponding value set for @option{luma_radius}.
6207
6208 The expressions can contain the following constants:
6209 @table @option
6210 @item w
6211 @item h
6212 The input width and height in pixels.
6213
6214 @item cw
6215 @item ch
6216 The input chroma image width and height in pixels.
6217
6218 @item hsub
6219 @item vsub
6220 The horizontal and vertical chroma subsample values. For example, for the
6221 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6222 @end table
6223
6224 @item luma_power, lp
6225 @item chroma_power, cp
6226 @item alpha_power, ap
6227 Specify how many times the boxblur filter is applied to the
6228 corresponding plane.
6229
6230 Default value for @option{luma_power} is 2. If not specified,
6231 @option{chroma_power} and @option{alpha_power} default to the
6232 corresponding value set for @option{luma_power}.
6233
6234 A value of 0 will disable the effect.
6235 @end table
6236
6237 @subsection Examples
6238
6239 @itemize
6240 @item
6241 Apply a boxblur filter with the luma, chroma, and alpha radii
6242 set to 2:
6243 @example
6244 boxblur=luma_radius=2:luma_power=1
6245 boxblur=2:1
6246 @end example
6247
6248 @item
6249 Set the luma radius to 2, and alpha and chroma radius to 0:
6250 @example
6251 boxblur=2:1:cr=0:ar=0
6252 @end example
6253
6254 @item
6255 Set the luma and chroma radii to a fraction of the video dimension:
6256 @example
6257 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6258 @end example
6259 @end itemize
6260
6261 @section bwdif
6262
6263 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6264 Deinterlacing Filter").
6265
6266 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6267 interpolation algorithms.
6268 It accepts the following parameters:
6269
6270 @table @option
6271 @item mode
6272 The interlacing mode to adopt. It accepts one of the following values:
6273
6274 @table @option
6275 @item 0, send_frame
6276 Output one frame for each frame.
6277 @item 1, send_field
6278 Output one frame for each field.
6279 @end table
6280
6281 The default value is @code{send_field}.
6282
6283 @item parity
6284 The picture field parity assumed for the input interlaced video. It accepts one
6285 of the following values:
6286
6287 @table @option
6288 @item 0, tff
6289 Assume the top field is first.
6290 @item 1, bff
6291 Assume the bottom field is first.
6292 @item -1, auto
6293 Enable automatic detection of field parity.
6294 @end table
6295
6296 The default value is @code{auto}.
6297 If the interlacing is unknown or the decoder does not export this information,
6298 top field first will be assumed.
6299
6300 @item deint
6301 Specify which frames to deinterlace. Accept one of the following
6302 values:
6303
6304 @table @option
6305 @item 0, all
6306 Deinterlace all frames.
6307 @item 1, interlaced
6308 Only deinterlace frames marked as interlaced.
6309 @end table
6310
6311 The default value is @code{all}.
6312 @end table
6313
6314 @section chromahold
6315 Remove all color information for all colors except for certain one.
6316
6317 The filter accepts the following options:
6318
6319 @table @option
6320 @item color
6321 The color which will not be replaced with neutral chroma.
6322
6323 @item similarity
6324 Similarity percentage with the above color.
6325 0.01 matches only the exact key color, while 1.0 matches everything.
6326
6327 @item yuv
6328 Signals that the color passed is already in YUV instead of RGB.
6329
6330 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6331 This can be used to pass exact YUV values as hexadecimal numbers.
6332 @end table
6333
6334 @section chromakey
6335 YUV colorspace color/chroma keying.
6336
6337 The filter accepts the following options:
6338
6339 @table @option
6340 @item color
6341 The color which will be replaced with transparency.
6342
6343 @item similarity
6344 Similarity percentage with the key color.
6345
6346 0.01 matches only the exact key color, while 1.0 matches everything.
6347
6348 @item blend
6349 Blend percentage.
6350
6351 0.0 makes pixels either fully transparent, or not transparent at all.
6352
6353 Higher values result in semi-transparent pixels, with a higher transparency
6354 the more similar the pixels color is to the key color.
6355
6356 @item yuv
6357 Signals that the color passed is already in YUV instead of RGB.
6358
6359 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6360 This can be used to pass exact YUV values as hexadecimal numbers.
6361 @end table
6362
6363 @subsection Examples
6364
6365 @itemize
6366 @item
6367 Make every green pixel in the input image transparent:
6368 @example
6369 ffmpeg -i input.png -vf chromakey=green out.png
6370 @end example
6371
6372 @item
6373 Overlay a greenscreen-video on top of a static black background.
6374 @example
6375 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
6376 @end example
6377 @end itemize
6378
6379 @section chromashift
6380 Shift chroma pixels horizontally and/or vertically.
6381
6382 The filter accepts the following options:
6383 @table @option
6384 @item cbh
6385 Set amount to shift chroma-blue horizontally.
6386 @item cbv
6387 Set amount to shift chroma-blue vertically.
6388 @item crh
6389 Set amount to shift chroma-red horizontally.
6390 @item crv
6391 Set amount to shift chroma-red vertically.
6392 @item edge
6393 Set edge mode, can be @var{smear}, default, or @var{warp}.
6394 @end table
6395
6396 @section ciescope
6397
6398 Display CIE color diagram with pixels overlaid onto it.
6399
6400 The filter accepts the following options:
6401
6402 @table @option
6403 @item system
6404 Set color system.
6405
6406 @table @samp
6407 @item ntsc, 470m
6408 @item ebu, 470bg
6409 @item smpte
6410 @item 240m
6411 @item apple
6412 @item widergb
6413 @item cie1931
6414 @item rec709, hdtv
6415 @item uhdtv, rec2020
6416 @end table
6417
6418 @item cie
6419 Set CIE system.
6420
6421 @table @samp
6422 @item xyy
6423 @item ucs
6424 @item luv
6425 @end table
6426
6427 @item gamuts
6428 Set what gamuts to draw.
6429
6430 See @code{system} option for available values.
6431
6432 @item size, s
6433 Set ciescope size, by default set to 512.
6434
6435 @item intensity, i
6436 Set intensity used to map input pixel values to CIE diagram.
6437
6438 @item contrast
6439 Set contrast used to draw tongue colors that are out of active color system gamut.
6440
6441 @item corrgamma
6442 Correct gamma displayed on scope, by default enabled.
6443
6444 @item showwhite
6445 Show white point on CIE diagram, by default disabled.
6446
6447 @item gamma
6448 Set input gamma. Used only with XYZ input color space.
6449 @end table
6450
6451 @section codecview
6452
6453 Visualize information exported by some codecs.
6454
6455 Some codecs can export information through frames using side-data or other
6456 means. For example, some MPEG based codecs export motion vectors through the
6457 @var{export_mvs} flag in the codec @option{flags2} option.
6458
6459 The filter accepts the following option:
6460
6461 @table @option
6462 @item mv
6463 Set motion vectors to visualize.
6464
6465 Available flags for @var{mv} are:
6466
6467 @table @samp
6468 @item pf
6469 forward predicted MVs of P-frames
6470 @item bf
6471 forward predicted MVs of B-frames
6472 @item bb
6473 backward predicted MVs of B-frames
6474 @end table
6475
6476 @item qp
6477 Display quantization parameters using the chroma planes.
6478
6479 @item mv_type, mvt
6480 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
6481
6482 Available flags for @var{mv_type} are:
6483
6484 @table @samp
6485 @item fp
6486 forward predicted MVs
6487 @item bp
6488 backward predicted MVs
6489 @end table
6490
6491 @item frame_type, ft
6492 Set frame type to visualize motion vectors of.
6493
6494 Available flags for @var{frame_type} are:
6495
6496 @table @samp
6497 @item if
6498 intra-coded frames (I-frames)
6499 @item pf
6500 predicted frames (P-frames)
6501 @item bf
6502 bi-directionally predicted frames (B-frames)
6503 @end table
6504 @end table
6505
6506 @subsection Examples
6507
6508 @itemize
6509 @item
6510 Visualize forward predicted MVs of all frames using @command{ffplay}:
6511 @example
6512 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
6513 @end example
6514
6515 @item
6516 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
6517 @example
6518 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
6519 @end example
6520 @end itemize
6521
6522 @section colorbalance
6523 Modify intensity of primary colors (red, green and blue) of input frames.
6524
6525 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
6526 regions for the red-cyan, green-magenta or blue-yellow balance.
6527
6528 A positive adjustment value shifts the balance towards the primary color, a negative
6529 value towards the complementary color.
6530
6531 The filter accepts the following options:
6532
6533 @table @option
6534 @item rs
6535 @item gs
6536 @item bs
6537 Adjust red, green and blue shadows (darkest pixels).
6538
6539 @item rm
6540 @item gm
6541 @item bm
6542 Adjust red, green and blue midtones (medium pixels).
6543
6544 @item rh
6545 @item gh
6546 @item bh
6547 Adjust red, green and blue highlights (brightest pixels).
6548
6549 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6550 @end table
6551
6552 @subsection Examples
6553
6554 @itemize
6555 @item
6556 Add red color cast to shadows:
6557 @example
6558 colorbalance=rs=.3
6559 @end example
6560 @end itemize
6561
6562 @section colorkey
6563 RGB colorspace color keying.
6564
6565 The filter accepts the following options:
6566
6567 @table @option
6568 @item color
6569 The color which will be replaced with transparency.
6570
6571 @item similarity
6572 Similarity percentage with the key color.
6573
6574 0.01 matches only the exact key color, while 1.0 matches everything.
6575
6576 @item blend
6577 Blend percentage.
6578
6579 0.0 makes pixels either fully transparent, or not transparent at all.
6580
6581 Higher values result in semi-transparent pixels, with a higher transparency
6582 the more similar the pixels color is to the key color.
6583 @end table
6584
6585 @subsection Examples
6586
6587 @itemize
6588 @item
6589 Make every green pixel in the input image transparent:
6590 @example
6591 ffmpeg -i input.png -vf colorkey=green out.png
6592 @end example
6593
6594 @item
6595 Overlay a greenscreen-video on top of a static background image.
6596 @example
6597 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
6598 @end example
6599 @end itemize
6600
6601 @section colorlevels
6602
6603 Adjust video input frames using levels.
6604
6605 The filter accepts the following options:
6606
6607 @table @option
6608 @item rimin
6609 @item gimin
6610 @item bimin
6611 @item aimin
6612 Adjust red, green, blue and alpha input black point.
6613 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6614
6615 @item rimax
6616 @item gimax
6617 @item bimax
6618 @item aimax
6619 Adjust red, green, blue and alpha input white point.
6620 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
6621
6622 Input levels are used to lighten highlights (bright tones), darken shadows
6623 (dark tones), change the balance of bright and dark tones.
6624
6625 @item romin
6626 @item gomin
6627 @item bomin
6628 @item aomin
6629 Adjust red, green, blue and alpha output black point.
6630 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
6631
6632 @item romax
6633 @item gomax
6634 @item bomax
6635 @item aomax
6636 Adjust red, green, blue and alpha output white point.
6637 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
6638
6639 Output levels allows manual selection of a constrained output level range.
6640 @end table
6641
6642 @subsection Examples
6643
6644 @itemize
6645 @item
6646 Make video output darker:
6647 @example
6648 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
6649 @end example
6650
6651 @item
6652 Increase contrast:
6653 @example
6654 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
6655 @end example
6656
6657 @item
6658 Make video output lighter:
6659 @example
6660 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
6661 @end example
6662
6663 @item
6664 Increase brightness:
6665 @example
6666 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
6667 @end example
6668 @end itemize
6669
6670 @section colorchannelmixer
6671
6672 Adjust video input frames by re-mixing color channels.
6673
6674 This filter modifies a color channel by adding the values associated to
6675 the other channels of the same pixels. For example if the value to
6676 modify is red, the output value will be:
6677 @example
6678 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
6679 @end example
6680
6681 The filter accepts the following options:
6682
6683 @table @option
6684 @item rr
6685 @item rg
6686 @item rb
6687 @item ra
6688 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6689 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6690
6691 @item gr
6692 @item gg
6693 @item gb
6694 @item ga
6695 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6696 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6697
6698 @item br
6699 @item bg
6700 @item bb
6701 @item ba
6702 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6703 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6704
6705 @item ar
6706 @item ag
6707 @item ab
6708 @item aa
6709 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
6710 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
6711
6712 Allowed ranges for options are @code{[-2.0, 2.0]}.
6713 @end table
6714
6715 @subsection Examples
6716
6717 @itemize
6718 @item
6719 Convert source to grayscale:
6720 @example
6721 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
6722 @end example
6723 @item
6724 Simulate sepia tones:
6725 @example
6726 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
6727 @end example
6728 @end itemize
6729
6730 @section colormatrix
6731
6732 Convert color matrix.
6733
6734 The filter accepts the following options:
6735
6736 @table @option
6737 @item src
6738 @item dst
6739 Specify the source and destination color matrix. Both values must be
6740 specified.
6741
6742 The accepted values are:
6743 @table @samp
6744 @item bt709
6745 BT.709
6746
6747 @item fcc
6748 FCC
6749
6750 @item bt601
6751 BT.601
6752
6753 @item bt470
6754 BT.470
6755
6756 @item bt470bg
6757 BT.470BG
6758
6759 @item smpte170m
6760 SMPTE-170M
6761
6762 @item smpte240m
6763 SMPTE-240M
6764
6765 @item bt2020
6766 BT.2020
6767 @end table
6768 @end table
6769
6770 For example to convert from BT.601 to SMPTE-240M, use the command:
6771 @example
6772 colormatrix=bt601:smpte240m
6773 @end example
6774
6775 @section colorspace
6776
6777 Convert colorspace, transfer characteristics or color primaries.
6778 Input video needs to have an even size.
6779
6780 The filter accepts the following options:
6781
6782 @table @option
6783 @anchor{all}
6784 @item all
6785 Specify all color properties at once.
6786
6787 The accepted values are:
6788 @table @samp
6789 @item bt470m
6790 BT.470M
6791
6792 @item bt470bg
6793 BT.470BG
6794
6795 @item bt601-6-525
6796 BT.601-6 525
6797
6798 @item bt601-6-625
6799 BT.601-6 625
6800
6801 @item bt709
6802 BT.709
6803
6804 @item smpte170m
6805 SMPTE-170M
6806
6807 @item smpte240m
6808 SMPTE-240M
6809
6810 @item bt2020
6811 BT.2020
6812
6813 @end table
6814
6815 @anchor{space}
6816 @item space
6817 Specify output colorspace.
6818
6819 The accepted values are:
6820 @table @samp
6821 @item bt709
6822 BT.709
6823
6824 @item fcc
6825 FCC
6826
6827 @item bt470bg
6828 BT.470BG or BT.601-6 625
6829
6830 @item smpte170m
6831 SMPTE-170M or BT.601-6 525
6832
6833 @item smpte240m
6834 SMPTE-240M
6835
6836 @item ycgco
6837 YCgCo
6838
6839 @item bt2020ncl
6840 BT.2020 with non-constant luminance
6841
6842 @end table
6843
6844 @anchor{trc}
6845 @item trc
6846 Specify output transfer characteristics.
6847
6848 The accepted values are:
6849 @table @samp
6850 @item bt709
6851 BT.709
6852
6853 @item bt470m
6854 BT.470M
6855
6856 @item bt470bg
6857 BT.470BG
6858
6859 @item gamma22
6860 Constant gamma of 2.2
6861
6862 @item gamma28
6863 Constant gamma of 2.8
6864
6865 @item smpte170m
6866 SMPTE-170M, BT.601-6 625 or BT.601-6 525
6867
6868 @item smpte240m
6869 SMPTE-240M
6870
6871 @item srgb
6872 SRGB
6873
6874 @item iec61966-2-1
6875 iec61966-2-1
6876
6877 @item iec61966-2-4
6878 iec61966-2-4
6879
6880 @item xvycc
6881 xvycc
6882
6883 @item bt2020-10
6884 BT.2020 for 10-bits content
6885
6886 @item bt2020-12
6887 BT.2020 for 12-bits content
6888
6889 @end table
6890
6891 @anchor{primaries}
6892 @item primaries
6893 Specify output color primaries.
6894
6895 The accepted values are:
6896 @table @samp
6897 @item bt709
6898 BT.709
6899
6900 @item bt470m
6901 BT.470M
6902
6903 @item bt470bg
6904 BT.470BG or BT.601-6 625
6905
6906 @item smpte170m
6907 SMPTE-170M or BT.601-6 525
6908
6909 @item smpte240m
6910 SMPTE-240M
6911
6912 @item film
6913 film
6914
6915 @item smpte431
6916 SMPTE-431
6917
6918 @item smpte432
6919 SMPTE-432
6920
6921 @item bt2020
6922 BT.2020
6923
6924 @item jedec-p22
6925 JEDEC P22 phosphors
6926
6927 @end table
6928
6929 @anchor{range}
6930 @item range
6931 Specify output color range.
6932
6933 The accepted values are:
6934 @table @samp
6935 @item tv
6936 TV (restricted) range
6937
6938 @item mpeg
6939 MPEG (restricted) range
6940
6941 @item pc
6942 PC (full) range
6943
6944 @item jpeg
6945 JPEG (full) range
6946
6947 @end table
6948
6949 @item format
6950 Specify output color format.
6951
6952 The accepted values are:
6953 @table @samp
6954 @item yuv420p
6955 YUV 4:2:0 planar 8-bits
6956
6957 @item yuv420p10
6958 YUV 4:2:0 planar 10-bits
6959
6960 @item yuv420p12
6961 YUV 4:2:0 planar 12-bits
6962
6963 @item yuv422p
6964 YUV 4:2:2 planar 8-bits
6965
6966 @item yuv422p10
6967 YUV 4:2:2 planar 10-bits
6968
6969 @item yuv422p12
6970 YUV 4:2:2 planar 12-bits
6971
6972 @item yuv444p
6973 YUV 4:4:4 planar 8-bits
6974
6975 @item yuv444p10
6976 YUV 4:4:4 planar 10-bits
6977
6978 @item yuv444p12
6979 YUV 4:4:4 planar 12-bits
6980
6981 @end table
6982
6983 @item fast
6984 Do a fast conversion, which skips gamma/primary correction. This will take
6985 significantly less CPU, but will be mathematically incorrect. To get output
6986 compatible with that produced by the colormatrix filter, use fast=1.
6987
6988 @item dither
6989 Specify dithering mode.
6990
6991 The accepted values are:
6992 @table @samp
6993 @item none
6994 No dithering
6995
6996 @item fsb
6997 Floyd-Steinberg dithering
6998 @end table
6999
7000 @item wpadapt
7001 Whitepoint adaptation mode.
7002
7003 The accepted values are:
7004 @table @samp
7005 @item bradford
7006 Bradford whitepoint adaptation
7007
7008 @item vonkries
7009 von Kries whitepoint adaptation
7010
7011 @item identity
7012 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7013 @end table
7014
7015 @item iall
7016 Override all input properties at once. Same accepted values as @ref{all}.
7017
7018 @item ispace
7019 Override input colorspace. Same accepted values as @ref{space}.
7020
7021 @item iprimaries
7022 Override input color primaries. Same accepted values as @ref{primaries}.
7023
7024 @item itrc
7025 Override input transfer characteristics. Same accepted values as @ref{trc}.
7026
7027 @item irange
7028 Override input color range. Same accepted values as @ref{range}.
7029
7030 @end table
7031
7032 The filter converts the transfer characteristics, color space and color
7033 primaries to the specified user values. The output value, if not specified,
7034 is set to a default value based on the "all" property. If that property is
7035 also not specified, the filter will log an error. The output color range and
7036 format default to the same value as the input color range and format. The
7037 input transfer characteristics, color space, color primaries and color range
7038 should be set on the input data. If any of these are missing, the filter will
7039 log an error and no conversion will take place.
7040
7041 For example to convert the input to SMPTE-240M, use the command:
7042 @example
7043 colorspace=smpte240m
7044 @end example
7045
7046 @section convolution
7047
7048 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7049
7050 The filter accepts the following options:
7051
7052 @table @option
7053 @item 0m
7054 @item 1m
7055 @item 2m
7056 @item 3m
7057 Set matrix for each plane.
7058 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7059 and from 1 to 49 odd number of signed integers in @var{row} mode.
7060
7061 @item 0rdiv
7062 @item 1rdiv
7063 @item 2rdiv
7064 @item 3rdiv
7065 Set multiplier for calculated value for each plane.
7066 If unset or 0, it will be sum of all matrix elements.
7067
7068 @item 0bias
7069 @item 1bias
7070 @item 2bias
7071 @item 3bias
7072 Set bias for each plane. This value is added to the result of the multiplication.
7073 Useful for making the overall image brighter or darker. Default is 0.0.
7074
7075 @item 0mode
7076 @item 1mode
7077 @item 2mode
7078 @item 3mode
7079 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7080 Default is @var{square}.
7081 @end table
7082
7083 @subsection Examples
7084
7085 @itemize
7086 @item
7087 Apply sharpen:
7088 @example
7089 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"
7090 @end example
7091
7092 @item
7093 Apply blur:
7094 @example
7095 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"
7096 @end example
7097
7098 @item
7099 Apply edge enhance:
7100 @example
7101 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"
7102 @end example
7103
7104 @item
7105 Apply edge detect:
7106 @example
7107 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"
7108 @end example
7109
7110 @item
7111 Apply laplacian edge detector which includes diagonals:
7112 @example
7113 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"
7114 @end example
7115
7116 @item
7117 Apply emboss:
7118 @example
7119 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"
7120 @end example
7121 @end itemize
7122
7123 @section convolve
7124
7125 Apply 2D convolution of video stream in frequency domain using second stream
7126 as impulse.
7127
7128 The filter accepts the following options:
7129
7130 @table @option
7131 @item planes
7132 Set which planes to process.
7133
7134 @item impulse
7135 Set which impulse video frames will be processed, can be @var{first}
7136 or @var{all}. Default is @var{all}.
7137 @end table
7138
7139 The @code{convolve} filter also supports the @ref{framesync} options.
7140
7141 @section copy
7142
7143 Copy the input video source unchanged to the output. This is mainly useful for
7144 testing purposes.
7145
7146 @anchor{coreimage}
7147 @section coreimage
7148 Video filtering on GPU using Apple's CoreImage API on OSX.
7149
7150 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7151 processed by video hardware. However, software-based OpenGL implementations
7152 exist which means there is no guarantee for hardware processing. It depends on
7153 the respective OSX.
7154
7155 There are many filters and image generators provided by Apple that come with a
7156 large variety of options. The filter has to be referenced by its name along
7157 with its options.
7158
7159 The coreimage filter accepts the following options:
7160 @table @option
7161 @item list_filters
7162 List all available filters and generators along with all their respective
7163 options as well as possible minimum and maximum values along with the default
7164 values.
7165 @example
7166 list_filters=true
7167 @end example
7168
7169 @item filter
7170 Specify all filters by their respective name and options.
7171 Use @var{list_filters} to determine all valid filter names and options.
7172 Numerical options are specified by a float value and are automatically clamped
7173 to their respective value range.  Vector and color options have to be specified
7174 by a list of space separated float values. Character escaping has to be done.
7175 A special option name @code{default} is available to use default options for a
7176 filter.
7177
7178 It is required to specify either @code{default} or at least one of the filter options.
7179 All omitted options are used with their default values.
7180 The syntax of the filter string is as follows:
7181 @example
7182 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7183 @end example
7184
7185 @item output_rect
7186 Specify a rectangle where the output of the filter chain is copied into the
7187 input image. It is given by a list of space separated float values:
7188 @example
7189 output_rect=x\ y\ width\ height
7190 @end example
7191 If not given, the output rectangle equals the dimensions of the input image.
7192 The output rectangle is automatically cropped at the borders of the input
7193 image. Negative values are valid for each component.
7194 @example
7195 output_rect=25\ 25\ 100\ 100
7196 @end example
7197 @end table
7198
7199 Several filters can be chained for successive processing without GPU-HOST
7200 transfers allowing for fast processing of complex filter chains.
7201 Currently, only filters with zero (generators) or exactly one (filters) input
7202 image and one output image are supported. Also, transition filters are not yet
7203 usable as intended.
7204
7205 Some filters generate output images with additional padding depending on the
7206 respective filter kernel. The padding is automatically removed to ensure the
7207 filter output has the same size as the input image.
7208
7209 For image generators, the size of the output image is determined by the
7210 previous output image of the filter chain or the input image of the whole
7211 filterchain, respectively. The generators do not use the pixel information of
7212 this image to generate their output. However, the generated output is
7213 blended onto this image, resulting in partial or complete coverage of the
7214 output image.
7215
7216 The @ref{coreimagesrc} video source can be used for generating input images
7217 which are directly fed into the filter chain. By using it, providing input
7218 images by another video source or an input video is not required.
7219
7220 @subsection Examples
7221
7222 @itemize
7223
7224 @item
7225 List all filters available:
7226 @example
7227 coreimage=list_filters=true
7228 @end example
7229
7230 @item
7231 Use the CIBoxBlur filter with default options to blur an image:
7232 @example
7233 coreimage=filter=CIBoxBlur@@default
7234 @end example
7235
7236 @item
7237 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7238 its center at 100x100 and a radius of 50 pixels:
7239 @example
7240 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7241 @end example
7242
7243 @item
7244 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7245 given as complete and escaped command-line for Apple's standard bash shell:
7246 @example
7247 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7248 @end example
7249 @end itemize
7250
7251 @section crop
7252
7253 Crop the input video to given dimensions.
7254
7255 It accepts the following parameters:
7256
7257 @table @option
7258 @item w, out_w
7259 The width of the output video. It defaults to @code{iw}.
7260 This expression is evaluated only once during the filter
7261 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7262
7263 @item h, out_h
7264 The height of the output video. It defaults to @code{ih}.
7265 This expression is evaluated only once during the filter
7266 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7267
7268 @item x
7269 The horizontal position, in the input video, of the left edge of the output
7270 video. It defaults to @code{(in_w-out_w)/2}.
7271 This expression is evaluated per-frame.
7272
7273 @item y
7274 The vertical position, in the input video, of the top edge of the output video.
7275 It defaults to @code{(in_h-out_h)/2}.
7276 This expression is evaluated per-frame.
7277
7278 @item keep_aspect
7279 If set to 1 will force the output display aspect ratio
7280 to be the same of the input, by changing the output sample aspect
7281 ratio. It defaults to 0.
7282
7283 @item exact
7284 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7285 width/height/x/y as specified and will not be rounded to nearest smaller value.
7286 It defaults to 0.
7287 @end table
7288
7289 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7290 expressions containing the following constants:
7291
7292 @table @option
7293 @item x
7294 @item y
7295 The computed values for @var{x} and @var{y}. They are evaluated for
7296 each new frame.
7297
7298 @item in_w
7299 @item in_h
7300 The input width and height.
7301
7302 @item iw
7303 @item ih
7304 These are the same as @var{in_w} and @var{in_h}.
7305
7306 @item out_w
7307 @item out_h
7308 The output (cropped) width and height.
7309
7310 @item ow
7311 @item oh
7312 These are the same as @var{out_w} and @var{out_h}.
7313
7314 @item a
7315 same as @var{iw} / @var{ih}
7316
7317 @item sar
7318 input sample aspect ratio
7319
7320 @item dar
7321 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7322
7323 @item hsub
7324 @item vsub
7325 horizontal and vertical chroma subsample values. For example for the
7326 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7327
7328 @item n
7329 The number of the input frame, starting from 0.
7330
7331 @item pos
7332 the position in the file of the input frame, NAN if unknown
7333
7334 @item t
7335 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
7336
7337 @end table
7338
7339 The expression for @var{out_w} may depend on the value of @var{out_h},
7340 and the expression for @var{out_h} may depend on @var{out_w}, but they
7341 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
7342 evaluated after @var{out_w} and @var{out_h}.
7343
7344 The @var{x} and @var{y} parameters specify the expressions for the
7345 position of the top-left corner of the output (non-cropped) area. They
7346 are evaluated for each frame. If the evaluated value is not valid, it
7347 is approximated to the nearest valid value.
7348
7349 The expression for @var{x} may depend on @var{y}, and the expression
7350 for @var{y} may depend on @var{x}.
7351
7352 @subsection Examples
7353
7354 @itemize
7355 @item
7356 Crop area with size 100x100 at position (12,34).
7357 @example
7358 crop=100:100:12:34
7359 @end example
7360
7361 Using named options, the example above becomes:
7362 @example
7363 crop=w=100:h=100:x=12:y=34
7364 @end example
7365
7366 @item
7367 Crop the central input area with size 100x100:
7368 @example
7369 crop=100:100
7370 @end example
7371
7372 @item
7373 Crop the central input area with size 2/3 of the input video:
7374 @example
7375 crop=2/3*in_w:2/3*in_h
7376 @end example
7377
7378 @item
7379 Crop the input video central square:
7380 @example
7381 crop=out_w=in_h
7382 crop=in_h
7383 @end example
7384
7385 @item
7386 Delimit the rectangle with the top-left corner placed at position
7387 100:100 and the right-bottom corner corresponding to the right-bottom
7388 corner of the input image.
7389 @example
7390 crop=in_w-100:in_h-100:100:100
7391 @end example
7392
7393 @item
7394 Crop 10 pixels from the left and right borders, and 20 pixels from
7395 the top and bottom borders
7396 @example
7397 crop=in_w-2*10:in_h-2*20
7398 @end example
7399
7400 @item
7401 Keep only the bottom right quarter of the input image:
7402 @example
7403 crop=in_w/2:in_h/2:in_w/2:in_h/2
7404 @end example
7405
7406 @item
7407 Crop height for getting Greek harmony:
7408 @example
7409 crop=in_w:1/PHI*in_w
7410 @end example
7411
7412 @item
7413 Apply trembling effect:
7414 @example
7415 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)
7416 @end example
7417
7418 @item
7419 Apply erratic camera effect depending on timestamp:
7420 @example
7421 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)"
7422 @end example
7423
7424 @item
7425 Set x depending on the value of y:
7426 @example
7427 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
7428 @end example
7429 @end itemize
7430
7431 @subsection Commands
7432
7433 This filter supports the following commands:
7434 @table @option
7435 @item w, out_w
7436 @item h, out_h
7437 @item x
7438 @item y
7439 Set width/height of the output video and the horizontal/vertical position
7440 in the input video.
7441 The command accepts the same syntax of the corresponding option.
7442
7443 If the specified expression is not valid, it is kept at its current
7444 value.
7445 @end table
7446
7447 @section cropdetect
7448
7449 Auto-detect the crop size.
7450
7451 It calculates the necessary cropping parameters and prints the
7452 recommended parameters via the logging system. The detected dimensions
7453 correspond to the non-black area of the input video.
7454
7455 It accepts the following parameters:
7456
7457 @table @option
7458
7459 @item limit
7460 Set higher black value threshold, which can be optionally specified
7461 from nothing (0) to everything (255 for 8-bit based formats). An intensity
7462 value greater to the set value is considered non-black. It defaults to 24.
7463 You can also specify a value between 0.0 and 1.0 which will be scaled depending
7464 on the bitdepth of the pixel format.
7465
7466 @item round
7467 The value which the width/height should be divisible by. It defaults to
7468 16. The offset is automatically adjusted to center the video. Use 2 to
7469 get only even dimensions (needed for 4:2:2 video). 16 is best when
7470 encoding to most video codecs.
7471
7472 @item reset_count, reset
7473 Set the counter that determines after how many frames cropdetect will
7474 reset the previously detected largest video area and start over to
7475 detect the current optimal crop area. Default value is 0.
7476
7477 This can be useful when channel logos distort the video area. 0
7478 indicates 'never reset', and returns the largest area encountered during
7479 playback.
7480 @end table
7481
7482 @anchor{cue}
7483 @section cue
7484
7485 Delay video filtering until a given wallclock timestamp. The filter first
7486 passes on @option{preroll} amount of frames, then it buffers at most
7487 @option{buffer} amount of frames and waits for the cue. After reaching the cue
7488 it forwards the buffered frames and also any subsequent frames coming in its
7489 input.
7490
7491 The filter can be used synchronize the output of multiple ffmpeg processes for
7492 realtime output devices like decklink. By putting the delay in the filtering
7493 chain and pre-buffering frames the process can pass on data to output almost
7494 immediately after the target wallclock timestamp is reached.
7495
7496 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
7497 some use cases.
7498
7499 @table @option
7500
7501 @item cue
7502 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
7503
7504 @item preroll
7505 The duration of content to pass on as preroll expressed in seconds. Default is 0.
7506
7507 @item buffer
7508 The maximum duration of content to buffer before waiting for the cue expressed
7509 in seconds. Default is 0.
7510
7511 @end table
7512
7513 @anchor{curves}
7514 @section curves
7515
7516 Apply color adjustments using curves.
7517
7518 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
7519 component (red, green and blue) has its values defined by @var{N} key points
7520 tied from each other using a smooth curve. The x-axis represents the pixel
7521 values from the input frame, and the y-axis the new pixel values to be set for
7522 the output frame.
7523
7524 By default, a component curve is defined by the two points @var{(0;0)} and
7525 @var{(1;1)}. This creates a straight line where each original pixel value is
7526 "adjusted" to its own value, which means no change to the image.
7527
7528 The filter allows you to redefine these two points and add some more. A new
7529 curve (using a natural cubic spline interpolation) will be define to pass
7530 smoothly through all these new coordinates. The new defined points needs to be
7531 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
7532 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
7533 the vector spaces, the values will be clipped accordingly.
7534
7535 The filter accepts the following options:
7536
7537 @table @option
7538 @item preset
7539 Select one of the available color presets. This option can be used in addition
7540 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
7541 options takes priority on the preset values.
7542 Available presets are:
7543 @table @samp
7544 @item none
7545 @item color_negative
7546 @item cross_process
7547 @item darker
7548 @item increase_contrast
7549 @item lighter
7550 @item linear_contrast
7551 @item medium_contrast
7552 @item negative
7553 @item strong_contrast
7554 @item vintage
7555 @end table
7556 Default is @code{none}.
7557 @item master, m
7558 Set the master key points. These points will define a second pass mapping. It
7559 is sometimes called a "luminance" or "value" mapping. It can be used with
7560 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
7561 post-processing LUT.
7562 @item red, r
7563 Set the key points for the red component.
7564 @item green, g
7565 Set the key points for the green component.
7566 @item blue, b
7567 Set the key points for the blue component.
7568 @item all
7569 Set the key points for all components (not including master).
7570 Can be used in addition to the other key points component
7571 options. In this case, the unset component(s) will fallback on this
7572 @option{all} setting.
7573 @item psfile
7574 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
7575 @item plot
7576 Save Gnuplot script of the curves in specified file.
7577 @end table
7578
7579 To avoid some filtergraph syntax conflicts, each key points list need to be
7580 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
7581
7582 @subsection Examples
7583
7584 @itemize
7585 @item
7586 Increase slightly the middle level of blue:
7587 @example
7588 curves=blue='0/0 0.5/0.58 1/1'
7589 @end example
7590
7591 @item
7592 Vintage effect:
7593 @example
7594 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'
7595 @end example
7596 Here we obtain the following coordinates for each components:
7597 @table @var
7598 @item red
7599 @code{(0;0.11) (0.42;0.51) (1;0.95)}
7600 @item green
7601 @code{(0;0) (0.50;0.48) (1;1)}
7602 @item blue
7603 @code{(0;0.22) (0.49;0.44) (1;0.80)}
7604 @end table
7605
7606 @item
7607 The previous example can also be achieved with the associated built-in preset:
7608 @example
7609 curves=preset=vintage
7610 @end example
7611
7612 @item
7613 Or simply:
7614 @example
7615 curves=vintage
7616 @end example
7617
7618 @item
7619 Use a Photoshop preset and redefine the points of the green component:
7620 @example
7621 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
7622 @end example
7623
7624 @item
7625 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
7626 and @command{gnuplot}:
7627 @example
7628 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
7629 gnuplot -p /tmp/curves.plt
7630 @end example
7631 @end itemize
7632
7633 @section datascope
7634
7635 Video data analysis filter.
7636
7637 This filter shows hexadecimal pixel values of part of video.
7638
7639 The filter accepts the following options:
7640
7641 @table @option
7642 @item size, s
7643 Set output video size.
7644
7645 @item x
7646 Set x offset from where to pick pixels.
7647
7648 @item y
7649 Set y offset from where to pick pixels.
7650
7651 @item mode
7652 Set scope mode, can be one of the following:
7653 @table @samp
7654 @item mono
7655 Draw hexadecimal pixel values with white color on black background.
7656
7657 @item color
7658 Draw hexadecimal pixel values with input video pixel color on black
7659 background.
7660
7661 @item color2
7662 Draw hexadecimal pixel values on color background picked from input video,
7663 the text color is picked in such way so its always visible.
7664 @end table
7665
7666 @item axis
7667 Draw rows and columns numbers on left and top of video.
7668
7669 @item opacity
7670 Set background opacity.
7671 @end table
7672
7673 @section dctdnoiz
7674
7675 Denoise frames using 2D DCT (frequency domain filtering).
7676
7677 This filter is not designed for real time.
7678
7679 The filter accepts the following options:
7680
7681 @table @option
7682 @item sigma, s
7683 Set the noise sigma constant.
7684
7685 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
7686 coefficient (absolute value) below this threshold with be dropped.
7687
7688 If you need a more advanced filtering, see @option{expr}.
7689
7690 Default is @code{0}.
7691
7692 @item overlap
7693 Set number overlapping pixels for each block. Since the filter can be slow, you
7694 may want to reduce this value, at the cost of a less effective filter and the
7695 risk of various artefacts.
7696
7697 If the overlapping value doesn't permit processing the whole input width or
7698 height, a warning will be displayed and according borders won't be denoised.
7699
7700 Default value is @var{blocksize}-1, which is the best possible setting.
7701
7702 @item expr, e
7703 Set the coefficient factor expression.
7704
7705 For each coefficient of a DCT block, this expression will be evaluated as a
7706 multiplier value for the coefficient.
7707
7708 If this is option is set, the @option{sigma} option will be ignored.
7709
7710 The absolute value of the coefficient can be accessed through the @var{c}
7711 variable.
7712
7713 @item n
7714 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
7715 @var{blocksize}, which is the width and height of the processed blocks.
7716
7717 The default value is @var{3} (8x8) and can be raised to @var{4} for a
7718 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
7719 on the speed processing. Also, a larger block size does not necessarily means a
7720 better de-noising.
7721 @end table
7722
7723 @subsection Examples
7724
7725 Apply a denoise with a @option{sigma} of @code{4.5}:
7726 @example
7727 dctdnoiz=4.5
7728 @end example
7729
7730 The same operation can be achieved using the expression system:
7731 @example
7732 dctdnoiz=e='gte(c, 4.5*3)'
7733 @end example
7734
7735 Violent denoise using a block size of @code{16x16}:
7736 @example
7737 dctdnoiz=15:n=4
7738 @end example
7739
7740 @section deband
7741
7742 Remove banding artifacts from input video.
7743 It works by replacing banded pixels with average value of referenced pixels.
7744
7745 The filter accepts the following options:
7746
7747 @table @option
7748 @item 1thr
7749 @item 2thr
7750 @item 3thr
7751 @item 4thr
7752 Set banding detection threshold for each plane. Default is 0.02.
7753 Valid range is 0.00003 to 0.5.
7754 If difference between current pixel and reference pixel is less than threshold,
7755 it will be considered as banded.
7756
7757 @item range, r
7758 Banding detection range in pixels. Default is 16. If positive, random number
7759 in range 0 to set value will be used. If negative, exact absolute value
7760 will be used.
7761 The range defines square of four pixels around current pixel.
7762
7763 @item direction, d
7764 Set direction in radians from which four pixel will be compared. If positive,
7765 random direction from 0 to set direction will be picked. If negative, exact of
7766 absolute value will be picked. For example direction 0, -PI or -2*PI radians
7767 will pick only pixels on same row and -PI/2 will pick only pixels on same
7768 column.
7769
7770 @item blur, b
7771 If enabled, current pixel is compared with average value of all four
7772 surrounding pixels. The default is enabled. If disabled current pixel is
7773 compared with all four surrounding pixels. The pixel is considered banded
7774 if only all four differences with surrounding pixels are less than threshold.
7775
7776 @item coupling, c
7777 If enabled, current pixel is changed if and only if all pixel components are banded,
7778 e.g. banding detection threshold is triggered for all color components.
7779 The default is disabled.
7780 @end table
7781
7782 @section deblock
7783
7784 Remove blocking artifacts from input video.
7785
7786 The filter accepts the following options:
7787
7788 @table @option
7789 @item filter
7790 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
7791 This controls what kind of deblocking is applied.
7792
7793 @item block
7794 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
7795
7796 @item alpha
7797 @item beta
7798 @item gamma
7799 @item delta
7800 Set blocking detection thresholds. Allowed range is 0 to 1.
7801 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
7802 Using higher threshold gives more deblocking strength.
7803 Setting @var{alpha} controls threshold detection at exact edge of block.
7804 Remaining options controls threshold detection near the edge. Each one for
7805 below/above or left/right. Setting any of those to @var{0} disables
7806 deblocking.
7807
7808 @item planes
7809 Set planes to filter. Default is to filter all available planes.
7810 @end table
7811
7812 @subsection Examples
7813
7814 @itemize
7815 @item
7816 Deblock using weak filter and block size of 4 pixels.
7817 @example
7818 deblock=filter=weak:block=4
7819 @end example
7820
7821 @item
7822 Deblock using strong filter, block size of 4 pixels and custom thresholds for
7823 deblocking more edges.
7824 @example
7825 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
7826 @end example
7827
7828 @item
7829 Similar as above, but filter only first plane.
7830 @example
7831 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
7832 @end example
7833
7834 @item
7835 Similar as above, but filter only second and third plane.
7836 @example
7837 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
7838 @end example
7839 @end itemize
7840
7841 @anchor{decimate}
7842 @section decimate
7843
7844 Drop duplicated frames at regular intervals.
7845
7846 The filter accepts the following options:
7847
7848 @table @option
7849 @item cycle
7850 Set the number of frames from which one will be dropped. Setting this to
7851 @var{N} means one frame in every batch of @var{N} frames will be dropped.
7852 Default is @code{5}.
7853
7854 @item dupthresh
7855 Set the threshold for duplicate detection. If the difference metric for a frame
7856 is less than or equal to this value, then it is declared as duplicate. Default
7857 is @code{1.1}
7858
7859 @item scthresh
7860 Set scene change threshold. Default is @code{15}.
7861
7862 @item blockx
7863 @item blocky
7864 Set the size of the x and y-axis blocks used during metric calculations.
7865 Larger blocks give better noise suppression, but also give worse detection of
7866 small movements. Must be a power of two. Default is @code{32}.
7867
7868 @item ppsrc
7869 Mark main input as a pre-processed input and activate clean source input
7870 stream. This allows the input to be pre-processed with various filters to help
7871 the metrics calculation while keeping the frame selection lossless. When set to
7872 @code{1}, the first stream is for the pre-processed input, and the second
7873 stream is the clean source from where the kept frames are chosen. Default is
7874 @code{0}.
7875
7876 @item chroma
7877 Set whether or not chroma is considered in the metric calculations. Default is
7878 @code{1}.
7879 @end table
7880
7881 @section deconvolve
7882
7883 Apply 2D deconvolution of video stream in frequency domain using second stream
7884 as impulse.
7885
7886 The filter accepts the following options:
7887
7888 @table @option
7889 @item planes
7890 Set which planes to process.
7891
7892 @item impulse
7893 Set which impulse video frames will be processed, can be @var{first}
7894 or @var{all}. Default is @var{all}.
7895
7896 @item noise
7897 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
7898 and height are not same and not power of 2 or if stream prior to convolving
7899 had noise.
7900 @end table
7901
7902 The @code{deconvolve} filter also supports the @ref{framesync} options.
7903
7904 @section dedot
7905
7906 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
7907
7908 It accepts the following options:
7909
7910 @table @option
7911 @item m
7912 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
7913 @var{rainbows} for cross-color reduction.
7914
7915 @item lt
7916 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
7917
7918 @item tl
7919 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
7920
7921 @item tc
7922 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
7923
7924 @item ct
7925 Set temporal chroma threshold. Lower values increases reduction of cross-color.
7926 @end table
7927
7928 @section deflate
7929
7930 Apply deflate effect to the video.
7931
7932 This filter replaces the pixel by the local(3x3) average by taking into account
7933 only values lower than the pixel.
7934
7935 It accepts the following options:
7936
7937 @table @option
7938 @item threshold0
7939 @item threshold1
7940 @item threshold2
7941 @item threshold3
7942 Limit the maximum change for each plane, default is 65535.
7943 If 0, plane will remain unchanged.
7944 @end table
7945
7946 @section deflicker
7947
7948 Remove temporal frame luminance variations.
7949
7950 It accepts the following options:
7951
7952 @table @option
7953 @item size, s
7954 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
7955
7956 @item mode, m
7957 Set averaging mode to smooth temporal luminance variations.
7958
7959 Available values are:
7960 @table @samp
7961 @item am
7962 Arithmetic mean
7963
7964 @item gm
7965 Geometric mean
7966
7967 @item hm
7968 Harmonic mean
7969
7970 @item qm
7971 Quadratic mean
7972
7973 @item cm
7974 Cubic mean
7975
7976 @item pm
7977 Power mean
7978
7979 @item median
7980 Median
7981 @end table
7982
7983 @item bypass
7984 Do not actually modify frame. Useful when one only wants metadata.
7985 @end table
7986
7987 @section dejudder
7988
7989 Remove judder produced by partially interlaced telecined content.
7990
7991 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
7992 source was partially telecined content then the output of @code{pullup,dejudder}
7993 will have a variable frame rate. May change the recorded frame rate of the
7994 container. Aside from that change, this filter will not affect constant frame
7995 rate video.
7996
7997 The option available in this filter is:
7998 @table @option
7999
8000 @item cycle
8001 Specify the length of the window over which the judder repeats.
8002
8003 Accepts any integer greater than 1. Useful values are:
8004 @table @samp
8005
8006 @item 4
8007 If the original was telecined from 24 to 30 fps (Film to NTSC).
8008
8009 @item 5
8010 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8011
8012 @item 20
8013 If a mixture of the two.
8014 @end table
8015
8016 The default is @samp{4}.
8017 @end table
8018
8019 @section delogo
8020
8021 Suppress a TV station logo by a simple interpolation of the surrounding
8022 pixels. Just set a rectangle covering the logo and watch it disappear
8023 (and sometimes something even uglier appear - your mileage may vary).
8024
8025 It accepts the following parameters:
8026 @table @option
8027
8028 @item x
8029 @item y
8030 Specify the top left corner coordinates of the logo. They must be
8031 specified.
8032
8033 @item w
8034 @item h
8035 Specify the width and height of the logo to clear. They must be
8036 specified.
8037
8038 @item band, t
8039 Specify the thickness of the fuzzy edge of the rectangle (added to
8040 @var{w} and @var{h}). The default value is 1. This option is
8041 deprecated, setting higher values should no longer be necessary and
8042 is not recommended.
8043
8044 @item show
8045 When set to 1, a green rectangle is drawn on the screen to simplify
8046 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8047 The default value is 0.
8048
8049 The rectangle is drawn on the outermost pixels which will be (partly)
8050 replaced with interpolated values. The values of the next pixels
8051 immediately outside this rectangle in each direction will be used to
8052 compute the interpolated pixel values inside the rectangle.
8053
8054 @end table
8055
8056 @subsection Examples
8057
8058 @itemize
8059 @item
8060 Set a rectangle covering the area with top left corner coordinates 0,0
8061 and size 100x77, and a band of size 10:
8062 @example
8063 delogo=x=0:y=0:w=100:h=77:band=10
8064 @end example
8065
8066 @end itemize
8067
8068 @section deshake
8069
8070 Attempt to fix small changes in horizontal and/or vertical shift. This
8071 filter helps remove camera shake from hand-holding a camera, bumping a
8072 tripod, moving on a vehicle, etc.
8073
8074 The filter accepts the following options:
8075
8076 @table @option
8077
8078 @item x
8079 @item y
8080 @item w
8081 @item h
8082 Specify a rectangular area where to limit the search for motion
8083 vectors.
8084 If desired the search for motion vectors can be limited to a
8085 rectangular area of the frame defined by its top left corner, width
8086 and height. These parameters have the same meaning as the drawbox
8087 filter which can be used to visualise the position of the bounding
8088 box.
8089
8090 This is useful when simultaneous movement of subjects within the frame
8091 might be confused for camera motion by the motion vector search.
8092
8093 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8094 then the full frame is used. This allows later options to be set
8095 without specifying the bounding box for the motion vector search.
8096
8097 Default - search the whole frame.
8098
8099 @item rx
8100 @item ry
8101 Specify the maximum extent of movement in x and y directions in the
8102 range 0-64 pixels. Default 16.
8103
8104 @item edge
8105 Specify how to generate pixels to fill blanks at the edge of the
8106 frame. Available values are:
8107 @table @samp
8108 @item blank, 0
8109 Fill zeroes at blank locations
8110 @item original, 1
8111 Original image at blank locations
8112 @item clamp, 2
8113 Extruded edge value at blank locations
8114 @item mirror, 3
8115 Mirrored edge at blank locations
8116 @end table
8117 Default value is @samp{mirror}.
8118
8119 @item blocksize
8120 Specify the blocksize to use for motion search. Range 4-128 pixels,
8121 default 8.
8122
8123 @item contrast
8124 Specify the contrast threshold for blocks. Only blocks with more than
8125 the specified contrast (difference between darkest and lightest
8126 pixels) will be considered. Range 1-255, default 125.
8127
8128 @item search
8129 Specify the search strategy. Available values are:
8130 @table @samp
8131 @item exhaustive, 0
8132 Set exhaustive search
8133 @item less, 1
8134 Set less exhaustive search.
8135 @end table
8136 Default value is @samp{exhaustive}.
8137
8138 @item filename
8139 If set then a detailed log of the motion search is written to the
8140 specified file.
8141
8142 @end table
8143
8144 @section despill
8145
8146 Remove unwanted contamination of foreground colors, caused by reflected color of
8147 greenscreen or bluescreen.
8148
8149 This filter accepts the following options:
8150
8151 @table @option
8152 @item type
8153 Set what type of despill to use.
8154
8155 @item mix
8156 Set how spillmap will be generated.
8157
8158 @item expand
8159 Set how much to get rid of still remaining spill.
8160
8161 @item red
8162 Controls amount of red in spill area.
8163
8164 @item green
8165 Controls amount of green in spill area.
8166 Should be -1 for greenscreen.
8167
8168 @item blue
8169 Controls amount of blue in spill area.
8170 Should be -1 for bluescreen.
8171
8172 @item brightness
8173 Controls brightness of spill area, preserving colors.
8174
8175 @item alpha
8176 Modify alpha from generated spillmap.
8177 @end table
8178
8179 @section detelecine
8180
8181 Apply an exact inverse of the telecine operation. It requires a predefined
8182 pattern specified using the pattern option which must be the same as that passed
8183 to the telecine filter.
8184
8185 This filter accepts the following options:
8186
8187 @table @option
8188 @item first_field
8189 @table @samp
8190 @item top, t
8191 top field first
8192 @item bottom, b
8193 bottom field first
8194 The default value is @code{top}.
8195 @end table
8196
8197 @item pattern
8198 A string of numbers representing the pulldown pattern you wish to apply.
8199 The default value is @code{23}.
8200
8201 @item start_frame
8202 A number representing position of the first frame with respect to the telecine
8203 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8204 @end table
8205
8206 @section dilation
8207
8208 Apply dilation effect to the video.
8209
8210 This filter replaces the pixel by the local(3x3) maximum.
8211
8212 It accepts the following options:
8213
8214 @table @option
8215 @item threshold0
8216 @item threshold1
8217 @item threshold2
8218 @item threshold3
8219 Limit the maximum change for each plane, default is 65535.
8220 If 0, plane will remain unchanged.
8221
8222 @item coordinates
8223 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8224 pixels are used.
8225
8226 Flags to local 3x3 coordinates maps like this:
8227
8228     1 2 3
8229     4   5
8230     6 7 8
8231 @end table
8232
8233 @section displace
8234
8235 Displace pixels as indicated by second and third input stream.
8236
8237 It takes three input streams and outputs one stream, the first input is the
8238 source, and second and third input are displacement maps.
8239
8240 The second input specifies how much to displace pixels along the
8241 x-axis, while the third input specifies how much to displace pixels
8242 along the y-axis.
8243 If one of displacement map streams terminates, last frame from that
8244 displacement map will be used.
8245
8246 Note that once generated, displacements maps can be reused over and over again.
8247
8248 A description of the accepted options follows.
8249
8250 @table @option
8251 @item edge
8252 Set displace behavior for pixels that are out of range.
8253
8254 Available values are:
8255 @table @samp
8256 @item blank
8257 Missing pixels are replaced by black pixels.
8258
8259 @item smear
8260 Adjacent pixels will spread out to replace missing pixels.
8261
8262 @item wrap
8263 Out of range pixels are wrapped so they point to pixels of other side.
8264
8265 @item mirror
8266 Out of range pixels will be replaced with mirrored pixels.
8267 @end table
8268 Default is @samp{smear}.
8269
8270 @end table
8271
8272 @subsection Examples
8273
8274 @itemize
8275 @item
8276 Add ripple effect to rgb input of video size hd720:
8277 @example
8278 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
8279 @end example
8280
8281 @item
8282 Add wave effect to rgb input of video size hd720:
8283 @example
8284 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
8285 @end example
8286 @end itemize
8287
8288 @section drawbox
8289
8290 Draw a colored box on the input image.
8291
8292 It accepts the following parameters:
8293
8294 @table @option
8295 @item x
8296 @item y
8297 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
8298
8299 @item width, w
8300 @item height, h
8301 The expressions which specify the width and height of the box; if 0 they are interpreted as
8302 the input width and height. It defaults to 0.
8303
8304 @item color, c
8305 Specify the color of the box to write. For the general syntax of this option,
8306 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8307 value @code{invert} is used, the box edge color is the same as the
8308 video with inverted luma.
8309
8310 @item thickness, t
8311 The expression which sets the thickness of the box edge.
8312 A value of @code{fill} will create a filled box. Default value is @code{3}.
8313
8314 See below for the list of accepted constants.
8315
8316 @item replace
8317 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
8318 will overwrite the video's color and alpha pixels.
8319 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
8320 @end table
8321
8322 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8323 following constants:
8324
8325 @table @option
8326 @item dar
8327 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8328
8329 @item hsub
8330 @item vsub
8331 horizontal and vertical chroma subsample values. For example for the
8332 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8333
8334 @item in_h, ih
8335 @item in_w, iw
8336 The input width and height.
8337
8338 @item sar
8339 The input sample aspect ratio.
8340
8341 @item x
8342 @item y
8343 The x and y offset coordinates where the box is drawn.
8344
8345 @item w
8346 @item h
8347 The width and height of the drawn box.
8348
8349 @item t
8350 The thickness of the drawn box.
8351
8352 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8353 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8354
8355 @end table
8356
8357 @subsection Examples
8358
8359 @itemize
8360 @item
8361 Draw a black box around the edge of the input image:
8362 @example
8363 drawbox
8364 @end example
8365
8366 @item
8367 Draw a box with color red and an opacity of 50%:
8368 @example
8369 drawbox=10:20:200:60:red@@0.5
8370 @end example
8371
8372 The previous example can be specified as:
8373 @example
8374 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
8375 @end example
8376
8377 @item
8378 Fill the box with pink color:
8379 @example
8380 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
8381 @end example
8382
8383 @item
8384 Draw a 2-pixel red 2.40:1 mask:
8385 @example
8386 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
8387 @end example
8388 @end itemize
8389
8390 @section drawgrid
8391
8392 Draw a grid on the input image.
8393
8394 It accepts the following parameters:
8395
8396 @table @option
8397 @item x
8398 @item y
8399 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
8400
8401 @item width, w
8402 @item height, h
8403 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
8404 input width and height, respectively, minus @code{thickness}, so image gets
8405 framed. Default to 0.
8406
8407 @item color, c
8408 Specify the color of the grid. For the general syntax of this option,
8409 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8410 value @code{invert} is used, the grid color is the same as the
8411 video with inverted luma.
8412
8413 @item thickness, t
8414 The expression which sets the thickness of the grid line. Default value is @code{1}.
8415
8416 See below for the list of accepted constants.
8417
8418 @item replace
8419 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
8420 will overwrite the video's color and alpha pixels.
8421 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
8422 @end table
8423
8424 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8425 following constants:
8426
8427 @table @option
8428 @item dar
8429 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8430
8431 @item hsub
8432 @item vsub
8433 horizontal and vertical chroma subsample values. For example for the
8434 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8435
8436 @item in_h, ih
8437 @item in_w, iw
8438 The input grid cell width and height.
8439
8440 @item sar
8441 The input sample aspect ratio.
8442
8443 @item x
8444 @item y
8445 The x and y coordinates of some point of grid intersection (meant to configure offset).
8446
8447 @item w
8448 @item h
8449 The width and height of the drawn cell.
8450
8451 @item t
8452 The thickness of the drawn cell.
8453
8454 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8455 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8456
8457 @end table
8458
8459 @subsection Examples
8460
8461 @itemize
8462 @item
8463 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
8464 @example
8465 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
8466 @end example
8467
8468 @item
8469 Draw a white 3x3 grid with an opacity of 50%:
8470 @example
8471 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
8472 @end example
8473 @end itemize
8474
8475 @anchor{drawtext}
8476 @section drawtext
8477
8478 Draw a text string or text from a specified file on top of a video, using the
8479 libfreetype library.
8480
8481 To enable compilation of this filter, you need to configure FFmpeg with
8482 @code{--enable-libfreetype}.
8483 To enable default font fallback and the @var{font} option you need to
8484 configure FFmpeg with @code{--enable-libfontconfig}.
8485 To enable the @var{text_shaping} option, you need to configure FFmpeg with
8486 @code{--enable-libfribidi}.
8487
8488 @subsection Syntax
8489
8490 It accepts the following parameters:
8491
8492 @table @option
8493
8494 @item box
8495 Used to draw a box around text using the background color.
8496 The value must be either 1 (enable) or 0 (disable).
8497 The default value of @var{box} is 0.
8498
8499 @item boxborderw
8500 Set the width of the border to be drawn around the box using @var{boxcolor}.
8501 The default value of @var{boxborderw} is 0.
8502
8503 @item boxcolor
8504 The color to be used for drawing box around text. For the syntax of this
8505 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8506
8507 The default value of @var{boxcolor} is "white".
8508
8509 @item line_spacing
8510 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
8511 The default value of @var{line_spacing} is 0.
8512
8513 @item borderw
8514 Set the width of the border to be drawn around the text using @var{bordercolor}.
8515 The default value of @var{borderw} is 0.
8516
8517 @item bordercolor
8518 Set the color to be used for drawing border around text. For the syntax of this
8519 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8520
8521 The default value of @var{bordercolor} is "black".
8522
8523 @item expansion
8524 Select how the @var{text} is expanded. Can be either @code{none},
8525 @code{strftime} (deprecated) or
8526 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
8527 below for details.
8528
8529 @item basetime
8530 Set a start time for the count. Value is in microseconds. Only applied
8531 in the deprecated strftime expansion mode. To emulate in normal expansion
8532 mode use the @code{pts} function, supplying the start time (in seconds)
8533 as the second argument.
8534
8535 @item fix_bounds
8536 If true, check and fix text coords to avoid clipping.
8537
8538 @item fontcolor
8539 The color to be used for drawing fonts. For the syntax of this option, check
8540 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8541
8542 The default value of @var{fontcolor} is "black".
8543
8544 @item fontcolor_expr
8545 String which is expanded the same way as @var{text} to obtain dynamic
8546 @var{fontcolor} value. By default this option has empty value and is not
8547 processed. When this option is set, it overrides @var{fontcolor} option.
8548
8549 @item font
8550 The font family to be used for drawing text. By default Sans.
8551
8552 @item fontfile
8553 The font file to be used for drawing text. The path must be included.
8554 This parameter is mandatory if the fontconfig support is disabled.
8555
8556 @item alpha
8557 Draw the text applying alpha blending. The value can
8558 be a number between 0.0 and 1.0.
8559 The expression accepts the same variables @var{x, y} as well.
8560 The default value is 1.
8561 Please see @var{fontcolor_expr}.
8562
8563 @item fontsize
8564 The font size to be used for drawing text.
8565 The default value of @var{fontsize} is 16.
8566
8567 @item text_shaping
8568 If set to 1, attempt to shape the text (for example, reverse the order of
8569 right-to-left text and join Arabic characters) before drawing it.
8570 Otherwise, just draw the text exactly as given.
8571 By default 1 (if supported).
8572
8573 @item ft_load_flags
8574 The flags to be used for loading the fonts.
8575
8576 The flags map the corresponding flags supported by libfreetype, and are
8577 a combination of the following values:
8578 @table @var
8579 @item default
8580 @item no_scale
8581 @item no_hinting
8582 @item render
8583 @item no_bitmap
8584 @item vertical_layout
8585 @item force_autohint
8586 @item crop_bitmap
8587 @item pedantic
8588 @item ignore_global_advance_width
8589 @item no_recurse
8590 @item ignore_transform
8591 @item monochrome
8592 @item linear_design
8593 @item no_autohint
8594 @end table
8595
8596 Default value is "default".
8597
8598 For more information consult the documentation for the FT_LOAD_*
8599 libfreetype flags.
8600
8601 @item shadowcolor
8602 The color to be used for drawing a shadow behind the drawn text. For the
8603 syntax of this option, check the @ref{color syntax,,"Color" section in the
8604 ffmpeg-utils manual,ffmpeg-utils}.
8605
8606 The default value of @var{shadowcolor} is "black".
8607
8608 @item shadowx
8609 @item shadowy
8610 The x and y offsets for the text shadow position with respect to the
8611 position of the text. They can be either positive or negative
8612 values. The default value for both is "0".
8613
8614 @item start_number
8615 The starting frame number for the n/frame_num variable. The default value
8616 is "0".
8617
8618 @item tabsize
8619 The size in number of spaces to use for rendering the tab.
8620 Default value is 4.
8621
8622 @item timecode
8623 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
8624 format. It can be used with or without text parameter. @var{timecode_rate}
8625 option must be specified.
8626
8627 @item timecode_rate, rate, r
8628 Set the timecode frame rate (timecode only). Value will be rounded to nearest
8629 integer. Minimum value is "1".
8630 Drop-frame timecode is supported for frame rates 30 & 60.
8631
8632 @item tc24hmax
8633 If set to 1, the output of the timecode option will wrap around at 24 hours.
8634 Default is 0 (disabled).
8635
8636 @item text
8637 The text string to be drawn. The text must be a sequence of UTF-8
8638 encoded characters.
8639 This parameter is mandatory if no file is specified with the parameter
8640 @var{textfile}.
8641
8642 @item textfile
8643 A text file containing text to be drawn. The text must be a sequence
8644 of UTF-8 encoded characters.
8645
8646 This parameter is mandatory if no text string is specified with the
8647 parameter @var{text}.
8648
8649 If both @var{text} and @var{textfile} are specified, an error is thrown.
8650
8651 @item reload
8652 If set to 1, the @var{textfile} will be reloaded before each frame.
8653 Be sure to update it atomically, or it may be read partially, or even fail.
8654
8655 @item x
8656 @item y
8657 The expressions which specify the offsets where text will be drawn
8658 within the video frame. They are relative to the top/left border of the
8659 output image.
8660
8661 The default value of @var{x} and @var{y} is "0".
8662
8663 See below for the list of accepted constants and functions.
8664 @end table
8665
8666 The parameters for @var{x} and @var{y} are expressions containing the
8667 following constants and functions:
8668
8669 @table @option
8670 @item dar
8671 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
8672
8673 @item hsub
8674 @item vsub
8675 horizontal and vertical chroma subsample values. For example for the
8676 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8677
8678 @item line_h, lh
8679 the height of each text line
8680
8681 @item main_h, h, H
8682 the input height
8683
8684 @item main_w, w, W
8685 the input width
8686
8687 @item max_glyph_a, ascent
8688 the maximum distance from the baseline to the highest/upper grid
8689 coordinate used to place a glyph outline point, for all the rendered
8690 glyphs.
8691 It is a positive value, due to the grid's orientation with the Y axis
8692 upwards.
8693
8694 @item max_glyph_d, descent
8695 the maximum distance from the baseline to the lowest grid coordinate
8696 used to place a glyph outline point, for all the rendered glyphs.
8697 This is a negative value, due to the grid's orientation, with the Y axis
8698 upwards.
8699
8700 @item max_glyph_h
8701 maximum glyph height, that is the maximum height for all the glyphs
8702 contained in the rendered text, it is equivalent to @var{ascent} -
8703 @var{descent}.
8704
8705 @item max_glyph_w
8706 maximum glyph width, that is the maximum width for all the glyphs
8707 contained in the rendered text
8708
8709 @item n
8710 the number of input frame, starting from 0
8711
8712 @item rand(min, max)
8713 return a random number included between @var{min} and @var{max}
8714
8715 @item sar
8716 The input sample aspect ratio.
8717
8718 @item t
8719 timestamp expressed in seconds, NAN if the input timestamp is unknown
8720
8721 @item text_h, th
8722 the height of the rendered text
8723
8724 @item text_w, tw
8725 the width of the rendered text
8726
8727 @item x
8728 @item y
8729 the x and y offset coordinates where the text is drawn.
8730
8731 These parameters allow the @var{x} and @var{y} expressions to refer
8732 each other, so you can for example specify @code{y=x/dar}.
8733 @end table
8734
8735 @anchor{drawtext_expansion}
8736 @subsection Text expansion
8737
8738 If @option{expansion} is set to @code{strftime},
8739 the filter recognizes strftime() sequences in the provided text and
8740 expands them accordingly. Check the documentation of strftime(). This
8741 feature is deprecated.
8742
8743 If @option{expansion} is set to @code{none}, the text is printed verbatim.
8744
8745 If @option{expansion} is set to @code{normal} (which is the default),
8746 the following expansion mechanism is used.
8747
8748 The backslash character @samp{\}, followed by any character, always expands to
8749 the second character.
8750
8751 Sequences of the form @code{%@{...@}} are expanded. The text between the
8752 braces is a function name, possibly followed by arguments separated by ':'.
8753 If the arguments contain special characters or delimiters (':' or '@}'),
8754 they should be escaped.
8755
8756 Note that they probably must also be escaped as the value for the
8757 @option{text} option in the filter argument string and as the filter
8758 argument in the filtergraph description, and possibly also for the shell,
8759 that makes up to four levels of escaping; using a text file avoids these
8760 problems.
8761
8762 The following functions are available:
8763
8764 @table @command
8765
8766 @item expr, e
8767 The expression evaluation result.
8768
8769 It must take one argument specifying the expression to be evaluated,
8770 which accepts the same constants and functions as the @var{x} and
8771 @var{y} values. Note that not all constants should be used, for
8772 example the text size is not known when evaluating the expression, so
8773 the constants @var{text_w} and @var{text_h} will have an undefined
8774 value.
8775
8776 @item expr_int_format, eif
8777 Evaluate the expression's value and output as formatted integer.
8778
8779 The first argument is the expression to be evaluated, just as for the @var{expr} function.
8780 The second argument specifies the output format. Allowed values are @samp{x},
8781 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
8782 @code{printf} function.
8783 The third parameter is optional and sets the number of positions taken by the output.
8784 It can be used to add padding with zeros from the left.
8785
8786 @item gmtime
8787 The time at which the filter is running, expressed in UTC.
8788 It can accept an argument: a strftime() format string.
8789
8790 @item localtime
8791 The time at which the filter is running, expressed in the local time zone.
8792 It can accept an argument: a strftime() format string.
8793
8794 @item metadata
8795 Frame metadata. Takes one or two arguments.
8796
8797 The first argument is mandatory and specifies the metadata key.
8798
8799 The second argument is optional and specifies a default value, used when the
8800 metadata key is not found or empty.
8801
8802 @item n, frame_num
8803 The frame number, starting from 0.
8804
8805 @item pict_type
8806 A 1 character description of the current picture type.
8807
8808 @item pts
8809 The timestamp of the current frame.
8810 It can take up to three arguments.
8811
8812 The first argument is the format of the timestamp; it defaults to @code{flt}
8813 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
8814 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
8815 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
8816 @code{localtime} stands for the timestamp of the frame formatted as
8817 local time zone time.
8818
8819 The second argument is an offset added to the timestamp.
8820
8821 If the format is set to @code{hms}, a third argument @code{24HH} may be
8822 supplied to present the hour part of the formatted timestamp in 24h format
8823 (00-23).
8824
8825 If the format is set to @code{localtime} or @code{gmtime},
8826 a third argument may be supplied: a strftime() format string.
8827 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
8828 @end table
8829
8830 @subsection Examples
8831
8832 @itemize
8833 @item
8834 Draw "Test Text" with font FreeSerif, using the default values for the
8835 optional parameters.
8836
8837 @example
8838 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
8839 @end example
8840
8841 @item
8842 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
8843 and y=50 (counting from the top-left corner of the screen), text is
8844 yellow with a red box around it. Both the text and the box have an
8845 opacity of 20%.
8846
8847 @example
8848 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
8849           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
8850 @end example
8851
8852 Note that the double quotes are not necessary if spaces are not used
8853 within the parameter list.
8854
8855 @item
8856 Show the text at the center of the video frame:
8857 @example
8858 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
8859 @end example
8860
8861 @item
8862 Show the text at a random position, switching to a new position every 30 seconds:
8863 @example
8864 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)"
8865 @end example
8866
8867 @item
8868 Show a text line sliding from right to left in the last row of the video
8869 frame. The file @file{LONG_LINE} is assumed to contain a single line
8870 with no newlines.
8871 @example
8872 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
8873 @end example
8874
8875 @item
8876 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
8877 @example
8878 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
8879 @end example
8880
8881 @item
8882 Draw a single green letter "g", at the center of the input video.
8883 The glyph baseline is placed at half screen height.
8884 @example
8885 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
8886 @end example
8887
8888 @item
8889 Show text for 1 second every 3 seconds:
8890 @example
8891 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
8892 @end example
8893
8894 @item
8895 Use fontconfig to set the font. Note that the colons need to be escaped.
8896 @example
8897 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
8898 @end example
8899
8900 @item
8901 Print the date of a real-time encoding (see strftime(3)):
8902 @example
8903 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
8904 @end example
8905
8906 @item
8907 Show text fading in and out (appearing/disappearing):
8908 @example
8909 #!/bin/sh
8910 DS=1.0 # display start
8911 DE=10.0 # display end
8912 FID=1.5 # fade in duration
8913 FOD=5 # fade out duration
8914 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 @}"
8915 @end example
8916
8917 @item
8918 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
8919 and the @option{fontsize} value are included in the @option{y} offset.
8920 @example
8921 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
8922 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
8923 @end example
8924
8925 @end itemize
8926
8927 For more information about libfreetype, check:
8928 @url{http://www.freetype.org/}.
8929
8930 For more information about fontconfig, check:
8931 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
8932
8933 For more information about libfribidi, check:
8934 @url{http://fribidi.org/}.
8935
8936 @section edgedetect
8937
8938 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
8939
8940 The filter accepts the following options:
8941
8942 @table @option
8943 @item low
8944 @item high
8945 Set low and high threshold values used by the Canny thresholding
8946 algorithm.
8947
8948 The high threshold selects the "strong" edge pixels, which are then
8949 connected through 8-connectivity with the "weak" edge pixels selected
8950 by the low threshold.
8951
8952 @var{low} and @var{high} threshold values must be chosen in the range
8953 [0,1], and @var{low} should be lesser or equal to @var{high}.
8954
8955 Default value for @var{low} is @code{20/255}, and default value for @var{high}
8956 is @code{50/255}.
8957
8958 @item mode
8959 Define the drawing mode.
8960
8961 @table @samp
8962 @item wires
8963 Draw white/gray wires on black background.
8964
8965 @item colormix
8966 Mix the colors to create a paint/cartoon effect.
8967
8968 @item canny
8969 Apply Canny edge detector on all selected planes.
8970 @end table
8971 Default value is @var{wires}.
8972
8973 @item planes
8974 Select planes for filtering. By default all available planes are filtered.
8975 @end table
8976
8977 @subsection Examples
8978
8979 @itemize
8980 @item
8981 Standard edge detection with custom values for the hysteresis thresholding:
8982 @example
8983 edgedetect=low=0.1:high=0.4
8984 @end example
8985
8986 @item
8987 Painting effect without thresholding:
8988 @example
8989 edgedetect=mode=colormix:high=0
8990 @end example
8991 @end itemize
8992
8993 @section eq
8994 Set brightness, contrast, saturation and approximate gamma adjustment.
8995
8996 The filter accepts the following options:
8997
8998 @table @option
8999 @item contrast
9000 Set the contrast expression. The value must be a float value in range
9001 @code{-2.0} to @code{2.0}. The default value is "1".
9002
9003 @item brightness
9004 Set the brightness expression. The value must be a float value in
9005 range @code{-1.0} to @code{1.0}. The default value is "0".
9006
9007 @item saturation
9008 Set the saturation expression. The value must be a float in
9009 range @code{0.0} to @code{3.0}. The default value is "1".
9010
9011 @item gamma
9012 Set the gamma expression. The value must be a float in range
9013 @code{0.1} to @code{10.0}.  The default value is "1".
9014
9015 @item gamma_r
9016 Set the gamma expression for red. The value must be a float in
9017 range @code{0.1} to @code{10.0}. The default value is "1".
9018
9019 @item gamma_g
9020 Set the gamma expression for green. The value must be a float in range
9021 @code{0.1} to @code{10.0}. The default value is "1".
9022
9023 @item gamma_b
9024 Set the gamma expression for blue. The value must be a float in range
9025 @code{0.1} to @code{10.0}. The default value is "1".
9026
9027 @item gamma_weight
9028 Set the gamma weight expression. It can be used to reduce the effect
9029 of a high gamma value on bright image areas, e.g. keep them from
9030 getting overamplified and just plain white. The value must be a float
9031 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
9032 gamma correction all the way down while @code{1.0} leaves it at its
9033 full strength. Default is "1".
9034
9035 @item eval
9036 Set when the expressions for brightness, contrast, saturation and
9037 gamma expressions are evaluated.
9038
9039 It accepts the following values:
9040 @table @samp
9041 @item init
9042 only evaluate expressions once during the filter initialization or
9043 when a command is processed
9044
9045 @item frame
9046 evaluate expressions for each incoming frame
9047 @end table
9048
9049 Default value is @samp{init}.
9050 @end table
9051
9052 The expressions accept the following parameters:
9053 @table @option
9054 @item n
9055 frame count of the input frame starting from 0
9056
9057 @item pos
9058 byte position of the corresponding packet in the input file, NAN if
9059 unspecified
9060
9061 @item r
9062 frame rate of the input video, NAN if the input frame rate is unknown
9063
9064 @item t
9065 timestamp expressed in seconds, NAN if the input timestamp is unknown
9066 @end table
9067
9068 @subsection Commands
9069 The filter supports the following commands:
9070
9071 @table @option
9072 @item contrast
9073 Set the contrast expression.
9074
9075 @item brightness
9076 Set the brightness expression.
9077
9078 @item saturation
9079 Set the saturation expression.
9080
9081 @item gamma
9082 Set the gamma expression.
9083
9084 @item gamma_r
9085 Set the gamma_r expression.
9086
9087 @item gamma_g
9088 Set gamma_g expression.
9089
9090 @item gamma_b
9091 Set gamma_b expression.
9092
9093 @item gamma_weight
9094 Set gamma_weight expression.
9095
9096 The command accepts the same syntax of the corresponding option.
9097
9098 If the specified expression is not valid, it is kept at its current
9099 value.
9100
9101 @end table
9102
9103 @section erosion
9104
9105 Apply erosion effect to the video.
9106
9107 This filter replaces the pixel by the local(3x3) minimum.
9108
9109 It accepts the following options:
9110
9111 @table @option
9112 @item threshold0
9113 @item threshold1
9114 @item threshold2
9115 @item threshold3
9116 Limit the maximum change for each plane, default is 65535.
9117 If 0, plane will remain unchanged.
9118
9119 @item coordinates
9120 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9121 pixels are used.
9122
9123 Flags to local 3x3 coordinates maps like this:
9124
9125     1 2 3
9126     4   5
9127     6 7 8
9128 @end table
9129
9130 @section extractplanes
9131
9132 Extract color channel components from input video stream into
9133 separate grayscale video streams.
9134
9135 The filter accepts the following option:
9136
9137 @table @option
9138 @item planes
9139 Set plane(s) to extract.
9140
9141 Available values for planes are:
9142 @table @samp
9143 @item y
9144 @item u
9145 @item v
9146 @item a
9147 @item r
9148 @item g
9149 @item b
9150 @end table
9151
9152 Choosing planes not available in the input will result in an error.
9153 That means you cannot select @code{r}, @code{g}, @code{b} planes
9154 with @code{y}, @code{u}, @code{v} planes at same time.
9155 @end table
9156
9157 @subsection Examples
9158
9159 @itemize
9160 @item
9161 Extract luma, u and v color channel component from input video frame
9162 into 3 grayscale outputs:
9163 @example
9164 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
9165 @end example
9166 @end itemize
9167
9168 @section elbg
9169
9170 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9171
9172 For each input image, the filter will compute the optimal mapping from
9173 the input to the output given the codebook length, that is the number
9174 of distinct output colors.
9175
9176 This filter accepts the following options.
9177
9178 @table @option
9179 @item codebook_length, l
9180 Set codebook length. The value must be a positive integer, and
9181 represents the number of distinct output colors. Default value is 256.
9182
9183 @item nb_steps, n
9184 Set the maximum number of iterations to apply for computing the optimal
9185 mapping. The higher the value the better the result and the higher the
9186 computation time. Default value is 1.
9187
9188 @item seed, s
9189 Set a random seed, must be an integer included between 0 and
9190 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9191 will try to use a good random seed on a best effort basis.
9192
9193 @item pal8
9194 Set pal8 output pixel format. This option does not work with codebook
9195 length greater than 256.
9196 @end table
9197
9198 @section entropy
9199
9200 Measure graylevel entropy in histogram of color channels of video frames.
9201
9202 It accepts the following parameters:
9203
9204 @table @option
9205 @item mode
9206 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9207
9208 @var{diff} mode measures entropy of histogram delta values, absolute differences
9209 between neighbour histogram values.
9210 @end table
9211
9212 @section fade
9213
9214 Apply a fade-in/out effect to the input video.
9215
9216 It accepts the following parameters:
9217
9218 @table @option
9219 @item type, t
9220 The effect type can be either "in" for a fade-in, or "out" for a fade-out
9221 effect.
9222 Default is @code{in}.
9223
9224 @item start_frame, s
9225 Specify the number of the frame to start applying the fade
9226 effect at. Default is 0.
9227
9228 @item nb_frames, n
9229 The number of frames that the fade effect lasts. At the end of the
9230 fade-in effect, the output video will have the same intensity as the input video.
9231 At the end of the fade-out transition, the output video will be filled with the
9232 selected @option{color}.
9233 Default is 25.
9234
9235 @item alpha
9236 If set to 1, fade only alpha channel, if one exists on the input.
9237 Default value is 0.
9238
9239 @item start_time, st
9240 Specify the timestamp (in seconds) of the frame to start to apply the fade
9241 effect. If both start_frame and start_time are specified, the fade will start at
9242 whichever comes last.  Default is 0.
9243
9244 @item duration, d
9245 The number of seconds for which the fade effect has to last. At the end of the
9246 fade-in effect the output video will have the same intensity as the input video,
9247 at the end of the fade-out transition the output video will be filled with the
9248 selected @option{color}.
9249 If both duration and nb_frames are specified, duration is used. Default is 0
9250 (nb_frames is used by default).
9251
9252 @item color, c
9253 Specify the color of the fade. Default is "black".
9254 @end table
9255
9256 @subsection Examples
9257
9258 @itemize
9259 @item
9260 Fade in the first 30 frames of video:
9261 @example
9262 fade=in:0:30
9263 @end example
9264
9265 The command above is equivalent to:
9266 @example
9267 fade=t=in:s=0:n=30
9268 @end example
9269
9270 @item
9271 Fade out the last 45 frames of a 200-frame video:
9272 @example
9273 fade=out:155:45
9274 fade=type=out:start_frame=155:nb_frames=45
9275 @end example
9276
9277 @item
9278 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
9279 @example
9280 fade=in:0:25, fade=out:975:25
9281 @end example
9282
9283 @item
9284 Make the first 5 frames yellow, then fade in from frame 5-24:
9285 @example
9286 fade=in:5:20:color=yellow
9287 @end example
9288
9289 @item
9290 Fade in alpha over first 25 frames of video:
9291 @example
9292 fade=in:0:25:alpha=1
9293 @end example
9294
9295 @item
9296 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
9297 @example
9298 fade=t=in:st=5.5:d=0.5
9299 @end example
9300
9301 @end itemize
9302
9303 @section fftfilt
9304 Apply arbitrary expressions to samples in frequency domain
9305
9306 @table @option
9307 @item dc_Y
9308 Adjust the dc value (gain) of the luma plane of the image. The filter
9309 accepts an integer value in range @code{0} to @code{1000}. The default
9310 value is set to @code{0}.
9311
9312 @item dc_U
9313 Adjust the dc value (gain) of the 1st chroma plane of the image. The
9314 filter accepts an integer value in range @code{0} to @code{1000}. The
9315 default value is set to @code{0}.
9316
9317 @item dc_V
9318 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
9319 filter accepts an integer value in range @code{0} to @code{1000}. The
9320 default value is set to @code{0}.
9321
9322 @item weight_Y
9323 Set the frequency domain weight expression for the luma plane.
9324
9325 @item weight_U
9326 Set the frequency domain weight expression for the 1st chroma plane.
9327
9328 @item weight_V
9329 Set the frequency domain weight expression for the 2nd chroma plane.
9330
9331 @item eval
9332 Set when the expressions are evaluated.
9333
9334 It accepts the following values:
9335 @table @samp
9336 @item init
9337 Only evaluate expressions once during the filter initialization.
9338
9339 @item frame
9340 Evaluate expressions for each incoming frame.
9341 @end table
9342
9343 Default value is @samp{init}.
9344
9345 The filter accepts the following variables:
9346 @item X
9347 @item Y
9348 The coordinates of the current sample.
9349
9350 @item W
9351 @item H
9352 The width and height of the image.
9353
9354 @item N
9355 The number of input frame, starting from 0.
9356 @end table
9357
9358 @subsection Examples
9359
9360 @itemize
9361 @item
9362 High-pass:
9363 @example
9364 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
9365 @end example
9366
9367 @item
9368 Low-pass:
9369 @example
9370 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
9371 @end example
9372
9373 @item
9374 Sharpen:
9375 @example
9376 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
9377 @end example
9378
9379 @item
9380 Blur:
9381 @example
9382 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
9383 @end example
9384
9385 @end itemize
9386
9387 @section fftdnoiz
9388 Denoise frames using 3D FFT (frequency domain filtering).
9389
9390 The filter accepts the following options:
9391
9392 @table @option
9393 @item sigma
9394 Set the noise sigma constant. This sets denoising strength.
9395 Default value is 1. Allowed range is from 0 to 30.
9396 Using very high sigma with low overlap may give blocking artifacts.
9397
9398 @item amount
9399 Set amount of denoising. By default all detected noise is reduced.
9400 Default value is 1. Allowed range is from 0 to 1.
9401
9402 @item block
9403 Set size of block, Default is 4, can be 3, 4, 5 or 6.
9404 Actual size of block in pixels is 2 to power of @var{block}, so by default
9405 block size in pixels is 2^4 which is 16.
9406
9407 @item overlap
9408 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
9409
9410 @item prev
9411 Set number of previous frames to use for denoising. By default is set to 0.
9412
9413 @item next
9414 Set number of next frames to to use for denoising. By default is set to 0.
9415
9416 @item planes
9417 Set planes which will be filtered, by default are all available filtered
9418 except alpha.
9419 @end table
9420
9421 @section field
9422
9423 Extract a single field from an interlaced image using stride
9424 arithmetic to avoid wasting CPU time. The output frames are marked as
9425 non-interlaced.
9426
9427 The filter accepts the following options:
9428
9429 @table @option
9430 @item type
9431 Specify whether to extract the top (if the value is @code{0} or
9432 @code{top}) or the bottom field (if the value is @code{1} or
9433 @code{bottom}).
9434 @end table
9435
9436 @section fieldhint
9437
9438 Create new frames by copying the top and bottom fields from surrounding frames
9439 supplied as numbers by the hint file.
9440
9441 @table @option
9442 @item hint
9443 Set file containing hints: absolute/relative frame numbers.
9444
9445 There must be one line for each frame in a clip. Each line must contain two
9446 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
9447 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
9448 is current frame number for @code{absolute} mode or out of [-1, 1] range
9449 for @code{relative} mode. First number tells from which frame to pick up top
9450 field and second number tells from which frame to pick up bottom field.
9451
9452 If optionally followed by @code{+} output frame will be marked as interlaced,
9453 else if followed by @code{-} output frame will be marked as progressive, else
9454 it will be marked same as input frame.
9455 If line starts with @code{#} or @code{;} that line is skipped.
9456
9457 @item mode
9458 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
9459 @end table
9460
9461 Example of first several lines of @code{hint} file for @code{relative} mode:
9462 @example
9463 0,0 - # first frame
9464 1,0 - # second frame, use third's frame top field and second's frame bottom field
9465 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
9466 1,0 -
9467 0,0 -
9468 0,0 -
9469 1,0 -
9470 1,0 -
9471 1,0 -
9472 0,0 -
9473 0,0 -
9474 1,0 -
9475 1,0 -
9476 1,0 -
9477 0,0 -
9478 @end example
9479
9480 @section fieldmatch
9481
9482 Field matching filter for inverse telecine. It is meant to reconstruct the
9483 progressive frames from a telecined stream. The filter does not drop duplicated
9484 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
9485 followed by a decimation filter such as @ref{decimate} in the filtergraph.
9486
9487 The separation of the field matching and the decimation is notably motivated by
9488 the possibility of inserting a de-interlacing filter fallback between the two.
9489 If the source has mixed telecined and real interlaced content,
9490 @code{fieldmatch} will not be able to match fields for the interlaced parts.
9491 But these remaining combed frames will be marked as interlaced, and thus can be
9492 de-interlaced by a later filter such as @ref{yadif} before decimation.
9493
9494 In addition to the various configuration options, @code{fieldmatch} can take an
9495 optional second stream, activated through the @option{ppsrc} option. If
9496 enabled, the frames reconstruction will be based on the fields and frames from
9497 this second stream. This allows the first input to be pre-processed in order to
9498 help the various algorithms of the filter, while keeping the output lossless
9499 (assuming the fields are matched properly). Typically, a field-aware denoiser,
9500 or brightness/contrast adjustments can help.
9501
9502 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
9503 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
9504 which @code{fieldmatch} is based on. While the semantic and usage are very
9505 close, some behaviour and options names can differ.
9506
9507 The @ref{decimate} filter currently only works for constant frame rate input.
9508 If your input has mixed telecined (30fps) and progressive content with a lower
9509 framerate like 24fps use the following filterchain to produce the necessary cfr
9510 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
9511
9512 The filter accepts the following options:
9513
9514 @table @option
9515 @item order
9516 Specify the assumed field order of the input stream. Available values are:
9517
9518 @table @samp
9519 @item auto
9520 Auto detect parity (use FFmpeg's internal parity value).
9521 @item bff
9522 Assume bottom field first.
9523 @item tff
9524 Assume top field first.
9525 @end table
9526
9527 Note that it is sometimes recommended not to trust the parity announced by the
9528 stream.
9529
9530 Default value is @var{auto}.
9531
9532 @item mode
9533 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
9534 sense that it won't risk creating jerkiness due to duplicate frames when
9535 possible, but if there are bad edits or blended fields it will end up
9536 outputting combed frames when a good match might actually exist. On the other
9537 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
9538 but will almost always find a good frame if there is one. The other values are
9539 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
9540 jerkiness and creating duplicate frames versus finding good matches in sections
9541 with bad edits, orphaned fields, blended fields, etc.
9542
9543 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
9544
9545 Available values are:
9546
9547 @table @samp
9548 @item pc
9549 2-way matching (p/c)
9550 @item pc_n
9551 2-way matching, and trying 3rd match if still combed (p/c + n)
9552 @item pc_u
9553 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
9554 @item pc_n_ub
9555 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
9556 still combed (p/c + n + u/b)
9557 @item pcn
9558 3-way matching (p/c/n)
9559 @item pcn_ub
9560 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
9561 detected as combed (p/c/n + u/b)
9562 @end table
9563
9564 The parenthesis at the end indicate the matches that would be used for that
9565 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
9566 @var{top}).
9567
9568 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
9569 the slowest.
9570
9571 Default value is @var{pc_n}.
9572
9573 @item ppsrc
9574 Mark the main input stream as a pre-processed input, and enable the secondary
9575 input stream as the clean source to pick the fields from. See the filter
9576 introduction for more details. It is similar to the @option{clip2} feature from
9577 VFM/TFM.
9578
9579 Default value is @code{0} (disabled).
9580
9581 @item field
9582 Set the field to match from. It is recommended to set this to the same value as
9583 @option{order} unless you experience matching failures with that setting. In
9584 certain circumstances changing the field that is used to match from can have a
9585 large impact on matching performance. Available values are:
9586
9587 @table @samp
9588 @item auto
9589 Automatic (same value as @option{order}).
9590 @item bottom
9591 Match from the bottom field.
9592 @item top
9593 Match from the top field.
9594 @end table
9595
9596 Default value is @var{auto}.
9597
9598 @item mchroma
9599 Set whether or not chroma is included during the match comparisons. In most
9600 cases it is recommended to leave this enabled. You should set this to @code{0}
9601 only if your clip has bad chroma problems such as heavy rainbowing or other
9602 artifacts. Setting this to @code{0} could also be used to speed things up at
9603 the cost of some accuracy.
9604
9605 Default value is @code{1}.
9606
9607 @item y0
9608 @item y1
9609 These define an exclusion band which excludes the lines between @option{y0} and
9610 @option{y1} from being included in the field matching decision. An exclusion
9611 band can be used to ignore subtitles, a logo, or other things that may
9612 interfere with the matching. @option{y0} sets the starting scan line and
9613 @option{y1} sets the ending line; all lines in between @option{y0} and
9614 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
9615 @option{y0} and @option{y1} to the same value will disable the feature.
9616 @option{y0} and @option{y1} defaults to @code{0}.
9617
9618 @item scthresh
9619 Set the scene change detection threshold as a percentage of maximum change on
9620 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
9621 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
9622 @option{scthresh} is @code{[0.0, 100.0]}.
9623
9624 Default value is @code{12.0}.
9625
9626 @item combmatch
9627 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
9628 account the combed scores of matches when deciding what match to use as the
9629 final match. Available values are:
9630
9631 @table @samp
9632 @item none
9633 No final matching based on combed scores.
9634 @item sc
9635 Combed scores are only used when a scene change is detected.
9636 @item full
9637 Use combed scores all the time.
9638 @end table
9639
9640 Default is @var{sc}.
9641
9642 @item combdbg
9643 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
9644 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
9645 Available values are:
9646
9647 @table @samp
9648 @item none
9649 No forced calculation.
9650 @item pcn
9651 Force p/c/n calculations.
9652 @item pcnub
9653 Force p/c/n/u/b calculations.
9654 @end table
9655
9656 Default value is @var{none}.
9657
9658 @item cthresh
9659 This is the area combing threshold used for combed frame detection. This
9660 essentially controls how "strong" or "visible" combing must be to be detected.
9661 Larger values mean combing must be more visible and smaller values mean combing
9662 can be less visible or strong and still be detected. Valid settings are from
9663 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
9664 be detected as combed). This is basically a pixel difference value. A good
9665 range is @code{[8, 12]}.
9666
9667 Default value is @code{9}.
9668
9669 @item chroma
9670 Sets whether or not chroma is considered in the combed frame decision.  Only
9671 disable this if your source has chroma problems (rainbowing, etc.) that are
9672 causing problems for the combed frame detection with chroma enabled. Actually,
9673 using @option{chroma}=@var{0} is usually more reliable, except for the case
9674 where there is chroma only combing in the source.
9675
9676 Default value is @code{0}.
9677
9678 @item blockx
9679 @item blocky
9680 Respectively set the x-axis and y-axis size of the window used during combed
9681 frame detection. This has to do with the size of the area in which
9682 @option{combpel} pixels are required to be detected as combed for a frame to be
9683 declared combed. See the @option{combpel} parameter description for more info.
9684 Possible values are any number that is a power of 2 starting at 4 and going up
9685 to 512.
9686
9687 Default value is @code{16}.
9688
9689 @item combpel
9690 The number of combed pixels inside any of the @option{blocky} by
9691 @option{blockx} size blocks on the frame for the frame to be detected as
9692 combed. While @option{cthresh} controls how "visible" the combing must be, this
9693 setting controls "how much" combing there must be in any localized area (a
9694 window defined by the @option{blockx} and @option{blocky} settings) on the
9695 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
9696 which point no frames will ever be detected as combed). This setting is known
9697 as @option{MI} in TFM/VFM vocabulary.
9698
9699 Default value is @code{80}.
9700 @end table
9701
9702 @anchor{p/c/n/u/b meaning}
9703 @subsection p/c/n/u/b meaning
9704
9705 @subsubsection p/c/n
9706
9707 We assume the following telecined stream:
9708
9709 @example
9710 Top fields:     1 2 2 3 4
9711 Bottom fields:  1 2 3 4 4
9712 @end example
9713
9714 The numbers correspond to the progressive frame the fields relate to. Here, the
9715 first two frames are progressive, the 3rd and 4th are combed, and so on.
9716
9717 When @code{fieldmatch} is configured to run a matching from bottom
9718 (@option{field}=@var{bottom}) this is how this input stream get transformed:
9719
9720 @example
9721 Input stream:
9722                 T     1 2 2 3 4
9723                 B     1 2 3 4 4   <-- matching reference
9724
9725 Matches:              c c n n c
9726
9727 Output stream:
9728                 T     1 2 3 4 4
9729                 B     1 2 3 4 4
9730 @end example
9731
9732 As a result of the field matching, we can see that some frames get duplicated.
9733 To perform a complete inverse telecine, you need to rely on a decimation filter
9734 after this operation. See for instance the @ref{decimate} filter.
9735
9736 The same operation now matching from top fields (@option{field}=@var{top})
9737 looks like this:
9738
9739 @example
9740 Input stream:
9741                 T     1 2 2 3 4   <-- matching reference
9742                 B     1 2 3 4 4
9743
9744 Matches:              c c p p c
9745
9746 Output stream:
9747                 T     1 2 2 3 4
9748                 B     1 2 2 3 4
9749 @end example
9750
9751 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
9752 basically, they refer to the frame and field of the opposite parity:
9753
9754 @itemize
9755 @item @var{p} matches the field of the opposite parity in the previous frame
9756 @item @var{c} matches the field of the opposite parity in the current frame
9757 @item @var{n} matches the field of the opposite parity in the next frame
9758 @end itemize
9759
9760 @subsubsection u/b
9761
9762 The @var{u} and @var{b} matching are a bit special in the sense that they match
9763 from the opposite parity flag. In the following examples, we assume that we are
9764 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
9765 'x' is placed above and below each matched fields.
9766
9767 With bottom matching (@option{field}=@var{bottom}):
9768 @example
9769 Match:           c         p           n          b          u
9770
9771                  x       x               x        x          x
9772   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
9773   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
9774                  x         x           x        x              x
9775
9776 Output frames:
9777                  2          1          2          2          2
9778                  2          2          2          1          3
9779 @end example
9780
9781 With top matching (@option{field}=@var{top}):
9782 @example
9783 Match:           c         p           n          b          u
9784
9785                  x         x           x        x              x
9786   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
9787   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
9788                  x       x               x        x          x
9789
9790 Output frames:
9791                  2          2          2          1          2
9792                  2          1          3          2          2
9793 @end example
9794
9795 @subsection Examples
9796
9797 Simple IVTC of a top field first telecined stream:
9798 @example
9799 fieldmatch=order=tff:combmatch=none, decimate
9800 @end example
9801
9802 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
9803 @example
9804 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
9805 @end example
9806
9807 @section fieldorder
9808
9809 Transform the field order of the input video.
9810
9811 It accepts the following parameters:
9812
9813 @table @option
9814
9815 @item order
9816 The output field order. Valid values are @var{tff} for top field first or @var{bff}
9817 for bottom field first.
9818 @end table
9819
9820 The default value is @samp{tff}.
9821
9822 The transformation is done by shifting the picture content up or down
9823 by one line, and filling the remaining line with appropriate picture content.
9824 This method is consistent with most broadcast field order converters.
9825
9826 If the input video is not flagged as being interlaced, or it is already
9827 flagged as being of the required output field order, then this filter does
9828 not alter the incoming video.
9829
9830 It is very useful when converting to or from PAL DV material,
9831 which is bottom field first.
9832
9833 For example:
9834 @example
9835 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
9836 @end example
9837
9838 @section fifo, afifo
9839
9840 Buffer input images and send them when they are requested.
9841
9842 It is mainly useful when auto-inserted by the libavfilter
9843 framework.
9844
9845 It does not take parameters.
9846
9847 @section fillborders
9848
9849 Fill borders of the input video, without changing video stream dimensions.
9850 Sometimes video can have garbage at the four edges and you may not want to
9851 crop video input to keep size multiple of some number.
9852
9853 This filter accepts the following options:
9854
9855 @table @option
9856 @item left
9857 Number of pixels to fill from left border.
9858
9859 @item right
9860 Number of pixels to fill from right border.
9861
9862 @item top
9863 Number of pixels to fill from top border.
9864
9865 @item bottom
9866 Number of pixels to fill from bottom border.
9867
9868 @item mode
9869 Set fill mode.
9870
9871 It accepts the following values:
9872 @table @samp
9873 @item smear
9874 fill pixels using outermost pixels
9875
9876 @item mirror
9877 fill pixels using mirroring
9878
9879 @item fixed
9880 fill pixels with constant value
9881 @end table
9882
9883 Default is @var{smear}.
9884
9885 @item color
9886 Set color for pixels in fixed mode. Default is @var{black}.
9887 @end table
9888
9889 @section find_rect
9890
9891 Find a rectangular object
9892
9893 It accepts the following options:
9894
9895 @table @option
9896 @item object
9897 Filepath of the object image, needs to be in gray8.
9898
9899 @item threshold
9900 Detection threshold, default is 0.5.
9901
9902 @item mipmaps
9903 Number of mipmaps, default is 3.
9904
9905 @item xmin, ymin, xmax, ymax
9906 Specifies the rectangle in which to search.
9907 @end table
9908
9909 @subsection Examples
9910
9911 @itemize
9912 @item
9913 Generate a representative palette of a given video using @command{ffmpeg}:
9914 @example
9915 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9916 @end example
9917 @end itemize
9918
9919 @section cover_rect
9920
9921 Cover a rectangular object
9922
9923 It accepts the following options:
9924
9925 @table @option
9926 @item cover
9927 Filepath of the optional cover image, needs to be in yuv420.
9928
9929 @item mode
9930 Set covering mode.
9931
9932 It accepts the following values:
9933 @table @samp
9934 @item cover
9935 cover it by the supplied image
9936 @item blur
9937 cover it by interpolating the surrounding pixels
9938 @end table
9939
9940 Default value is @var{blur}.
9941 @end table
9942
9943 @subsection Examples
9944
9945 @itemize
9946 @item
9947 Generate a representative palette of a given video using @command{ffmpeg}:
9948 @example
9949 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9950 @end example
9951 @end itemize
9952
9953 @section floodfill
9954
9955 Flood area with values of same pixel components with another values.
9956
9957 It accepts the following options:
9958 @table @option
9959 @item x
9960 Set pixel x coordinate.
9961
9962 @item y
9963 Set pixel y coordinate.
9964
9965 @item s0
9966 Set source #0 component value.
9967
9968 @item s1
9969 Set source #1 component value.
9970
9971 @item s2
9972 Set source #2 component value.
9973
9974 @item s3
9975 Set source #3 component value.
9976
9977 @item d0
9978 Set destination #0 component value.
9979
9980 @item d1
9981 Set destination #1 component value.
9982
9983 @item d2
9984 Set destination #2 component value.
9985
9986 @item d3
9987 Set destination #3 component value.
9988 @end table
9989
9990 @anchor{format}
9991 @section format
9992
9993 Convert the input video to one of the specified pixel formats.
9994 Libavfilter will try to pick one that is suitable as input to
9995 the next filter.
9996
9997 It accepts the following parameters:
9998 @table @option
9999
10000 @item pix_fmts
10001 A '|'-separated list of pixel format names, such as
10002 "pix_fmts=yuv420p|monow|rgb24".
10003
10004 @end table
10005
10006 @subsection Examples
10007
10008 @itemize
10009 @item
10010 Convert the input video to the @var{yuv420p} format
10011 @example
10012 format=pix_fmts=yuv420p
10013 @end example
10014
10015 Convert the input video to any of the formats in the list
10016 @example
10017 format=pix_fmts=yuv420p|yuv444p|yuv410p
10018 @end example
10019 @end itemize
10020
10021 @anchor{fps}
10022 @section fps
10023
10024 Convert the video to specified constant frame rate by duplicating or dropping
10025 frames as necessary.
10026
10027 It accepts the following parameters:
10028 @table @option
10029
10030 @item fps
10031 The desired output frame rate. The default is @code{25}.
10032
10033 @item start_time
10034 Assume the first PTS should be the given value, in seconds. This allows for
10035 padding/trimming at the start of stream. By default, no assumption is made
10036 about the first frame's expected PTS, so no padding or trimming is done.
10037 For example, this could be set to 0 to pad the beginning with duplicates of
10038 the first frame if a video stream starts after the audio stream or to trim any
10039 frames with a negative PTS.
10040
10041 @item round
10042 Timestamp (PTS) rounding method.
10043
10044 Possible values are:
10045 @table @option
10046 @item zero
10047 round towards 0
10048 @item inf
10049 round away from 0
10050 @item down
10051 round towards -infinity
10052 @item up
10053 round towards +infinity
10054 @item near
10055 round to nearest
10056 @end table
10057 The default is @code{near}.
10058
10059 @item eof_action
10060 Action performed when reading the last frame.
10061
10062 Possible values are:
10063 @table @option
10064 @item round
10065 Use same timestamp rounding method as used for other frames.
10066 @item pass
10067 Pass through last frame if input duration has not been reached yet.
10068 @end table
10069 The default is @code{round}.
10070
10071 @end table
10072
10073 Alternatively, the options can be specified as a flat string:
10074 @var{fps}[:@var{start_time}[:@var{round}]].
10075
10076 See also the @ref{setpts} filter.
10077
10078 @subsection Examples
10079
10080 @itemize
10081 @item
10082 A typical usage in order to set the fps to 25:
10083 @example
10084 fps=fps=25
10085 @end example
10086
10087 @item
10088 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
10089 @example
10090 fps=fps=film:round=near
10091 @end example
10092 @end itemize
10093
10094 @section framepack
10095
10096 Pack two different video streams into a stereoscopic video, setting proper
10097 metadata on supported codecs. The two views should have the same size and
10098 framerate and processing will stop when the shorter video ends. Please note
10099 that you may conveniently adjust view properties with the @ref{scale} and
10100 @ref{fps} filters.
10101
10102 It accepts the following parameters:
10103 @table @option
10104
10105 @item format
10106 The desired packing format. Supported values are:
10107
10108 @table @option
10109
10110 @item sbs
10111 The views are next to each other (default).
10112
10113 @item tab
10114 The views are on top of each other.
10115
10116 @item lines
10117 The views are packed by line.
10118
10119 @item columns
10120 The views are packed by column.
10121
10122 @item frameseq
10123 The views are temporally interleaved.
10124
10125 @end table
10126
10127 @end table
10128
10129 Some examples:
10130
10131 @example
10132 # Convert left and right views into a frame-sequential video
10133 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
10134
10135 # Convert views into a side-by-side video with the same output resolution as the input
10136 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
10137 @end example
10138
10139 @section framerate
10140
10141 Change the frame rate by interpolating new video output frames from the source
10142 frames.
10143
10144 This filter is not designed to function correctly with interlaced media. If
10145 you wish to change the frame rate of interlaced media then you are required
10146 to deinterlace before this filter and re-interlace after this filter.
10147
10148 A description of the accepted options follows.
10149
10150 @table @option
10151 @item fps
10152 Specify the output frames per second. This option can also be specified
10153 as a value alone. The default is @code{50}.
10154
10155 @item interp_start
10156 Specify the start of a range where the output frame will be created as a
10157 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10158 the default is @code{15}.
10159
10160 @item interp_end
10161 Specify the end of a range where the output frame will be created as a
10162 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10163 the default is @code{240}.
10164
10165 @item scene
10166 Specify the level at which a scene change is detected as a value between
10167 0 and 100 to indicate a new scene; a low value reflects a low
10168 probability for the current frame to introduce a new scene, while a higher
10169 value means the current frame is more likely to be one.
10170 The default is @code{8.2}.
10171
10172 @item flags
10173 Specify flags influencing the filter process.
10174
10175 Available value for @var{flags} is:
10176
10177 @table @option
10178 @item scene_change_detect, scd
10179 Enable scene change detection using the value of the option @var{scene}.
10180 This flag is enabled by default.
10181 @end table
10182 @end table
10183
10184 @section framestep
10185
10186 Select one frame every N-th frame.
10187
10188 This filter accepts the following option:
10189 @table @option
10190 @item step
10191 Select frame after every @code{step} frames.
10192 Allowed values are positive integers higher than 0. Default value is @code{1}.
10193 @end table
10194
10195 @section freezedetect
10196
10197 Detect frozen video.
10198
10199 This filter logs a message and sets frame metadata when it detects that the
10200 input video has no significant change in content during a specified duration.
10201 Video freeze detection calculates the mean average absolute difference of all
10202 the components of video frames and compares it to a noise floor.
10203
10204 The printed times and duration are expressed in seconds. The
10205 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
10206 whose timestamp equals or exceeds the detection duration and it contains the
10207 timestamp of the first frame of the freeze. The
10208 @code{lavfi.freezedetect.freeze_duration} and
10209 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
10210 after the freeze.
10211
10212 The filter accepts the following options:
10213
10214 @table @option
10215 @item noise, n
10216 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
10217 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
10218 0.001.
10219
10220 @item duration, d
10221 Set freeze duration until notification (default is 2 seconds).
10222 @end table
10223
10224 @anchor{frei0r}
10225 @section frei0r
10226
10227 Apply a frei0r effect to the input video.
10228
10229 To enable the compilation of this filter, you need to install the frei0r
10230 header and configure FFmpeg with @code{--enable-frei0r}.
10231
10232 It accepts the following parameters:
10233
10234 @table @option
10235
10236 @item filter_name
10237 The name of the frei0r effect to load. If the environment variable
10238 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
10239 directories specified by the colon-separated list in @env{FREI0R_PATH}.
10240 Otherwise, the standard frei0r paths are searched, in this order:
10241 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
10242 @file{/usr/lib/frei0r-1/}.
10243
10244 @item filter_params
10245 A '|'-separated list of parameters to pass to the frei0r effect.
10246
10247 @end table
10248
10249 A frei0r effect parameter can be a boolean (its value is either
10250 "y" or "n"), a double, a color (specified as
10251 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
10252 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
10253 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
10254 a position (specified as @var{X}/@var{Y}, where
10255 @var{X} and @var{Y} are floating point numbers) and/or a string.
10256
10257 The number and types of parameters depend on the loaded effect. If an
10258 effect parameter is not specified, the default value is set.
10259
10260 @subsection Examples
10261
10262 @itemize
10263 @item
10264 Apply the distort0r effect, setting the first two double parameters:
10265 @example
10266 frei0r=filter_name=distort0r:filter_params=0.5|0.01
10267 @end example
10268
10269 @item
10270 Apply the colordistance effect, taking a color as the first parameter:
10271 @example
10272 frei0r=colordistance:0.2/0.3/0.4
10273 frei0r=colordistance:violet
10274 frei0r=colordistance:0x112233
10275 @end example
10276
10277 @item
10278 Apply the perspective effect, specifying the top left and top right image
10279 positions:
10280 @example
10281 frei0r=perspective:0.2/0.2|0.8/0.2
10282 @end example
10283 @end itemize
10284
10285 For more information, see
10286 @url{http://frei0r.dyne.org}
10287
10288 @section fspp
10289
10290 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
10291
10292 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
10293 processing filter, one of them is performed once per block, not per pixel.
10294 This allows for much higher speed.
10295
10296 The filter accepts the following options:
10297
10298 @table @option
10299 @item quality
10300 Set quality. This option defines the number of levels for averaging. It accepts
10301 an integer in the range 4-5. Default value is @code{4}.
10302
10303 @item qp
10304 Force a constant quantization parameter. It accepts an integer in range 0-63.
10305 If not set, the filter will use the QP from the video stream (if available).
10306
10307 @item strength
10308 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
10309 more details but also more artifacts, while higher values make the image smoother
10310 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
10311
10312 @item use_bframe_qp
10313 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10314 option may cause flicker since the B-Frames have often larger QP. Default is
10315 @code{0} (not enabled).
10316
10317 @end table
10318
10319 @section gblur
10320
10321 Apply Gaussian blur filter.
10322
10323 The filter accepts the following options:
10324
10325 @table @option
10326 @item sigma
10327 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
10328
10329 @item steps
10330 Set number of steps for Gaussian approximation. Default is @code{1}.
10331
10332 @item planes
10333 Set which planes to filter. By default all planes are filtered.
10334
10335 @item sigmaV
10336 Set vertical sigma, if negative it will be same as @code{sigma}.
10337 Default is @code{-1}.
10338 @end table
10339
10340 @section geq
10341
10342 Apply generic equation to each pixel.
10343
10344 The filter accepts the following options:
10345
10346 @table @option
10347 @item lum_expr, lum
10348 Set the luminance expression.
10349 @item cb_expr, cb
10350 Set the chrominance blue expression.
10351 @item cr_expr, cr
10352 Set the chrominance red expression.
10353 @item alpha_expr, a
10354 Set the alpha expression.
10355 @item red_expr, r
10356 Set the red expression.
10357 @item green_expr, g
10358 Set the green expression.
10359 @item blue_expr, b
10360 Set the blue expression.
10361 @end table
10362
10363 The colorspace is selected according to the specified options. If one
10364 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
10365 options is specified, the filter will automatically select a YCbCr
10366 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
10367 @option{blue_expr} options is specified, it will select an RGB
10368 colorspace.
10369
10370 If one of the chrominance expression is not defined, it falls back on the other
10371 one. If no alpha expression is specified it will evaluate to opaque value.
10372 If none of chrominance expressions are specified, they will evaluate
10373 to the luminance expression.
10374
10375 The expressions can use the following variables and functions:
10376
10377 @table @option
10378 @item N
10379 The sequential number of the filtered frame, starting from @code{0}.
10380
10381 @item X
10382 @item Y
10383 The coordinates of the current sample.
10384
10385 @item W
10386 @item H
10387 The width and height of the image.
10388
10389 @item SW
10390 @item SH
10391 Width and height scale depending on the currently filtered plane. It is the
10392 ratio between the corresponding luma plane number of pixels and the current
10393 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
10394 @code{0.5,0.5} for chroma planes.
10395
10396 @item T
10397 Time of the current frame, expressed in seconds.
10398
10399 @item p(x, y)
10400 Return the value of the pixel at location (@var{x},@var{y}) of the current
10401 plane.
10402
10403 @item lum(x, y)
10404 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
10405 plane.
10406
10407 @item cb(x, y)
10408 Return the value of the pixel at location (@var{x},@var{y}) of the
10409 blue-difference chroma plane. Return 0 if there is no such plane.
10410
10411 @item cr(x, y)
10412 Return the value of the pixel at location (@var{x},@var{y}) of the
10413 red-difference chroma plane. Return 0 if there is no such plane.
10414
10415 @item r(x, y)
10416 @item g(x, y)
10417 @item b(x, y)
10418 Return the value of the pixel at location (@var{x},@var{y}) of the
10419 red/green/blue component. Return 0 if there is no such component.
10420
10421 @item alpha(x, y)
10422 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
10423 plane. Return 0 if there is no such plane.
10424 @end table
10425
10426 For functions, if @var{x} and @var{y} are outside the area, the value will be
10427 automatically clipped to the closer edge.
10428
10429 @subsection Examples
10430
10431 @itemize
10432 @item
10433 Flip the image horizontally:
10434 @example
10435 geq=p(W-X\,Y)
10436 @end example
10437
10438 @item
10439 Generate a bidimensional sine wave, with angle @code{PI/3} and a
10440 wavelength of 100 pixels:
10441 @example
10442 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
10443 @end example
10444
10445 @item
10446 Generate a fancy enigmatic moving light:
10447 @example
10448 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
10449 @end example
10450
10451 @item
10452 Generate a quick emboss effect:
10453 @example
10454 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
10455 @end example
10456
10457 @item
10458 Modify RGB components depending on pixel position:
10459 @example
10460 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
10461 @end example
10462
10463 @item
10464 Create a radial gradient that is the same size as the input (also see
10465 the @ref{vignette} filter):
10466 @example
10467 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
10468 @end example
10469 @end itemize
10470
10471 @section gradfun
10472
10473 Fix the banding artifacts that are sometimes introduced into nearly flat
10474 regions by truncation to 8-bit color depth.
10475 Interpolate the gradients that should go where the bands are, and
10476 dither them.
10477
10478 It is designed for playback only.  Do not use it prior to
10479 lossy compression, because compression tends to lose the dither and
10480 bring back the bands.
10481
10482 It accepts the following parameters:
10483
10484 @table @option
10485
10486 @item strength
10487 The maximum amount by which the filter will change any one pixel. This is also
10488 the threshold for detecting nearly flat regions. Acceptable values range from
10489 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
10490 valid range.
10491
10492 @item radius
10493 The neighborhood to fit the gradient to. A larger radius makes for smoother
10494 gradients, but also prevents the filter from modifying the pixels near detailed
10495 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
10496 values will be clipped to the valid range.
10497
10498 @end table
10499
10500 Alternatively, the options can be specified as a flat string:
10501 @var{strength}[:@var{radius}]
10502
10503 @subsection Examples
10504
10505 @itemize
10506 @item
10507 Apply the filter with a @code{3.5} strength and radius of @code{8}:
10508 @example
10509 gradfun=3.5:8
10510 @end example
10511
10512 @item
10513 Specify radius, omitting the strength (which will fall-back to the default
10514 value):
10515 @example
10516 gradfun=radius=8
10517 @end example
10518
10519 @end itemize
10520
10521 @section graphmonitor, agraphmonitor
10522 Show various filtergraph stats.
10523
10524 With this filter one can debug complete filtergraph.
10525 Especially issues with links filling with queued frames.
10526
10527 The filter accepts the following options:
10528
10529 @table @option
10530 @item size, s
10531 Set video output size. Default is @var{hd720}.
10532
10533 @item opacity, o
10534 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
10535
10536 @item mode, m
10537 Set output mode, can be @var{fulll} or @var{compact}.
10538 In @var{compact} mode only filters with some queued frames have displayed stats.
10539
10540 @item flags, f
10541 Set flags which enable which stats are shown in video.
10542
10543 Available values for flags are:
10544 @table @samp
10545 @item queue
10546 Display number of queued frames in each link.
10547
10548 @item frame_count_in
10549 Display number of frames taken from filter.
10550
10551 @item frame_count_out
10552 Display number of frames given out from filter.
10553
10554 @item pts
10555 Display current filtered frame pts.
10556
10557 @item time
10558 Display current filtered frame time.
10559
10560 @item timebase
10561 Display time base for filter link.
10562
10563 @item format
10564 Display used format for filter link.
10565
10566 @item size
10567 Display video size or number of audio channels in case of audio used by filter link.
10568
10569 @item rate
10570 Display video frame rate or sample rate in case of audio used by filter link.
10571 @end table
10572
10573 @item rate, r
10574 Set upper limit for video rate of output stream, Default value is @var{25}.
10575 This guarantee that output video frame rate will not be higher than this value.
10576 @end table
10577
10578 @section greyedge
10579 A color constancy variation filter which estimates scene illumination via grey edge algorithm
10580 and corrects the scene colors accordingly.
10581
10582 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
10583
10584 The filter accepts the following options:
10585
10586 @table @option
10587 @item difford
10588 The order of differentiation to be applied on the scene. Must be chosen in the range
10589 [0,2] and default value is 1.
10590
10591 @item minknorm
10592 The Minkowski parameter to be used for calculating the Minkowski distance. Must
10593 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
10594 max value instead of calculating Minkowski distance.
10595
10596 @item sigma
10597 The standard deviation of Gaussian blur to be applied on the scene. Must be
10598 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
10599 can't be equal to 0 if @var{difford} is greater than 0.
10600 @end table
10601
10602 @subsection Examples
10603 @itemize
10604
10605 @item
10606 Grey Edge:
10607 @example
10608 greyedge=difford=1:minknorm=5:sigma=2
10609 @end example
10610
10611 @item
10612 Max Edge:
10613 @example
10614 greyedge=difford=1:minknorm=0:sigma=2
10615 @end example
10616
10617 @end itemize
10618
10619 @anchor{haldclut}
10620 @section haldclut
10621
10622 Apply a Hald CLUT to a video stream.
10623
10624 First input is the video stream to process, and second one is the Hald CLUT.
10625 The Hald CLUT input can be a simple picture or a complete video stream.
10626
10627 The filter accepts the following options:
10628
10629 @table @option
10630 @item shortest
10631 Force termination when the shortest input terminates. Default is @code{0}.
10632 @item repeatlast
10633 Continue applying the last CLUT after the end of the stream. A value of
10634 @code{0} disable the filter after the last frame of the CLUT is reached.
10635 Default is @code{1}.
10636 @end table
10637
10638 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
10639 filters share the same internals).
10640
10641 More information about the Hald CLUT can be found on Eskil Steenberg's website
10642 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
10643
10644 @subsection Workflow examples
10645
10646 @subsubsection Hald CLUT video stream
10647
10648 Generate an identity Hald CLUT stream altered with various effects:
10649 @example
10650 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
10651 @end example
10652
10653 Note: make sure you use a lossless codec.
10654
10655 Then use it with @code{haldclut} to apply it on some random stream:
10656 @example
10657 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
10658 @end example
10659
10660 The Hald CLUT will be applied to the 10 first seconds (duration of
10661 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
10662 to the remaining frames of the @code{mandelbrot} stream.
10663
10664 @subsubsection Hald CLUT with preview
10665
10666 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
10667 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
10668 biggest possible square starting at the top left of the picture. The remaining
10669 padding pixels (bottom or right) will be ignored. This area can be used to add
10670 a preview of the Hald CLUT.
10671
10672 Typically, the following generated Hald CLUT will be supported by the
10673 @code{haldclut} filter:
10674
10675 @example
10676 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
10677    pad=iw+320 [padded_clut];
10678    smptebars=s=320x256, split [a][b];
10679    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
10680    [main][b] overlay=W-320" -frames:v 1 clut.png
10681 @end example
10682
10683 It contains the original and a preview of the effect of the CLUT: SMPTE color
10684 bars are displayed on the right-top, and below the same color bars processed by
10685 the color changes.
10686
10687 Then, the effect of this Hald CLUT can be visualized with:
10688 @example
10689 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
10690 @end example
10691
10692 @section hflip
10693
10694 Flip the input video horizontally.
10695
10696 For example, to horizontally flip the input video with @command{ffmpeg}:
10697 @example
10698 ffmpeg -i in.avi -vf "hflip" out.avi
10699 @end example
10700
10701 @section histeq
10702 This filter applies a global color histogram equalization on a
10703 per-frame basis.
10704
10705 It can be used to correct video that has a compressed range of pixel
10706 intensities.  The filter redistributes the pixel intensities to
10707 equalize their distribution across the intensity range. It may be
10708 viewed as an "automatically adjusting contrast filter". This filter is
10709 useful only for correcting degraded or poorly captured source
10710 video.
10711
10712 The filter accepts the following options:
10713
10714 @table @option
10715 @item strength
10716 Determine the amount of equalization to be applied.  As the strength
10717 is reduced, the distribution of pixel intensities more-and-more
10718 approaches that of the input frame. The value must be a float number
10719 in the range [0,1] and defaults to 0.200.
10720
10721 @item intensity
10722 Set the maximum intensity that can generated and scale the output
10723 values appropriately.  The strength should be set as desired and then
10724 the intensity can be limited if needed to avoid washing-out. The value
10725 must be a float number in the range [0,1] and defaults to 0.210.
10726
10727 @item antibanding
10728 Set the antibanding level. If enabled the filter will randomly vary
10729 the luminance of output pixels by a small amount to avoid banding of
10730 the histogram. Possible values are @code{none}, @code{weak} or
10731 @code{strong}. It defaults to @code{none}.
10732 @end table
10733
10734 @section histogram
10735
10736 Compute and draw a color distribution histogram for the input video.
10737
10738 The computed histogram is a representation of the color component
10739 distribution in an image.
10740
10741 Standard histogram displays the color components distribution in an image.
10742 Displays color graph for each color component. Shows distribution of
10743 the Y, U, V, A or R, G, B components, depending on input format, in the
10744 current frame. Below each graph a color component scale meter is shown.
10745
10746 The filter accepts the following options:
10747
10748 @table @option
10749 @item level_height
10750 Set height of level. Default value is @code{200}.
10751 Allowed range is [50, 2048].
10752
10753 @item scale_height
10754 Set height of color scale. Default value is @code{12}.
10755 Allowed range is [0, 40].
10756
10757 @item display_mode
10758 Set display mode.
10759 It accepts the following values:
10760 @table @samp
10761 @item stack
10762 Per color component graphs are placed below each other.
10763
10764 @item parade
10765 Per color component graphs are placed side by side.
10766
10767 @item overlay
10768 Presents information identical to that in the @code{parade}, except
10769 that the graphs representing color components are superimposed directly
10770 over one another.
10771 @end table
10772 Default is @code{stack}.
10773
10774 @item levels_mode
10775 Set mode. Can be either @code{linear}, or @code{logarithmic}.
10776 Default is @code{linear}.
10777
10778 @item components
10779 Set what color components to display.
10780 Default is @code{7}.
10781
10782 @item fgopacity
10783 Set foreground opacity. Default is @code{0.7}.
10784
10785 @item bgopacity
10786 Set background opacity. Default is @code{0.5}.
10787 @end table
10788
10789 @subsection Examples
10790
10791 @itemize
10792
10793 @item
10794 Calculate and draw histogram:
10795 @example
10796 ffplay -i input -vf histogram
10797 @end example
10798
10799 @end itemize
10800
10801 @anchor{hqdn3d}
10802 @section hqdn3d
10803
10804 This is a high precision/quality 3d denoise filter. It aims to reduce
10805 image noise, producing smooth images and making still images really
10806 still. It should enhance compressibility.
10807
10808 It accepts the following optional parameters:
10809
10810 @table @option
10811 @item luma_spatial
10812 A non-negative floating point number which specifies spatial luma strength.
10813 It defaults to 4.0.
10814
10815 @item chroma_spatial
10816 A non-negative floating point number which specifies spatial chroma strength.
10817 It defaults to 3.0*@var{luma_spatial}/4.0.
10818
10819 @item luma_tmp
10820 A floating point number which specifies luma temporal strength. It defaults to
10821 6.0*@var{luma_spatial}/4.0.
10822
10823 @item chroma_tmp
10824 A floating point number which specifies chroma temporal strength. It defaults to
10825 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
10826 @end table
10827
10828 @anchor{hwdownload}
10829 @section hwdownload
10830
10831 Download hardware frames to system memory.
10832
10833 The input must be in hardware frames, and the output a non-hardware format.
10834 Not all formats will be supported on the output - it may be necessary to insert
10835 an additional @option{format} filter immediately following in the graph to get
10836 the output in a supported format.
10837
10838 @section hwmap
10839
10840 Map hardware frames to system memory or to another device.
10841
10842 This filter has several different modes of operation; which one is used depends
10843 on the input and output formats:
10844 @itemize
10845 @item
10846 Hardware frame input, normal frame output
10847
10848 Map the input frames to system memory and pass them to the output.  If the
10849 original hardware frame is later required (for example, after overlaying
10850 something else on part of it), the @option{hwmap} filter can be used again
10851 in the next mode to retrieve it.
10852 @item
10853 Normal frame input, hardware frame output
10854
10855 If the input is actually a software-mapped hardware frame, then unmap it -
10856 that is, return the original hardware frame.
10857
10858 Otherwise, a device must be provided.  Create new hardware surfaces on that
10859 device for the output, then map them back to the software format at the input
10860 and give those frames to the preceding filter.  This will then act like the
10861 @option{hwupload} filter, but may be able to avoid an additional copy when
10862 the input is already in a compatible format.
10863 @item
10864 Hardware frame input and output
10865
10866 A device must be supplied for the output, either directly or with the
10867 @option{derive_device} option.  The input and output devices must be of
10868 different types and compatible - the exact meaning of this is
10869 system-dependent, but typically it means that they must refer to the same
10870 underlying hardware context (for example, refer to the same graphics card).
10871
10872 If the input frames were originally created on the output device, then unmap
10873 to retrieve the original frames.
10874
10875 Otherwise, map the frames to the output device - create new hardware frames
10876 on the output corresponding to the frames on the input.
10877 @end itemize
10878
10879 The following additional parameters are accepted:
10880
10881 @table @option
10882 @item mode
10883 Set the frame mapping mode.  Some combination of:
10884 @table @var
10885 @item read
10886 The mapped frame should be readable.
10887 @item write
10888 The mapped frame should be writeable.
10889 @item overwrite
10890 The mapping will always overwrite the entire frame.
10891
10892 This may improve performance in some cases, as the original contents of the
10893 frame need not be loaded.
10894 @item direct
10895 The mapping must not involve any copying.
10896
10897 Indirect mappings to copies of frames are created in some cases where either
10898 direct mapping is not possible or it would have unexpected properties.
10899 Setting this flag ensures that the mapping is direct and will fail if that is
10900 not possible.
10901 @end table
10902 Defaults to @var{read+write} if not specified.
10903
10904 @item derive_device @var{type}
10905 Rather than using the device supplied at initialisation, instead derive a new
10906 device of type @var{type} from the device the input frames exist on.
10907
10908 @item reverse
10909 In a hardware to hardware mapping, map in reverse - create frames in the sink
10910 and map them back to the source.  This may be necessary in some cases where
10911 a mapping in one direction is required but only the opposite direction is
10912 supported by the devices being used.
10913
10914 This option is dangerous - it may break the preceding filter in undefined
10915 ways if there are any additional constraints on that filter's output.
10916 Do not use it without fully understanding the implications of its use.
10917 @end table
10918
10919 @anchor{hwupload}
10920 @section hwupload
10921
10922 Upload system memory frames to hardware surfaces.
10923
10924 The device to upload to must be supplied when the filter is initialised.  If
10925 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
10926 option.
10927
10928 @anchor{hwupload_cuda}
10929 @section hwupload_cuda
10930
10931 Upload system memory frames to a CUDA device.
10932
10933 It accepts the following optional parameters:
10934
10935 @table @option
10936 @item device
10937 The number of the CUDA device to use
10938 @end table
10939
10940 @section hqx
10941
10942 Apply a high-quality magnification filter designed for pixel art. This filter
10943 was originally created by Maxim Stepin.
10944
10945 It accepts the following option:
10946
10947 @table @option
10948 @item n
10949 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
10950 @code{hq3x} and @code{4} for @code{hq4x}.
10951 Default is @code{3}.
10952 @end table
10953
10954 @section hstack
10955 Stack input videos horizontally.
10956
10957 All streams must be of same pixel format and of same height.
10958
10959 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
10960 to create same output.
10961
10962 The filter accept the following option:
10963
10964 @table @option
10965 @item inputs
10966 Set number of input streams. Default is 2.
10967
10968 @item shortest
10969 If set to 1, force the output to terminate when the shortest input
10970 terminates. Default value is 0.
10971 @end table
10972
10973 @section hue
10974
10975 Modify the hue and/or the saturation of the input.
10976
10977 It accepts the following parameters:
10978
10979 @table @option
10980 @item h
10981 Specify the hue angle as a number of degrees. It accepts an expression,
10982 and defaults to "0".
10983
10984 @item s
10985 Specify the saturation in the [-10,10] range. It accepts an expression and
10986 defaults to "1".
10987
10988 @item H
10989 Specify the hue angle as a number of radians. It accepts an
10990 expression, and defaults to "0".
10991
10992 @item b
10993 Specify the brightness in the [-10,10] range. It accepts an expression and
10994 defaults to "0".
10995 @end table
10996
10997 @option{h} and @option{H} are mutually exclusive, and can't be
10998 specified at the same time.
10999
11000 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11001 expressions containing the following constants:
11002
11003 @table @option
11004 @item n
11005 frame count of the input frame starting from 0
11006
11007 @item pts
11008 presentation timestamp of the input frame expressed in time base units
11009
11010 @item r
11011 frame rate of the input video, NAN if the input frame rate is unknown
11012
11013 @item t
11014 timestamp expressed in seconds, NAN if the input timestamp is unknown
11015
11016 @item tb
11017 time base of the input video
11018 @end table
11019
11020 @subsection Examples
11021
11022 @itemize
11023 @item
11024 Set the hue to 90 degrees and the saturation to 1.0:
11025 @example
11026 hue=h=90:s=1
11027 @end example
11028
11029 @item
11030 Same command but expressing the hue in radians:
11031 @example
11032 hue=H=PI/2:s=1
11033 @end example
11034
11035 @item
11036 Rotate hue and make the saturation swing between 0
11037 and 2 over a period of 1 second:
11038 @example
11039 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11040 @end example
11041
11042 @item
11043 Apply a 3 seconds saturation fade-in effect starting at 0:
11044 @example
11045 hue="s=min(t/3\,1)"
11046 @end example
11047
11048 The general fade-in expression can be written as:
11049 @example
11050 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11051 @end example
11052
11053 @item
11054 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11055 @example
11056 hue="s=max(0\, min(1\, (8-t)/3))"
11057 @end example
11058
11059 The general fade-out expression can be written as:
11060 @example
11061 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
11062 @end example
11063
11064 @end itemize
11065
11066 @subsection Commands
11067
11068 This filter supports the following commands:
11069 @table @option
11070 @item b
11071 @item s
11072 @item h
11073 @item H
11074 Modify the hue and/or the saturation and/or brightness of the input video.
11075 The command accepts the same syntax of the corresponding option.
11076
11077 If the specified expression is not valid, it is kept at its current
11078 value.
11079 @end table
11080
11081 @section hysteresis
11082
11083 Grow first stream into second stream by connecting components.
11084 This makes it possible to build more robust edge masks.
11085
11086 This filter accepts the following options:
11087
11088 @table @option
11089 @item planes
11090 Set which planes will be processed as bitmap, unprocessed planes will be
11091 copied from first stream.
11092 By default value 0xf, all planes will be processed.
11093
11094 @item threshold
11095 Set threshold which is used in filtering. If pixel component value is higher than
11096 this value filter algorithm for connecting components is activated.
11097 By default value is 0.
11098 @end table
11099
11100 @section idet
11101
11102 Detect video interlacing type.
11103
11104 This filter tries to detect if the input frames are interlaced, progressive,
11105 top or bottom field first. It will also try to detect fields that are
11106 repeated between adjacent frames (a sign of telecine).
11107
11108 Single frame detection considers only immediately adjacent frames when classifying each frame.
11109 Multiple frame detection incorporates the classification history of previous frames.
11110
11111 The filter will log these metadata values:
11112
11113 @table @option
11114 @item single.current_frame
11115 Detected type of current frame using single-frame detection. One of:
11116 ``tff'' (top field first), ``bff'' (bottom field first),
11117 ``progressive'', or ``undetermined''
11118
11119 @item single.tff
11120 Cumulative number of frames detected as top field first using single-frame detection.
11121
11122 @item multiple.tff
11123 Cumulative number of frames detected as top field first using multiple-frame detection.
11124
11125 @item single.bff
11126 Cumulative number of frames detected as bottom field first using single-frame detection.
11127
11128 @item multiple.current_frame
11129 Detected type of current frame using multiple-frame detection. One of:
11130 ``tff'' (top field first), ``bff'' (bottom field first),
11131 ``progressive'', or ``undetermined''
11132
11133 @item multiple.bff
11134 Cumulative number of frames detected as bottom field first using multiple-frame detection.
11135
11136 @item single.progressive
11137 Cumulative number of frames detected as progressive using single-frame detection.
11138
11139 @item multiple.progressive
11140 Cumulative number of frames detected as progressive using multiple-frame detection.
11141
11142 @item single.undetermined
11143 Cumulative number of frames that could not be classified using single-frame detection.
11144
11145 @item multiple.undetermined
11146 Cumulative number of frames that could not be classified using multiple-frame detection.
11147
11148 @item repeated.current_frame
11149 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
11150
11151 @item repeated.neither
11152 Cumulative number of frames with no repeated field.
11153
11154 @item repeated.top
11155 Cumulative number of frames with the top field repeated from the previous frame's top field.
11156
11157 @item repeated.bottom
11158 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
11159 @end table
11160
11161 The filter accepts the following options:
11162
11163 @table @option
11164 @item intl_thres
11165 Set interlacing threshold.
11166 @item prog_thres
11167 Set progressive threshold.
11168 @item rep_thres
11169 Threshold for repeated field detection.
11170 @item half_life
11171 Number of frames after which a given frame's contribution to the
11172 statistics is halved (i.e., it contributes only 0.5 to its
11173 classification). The default of 0 means that all frames seen are given
11174 full weight of 1.0 forever.
11175 @item analyze_interlaced_flag
11176 When this is not 0 then idet will use the specified number of frames to determine
11177 if the interlaced flag is accurate, it will not count undetermined frames.
11178 If the flag is found to be accurate it will be used without any further
11179 computations, if it is found to be inaccurate it will be cleared without any
11180 further computations. This allows inserting the idet filter as a low computational
11181 method to clean up the interlaced flag
11182 @end table
11183
11184 @section il
11185
11186 Deinterleave or interleave fields.
11187
11188 This filter allows one to process interlaced images fields without
11189 deinterlacing them. Deinterleaving splits the input frame into 2
11190 fields (so called half pictures). Odd lines are moved to the top
11191 half of the output image, even lines to the bottom half.
11192 You can process (filter) them independently and then re-interleave them.
11193
11194 The filter accepts the following options:
11195
11196 @table @option
11197 @item luma_mode, l
11198 @item chroma_mode, c
11199 @item alpha_mode, a
11200 Available values for @var{luma_mode}, @var{chroma_mode} and
11201 @var{alpha_mode} are:
11202
11203 @table @samp
11204 @item none
11205 Do nothing.
11206
11207 @item deinterleave, d
11208 Deinterleave fields, placing one above the other.
11209
11210 @item interleave, i
11211 Interleave fields. Reverse the effect of deinterleaving.
11212 @end table
11213 Default value is @code{none}.
11214
11215 @item luma_swap, ls
11216 @item chroma_swap, cs
11217 @item alpha_swap, as
11218 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
11219 @end table
11220
11221 @section inflate
11222
11223 Apply inflate effect to the video.
11224
11225 This filter replaces the pixel by the local(3x3) average by taking into account
11226 only values higher than the pixel.
11227
11228 It accepts the following options:
11229
11230 @table @option
11231 @item threshold0
11232 @item threshold1
11233 @item threshold2
11234 @item threshold3
11235 Limit the maximum change for each plane, default is 65535.
11236 If 0, plane will remain unchanged.
11237 @end table
11238
11239 @section interlace
11240
11241 Simple interlacing filter from progressive contents. This interleaves upper (or
11242 lower) lines from odd frames with lower (or upper) lines from even frames,
11243 halving the frame rate and preserving image height.
11244
11245 @example
11246    Original        Original             New Frame
11247    Frame 'j'      Frame 'j+1'             (tff)
11248   ==========      ===========       ==================
11249     Line 0  -------------------->    Frame 'j' Line 0
11250     Line 1          Line 1  ---->   Frame 'j+1' Line 1
11251     Line 2 --------------------->    Frame 'j' Line 2
11252     Line 3          Line 3  ---->   Frame 'j+1' Line 3
11253      ...             ...                   ...
11254 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
11255 @end example
11256
11257 It accepts the following optional parameters:
11258
11259 @table @option
11260 @item scan
11261 This determines whether the interlaced frame is taken from the even
11262 (tff - default) or odd (bff) lines of the progressive frame.
11263
11264 @item lowpass
11265 Vertical lowpass filter to avoid twitter interlacing and
11266 reduce moire patterns.
11267
11268 @table @samp
11269 @item 0, off
11270 Disable vertical lowpass filter
11271
11272 @item 1, linear
11273 Enable linear filter (default)
11274
11275 @item 2, complex
11276 Enable complex filter. This will slightly less reduce twitter and moire
11277 but better retain detail and subjective sharpness impression.
11278
11279 @end table
11280 @end table
11281
11282 @section kerndeint
11283
11284 Deinterlace input video by applying Donald Graft's adaptive kernel
11285 deinterling. Work on interlaced parts of a video to produce
11286 progressive frames.
11287
11288 The description of the accepted parameters follows.
11289
11290 @table @option
11291 @item thresh
11292 Set the threshold which affects the filter's tolerance when
11293 determining if a pixel line must be processed. It must be an integer
11294 in the range [0,255] and defaults to 10. A value of 0 will result in
11295 applying the process on every pixels.
11296
11297 @item map
11298 Paint pixels exceeding the threshold value to white if set to 1.
11299 Default is 0.
11300
11301 @item order
11302 Set the fields order. Swap fields if set to 1, leave fields alone if
11303 0. Default is 0.
11304
11305 @item sharp
11306 Enable additional sharpening if set to 1. Default is 0.
11307
11308 @item twoway
11309 Enable twoway sharpening if set to 1. Default is 0.
11310 @end table
11311
11312 @subsection Examples
11313
11314 @itemize
11315 @item
11316 Apply default values:
11317 @example
11318 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
11319 @end example
11320
11321 @item
11322 Enable additional sharpening:
11323 @example
11324 kerndeint=sharp=1
11325 @end example
11326
11327 @item
11328 Paint processed pixels in white:
11329 @example
11330 kerndeint=map=1
11331 @end example
11332 @end itemize
11333
11334 @section lenscorrection
11335
11336 Correct radial lens distortion
11337
11338 This filter can be used to correct for radial distortion as can result from the use
11339 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
11340 one can use tools available for example as part of opencv or simply trial-and-error.
11341 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
11342 and extract the k1 and k2 coefficients from the resulting matrix.
11343
11344 Note that effectively the same filter is available in the open-source tools Krita and
11345 Digikam from the KDE project.
11346
11347 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
11348 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
11349 brightness distribution, so you may want to use both filters together in certain
11350 cases, though you will have to take care of ordering, i.e. whether vignetting should
11351 be applied before or after lens correction.
11352
11353 @subsection Options
11354
11355 The filter accepts the following options:
11356
11357 @table @option
11358 @item cx
11359 Relative x-coordinate of the focal point of the image, and thereby the center of the
11360 distortion. This value has a range [0,1] and is expressed as fractions of the image
11361 width. Default is 0.5.
11362 @item cy
11363 Relative y-coordinate of the focal point of the image, and thereby the center of the
11364 distortion. This value has a range [0,1] and is expressed as fractions of the image
11365 height. Default is 0.5.
11366 @item k1
11367 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
11368 no correction. Default is 0.
11369 @item k2
11370 Coefficient of the double quadratic correction term. This value has a range [-1,1].
11371 0 means no correction. Default is 0.
11372 @end table
11373
11374 The formula that generates the correction is:
11375
11376 @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)
11377
11378 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
11379 distances from the focal point in the source and target images, respectively.
11380
11381 @section lensfun
11382
11383 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
11384
11385 The @code{lensfun} filter requires the camera make, camera model, and lens model
11386 to apply the lens correction. The filter will load the lensfun database and
11387 query it to find the corresponding camera and lens entries in the database. As
11388 long as these entries can be found with the given options, the filter can
11389 perform corrections on frames. Note that incomplete strings will result in the
11390 filter choosing the best match with the given options, and the filter will
11391 output the chosen camera and lens models (logged with level "info"). You must
11392 provide the make, camera model, and lens model as they are required.
11393
11394 The filter accepts the following options:
11395
11396 @table @option
11397 @item make
11398 The make of the camera (for example, "Canon"). This option is required.
11399
11400 @item model
11401 The model of the camera (for example, "Canon EOS 100D"). This option is
11402 required.
11403
11404 @item lens_model
11405 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
11406 option is required.
11407
11408 @item mode
11409 The type of correction to apply. The following values are valid options:
11410
11411 @table @samp
11412 @item vignetting
11413 Enables fixing lens vignetting.
11414
11415 @item geometry
11416 Enables fixing lens geometry. This is the default.
11417
11418 @item subpixel
11419 Enables fixing chromatic aberrations.
11420
11421 @item vig_geo
11422 Enables fixing lens vignetting and lens geometry.
11423
11424 @item vig_subpixel
11425 Enables fixing lens vignetting and chromatic aberrations.
11426
11427 @item distortion
11428 Enables fixing both lens geometry and chromatic aberrations.
11429
11430 @item all
11431 Enables all possible corrections.
11432
11433 @end table
11434 @item focal_length
11435 The focal length of the image/video (zoom; expected constant for video). For
11436 example, a 18--55mm lens has focal length range of [18--55], so a value in that
11437 range should be chosen when using that lens. Default 18.
11438
11439 @item aperture
11440 The aperture of the image/video (expected constant for video). Note that
11441 aperture is only used for vignetting correction. Default 3.5.
11442
11443 @item focus_distance
11444 The focus distance of the image/video (expected constant for video). Note that
11445 focus distance is only used for vignetting and only slightly affects the
11446 vignetting correction process. If unknown, leave it at the default value (which
11447 is 1000).
11448
11449 @item scale
11450 The scale factor which is applied after transformation. After correction the
11451 video is no longer necessarily rectangular. This parameter controls how much of
11452 the resulting image is visible. The value 0 means that a value will be chosen
11453 automatically such that there is little or no unmapped area in the output
11454 image. 1.0 means that no additional scaling is done. Lower values may result
11455 in more of the corrected image being visible, while higher values may avoid
11456 unmapped areas in the output.
11457
11458 @item target_geometry
11459 The target geometry of the output image/video. The following values are valid
11460 options:
11461
11462 @table @samp
11463 @item rectilinear (default)
11464 @item fisheye
11465 @item panoramic
11466 @item equirectangular
11467 @item fisheye_orthographic
11468 @item fisheye_stereographic
11469 @item fisheye_equisolid
11470 @item fisheye_thoby
11471 @end table
11472 @item reverse
11473 Apply the reverse of image correction (instead of correcting distortion, apply
11474 it).
11475
11476 @item interpolation
11477 The type of interpolation used when correcting distortion. The following values
11478 are valid options:
11479
11480 @table @samp
11481 @item nearest
11482 @item linear (default)
11483 @item lanczos
11484 @end table
11485 @end table
11486
11487 @subsection Examples
11488
11489 @itemize
11490 @item
11491 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
11492 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
11493 aperture of "8.0".
11494
11495 @example
11496 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
11497 @end example
11498
11499 @item
11500 Apply the same as before, but only for the first 5 seconds of video.
11501
11502 @example
11503 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
11504 @end example
11505
11506 @end itemize
11507
11508 @section libvmaf
11509
11510 Obtain the VMAF (Video Multi-Method Assessment Fusion)
11511 score between two input videos.
11512
11513 The obtained VMAF score is printed through the logging system.
11514
11515 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
11516 After installing the library it can be enabled using:
11517 @code{./configure --enable-libvmaf --enable-version3}.
11518 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
11519
11520 The filter has following options:
11521
11522 @table @option
11523 @item model_path
11524 Set the model path which is to be used for SVM.
11525 Default value: @code{"vmaf_v0.6.1.pkl"}
11526
11527 @item log_path
11528 Set the file path to be used to store logs.
11529
11530 @item log_fmt
11531 Set the format of the log file (xml or json).
11532
11533 @item enable_transform
11534 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
11535 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
11536 Default value: @code{false}
11537
11538 @item phone_model
11539 Invokes the phone model which will generate VMAF scores higher than in the
11540 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
11541
11542 @item psnr
11543 Enables computing psnr along with vmaf.
11544
11545 @item ssim
11546 Enables computing ssim along with vmaf.
11547
11548 @item ms_ssim
11549 Enables computing ms_ssim along with vmaf.
11550
11551 @item pool
11552 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
11553
11554 @item n_threads
11555 Set number of threads to be used when computing vmaf.
11556
11557 @item n_subsample
11558 Set interval for frame subsampling used when computing vmaf.
11559
11560 @item enable_conf_interval
11561 Enables confidence interval.
11562 @end table
11563
11564 This filter also supports the @ref{framesync} options.
11565
11566 On the below examples the input file @file{main.mpg} being processed is
11567 compared with the reference file @file{ref.mpg}.
11568
11569 @example
11570 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
11571 @end example
11572
11573 Example with options:
11574 @example
11575 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
11576 @end example
11577
11578 @section limiter
11579
11580 Limits the pixel components values to the specified range [min, max].
11581
11582 The filter accepts the following options:
11583
11584 @table @option
11585 @item min
11586 Lower bound. Defaults to the lowest allowed value for the input.
11587
11588 @item max
11589 Upper bound. Defaults to the highest allowed value for the input.
11590
11591 @item planes
11592 Specify which planes will be processed. Defaults to all available.
11593 @end table
11594
11595 @section loop
11596
11597 Loop video frames.
11598
11599 The filter accepts the following options:
11600
11601 @table @option
11602 @item loop
11603 Set the number of loops. Setting this value to -1 will result in infinite loops.
11604 Default is 0.
11605
11606 @item size
11607 Set maximal size in number of frames. Default is 0.
11608
11609 @item start
11610 Set first frame of loop. Default is 0.
11611 @end table
11612
11613 @subsection Examples
11614
11615 @itemize
11616 @item
11617 Loop single first frame infinitely:
11618 @example
11619 loop=loop=-1:size=1:start=0
11620 @end example
11621
11622 @item
11623 Loop single first frame 10 times:
11624 @example
11625 loop=loop=10:size=1:start=0
11626 @end example
11627
11628 @item
11629 Loop 10 first frames 5 times:
11630 @example
11631 loop=loop=5:size=10:start=0
11632 @end example
11633 @end itemize
11634
11635 @section lut1d
11636
11637 Apply a 1D LUT to an input video.
11638
11639 The filter accepts the following options:
11640
11641 @table @option
11642 @item file
11643 Set the 1D LUT file name.
11644
11645 Currently supported formats:
11646 @table @samp
11647 @item cube
11648 Iridas
11649 @end table
11650
11651 @item interp
11652 Select interpolation mode.
11653
11654 Available values are:
11655
11656 @table @samp
11657 @item nearest
11658 Use values from the nearest defined point.
11659 @item linear
11660 Interpolate values using the linear interpolation.
11661 @item cosine
11662 Interpolate values using the cosine interpolation.
11663 @item cubic
11664 Interpolate values using the cubic interpolation.
11665 @item spline
11666 Interpolate values using the spline interpolation.
11667 @end table
11668 @end table
11669
11670 @anchor{lut3d}
11671 @section lut3d
11672
11673 Apply a 3D LUT to an input video.
11674
11675 The filter accepts the following options:
11676
11677 @table @option
11678 @item file
11679 Set the 3D LUT file name.
11680
11681 Currently supported formats:
11682 @table @samp
11683 @item 3dl
11684 AfterEffects
11685 @item cube
11686 Iridas
11687 @item dat
11688 DaVinci
11689 @item m3d
11690 Pandora
11691 @end table
11692 @item interp
11693 Select interpolation mode.
11694
11695 Available values are:
11696
11697 @table @samp
11698 @item nearest
11699 Use values from the nearest defined point.
11700 @item trilinear
11701 Interpolate values using the 8 points defining a cube.
11702 @item tetrahedral
11703 Interpolate values using a tetrahedron.
11704 @end table
11705 @end table
11706
11707 This filter also supports the @ref{framesync} options.
11708
11709 @section lumakey
11710
11711 Turn certain luma values into transparency.
11712
11713 The filter accepts the following options:
11714
11715 @table @option
11716 @item threshold
11717 Set the luma which will be used as base for transparency.
11718 Default value is @code{0}.
11719
11720 @item tolerance
11721 Set the range of luma values to be keyed out.
11722 Default value is @code{0}.
11723
11724 @item softness
11725 Set the range of softness. Default value is @code{0}.
11726 Use this to control gradual transition from zero to full transparency.
11727 @end table
11728
11729 @section lut, lutrgb, lutyuv
11730
11731 Compute a look-up table for binding each pixel component input value
11732 to an output value, and apply it to the input video.
11733
11734 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
11735 to an RGB input video.
11736
11737 These filters accept the following parameters:
11738 @table @option
11739 @item c0
11740 set first pixel component expression
11741 @item c1
11742 set second pixel component expression
11743 @item c2
11744 set third pixel component expression
11745 @item c3
11746 set fourth pixel component expression, corresponds to the alpha component
11747
11748 @item r
11749 set red component expression
11750 @item g
11751 set green component expression
11752 @item b
11753 set blue component expression
11754 @item a
11755 alpha component expression
11756
11757 @item y
11758 set Y/luminance component expression
11759 @item u
11760 set U/Cb component expression
11761 @item v
11762 set V/Cr component expression
11763 @end table
11764
11765 Each of them specifies the expression to use for computing the lookup table for
11766 the corresponding pixel component values.
11767
11768 The exact component associated to each of the @var{c*} options depends on the
11769 format in input.
11770
11771 The @var{lut} filter requires either YUV or RGB pixel formats in input,
11772 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
11773
11774 The expressions can contain the following constants and functions:
11775
11776 @table @option
11777 @item w
11778 @item h
11779 The input width and height.
11780
11781 @item val
11782 The input value for the pixel component.
11783
11784 @item clipval
11785 The input value, clipped to the @var{minval}-@var{maxval} range.
11786
11787 @item maxval
11788 The maximum value for the pixel component.
11789
11790 @item minval
11791 The minimum value for the pixel component.
11792
11793 @item negval
11794 The negated value for the pixel component value, clipped to the
11795 @var{minval}-@var{maxval} range; it corresponds to the expression
11796 "maxval-clipval+minval".
11797
11798 @item clip(val)
11799 The computed value in @var{val}, clipped to the
11800 @var{minval}-@var{maxval} range.
11801
11802 @item gammaval(gamma)
11803 The computed gamma correction value of the pixel component value,
11804 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
11805 expression
11806 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
11807
11808 @end table
11809
11810 All expressions default to "val".
11811
11812 @subsection Examples
11813
11814 @itemize
11815 @item
11816 Negate input video:
11817 @example
11818 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
11819 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
11820 @end example
11821
11822 The above is the same as:
11823 @example
11824 lutrgb="r=negval:g=negval:b=negval"
11825 lutyuv="y=negval:u=negval:v=negval"
11826 @end example
11827
11828 @item
11829 Negate luminance:
11830 @example
11831 lutyuv=y=negval
11832 @end example
11833
11834 @item
11835 Remove chroma components, turning the video into a graytone image:
11836 @example
11837 lutyuv="u=128:v=128"
11838 @end example
11839
11840 @item
11841 Apply a luma burning effect:
11842 @example
11843 lutyuv="y=2*val"
11844 @end example
11845
11846 @item
11847 Remove green and blue components:
11848 @example
11849 lutrgb="g=0:b=0"
11850 @end example
11851
11852 @item
11853 Set a constant alpha channel value on input:
11854 @example
11855 format=rgba,lutrgb=a="maxval-minval/2"
11856 @end example
11857
11858 @item
11859 Correct luminance gamma by a factor of 0.5:
11860 @example
11861 lutyuv=y=gammaval(0.5)
11862 @end example
11863
11864 @item
11865 Discard least significant bits of luma:
11866 @example
11867 lutyuv=y='bitand(val, 128+64+32)'
11868 @end example
11869
11870 @item
11871 Technicolor like effect:
11872 @example
11873 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
11874 @end example
11875 @end itemize
11876
11877 @section lut2, tlut2
11878
11879 The @code{lut2} filter takes two input streams and outputs one
11880 stream.
11881
11882 The @code{tlut2} (time lut2) filter takes two consecutive frames
11883 from one single stream.
11884
11885 This filter accepts the following parameters:
11886 @table @option
11887 @item c0
11888 set first pixel component expression
11889 @item c1
11890 set second pixel component expression
11891 @item c2
11892 set third pixel component expression
11893 @item c3
11894 set fourth pixel component expression, corresponds to the alpha component
11895
11896 @item d
11897 set output bit depth, only available for @code{lut2} filter. By default is 0,
11898 which means bit depth is automatically picked from first input format.
11899 @end table
11900
11901 Each of them specifies the expression to use for computing the lookup table for
11902 the corresponding pixel component values.
11903
11904 The exact component associated to each of the @var{c*} options depends on the
11905 format in inputs.
11906
11907 The expressions can contain the following constants:
11908
11909 @table @option
11910 @item w
11911 @item h
11912 The input width and height.
11913
11914 @item x
11915 The first input value for the pixel component.
11916
11917 @item y
11918 The second input value for the pixel component.
11919
11920 @item bdx
11921 The first input video bit depth.
11922
11923 @item bdy
11924 The second input video bit depth.
11925 @end table
11926
11927 All expressions default to "x".
11928
11929 @subsection Examples
11930
11931 @itemize
11932 @item
11933 Highlight differences between two RGB video streams:
11934 @example
11935 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)'
11936 @end example
11937
11938 @item
11939 Highlight differences between two YUV video streams:
11940 @example
11941 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)'
11942 @end example
11943
11944 @item
11945 Show max difference between two video streams:
11946 @example
11947 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)))'
11948 @end example
11949 @end itemize
11950
11951 @section maskedclamp
11952
11953 Clamp the first input stream with the second input and third input stream.
11954
11955 Returns the value of first stream to be between second input
11956 stream - @code{undershoot} and third input stream + @code{overshoot}.
11957
11958 This filter accepts the following options:
11959 @table @option
11960 @item undershoot
11961 Default value is @code{0}.
11962
11963 @item overshoot
11964 Default value is @code{0}.
11965
11966 @item planes
11967 Set which planes will be processed as bitmap, unprocessed planes will be
11968 copied from first stream.
11969 By default value 0xf, all planes will be processed.
11970 @end table
11971
11972 @section maskedmerge
11973
11974 Merge the first input stream with the second input stream using per pixel
11975 weights in the third input stream.
11976
11977 A value of 0 in the third stream pixel component means that pixel component
11978 from first stream is returned unchanged, while maximum value (eg. 255 for
11979 8-bit videos) means that pixel component from second stream is returned
11980 unchanged. Intermediate values define the amount of merging between both
11981 input stream's pixel components.
11982
11983 This filter accepts the following options:
11984 @table @option
11985 @item planes
11986 Set which planes will be processed as bitmap, unprocessed planes will be
11987 copied from first stream.
11988 By default value 0xf, all planes will be processed.
11989 @end table
11990
11991 @section maskfun
11992 Create mask from input video.
11993
11994 For example it is useful to create motion masks after @code{tblend} filter.
11995
11996 This filter accepts the following options:
11997
11998 @table @option
11999 @item low
12000 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
12001
12002 @item high
12003 Set high threshold. Any pixel component higher than this value will be set to max value
12004 allowed for current pixel format.
12005
12006 @item planes
12007 Set planes to filter, by default all available planes are filtered.
12008
12009 @item fill
12010 Fill all frame pixels with this value.
12011
12012 @item sum
12013 Set max average pixel value for frame. If sum of all pixel components is higher that this
12014 average, output frame will be completely filled with value set by @var{fill} option.
12015 Typically useful for scene changes when used in combination with @code{tblend} filter.
12016 @end table
12017
12018 @section mcdeint
12019
12020 Apply motion-compensation deinterlacing.
12021
12022 It needs one field per frame as input and must thus be used together
12023 with yadif=1/3 or equivalent.
12024
12025 This filter accepts the following options:
12026 @table @option
12027 @item mode
12028 Set the deinterlacing mode.
12029
12030 It accepts one of the following values:
12031 @table @samp
12032 @item fast
12033 @item medium
12034 @item slow
12035 use iterative motion estimation
12036 @item extra_slow
12037 like @samp{slow}, but use multiple reference frames.
12038 @end table
12039 Default value is @samp{fast}.
12040
12041 @item parity
12042 Set the picture field parity assumed for the input video. It must be
12043 one of the following values:
12044
12045 @table @samp
12046 @item 0, tff
12047 assume top field first
12048 @item 1, bff
12049 assume bottom field first
12050 @end table
12051
12052 Default value is @samp{bff}.
12053
12054 @item qp
12055 Set per-block quantization parameter (QP) used by the internal
12056 encoder.
12057
12058 Higher values should result in a smoother motion vector field but less
12059 optimal individual vectors. Default value is 1.
12060 @end table
12061
12062 @section mergeplanes
12063
12064 Merge color channel components from several video streams.
12065
12066 The filter accepts up to 4 input streams, and merge selected input
12067 planes to the output video.
12068
12069 This filter accepts the following options:
12070 @table @option
12071 @item mapping
12072 Set input to output plane mapping. Default is @code{0}.
12073
12074 The mappings is specified as a bitmap. It should be specified as a
12075 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
12076 mapping for the first plane of the output stream. 'A' sets the number of
12077 the input stream to use (from 0 to 3), and 'a' the plane number of the
12078 corresponding input to use (from 0 to 3). The rest of the mappings is
12079 similar, 'Bb' describes the mapping for the output stream second
12080 plane, 'Cc' describes the mapping for the output stream third plane and
12081 'Dd' describes the mapping for the output stream fourth plane.
12082
12083 @item format
12084 Set output pixel format. Default is @code{yuva444p}.
12085 @end table
12086
12087 @subsection Examples
12088
12089 @itemize
12090 @item
12091 Merge three gray video streams of same width and height into single video stream:
12092 @example
12093 [a0][a1][a2]mergeplanes=0x001020:yuv444p
12094 @end example
12095
12096 @item
12097 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
12098 @example
12099 [a0][a1]mergeplanes=0x00010210:yuva444p
12100 @end example
12101
12102 @item
12103 Swap Y and A plane in yuva444p stream:
12104 @example
12105 format=yuva444p,mergeplanes=0x03010200:yuva444p
12106 @end example
12107
12108 @item
12109 Swap U and V plane in yuv420p stream:
12110 @example
12111 format=yuv420p,mergeplanes=0x000201:yuv420p
12112 @end example
12113
12114 @item
12115 Cast a rgb24 clip to yuv444p:
12116 @example
12117 format=rgb24,mergeplanes=0x000102:yuv444p
12118 @end example
12119 @end itemize
12120
12121 @section mestimate
12122
12123 Estimate and export motion vectors using block matching algorithms.
12124 Motion vectors are stored in frame side data to be used by other filters.
12125
12126 This filter accepts the following options:
12127 @table @option
12128 @item method
12129 Specify the motion estimation method. Accepts one of the following values:
12130
12131 @table @samp
12132 @item esa
12133 Exhaustive search algorithm.
12134 @item tss
12135 Three step search algorithm.
12136 @item tdls
12137 Two dimensional logarithmic search algorithm.
12138 @item ntss
12139 New three step search algorithm.
12140 @item fss
12141 Four step search algorithm.
12142 @item ds
12143 Diamond search algorithm.
12144 @item hexbs
12145 Hexagon-based search algorithm.
12146 @item epzs
12147 Enhanced predictive zonal search algorithm.
12148 @item umh
12149 Uneven multi-hexagon search algorithm.
12150 @end table
12151 Default value is @samp{esa}.
12152
12153 @item mb_size
12154 Macroblock size. Default @code{16}.
12155
12156 @item search_param
12157 Search parameter. Default @code{7}.
12158 @end table
12159
12160 @section midequalizer
12161
12162 Apply Midway Image Equalization effect using two video streams.
12163
12164 Midway Image Equalization adjusts a pair of images to have the same
12165 histogram, while maintaining their dynamics as much as possible. It's
12166 useful for e.g. matching exposures from a pair of stereo cameras.
12167
12168 This filter has two inputs and one output, which must be of same pixel format, but
12169 may be of different sizes. The output of filter is first input adjusted with
12170 midway histogram of both inputs.
12171
12172 This filter accepts the following option:
12173
12174 @table @option
12175 @item planes
12176 Set which planes to process. Default is @code{15}, which is all available planes.
12177 @end table
12178
12179 @section minterpolate
12180
12181 Convert the video to specified frame rate using motion interpolation.
12182
12183 This filter accepts the following options:
12184 @table @option
12185 @item fps
12186 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}.
12187
12188 @item mi_mode
12189 Motion interpolation mode. Following values are accepted:
12190 @table @samp
12191 @item dup
12192 Duplicate previous or next frame for interpolating new ones.
12193 @item blend
12194 Blend source frames. Interpolated frame is mean of previous and next frames.
12195 @item mci
12196 Motion compensated interpolation. Following options are effective when this mode is selected:
12197
12198 @table @samp
12199 @item mc_mode
12200 Motion compensation mode. Following values are accepted:
12201 @table @samp
12202 @item obmc
12203 Overlapped block motion compensation.
12204 @item aobmc
12205 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
12206 @end table
12207 Default mode is @samp{obmc}.
12208
12209 @item me_mode
12210 Motion estimation mode. Following values are accepted:
12211 @table @samp
12212 @item bidir
12213 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
12214 @item bilat
12215 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
12216 @end table
12217 Default mode is @samp{bilat}.
12218
12219 @item me
12220 The algorithm to be used for motion estimation. Following values are accepted:
12221 @table @samp
12222 @item esa
12223 Exhaustive search algorithm.
12224 @item tss
12225 Three step search algorithm.
12226 @item tdls
12227 Two dimensional logarithmic search algorithm.
12228 @item ntss
12229 New three step search algorithm.
12230 @item fss
12231 Four step search algorithm.
12232 @item ds
12233 Diamond search algorithm.
12234 @item hexbs
12235 Hexagon-based search algorithm.
12236 @item epzs
12237 Enhanced predictive zonal search algorithm.
12238 @item umh
12239 Uneven multi-hexagon search algorithm.
12240 @end table
12241 Default algorithm is @samp{epzs}.
12242
12243 @item mb_size
12244 Macroblock size. Default @code{16}.
12245
12246 @item search_param
12247 Motion estimation search parameter. Default @code{32}.
12248
12249 @item vsbmc
12250 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).
12251 @end table
12252 @end table
12253
12254 @item scd
12255 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:
12256 @table @samp
12257 @item none
12258 Disable scene change detection.
12259 @item fdiff
12260 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
12261 @end table
12262 Default method is @samp{fdiff}.
12263
12264 @item scd_threshold
12265 Scene change detection threshold. Default is @code{5.0}.
12266 @end table
12267
12268 @section mix
12269
12270 Mix several video input streams into one video stream.
12271
12272 A description of the accepted options follows.
12273
12274 @table @option
12275 @item nb_inputs
12276 The number of inputs. If unspecified, it defaults to 2.
12277
12278 @item weights
12279 Specify weight of each input video stream as sequence.
12280 Each weight is separated by space. If number of weights
12281 is smaller than number of @var{frames} last specified
12282 weight will be used for all remaining unset weights.
12283
12284 @item scale
12285 Specify scale, if it is set it will be multiplied with sum
12286 of each weight multiplied with pixel values to give final destination
12287 pixel value. By default @var{scale} is auto scaled to sum of weights.
12288
12289 @item duration
12290 Specify how end of stream is determined.
12291 @table @samp
12292 @item longest
12293 The duration of the longest input. (default)
12294
12295 @item shortest
12296 The duration of the shortest input.
12297
12298 @item first
12299 The duration of the first input.
12300 @end table
12301 @end table
12302
12303 @section mpdecimate
12304
12305 Drop frames that do not differ greatly from the previous frame in
12306 order to reduce frame rate.
12307
12308 The main use of this filter is for very-low-bitrate encoding
12309 (e.g. streaming over dialup modem), but it could in theory be used for
12310 fixing movies that were inverse-telecined incorrectly.
12311
12312 A description of the accepted options follows.
12313
12314 @table @option
12315 @item max
12316 Set the maximum number of consecutive frames which can be dropped (if
12317 positive), or the minimum interval between dropped frames (if
12318 negative). If the value is 0, the frame is dropped disregarding the
12319 number of previous sequentially dropped frames.
12320
12321 Default value is 0.
12322
12323 @item hi
12324 @item lo
12325 @item frac
12326 Set the dropping threshold values.
12327
12328 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
12329 represent actual pixel value differences, so a threshold of 64
12330 corresponds to 1 unit of difference for each pixel, or the same spread
12331 out differently over the block.
12332
12333 A frame is a candidate for dropping if no 8x8 blocks differ by more
12334 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
12335 meaning the whole image) differ by more than a threshold of @option{lo}.
12336
12337 Default value for @option{hi} is 64*12, default value for @option{lo} is
12338 64*5, and default value for @option{frac} is 0.33.
12339 @end table
12340
12341
12342 @section negate
12343
12344 Negate (invert) the input video.
12345
12346 It accepts the following option:
12347
12348 @table @option
12349
12350 @item negate_alpha
12351 With value 1, it negates the alpha component, if present. Default value is 0.
12352 @end table
12353
12354 @anchor{nlmeans}
12355 @section nlmeans
12356
12357 Denoise frames using Non-Local Means algorithm.
12358
12359 Each pixel is adjusted by looking for other pixels with similar contexts. This
12360 context similarity is defined by comparing their surrounding patches of size
12361 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
12362 around the pixel.
12363
12364 Note that the research area defines centers for patches, which means some
12365 patches will be made of pixels outside that research area.
12366
12367 The filter accepts the following options.
12368
12369 @table @option
12370 @item s
12371 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
12372
12373 @item p
12374 Set patch size. Default is 7. Must be odd number in range [0, 99].
12375
12376 @item pc
12377 Same as @option{p} but for chroma planes.
12378
12379 The default value is @var{0} and means automatic.
12380
12381 @item r
12382 Set research size. Default is 15. Must be odd number in range [0, 99].
12383
12384 @item rc
12385 Same as @option{r} but for chroma planes.
12386
12387 The default value is @var{0} and means automatic.
12388 @end table
12389
12390 @section nnedi
12391
12392 Deinterlace video using neural network edge directed interpolation.
12393
12394 This filter accepts the following options:
12395
12396 @table @option
12397 @item weights
12398 Mandatory option, without binary file filter can not work.
12399 Currently file can be found here:
12400 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
12401
12402 @item deint
12403 Set which frames to deinterlace, by default it is @code{all}.
12404 Can be @code{all} or @code{interlaced}.
12405
12406 @item field
12407 Set mode of operation.
12408
12409 Can be one of the following:
12410
12411 @table @samp
12412 @item af
12413 Use frame flags, both fields.
12414 @item a
12415 Use frame flags, single field.
12416 @item t
12417 Use top field only.
12418 @item b
12419 Use bottom field only.
12420 @item tf
12421 Use both fields, top first.
12422 @item bf
12423 Use both fields, bottom first.
12424 @end table
12425
12426 @item planes
12427 Set which planes to process, by default filter process all frames.
12428
12429 @item nsize
12430 Set size of local neighborhood around each pixel, used by the predictor neural
12431 network.
12432
12433 Can be one of the following:
12434
12435 @table @samp
12436 @item s8x6
12437 @item s16x6
12438 @item s32x6
12439 @item s48x6
12440 @item s8x4
12441 @item s16x4
12442 @item s32x4
12443 @end table
12444
12445 @item nns
12446 Set the number of neurons in predictor neural network.
12447 Can be one of the following:
12448
12449 @table @samp
12450 @item n16
12451 @item n32
12452 @item n64
12453 @item n128
12454 @item n256
12455 @end table
12456
12457 @item qual
12458 Controls the number of different neural network predictions that are blended
12459 together to compute the final output value. Can be @code{fast}, default or
12460 @code{slow}.
12461
12462 @item etype
12463 Set which set of weights to use in the predictor.
12464 Can be one of the following:
12465
12466 @table @samp
12467 @item a
12468 weights trained to minimize absolute error
12469 @item s
12470 weights trained to minimize squared error
12471 @end table
12472
12473 @item pscrn
12474 Controls whether or not the prescreener neural network is used to decide
12475 which pixels should be processed by the predictor neural network and which
12476 can be handled by simple cubic interpolation.
12477 The prescreener is trained to know whether cubic interpolation will be
12478 sufficient for a pixel or whether it should be predicted by the predictor nn.
12479 The computational complexity of the prescreener nn is much less than that of
12480 the predictor nn. Since most pixels can be handled by cubic interpolation,
12481 using the prescreener generally results in much faster processing.
12482 The prescreener is pretty accurate, so the difference between using it and not
12483 using it is almost always unnoticeable.
12484
12485 Can be one of the following:
12486
12487 @table @samp
12488 @item none
12489 @item original
12490 @item new
12491 @end table
12492
12493 Default is @code{new}.
12494
12495 @item fapprox
12496 Set various debugging flags.
12497 @end table
12498
12499 @section noformat
12500
12501 Force libavfilter not to use any of the specified pixel formats for the
12502 input to the next filter.
12503
12504 It accepts the following parameters:
12505 @table @option
12506
12507 @item pix_fmts
12508 A '|'-separated list of pixel format names, such as
12509 pix_fmts=yuv420p|monow|rgb24".
12510
12511 @end table
12512
12513 @subsection Examples
12514
12515 @itemize
12516 @item
12517 Force libavfilter to use a format different from @var{yuv420p} for the
12518 input to the vflip filter:
12519 @example
12520 noformat=pix_fmts=yuv420p,vflip
12521 @end example
12522
12523 @item
12524 Convert the input video to any of the formats not contained in the list:
12525 @example
12526 noformat=yuv420p|yuv444p|yuv410p
12527 @end example
12528 @end itemize
12529
12530 @section noise
12531
12532 Add noise on video input frame.
12533
12534 The filter accepts the following options:
12535
12536 @table @option
12537 @item all_seed
12538 @item c0_seed
12539 @item c1_seed
12540 @item c2_seed
12541 @item c3_seed
12542 Set noise seed for specific pixel component or all pixel components in case
12543 of @var{all_seed}. Default value is @code{123457}.
12544
12545 @item all_strength, alls
12546 @item c0_strength, c0s
12547 @item c1_strength, c1s
12548 @item c2_strength, c2s
12549 @item c3_strength, c3s
12550 Set noise strength for specific pixel component or all pixel components in case
12551 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
12552
12553 @item all_flags, allf
12554 @item c0_flags, c0f
12555 @item c1_flags, c1f
12556 @item c2_flags, c2f
12557 @item c3_flags, c3f
12558 Set pixel component flags or set flags for all components if @var{all_flags}.
12559 Available values for component flags are:
12560 @table @samp
12561 @item a
12562 averaged temporal noise (smoother)
12563 @item p
12564 mix random noise with a (semi)regular pattern
12565 @item t
12566 temporal noise (noise pattern changes between frames)
12567 @item u
12568 uniform noise (gaussian otherwise)
12569 @end table
12570 @end table
12571
12572 @subsection Examples
12573
12574 Add temporal and uniform noise to input video:
12575 @example
12576 noise=alls=20:allf=t+u
12577 @end example
12578
12579 @section normalize
12580
12581 Normalize RGB video (aka histogram stretching, contrast stretching).
12582 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
12583
12584 For each channel of each frame, the filter computes the input range and maps
12585 it linearly to the user-specified output range. The output range defaults
12586 to the full dynamic range from pure black to pure white.
12587
12588 Temporal smoothing can be used on the input range to reduce flickering (rapid
12589 changes in brightness) caused when small dark or bright objects enter or leave
12590 the scene. This is similar to the auto-exposure (automatic gain control) on a
12591 video camera, and, like a video camera, it may cause a period of over- or
12592 under-exposure of the video.
12593
12594 The R,G,B channels can be normalized independently, which may cause some
12595 color shifting, or linked together as a single channel, which prevents
12596 color shifting. Linked normalization preserves hue. Independent normalization
12597 does not, so it can be used to remove some color casts. Independent and linked
12598 normalization can be combined in any ratio.
12599
12600 The normalize filter accepts the following options:
12601
12602 @table @option
12603 @item blackpt
12604 @item whitept
12605 Colors which define the output range. The minimum input value is mapped to
12606 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
12607 The defaults are black and white respectively. Specifying white for
12608 @var{blackpt} and black for @var{whitept} will give color-inverted,
12609 normalized video. Shades of grey can be used to reduce the dynamic range
12610 (contrast). Specifying saturated colors here can create some interesting
12611 effects.
12612
12613 @item smoothing
12614 The number of previous frames to use for temporal smoothing. The input range
12615 of each channel is smoothed using a rolling average over the current frame
12616 and the @var{smoothing} previous frames. The default is 0 (no temporal
12617 smoothing).
12618
12619 @item independence
12620 Controls the ratio of independent (color shifting) channel normalization to
12621 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
12622 independent. Defaults to 1.0 (fully independent).
12623
12624 @item strength
12625 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
12626 expensive no-op. Defaults to 1.0 (full strength).
12627
12628 @end table
12629
12630 @subsection Examples
12631
12632 Stretch video contrast to use the full dynamic range, with no temporal
12633 smoothing; may flicker depending on the source content:
12634 @example
12635 normalize=blackpt=black:whitept=white:smoothing=0
12636 @end example
12637
12638 As above, but with 50 frames of temporal smoothing; flicker should be
12639 reduced, depending on the source content:
12640 @example
12641 normalize=blackpt=black:whitept=white:smoothing=50
12642 @end example
12643
12644 As above, but with hue-preserving linked channel normalization:
12645 @example
12646 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
12647 @end example
12648
12649 As above, but with half strength:
12650 @example
12651 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
12652 @end example
12653
12654 Map the darkest input color to red, the brightest input color to cyan:
12655 @example
12656 normalize=blackpt=red:whitept=cyan
12657 @end example
12658
12659 @section null
12660
12661 Pass the video source unchanged to the output.
12662
12663 @section ocr
12664 Optical Character Recognition
12665
12666 This filter uses Tesseract for optical character recognition. To enable
12667 compilation of this filter, you need to configure FFmpeg with
12668 @code{--enable-libtesseract}.
12669
12670 It accepts the following options:
12671
12672 @table @option
12673 @item datapath
12674 Set datapath to tesseract data. Default is to use whatever was
12675 set at installation.
12676
12677 @item language
12678 Set language, default is "eng".
12679
12680 @item whitelist
12681 Set character whitelist.
12682
12683 @item blacklist
12684 Set character blacklist.
12685 @end table
12686
12687 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
12688
12689 @section ocv
12690
12691 Apply a video transform using libopencv.
12692
12693 To enable this filter, install the libopencv library and headers and
12694 configure FFmpeg with @code{--enable-libopencv}.
12695
12696 It accepts the following parameters:
12697
12698 @table @option
12699
12700 @item filter_name
12701 The name of the libopencv filter to apply.
12702
12703 @item filter_params
12704 The parameters to pass to the libopencv filter. If not specified, the default
12705 values are assumed.
12706
12707 @end table
12708
12709 Refer to the official libopencv documentation for more precise
12710 information:
12711 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
12712
12713 Several libopencv filters are supported; see the following subsections.
12714
12715 @anchor{dilate}
12716 @subsection dilate
12717
12718 Dilate an image by using a specific structuring element.
12719 It corresponds to the libopencv function @code{cvDilate}.
12720
12721 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
12722
12723 @var{struct_el} represents a structuring element, and has the syntax:
12724 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
12725
12726 @var{cols} and @var{rows} represent the number of columns and rows of
12727 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
12728 point, and @var{shape} the shape for the structuring element. @var{shape}
12729 must be "rect", "cross", "ellipse", or "custom".
12730
12731 If the value for @var{shape} is "custom", it must be followed by a
12732 string of the form "=@var{filename}". The file with name
12733 @var{filename} is assumed to represent a binary image, with each
12734 printable character corresponding to a bright pixel. When a custom
12735 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
12736 or columns and rows of the read file are assumed instead.
12737
12738 The default value for @var{struct_el} is "3x3+0x0/rect".
12739
12740 @var{nb_iterations} specifies the number of times the transform is
12741 applied to the image, and defaults to 1.
12742
12743 Some examples:
12744 @example
12745 # Use the default values
12746 ocv=dilate
12747
12748 # Dilate using a structuring element with a 5x5 cross, iterating two times
12749 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
12750
12751 # Read the shape from the file diamond.shape, iterating two times.
12752 # The file diamond.shape may contain a pattern of characters like this
12753 #   *
12754 #  ***
12755 # *****
12756 #  ***
12757 #   *
12758 # The specified columns and rows are ignored
12759 # but the anchor point coordinates are not
12760 ocv=dilate:0x0+2x2/custom=diamond.shape|2
12761 @end example
12762
12763 @subsection erode
12764
12765 Erode an image by using a specific structuring element.
12766 It corresponds to the libopencv function @code{cvErode}.
12767
12768 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
12769 with the same syntax and semantics as the @ref{dilate} filter.
12770
12771 @subsection smooth
12772
12773 Smooth the input video.
12774
12775 The filter takes the following parameters:
12776 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
12777
12778 @var{type} is the type of smooth filter to apply, and must be one of
12779 the following values: "blur", "blur_no_scale", "median", "gaussian",
12780 or "bilateral". The default value is "gaussian".
12781
12782 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
12783 depend on the smooth type. @var{param1} and
12784 @var{param2} accept integer positive values or 0. @var{param3} and
12785 @var{param4} accept floating point values.
12786
12787 The default value for @var{param1} is 3. The default value for the
12788 other parameters is 0.
12789
12790 These parameters correspond to the parameters assigned to the
12791 libopencv function @code{cvSmooth}.
12792
12793 @section oscilloscope
12794
12795 2D Video Oscilloscope.
12796
12797 Useful to measure spatial impulse, step responses, chroma delays, etc.
12798
12799 It accepts the following parameters:
12800
12801 @table @option
12802 @item x
12803 Set scope center x position.
12804
12805 @item y
12806 Set scope center y position.
12807
12808 @item s
12809 Set scope size, relative to frame diagonal.
12810
12811 @item t
12812 Set scope tilt/rotation.
12813
12814 @item o
12815 Set trace opacity.
12816
12817 @item tx
12818 Set trace center x position.
12819
12820 @item ty
12821 Set trace center y position.
12822
12823 @item tw
12824 Set trace width, relative to width of frame.
12825
12826 @item th
12827 Set trace height, relative to height of frame.
12828
12829 @item c
12830 Set which components to trace. By default it traces first three components.
12831
12832 @item g
12833 Draw trace grid. By default is enabled.
12834
12835 @item st
12836 Draw some statistics. By default is enabled.
12837
12838 @item sc
12839 Draw scope. By default is enabled.
12840 @end table
12841
12842 @subsection Examples
12843
12844 @itemize
12845 @item
12846 Inspect full first row of video frame.
12847 @example
12848 oscilloscope=x=0.5:y=0:s=1
12849 @end example
12850
12851 @item
12852 Inspect full last row of video frame.
12853 @example
12854 oscilloscope=x=0.5:y=1:s=1
12855 @end example
12856
12857 @item
12858 Inspect full 5th line of video frame of height 1080.
12859 @example
12860 oscilloscope=x=0.5:y=5/1080:s=1
12861 @end example
12862
12863 @item
12864 Inspect full last column of video frame.
12865 @example
12866 oscilloscope=x=1:y=0.5:s=1:t=1
12867 @end example
12868
12869 @end itemize
12870
12871 @anchor{overlay}
12872 @section overlay
12873
12874 Overlay one video on top of another.
12875
12876 It takes two inputs and has one output. The first input is the "main"
12877 video on which the second input is overlaid.
12878
12879 It accepts the following parameters:
12880
12881 A description of the accepted options follows.
12882
12883 @table @option
12884 @item x
12885 @item y
12886 Set the expression for the x and y coordinates of the overlaid video
12887 on the main video. Default value is "0" for both expressions. In case
12888 the expression is invalid, it is set to a huge value (meaning that the
12889 overlay will not be displayed within the output visible area).
12890
12891 @item eof_action
12892 See @ref{framesync}.
12893
12894 @item eval
12895 Set when the expressions for @option{x}, and @option{y} are evaluated.
12896
12897 It accepts the following values:
12898 @table @samp
12899 @item init
12900 only evaluate expressions once during the filter initialization or
12901 when a command is processed
12902
12903 @item frame
12904 evaluate expressions for each incoming frame
12905 @end table
12906
12907 Default value is @samp{frame}.
12908
12909 @item shortest
12910 See @ref{framesync}.
12911
12912 @item format
12913 Set the format for the output video.
12914
12915 It accepts the following values:
12916 @table @samp
12917 @item yuv420
12918 force YUV420 output
12919
12920 @item yuv422
12921 force YUV422 output
12922
12923 @item yuv444
12924 force YUV444 output
12925
12926 @item rgb
12927 force packed RGB output
12928
12929 @item gbrp
12930 force planar RGB output
12931
12932 @item auto
12933 automatically pick format
12934 @end table
12935
12936 Default value is @samp{yuv420}.
12937
12938 @item repeatlast
12939 See @ref{framesync}.
12940
12941 @item alpha
12942 Set format of alpha of the overlaid video, it can be @var{straight} or
12943 @var{premultiplied}. Default is @var{straight}.
12944 @end table
12945
12946 The @option{x}, and @option{y} expressions can contain the following
12947 parameters.
12948
12949 @table @option
12950 @item main_w, W
12951 @item main_h, H
12952 The main input width and height.
12953
12954 @item overlay_w, w
12955 @item overlay_h, h
12956 The overlay input width and height.
12957
12958 @item x
12959 @item y
12960 The computed values for @var{x} and @var{y}. They are evaluated for
12961 each new frame.
12962
12963 @item hsub
12964 @item vsub
12965 horizontal and vertical chroma subsample values of the output
12966 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
12967 @var{vsub} is 1.
12968
12969 @item n
12970 the number of input frame, starting from 0
12971
12972 @item pos
12973 the position in the file of the input frame, NAN if unknown
12974
12975 @item t
12976 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
12977
12978 @end table
12979
12980 This filter also supports the @ref{framesync} options.
12981
12982 Note that the @var{n}, @var{pos}, @var{t} variables are available only
12983 when evaluation is done @emph{per frame}, and will evaluate to NAN
12984 when @option{eval} is set to @samp{init}.
12985
12986 Be aware that frames are taken from each input video in timestamp
12987 order, hence, if their initial timestamps differ, it is a good idea
12988 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
12989 have them begin in the same zero timestamp, as the example for
12990 the @var{movie} filter does.
12991
12992 You can chain together more overlays but you should test the
12993 efficiency of such approach.
12994
12995 @subsection Commands
12996
12997 This filter supports the following commands:
12998 @table @option
12999 @item x
13000 @item y
13001 Modify the x and y of the overlay input.
13002 The command accepts the same syntax of the corresponding option.
13003
13004 If the specified expression is not valid, it is kept at its current
13005 value.
13006 @end table
13007
13008 @subsection Examples
13009
13010 @itemize
13011 @item
13012 Draw the overlay at 10 pixels from the bottom right corner of the main
13013 video:
13014 @example
13015 overlay=main_w-overlay_w-10:main_h-overlay_h-10
13016 @end example
13017
13018 Using named options the example above becomes:
13019 @example
13020 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
13021 @end example
13022
13023 @item
13024 Insert a transparent PNG logo in the bottom left corner of the input,
13025 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
13026 @example
13027 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
13028 @end example
13029
13030 @item
13031 Insert 2 different transparent PNG logos (second logo on bottom
13032 right corner) using the @command{ffmpeg} tool:
13033 @example
13034 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
13035 @end example
13036
13037 @item
13038 Add a transparent color layer on top of the main video; @code{WxH}
13039 must specify the size of the main input to the overlay filter:
13040 @example
13041 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
13042 @end example
13043
13044 @item
13045 Play an original video and a filtered version (here with the deshake
13046 filter) side by side using the @command{ffplay} tool:
13047 @example
13048 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
13049 @end example
13050
13051 The above command is the same as:
13052 @example
13053 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
13054 @end example
13055
13056 @item
13057 Make a sliding overlay appearing from the left to the right top part of the
13058 screen starting since time 2:
13059 @example
13060 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
13061 @end example
13062
13063 @item
13064 Compose output by putting two input videos side to side:
13065 @example
13066 ffmpeg -i left.avi -i right.avi -filter_complex "
13067 nullsrc=size=200x100 [background];
13068 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
13069 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
13070 [background][left]       overlay=shortest=1       [background+left];
13071 [background+left][right] overlay=shortest=1:x=100 [left+right]
13072 "
13073 @end example
13074
13075 @item
13076 Mask 10-20 seconds of a video by applying the delogo filter to a section
13077 @example
13078 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
13079 -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]'
13080 masked.avi
13081 @end example
13082
13083 @item
13084 Chain several overlays in cascade:
13085 @example
13086 nullsrc=s=200x200 [bg];
13087 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
13088 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
13089 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
13090 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
13091 [in3] null,       [mid2] overlay=100:100 [out0]
13092 @end example
13093
13094 @end itemize
13095
13096 @section owdenoise
13097
13098 Apply Overcomplete Wavelet denoiser.
13099
13100 The filter accepts the following options:
13101
13102 @table @option
13103 @item depth
13104 Set depth.
13105
13106 Larger depth values will denoise lower frequency components more, but
13107 slow down filtering.
13108
13109 Must be an int in the range 8-16, default is @code{8}.
13110
13111 @item luma_strength, ls
13112 Set luma strength.
13113
13114 Must be a double value in the range 0-1000, default is @code{1.0}.
13115
13116 @item chroma_strength, cs
13117 Set chroma strength.
13118
13119 Must be a double value in the range 0-1000, default is @code{1.0}.
13120 @end table
13121
13122 @anchor{pad}
13123 @section pad
13124
13125 Add paddings to the input image, and place the original input at the
13126 provided @var{x}, @var{y} coordinates.
13127
13128 It accepts the following parameters:
13129
13130 @table @option
13131 @item width, w
13132 @item height, h
13133 Specify an expression for the size of the output image with the
13134 paddings added. If the value for @var{width} or @var{height} is 0, the
13135 corresponding input size is used for the output.
13136
13137 The @var{width} expression can reference the value set by the
13138 @var{height} expression, and vice versa.
13139
13140 The default value of @var{width} and @var{height} is 0.
13141
13142 @item x
13143 @item y
13144 Specify the offsets to place the input image at within the padded area,
13145 with respect to the top/left border of the output image.
13146
13147 The @var{x} expression can reference the value set by the @var{y}
13148 expression, and vice versa.
13149
13150 The default value of @var{x} and @var{y} is 0.
13151
13152 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
13153 so the input image is centered on the padded area.
13154
13155 @item color
13156 Specify the color of the padded area. For the syntax of this option,
13157 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13158 manual,ffmpeg-utils}.
13159
13160 The default value of @var{color} is "black".
13161
13162 @item eval
13163 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
13164
13165 It accepts the following values:
13166
13167 @table @samp
13168 @item init
13169 Only evaluate expressions once during the filter initialization or when
13170 a command is processed.
13171
13172 @item frame
13173 Evaluate expressions for each incoming frame.
13174
13175 @end table
13176
13177 Default value is @samp{init}.
13178
13179 @item aspect
13180 Pad to aspect instead to a resolution.
13181
13182 @end table
13183
13184 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
13185 options are expressions containing the following constants:
13186
13187 @table @option
13188 @item in_w
13189 @item in_h
13190 The input video width and height.
13191
13192 @item iw
13193 @item ih
13194 These are the same as @var{in_w} and @var{in_h}.
13195
13196 @item out_w
13197 @item out_h
13198 The output width and height (the size of the padded area), as
13199 specified by the @var{width} and @var{height} expressions.
13200
13201 @item ow
13202 @item oh
13203 These are the same as @var{out_w} and @var{out_h}.
13204
13205 @item x
13206 @item y
13207 The x and y offsets as specified by the @var{x} and @var{y}
13208 expressions, or NAN if not yet specified.
13209
13210 @item a
13211 same as @var{iw} / @var{ih}
13212
13213 @item sar
13214 input sample aspect ratio
13215
13216 @item dar
13217 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
13218
13219 @item hsub
13220 @item vsub
13221 The horizontal and vertical chroma subsample values. For example for the
13222 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13223 @end table
13224
13225 @subsection Examples
13226
13227 @itemize
13228 @item
13229 Add paddings with the color "violet" to the input video. The output video
13230 size is 640x480, and the top-left corner of the input video is placed at
13231 column 0, row 40
13232 @example
13233 pad=640:480:0:40:violet
13234 @end example
13235
13236 The example above is equivalent to the following command:
13237 @example
13238 pad=width=640:height=480:x=0:y=40:color=violet
13239 @end example
13240
13241 @item
13242 Pad the input to get an output with dimensions increased by 3/2,
13243 and put the input video at the center of the padded area:
13244 @example
13245 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
13246 @end example
13247
13248 @item
13249 Pad the input to get a squared output with size equal to the maximum
13250 value between the input width and height, and put the input video at
13251 the center of the padded area:
13252 @example
13253 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
13254 @end example
13255
13256 @item
13257 Pad the input to get a final w/h ratio of 16:9:
13258 @example
13259 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
13260 @end example
13261
13262 @item
13263 In case of anamorphic video, in order to set the output display aspect
13264 correctly, it is necessary to use @var{sar} in the expression,
13265 according to the relation:
13266 @example
13267 (ih * X / ih) * sar = output_dar
13268 X = output_dar / sar
13269 @end example
13270
13271 Thus the previous example needs to be modified to:
13272 @example
13273 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
13274 @end example
13275
13276 @item
13277 Double the output size and put the input video in the bottom-right
13278 corner of the output padded area:
13279 @example
13280 pad="2*iw:2*ih:ow-iw:oh-ih"
13281 @end example
13282 @end itemize
13283
13284 @anchor{palettegen}
13285 @section palettegen
13286
13287 Generate one palette for a whole video stream.
13288
13289 It accepts the following options:
13290
13291 @table @option
13292 @item max_colors
13293 Set the maximum number of colors to quantize in the palette.
13294 Note: the palette will still contain 256 colors; the unused palette entries
13295 will be black.
13296
13297 @item reserve_transparent
13298 Create a palette of 255 colors maximum and reserve the last one for
13299 transparency. Reserving the transparency color is useful for GIF optimization.
13300 If not set, the maximum of colors in the palette will be 256. You probably want
13301 to disable this option for a standalone image.
13302 Set by default.
13303
13304 @item transparency_color
13305 Set the color that will be used as background for transparency.
13306
13307 @item stats_mode
13308 Set statistics mode.
13309
13310 It accepts the following values:
13311 @table @samp
13312 @item full
13313 Compute full frame histograms.
13314 @item diff
13315 Compute histograms only for the part that differs from previous frame. This
13316 might be relevant to give more importance to the moving part of your input if
13317 the background is static.
13318 @item single
13319 Compute new histogram for each frame.
13320 @end table
13321
13322 Default value is @var{full}.
13323 @end table
13324
13325 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
13326 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
13327 color quantization of the palette. This information is also visible at
13328 @var{info} logging level.
13329
13330 @subsection Examples
13331
13332 @itemize
13333 @item
13334 Generate a representative palette of a given video using @command{ffmpeg}:
13335 @example
13336 ffmpeg -i input.mkv -vf palettegen palette.png
13337 @end example
13338 @end itemize
13339
13340 @section paletteuse
13341
13342 Use a palette to downsample an input video stream.
13343
13344 The filter takes two inputs: one video stream and a palette. The palette must
13345 be a 256 pixels image.
13346
13347 It accepts the following options:
13348
13349 @table @option
13350 @item dither
13351 Select dithering mode. Available algorithms are:
13352 @table @samp
13353 @item bayer
13354 Ordered 8x8 bayer dithering (deterministic)
13355 @item heckbert
13356 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
13357 Note: this dithering is sometimes considered "wrong" and is included as a
13358 reference.
13359 @item floyd_steinberg
13360 Floyd and Steingberg dithering (error diffusion)
13361 @item sierra2
13362 Frankie Sierra dithering v2 (error diffusion)
13363 @item sierra2_4a
13364 Frankie Sierra dithering v2 "Lite" (error diffusion)
13365 @end table
13366
13367 Default is @var{sierra2_4a}.
13368
13369 @item bayer_scale
13370 When @var{bayer} dithering is selected, this option defines the scale of the
13371 pattern (how much the crosshatch pattern is visible). A low value means more
13372 visible pattern for less banding, and higher value means less visible pattern
13373 at the cost of more banding.
13374
13375 The option must be an integer value in the range [0,5]. Default is @var{2}.
13376
13377 @item diff_mode
13378 If set, define the zone to process
13379
13380 @table @samp
13381 @item rectangle
13382 Only the changing rectangle will be reprocessed. This is similar to GIF
13383 cropping/offsetting compression mechanism. This option can be useful for speed
13384 if only a part of the image is changing, and has use cases such as limiting the
13385 scope of the error diffusal @option{dither} to the rectangle that bounds the
13386 moving scene (it leads to more deterministic output if the scene doesn't change
13387 much, and as a result less moving noise and better GIF compression).
13388 @end table
13389
13390 Default is @var{none}.
13391
13392 @item new
13393 Take new palette for each output frame.
13394
13395 @item alpha_threshold
13396 Sets the alpha threshold for transparency. Alpha values above this threshold
13397 will be treated as completely opaque, and values below this threshold will be
13398 treated as completely transparent.
13399
13400 The option must be an integer value in the range [0,255]. Default is @var{128}.
13401 @end table
13402
13403 @subsection Examples
13404
13405 @itemize
13406 @item
13407 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
13408 using @command{ffmpeg}:
13409 @example
13410 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
13411 @end example
13412 @end itemize
13413
13414 @section perspective
13415
13416 Correct perspective of video not recorded perpendicular to the screen.
13417
13418 A description of the accepted parameters follows.
13419
13420 @table @option
13421 @item x0
13422 @item y0
13423 @item x1
13424 @item y1
13425 @item x2
13426 @item y2
13427 @item x3
13428 @item y3
13429 Set coordinates expression for top left, top right, bottom left and bottom right corners.
13430 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
13431 If the @code{sense} option is set to @code{source}, then the specified points will be sent
13432 to the corners of the destination. If the @code{sense} option is set to @code{destination},
13433 then the corners of the source will be sent to the specified coordinates.
13434
13435 The expressions can use the following variables:
13436
13437 @table @option
13438 @item W
13439 @item H
13440 the width and height of video frame.
13441 @item in
13442 Input frame count.
13443 @item on
13444 Output frame count.
13445 @end table
13446
13447 @item interpolation
13448 Set interpolation for perspective correction.
13449
13450 It accepts the following values:
13451 @table @samp
13452 @item linear
13453 @item cubic
13454 @end table
13455
13456 Default value is @samp{linear}.
13457
13458 @item sense
13459 Set interpretation of coordinate options.
13460
13461 It accepts the following values:
13462 @table @samp
13463 @item 0, source
13464
13465 Send point in the source specified by the given coordinates to
13466 the corners of the destination.
13467
13468 @item 1, destination
13469
13470 Send the corners of the source to the point in the destination specified
13471 by the given coordinates.
13472
13473 Default value is @samp{source}.
13474 @end table
13475
13476 @item eval
13477 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
13478
13479 It accepts the following values:
13480 @table @samp
13481 @item init
13482 only evaluate expressions once during the filter initialization or
13483 when a command is processed
13484
13485 @item frame
13486 evaluate expressions for each incoming frame
13487 @end table
13488
13489 Default value is @samp{init}.
13490 @end table
13491
13492 @section phase
13493
13494 Delay interlaced video by one field time so that the field order changes.
13495
13496 The intended use is to fix PAL movies that have been captured with the
13497 opposite field order to the film-to-video transfer.
13498
13499 A description of the accepted parameters follows.
13500
13501 @table @option
13502 @item mode
13503 Set phase mode.
13504
13505 It accepts the following values:
13506 @table @samp
13507 @item t
13508 Capture field order top-first, transfer bottom-first.
13509 Filter will delay the bottom field.
13510
13511 @item b
13512 Capture field order bottom-first, transfer top-first.
13513 Filter will delay the top field.
13514
13515 @item p
13516 Capture and transfer with the same field order. This mode only exists
13517 for the documentation of the other options to refer to, but if you
13518 actually select it, the filter will faithfully do nothing.
13519
13520 @item a
13521 Capture field order determined automatically by field flags, transfer
13522 opposite.
13523 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
13524 basis using field flags. If no field information is available,
13525 then this works just like @samp{u}.
13526
13527 @item u
13528 Capture unknown or varying, transfer opposite.
13529 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
13530 analyzing the images and selecting the alternative that produces best
13531 match between the fields.
13532
13533 @item T
13534 Capture top-first, transfer unknown or varying.
13535 Filter selects among @samp{t} and @samp{p} using image analysis.
13536
13537 @item B
13538 Capture bottom-first, transfer unknown or varying.
13539 Filter selects among @samp{b} and @samp{p} using image analysis.
13540
13541 @item A
13542 Capture determined by field flags, transfer unknown or varying.
13543 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
13544 image analysis. If no field information is available, then this works just
13545 like @samp{U}. This is the default mode.
13546
13547 @item U
13548 Both capture and transfer unknown or varying.
13549 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
13550 @end table
13551 @end table
13552
13553 @section pixdesctest
13554
13555 Pixel format descriptor test filter, mainly useful for internal
13556 testing. The output video should be equal to the input video.
13557
13558 For example:
13559 @example
13560 format=monow, pixdesctest
13561 @end example
13562
13563 can be used to test the monowhite pixel format descriptor definition.
13564
13565 @section pixscope
13566
13567 Display sample values of color channels. Mainly useful for checking color
13568 and levels. Minimum supported resolution is 640x480.
13569
13570 The filters accept the following options:
13571
13572 @table @option
13573 @item x
13574 Set scope X position, relative offset on X axis.
13575
13576 @item y
13577 Set scope Y position, relative offset on Y axis.
13578
13579 @item w
13580 Set scope width.
13581
13582 @item h
13583 Set scope height.
13584
13585 @item o
13586 Set window opacity. This window also holds statistics about pixel area.
13587
13588 @item wx
13589 Set window X position, relative offset on X axis.
13590
13591 @item wy
13592 Set window Y position, relative offset on Y axis.
13593 @end table
13594
13595 @section pp
13596
13597 Enable the specified chain of postprocessing subfilters using libpostproc. This
13598 library should be automatically selected with a GPL build (@code{--enable-gpl}).
13599 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
13600 Each subfilter and some options have a short and a long name that can be used
13601 interchangeably, i.e. dr/dering are the same.
13602
13603 The filters accept the following options:
13604
13605 @table @option
13606 @item subfilters
13607 Set postprocessing subfilters string.
13608 @end table
13609
13610 All subfilters share common options to determine their scope:
13611
13612 @table @option
13613 @item a/autoq
13614 Honor the quality commands for this subfilter.
13615
13616 @item c/chrom
13617 Do chrominance filtering, too (default).
13618
13619 @item y/nochrom
13620 Do luminance filtering only (no chrominance).
13621
13622 @item n/noluma
13623 Do chrominance filtering only (no luminance).
13624 @end table
13625
13626 These options can be appended after the subfilter name, separated by a '|'.
13627
13628 Available subfilters are:
13629
13630 @table @option
13631 @item hb/hdeblock[|difference[|flatness]]
13632 Horizontal deblocking filter
13633 @table @option
13634 @item difference
13635 Difference factor where higher values mean more deblocking (default: @code{32}).
13636 @item flatness
13637 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13638 @end table
13639
13640 @item vb/vdeblock[|difference[|flatness]]
13641 Vertical deblocking filter
13642 @table @option
13643 @item difference
13644 Difference factor where higher values mean more deblocking (default: @code{32}).
13645 @item flatness
13646 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13647 @end table
13648
13649 @item ha/hadeblock[|difference[|flatness]]
13650 Accurate horizontal deblocking filter
13651 @table @option
13652 @item difference
13653 Difference factor where higher values mean more deblocking (default: @code{32}).
13654 @item flatness
13655 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13656 @end table
13657
13658 @item va/vadeblock[|difference[|flatness]]
13659 Accurate vertical deblocking filter
13660 @table @option
13661 @item difference
13662 Difference factor where higher values mean more deblocking (default: @code{32}).
13663 @item flatness
13664 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13665 @end table
13666 @end table
13667
13668 The horizontal and vertical deblocking filters share the difference and
13669 flatness values so you cannot set different horizontal and vertical
13670 thresholds.
13671
13672 @table @option
13673 @item h1/x1hdeblock
13674 Experimental horizontal deblocking filter
13675
13676 @item v1/x1vdeblock
13677 Experimental vertical deblocking filter
13678
13679 @item dr/dering
13680 Deringing filter
13681
13682 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
13683 @table @option
13684 @item threshold1
13685 larger -> stronger filtering
13686 @item threshold2
13687 larger -> stronger filtering
13688 @item threshold3
13689 larger -> stronger filtering
13690 @end table
13691
13692 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
13693 @table @option
13694 @item f/fullyrange
13695 Stretch luminance to @code{0-255}.
13696 @end table
13697
13698 @item lb/linblenddeint
13699 Linear blend deinterlacing filter that deinterlaces the given block by
13700 filtering all lines with a @code{(1 2 1)} filter.
13701
13702 @item li/linipoldeint
13703 Linear interpolating deinterlacing filter that deinterlaces the given block by
13704 linearly interpolating every second line.
13705
13706 @item ci/cubicipoldeint
13707 Cubic interpolating deinterlacing filter deinterlaces the given block by
13708 cubically interpolating every second line.
13709
13710 @item md/mediandeint
13711 Median deinterlacing filter that deinterlaces the given block by applying a
13712 median filter to every second line.
13713
13714 @item fd/ffmpegdeint
13715 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
13716 second line with a @code{(-1 4 2 4 -1)} filter.
13717
13718 @item l5/lowpass5
13719 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
13720 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
13721
13722 @item fq/forceQuant[|quantizer]
13723 Overrides the quantizer table from the input with the constant quantizer you
13724 specify.
13725 @table @option
13726 @item quantizer
13727 Quantizer to use
13728 @end table
13729
13730 @item de/default
13731 Default pp filter combination (@code{hb|a,vb|a,dr|a})
13732
13733 @item fa/fast
13734 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
13735
13736 @item ac
13737 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
13738 @end table
13739
13740 @subsection Examples
13741
13742 @itemize
13743 @item
13744 Apply horizontal and vertical deblocking, deringing and automatic
13745 brightness/contrast:
13746 @example
13747 pp=hb/vb/dr/al
13748 @end example
13749
13750 @item
13751 Apply default filters without brightness/contrast correction:
13752 @example
13753 pp=de/-al
13754 @end example
13755
13756 @item
13757 Apply default filters and temporal denoiser:
13758 @example
13759 pp=default/tmpnoise|1|2|3
13760 @end example
13761
13762 @item
13763 Apply deblocking on luminance only, and switch vertical deblocking on or off
13764 automatically depending on available CPU time:
13765 @example
13766 pp=hb|y/vb|a
13767 @end example
13768 @end itemize
13769
13770 @section pp7
13771 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
13772 similar to spp = 6 with 7 point DCT, where only the center sample is
13773 used after IDCT.
13774
13775 The filter accepts the following options:
13776
13777 @table @option
13778 @item qp
13779 Force a constant quantization parameter. It accepts an integer in range
13780 0 to 63. If not set, the filter will use the QP from the video stream
13781 (if available).
13782
13783 @item mode
13784 Set thresholding mode. Available modes are:
13785
13786 @table @samp
13787 @item hard
13788 Set hard thresholding.
13789 @item soft
13790 Set soft thresholding (better de-ringing effect, but likely blurrier).
13791 @item medium
13792 Set medium thresholding (good results, default).
13793 @end table
13794 @end table
13795
13796 @section premultiply
13797 Apply alpha premultiply effect to input video stream using first plane
13798 of second stream as alpha.
13799
13800 Both streams must have same dimensions and same pixel format.
13801
13802 The filter accepts the following option:
13803
13804 @table @option
13805 @item planes
13806 Set which planes will be processed, unprocessed planes will be copied.
13807 By default value 0xf, all planes will be processed.
13808
13809 @item inplace
13810 Do not require 2nd input for processing, instead use alpha plane from input stream.
13811 @end table
13812
13813 @section prewitt
13814 Apply prewitt operator to input video stream.
13815
13816 The filter accepts the following option:
13817
13818 @table @option
13819 @item planes
13820 Set which planes will be processed, unprocessed planes will be copied.
13821 By default value 0xf, all planes will be processed.
13822
13823 @item scale
13824 Set value which will be multiplied with filtered result.
13825
13826 @item delta
13827 Set value which will be added to filtered result.
13828 @end table
13829
13830 @anchor{program_opencl}
13831 @section program_opencl
13832
13833 Filter video using an OpenCL program.
13834
13835 @table @option
13836
13837 @item source
13838 OpenCL program source file.
13839
13840 @item kernel
13841 Kernel name in program.
13842
13843 @item inputs
13844 Number of inputs to the filter.  Defaults to 1.
13845
13846 @item size, s
13847 Size of output frames.  Defaults to the same as the first input.
13848
13849 @end table
13850
13851 The program source file must contain a kernel function with the given name,
13852 which will be run once for each plane of the output.  Each run on a plane
13853 gets enqueued as a separate 2D global NDRange with one work-item for each
13854 pixel to be generated.  The global ID offset for each work-item is therefore
13855 the coordinates of a pixel in the destination image.
13856
13857 The kernel function needs to take the following arguments:
13858 @itemize
13859 @item
13860 Destination image, @var{__write_only image2d_t}.
13861
13862 This image will become the output; the kernel should write all of it.
13863 @item
13864 Frame index, @var{unsigned int}.
13865
13866 This is a counter starting from zero and increasing by one for each frame.
13867 @item
13868 Source images, @var{__read_only image2d_t}.
13869
13870 These are the most recent images on each input.  The kernel may read from
13871 them to generate the output, but they can't be written to.
13872 @end itemize
13873
13874 Example programs:
13875
13876 @itemize
13877 @item
13878 Copy the input to the output (output must be the same size as the input).
13879 @verbatim
13880 __kernel void copy(__write_only image2d_t destination,
13881                    unsigned int index,
13882                    __read_only  image2d_t source)
13883 {
13884     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
13885
13886     int2 location = (int2)(get_global_id(0), get_global_id(1));
13887
13888     float4 value = read_imagef(source, sampler, location);
13889
13890     write_imagef(destination, location, value);
13891 }
13892 @end verbatim
13893
13894 @item
13895 Apply a simple transformation, rotating the input by an amount increasing
13896 with the index counter.  Pixel values are linearly interpolated by the
13897 sampler, and the output need not have the same dimensions as the input.
13898 @verbatim
13899 __kernel void rotate_image(__write_only image2d_t dst,
13900                            unsigned int index,
13901                            __read_only  image2d_t src)
13902 {
13903     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
13904                                CLK_FILTER_LINEAR);
13905
13906     float angle = (float)index / 100.0f;
13907
13908     float2 dst_dim = convert_float2(get_image_dim(dst));
13909     float2 src_dim = convert_float2(get_image_dim(src));
13910
13911     float2 dst_cen = dst_dim / 2.0f;
13912     float2 src_cen = src_dim / 2.0f;
13913
13914     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
13915
13916     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
13917     float2 src_pos = {
13918         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
13919         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
13920     };
13921     src_pos = src_pos * src_dim / dst_dim;
13922
13923     float2 src_loc = src_pos + src_cen;
13924
13925     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
13926         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
13927         write_imagef(dst, dst_loc, 0.5f);
13928     else
13929         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
13930 }
13931 @end verbatim
13932
13933 @item
13934 Blend two inputs together, with the amount of each input used varying
13935 with the index counter.
13936 @verbatim
13937 __kernel void blend_images(__write_only image2d_t dst,
13938                            unsigned int index,
13939                            __read_only  image2d_t src1,
13940                            __read_only  image2d_t src2)
13941 {
13942     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
13943                                CLK_FILTER_LINEAR);
13944
13945     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
13946
13947     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
13948     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
13949     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
13950
13951     float4 val1 = read_imagef(src1, sampler, src1_loc);
13952     float4 val2 = read_imagef(src2, sampler, src2_loc);
13953
13954     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
13955 }
13956 @end verbatim
13957
13958 @end itemize
13959
13960 @section pseudocolor
13961
13962 Alter frame colors in video with pseudocolors.
13963
13964 This filter accept the following options:
13965
13966 @table @option
13967 @item c0
13968 set pixel first component expression
13969
13970 @item c1
13971 set pixel second component expression
13972
13973 @item c2
13974 set pixel third component expression
13975
13976 @item c3
13977 set pixel fourth component expression, corresponds to the alpha component
13978
13979 @item i
13980 set component to use as base for altering colors
13981 @end table
13982
13983 Each of them specifies the expression to use for computing the lookup table for
13984 the corresponding pixel component values.
13985
13986 The expressions can contain the following constants and functions:
13987
13988 @table @option
13989 @item w
13990 @item h
13991 The input width and height.
13992
13993 @item val
13994 The input value for the pixel component.
13995
13996 @item ymin, umin, vmin, amin
13997 The minimum allowed component value.
13998
13999 @item ymax, umax, vmax, amax
14000 The maximum allowed component value.
14001 @end table
14002
14003 All expressions default to "val".
14004
14005 @subsection Examples
14006
14007 @itemize
14008 @item
14009 Change too high luma values to gradient:
14010 @example
14011 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'"
14012 @end example
14013 @end itemize
14014
14015 @section psnr
14016
14017 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
14018 Ratio) between two input videos.
14019
14020 This filter takes in input two input videos, the first input is
14021 considered the "main" source and is passed unchanged to the
14022 output. The second input is used as a "reference" video for computing
14023 the PSNR.
14024
14025 Both video inputs must have the same resolution and pixel format for
14026 this filter to work correctly. Also it assumes that both inputs
14027 have the same number of frames, which are compared one by one.
14028
14029 The obtained average PSNR is printed through the logging system.
14030
14031 The filter stores the accumulated MSE (mean squared error) of each
14032 frame, and at the end of the processing it is averaged across all frames
14033 equally, and the following formula is applied to obtain the PSNR:
14034
14035 @example
14036 PSNR = 10*log10(MAX^2/MSE)
14037 @end example
14038
14039 Where MAX is the average of the maximum values of each component of the
14040 image.
14041
14042 The description of the accepted parameters follows.
14043
14044 @table @option
14045 @item stats_file, f
14046 If specified the filter will use the named file to save the PSNR of
14047 each individual frame. When filename equals "-" the data is sent to
14048 standard output.
14049
14050 @item stats_version
14051 Specifies which version of the stats file format to use. Details of
14052 each format are written below.
14053 Default value is 1.
14054
14055 @item stats_add_max
14056 Determines whether the max value is output to the stats log.
14057 Default value is 0.
14058 Requires stats_version >= 2. If this is set and stats_version < 2,
14059 the filter will return an error.
14060 @end table
14061
14062 This filter also supports the @ref{framesync} options.
14063
14064 The file printed if @var{stats_file} is selected, contains a sequence of
14065 key/value pairs of the form @var{key}:@var{value} for each compared
14066 couple of frames.
14067
14068 If a @var{stats_version} greater than 1 is specified, a header line precedes
14069 the list of per-frame-pair stats, with key value pairs following the frame
14070 format with the following parameters:
14071
14072 @table @option
14073 @item psnr_log_version
14074 The version of the log file format. Will match @var{stats_version}.
14075
14076 @item fields
14077 A comma separated list of the per-frame-pair parameters included in
14078 the log.
14079 @end table
14080
14081 A description of each shown per-frame-pair parameter follows:
14082
14083 @table @option
14084 @item n
14085 sequential number of the input frame, starting from 1
14086
14087 @item mse_avg
14088 Mean Square Error pixel-by-pixel average difference of the compared
14089 frames, averaged over all the image components.
14090
14091 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
14092 Mean Square Error pixel-by-pixel average difference of the compared
14093 frames for the component specified by the suffix.
14094
14095 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
14096 Peak Signal to Noise ratio of the compared frames for the component
14097 specified by the suffix.
14098
14099 @item max_avg, max_y, max_u, max_v
14100 Maximum allowed value for each channel, and average over all
14101 channels.
14102 @end table
14103
14104 For example:
14105 @example
14106 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14107 [main][ref] psnr="stats_file=stats.log" [out]
14108 @end example
14109
14110 On this example the input file being processed is compared with the
14111 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
14112 is stored in @file{stats.log}.
14113
14114 @anchor{pullup}
14115 @section pullup
14116
14117 Pulldown reversal (inverse telecine) filter, capable of handling mixed
14118 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
14119 content.
14120
14121 The pullup filter is designed to take advantage of future context in making
14122 its decisions. This filter is stateless in the sense that it does not lock
14123 onto a pattern to follow, but it instead looks forward to the following
14124 fields in order to identify matches and rebuild progressive frames.
14125
14126 To produce content with an even framerate, insert the fps filter after
14127 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
14128 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
14129
14130 The filter accepts the following options:
14131
14132 @table @option
14133 @item jl
14134 @item jr
14135 @item jt
14136 @item jb
14137 These options set the amount of "junk" to ignore at the left, right, top, and
14138 bottom of the image, respectively. Left and right are in units of 8 pixels,
14139 while top and bottom are in units of 2 lines.
14140 The default is 8 pixels on each side.
14141
14142 @item sb
14143 Set the strict breaks. Setting this option to 1 will reduce the chances of
14144 filter generating an occasional mismatched frame, but it may also cause an
14145 excessive number of frames to be dropped during high motion sequences.
14146 Conversely, setting it to -1 will make filter match fields more easily.
14147 This may help processing of video where there is slight blurring between
14148 the fields, but may also cause there to be interlaced frames in the output.
14149 Default value is @code{0}.
14150
14151 @item mp
14152 Set the metric plane to use. It accepts the following values:
14153 @table @samp
14154 @item l
14155 Use luma plane.
14156
14157 @item u
14158 Use chroma blue plane.
14159
14160 @item v
14161 Use chroma red plane.
14162 @end table
14163
14164 This option may be set to use chroma plane instead of the default luma plane
14165 for doing filter's computations. This may improve accuracy on very clean
14166 source material, but more likely will decrease accuracy, especially if there
14167 is chroma noise (rainbow effect) or any grayscale video.
14168 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
14169 load and make pullup usable in realtime on slow machines.
14170 @end table
14171
14172 For best results (without duplicated frames in the output file) it is
14173 necessary to change the output frame rate. For example, to inverse
14174 telecine NTSC input:
14175 @example
14176 ffmpeg -i input -vf pullup -r 24000/1001 ...
14177 @end example
14178
14179 @section qp
14180
14181 Change video quantization parameters (QP).
14182
14183 The filter accepts the following option:
14184
14185 @table @option
14186 @item qp
14187 Set expression for quantization parameter.
14188 @end table
14189
14190 The expression is evaluated through the eval API and can contain, among others,
14191 the following constants:
14192
14193 @table @var
14194 @item known
14195 1 if index is not 129, 0 otherwise.
14196
14197 @item qp
14198 Sequential index starting from -129 to 128.
14199 @end table
14200
14201 @subsection Examples
14202
14203 @itemize
14204 @item
14205 Some equation like:
14206 @example
14207 qp=2+2*sin(PI*qp)
14208 @end example
14209 @end itemize
14210
14211 @section random
14212
14213 Flush video frames from internal cache of frames into a random order.
14214 No frame is discarded.
14215 Inspired by @ref{frei0r} nervous filter.
14216
14217 @table @option
14218 @item frames
14219 Set size in number of frames of internal cache, in range from @code{2} to
14220 @code{512}. Default is @code{30}.
14221
14222 @item seed
14223 Set seed for random number generator, must be an integer included between
14224 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14225 less than @code{0}, the filter will try to use a good random seed on a
14226 best effort basis.
14227 @end table
14228
14229 @section readeia608
14230
14231 Read closed captioning (EIA-608) information from the top lines of a video frame.
14232
14233 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
14234 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
14235 with EIA-608 data (starting from 0). A description of each metadata value follows:
14236
14237 @table @option
14238 @item lavfi.readeia608.X.cc
14239 The two bytes stored as EIA-608 data (printed in hexadecimal).
14240
14241 @item lavfi.readeia608.X.line
14242 The number of the line on which the EIA-608 data was identified and read.
14243 @end table
14244
14245 This filter accepts the following options:
14246
14247 @table @option
14248 @item scan_min
14249 Set the line to start scanning for EIA-608 data. Default is @code{0}.
14250
14251 @item scan_max
14252 Set the line to end scanning for EIA-608 data. Default is @code{29}.
14253
14254 @item mac
14255 Set minimal acceptable amplitude change for sync codes detection.
14256 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
14257
14258 @item spw
14259 Set the ratio of width reserved for sync code detection.
14260 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
14261
14262 @item mhd
14263 Set the max peaks height difference for sync code detection.
14264 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14265
14266 @item mpd
14267 Set max peaks period difference for sync code detection.
14268 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14269
14270 @item msd
14271 Set the first two max start code bits differences.
14272 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
14273
14274 @item bhd
14275 Set the minimum ratio of bits height compared to 3rd start code bit.
14276 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
14277
14278 @item th_w
14279 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
14280
14281 @item th_b
14282 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
14283
14284 @item chp
14285 Enable checking the parity bit. In the event of a parity error, the filter will output
14286 @code{0x00} for that character. Default is false.
14287 @end table
14288
14289 @subsection Examples
14290
14291 @itemize
14292 @item
14293 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
14294 @example
14295 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
14296 @end example
14297 @end itemize
14298
14299 @section readvitc
14300
14301 Read vertical interval timecode (VITC) information from the top lines of a
14302 video frame.
14303
14304 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
14305 timecode value, if a valid timecode has been detected. Further metadata key
14306 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
14307 timecode data has been found or not.
14308
14309 This filter accepts the following options:
14310
14311 @table @option
14312 @item scan_max
14313 Set the maximum number of lines to scan for VITC data. If the value is set to
14314 @code{-1} the full video frame is scanned. Default is @code{45}.
14315
14316 @item thr_b
14317 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
14318 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
14319
14320 @item thr_w
14321 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
14322 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
14323 @end table
14324
14325 @subsection Examples
14326
14327 @itemize
14328 @item
14329 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
14330 draw @code{--:--:--:--} as a placeholder:
14331 @example
14332 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
14333 @end example
14334 @end itemize
14335
14336 @section remap
14337
14338 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
14339
14340 Destination pixel at position (X, Y) will be picked from source (x, y) position
14341 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
14342 value for pixel will be used for destination pixel.
14343
14344 Xmap and Ymap input video streams must be of same dimensions. Output video stream
14345 will have Xmap/Ymap video stream dimensions.
14346 Xmap and Ymap input video streams are 16bit depth, single channel.
14347
14348 @section removegrain
14349
14350 The removegrain filter is a spatial denoiser for progressive video.
14351
14352 @table @option
14353 @item m0
14354 Set mode for the first plane.
14355
14356 @item m1
14357 Set mode for the second plane.
14358
14359 @item m2
14360 Set mode for the third plane.
14361
14362 @item m3
14363 Set mode for the fourth plane.
14364 @end table
14365
14366 Range of mode is from 0 to 24. Description of each mode follows:
14367
14368 @table @var
14369 @item 0
14370 Leave input plane unchanged. Default.
14371
14372 @item 1
14373 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
14374
14375 @item 2
14376 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
14377
14378 @item 3
14379 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
14380
14381 @item 4
14382 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
14383 This is equivalent to a median filter.
14384
14385 @item 5
14386 Line-sensitive clipping giving the minimal change.
14387
14388 @item 6
14389 Line-sensitive clipping, intermediate.
14390
14391 @item 7
14392 Line-sensitive clipping, intermediate.
14393
14394 @item 8
14395 Line-sensitive clipping, intermediate.
14396
14397 @item 9
14398 Line-sensitive clipping on a line where the neighbours pixels are the closest.
14399
14400 @item 10
14401 Replaces the target pixel with the closest neighbour.
14402
14403 @item 11
14404 [1 2 1] horizontal and vertical kernel blur.
14405
14406 @item 12
14407 Same as mode 11.
14408
14409 @item 13
14410 Bob mode, interpolates top field from the line where the neighbours
14411 pixels are the closest.
14412
14413 @item 14
14414 Bob mode, interpolates bottom field from the line where the neighbours
14415 pixels are the closest.
14416
14417 @item 15
14418 Bob mode, interpolates top field. Same as 13 but with a more complicated
14419 interpolation formula.
14420
14421 @item 16
14422 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
14423 interpolation formula.
14424
14425 @item 17
14426 Clips the pixel with the minimum and maximum of respectively the maximum and
14427 minimum of each pair of opposite neighbour pixels.
14428
14429 @item 18
14430 Line-sensitive clipping using opposite neighbours whose greatest distance from
14431 the current pixel is minimal.
14432
14433 @item 19
14434 Replaces the pixel with the average of its 8 neighbours.
14435
14436 @item 20
14437 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
14438
14439 @item 21
14440 Clips pixels using the averages of opposite neighbour.
14441
14442 @item 22
14443 Same as mode 21 but simpler and faster.
14444
14445 @item 23
14446 Small edge and halo removal, but reputed useless.
14447
14448 @item 24
14449 Similar as 23.
14450 @end table
14451
14452 @section removelogo
14453
14454 Suppress a TV station logo, using an image file to determine which
14455 pixels comprise the logo. It works by filling in the pixels that
14456 comprise the logo with neighboring pixels.
14457
14458 The filter accepts the following options:
14459
14460 @table @option
14461 @item filename, f
14462 Set the filter bitmap file, which can be any image format supported by
14463 libavformat. The width and height of the image file must match those of the
14464 video stream being processed.
14465 @end table
14466
14467 Pixels in the provided bitmap image with a value of zero are not
14468 considered part of the logo, non-zero pixels are considered part of
14469 the logo. If you use white (255) for the logo and black (0) for the
14470 rest, you will be safe. For making the filter bitmap, it is
14471 recommended to take a screen capture of a black frame with the logo
14472 visible, and then using a threshold filter followed by the erode
14473 filter once or twice.
14474
14475 If needed, little splotches can be fixed manually. Remember that if
14476 logo pixels are not covered, the filter quality will be much
14477 reduced. Marking too many pixels as part of the logo does not hurt as
14478 much, but it will increase the amount of blurring needed to cover over
14479 the image and will destroy more information than necessary, and extra
14480 pixels will slow things down on a large logo.
14481
14482 @section repeatfields
14483
14484 This filter uses the repeat_field flag from the Video ES headers and hard repeats
14485 fields based on its value.
14486
14487 @section reverse
14488
14489 Reverse a video clip.
14490
14491 Warning: This filter requires memory to buffer the entire clip, so trimming
14492 is suggested.
14493
14494 @subsection Examples
14495
14496 @itemize
14497 @item
14498 Take the first 5 seconds of a clip, and reverse it.
14499 @example
14500 trim=end=5,reverse
14501 @end example
14502 @end itemize
14503
14504 @section rgbashift
14505 Shift R/G/B/A pixels horizontally and/or vertically.
14506
14507 The filter accepts the following options:
14508 @table @option
14509 @item rh
14510 Set amount to shift red horizontally.
14511 @item rv
14512 Set amount to shift red vertically.
14513 @item gh
14514 Set amount to shift green horizontally.
14515 @item gv
14516 Set amount to shift green vertically.
14517 @item bh
14518 Set amount to shift blue horizontally.
14519 @item bv
14520 Set amount to shift blue vertically.
14521 @item ah
14522 Set amount to shift alpha horizontally.
14523 @item av
14524 Set amount to shift alpha vertically.
14525 @item edge
14526 Set edge mode, can be @var{smear}, default, or @var{warp}.
14527 @end table
14528
14529 @section roberts
14530 Apply roberts cross operator to input video stream.
14531
14532 The filter accepts the following option:
14533
14534 @table @option
14535 @item planes
14536 Set which planes will be processed, unprocessed planes will be copied.
14537 By default value 0xf, all planes will be processed.
14538
14539 @item scale
14540 Set value which will be multiplied with filtered result.
14541
14542 @item delta
14543 Set value which will be added to filtered result.
14544 @end table
14545
14546 @section rotate
14547
14548 Rotate video by an arbitrary angle expressed in radians.
14549
14550 The filter accepts the following options:
14551
14552 A description of the optional parameters follows.
14553 @table @option
14554 @item angle, a
14555 Set an expression for the angle by which to rotate the input video
14556 clockwise, expressed as a number of radians. A negative value will
14557 result in a counter-clockwise rotation. By default it is set to "0".
14558
14559 This expression is evaluated for each frame.
14560
14561 @item out_w, ow
14562 Set the output width expression, default value is "iw".
14563 This expression is evaluated just once during configuration.
14564
14565 @item out_h, oh
14566 Set the output height expression, default value is "ih".
14567 This expression is evaluated just once during configuration.
14568
14569 @item bilinear
14570 Enable bilinear interpolation if set to 1, a value of 0 disables
14571 it. Default value is 1.
14572
14573 @item fillcolor, c
14574 Set the color used to fill the output area not covered by the rotated
14575 image. For the general syntax of this option, check the
14576 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
14577 If the special value "none" is selected then no
14578 background is printed (useful for example if the background is never shown).
14579
14580 Default value is "black".
14581 @end table
14582
14583 The expressions for the angle and the output size can contain the
14584 following constants and functions:
14585
14586 @table @option
14587 @item n
14588 sequential number of the input frame, starting from 0. It is always NAN
14589 before the first frame is filtered.
14590
14591 @item t
14592 time in seconds of the input frame, it is set to 0 when the filter is
14593 configured. It is always NAN before the first frame is filtered.
14594
14595 @item hsub
14596 @item vsub
14597 horizontal and vertical chroma subsample values. For example for the
14598 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14599
14600 @item in_w, iw
14601 @item in_h, ih
14602 the input video width and height
14603
14604 @item out_w, ow
14605 @item out_h, oh
14606 the output width and height, that is the size of the padded area as
14607 specified by the @var{width} and @var{height} expressions
14608
14609 @item rotw(a)
14610 @item roth(a)
14611 the minimal width/height required for completely containing the input
14612 video rotated by @var{a} radians.
14613
14614 These are only available when computing the @option{out_w} and
14615 @option{out_h} expressions.
14616 @end table
14617
14618 @subsection Examples
14619
14620 @itemize
14621 @item
14622 Rotate the input by PI/6 radians clockwise:
14623 @example
14624 rotate=PI/6
14625 @end example
14626
14627 @item
14628 Rotate the input by PI/6 radians counter-clockwise:
14629 @example
14630 rotate=-PI/6
14631 @end example
14632
14633 @item
14634 Rotate the input by 45 degrees clockwise:
14635 @example
14636 rotate=45*PI/180
14637 @end example
14638
14639 @item
14640 Apply a constant rotation with period T, starting from an angle of PI/3:
14641 @example
14642 rotate=PI/3+2*PI*t/T
14643 @end example
14644
14645 @item
14646 Make the input video rotation oscillating with a period of T
14647 seconds and an amplitude of A radians:
14648 @example
14649 rotate=A*sin(2*PI/T*t)
14650 @end example
14651
14652 @item
14653 Rotate the video, output size is chosen so that the whole rotating
14654 input video is always completely contained in the output:
14655 @example
14656 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
14657 @end example
14658
14659 @item
14660 Rotate the video, reduce the output size so that no background is ever
14661 shown:
14662 @example
14663 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
14664 @end example
14665 @end itemize
14666
14667 @subsection Commands
14668
14669 The filter supports the following commands:
14670
14671 @table @option
14672 @item a, angle
14673 Set the angle expression.
14674 The command accepts the same syntax of the corresponding option.
14675
14676 If the specified expression is not valid, it is kept at its current
14677 value.
14678 @end table
14679
14680 @section sab
14681
14682 Apply Shape Adaptive Blur.
14683
14684 The filter accepts the following options:
14685
14686 @table @option
14687 @item luma_radius, lr
14688 Set luma blur filter strength, must be a value in range 0.1-4.0, default
14689 value is 1.0. A greater value will result in a more blurred image, and
14690 in slower processing.
14691
14692 @item luma_pre_filter_radius, lpfr
14693 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
14694 value is 1.0.
14695
14696 @item luma_strength, ls
14697 Set luma maximum difference between pixels to still be considered, must
14698 be a value in the 0.1-100.0 range, default value is 1.0.
14699
14700 @item chroma_radius, cr
14701 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
14702 greater value will result in a more blurred image, and in slower
14703 processing.
14704
14705 @item chroma_pre_filter_radius, cpfr
14706 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
14707
14708 @item chroma_strength, cs
14709 Set chroma maximum difference between pixels to still be considered,
14710 must be a value in the -0.9-100.0 range.
14711 @end table
14712
14713 Each chroma option value, if not explicitly specified, is set to the
14714 corresponding luma option value.
14715
14716 @anchor{scale}
14717 @section scale
14718
14719 Scale (resize) the input video, using the libswscale library.
14720
14721 The scale filter forces the output display aspect ratio to be the same
14722 of the input, by changing the output sample aspect ratio.
14723
14724 If the input image format is different from the format requested by
14725 the next filter, the scale filter will convert the input to the
14726 requested format.
14727
14728 @subsection Options
14729 The filter accepts the following options, or any of the options
14730 supported by the libswscale scaler.
14731
14732 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
14733 the complete list of scaler options.
14734
14735 @table @option
14736 @item width, w
14737 @item height, h
14738 Set the output video dimension expression. Default value is the input
14739 dimension.
14740
14741 If the @var{width} or @var{w} value is 0, the input width is used for
14742 the output. If the @var{height} or @var{h} value is 0, the input height
14743 is used for the output.
14744
14745 If one and only one of the values is -n with n >= 1, the scale filter
14746 will use a value that maintains the aspect ratio of the input image,
14747 calculated from the other specified dimension. After that it will,
14748 however, make sure that the calculated dimension is divisible by n and
14749 adjust the value if necessary.
14750
14751 If both values are -n with n >= 1, the behavior will be identical to
14752 both values being set to 0 as previously detailed.
14753
14754 See below for the list of accepted constants for use in the dimension
14755 expression.
14756
14757 @item eval
14758 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
14759
14760 @table @samp
14761 @item init
14762 Only evaluate expressions once during the filter initialization or when a command is processed.
14763
14764 @item frame
14765 Evaluate expressions for each incoming frame.
14766
14767 @end table
14768
14769 Default value is @samp{init}.
14770
14771
14772 @item interl
14773 Set the interlacing mode. It accepts the following values:
14774
14775 @table @samp
14776 @item 1
14777 Force interlaced aware scaling.
14778
14779 @item 0
14780 Do not apply interlaced scaling.
14781
14782 @item -1
14783 Select interlaced aware scaling depending on whether the source frames
14784 are flagged as interlaced or not.
14785 @end table
14786
14787 Default value is @samp{0}.
14788
14789 @item flags
14790 Set libswscale scaling flags. See
14791 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
14792 complete list of values. If not explicitly specified the filter applies
14793 the default flags.
14794
14795
14796 @item param0, param1
14797 Set libswscale input parameters for scaling algorithms that need them. See
14798 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
14799 complete documentation. If not explicitly specified the filter applies
14800 empty parameters.
14801
14802
14803
14804 @item size, s
14805 Set the video size. For the syntax of this option, check the
14806 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14807
14808 @item in_color_matrix
14809 @item out_color_matrix
14810 Set in/output YCbCr color space type.
14811
14812 This allows the autodetected value to be overridden as well as allows forcing
14813 a specific value used for the output and encoder.
14814
14815 If not specified, the color space type depends on the pixel format.
14816
14817 Possible values:
14818
14819 @table @samp
14820 @item auto
14821 Choose automatically.
14822
14823 @item bt709
14824 Format conforming to International Telecommunication Union (ITU)
14825 Recommendation BT.709.
14826
14827 @item fcc
14828 Set color space conforming to the United States Federal Communications
14829 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
14830
14831 @item bt601
14832 Set color space conforming to:
14833
14834 @itemize
14835 @item
14836 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
14837
14838 @item
14839 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
14840
14841 @item
14842 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
14843
14844 @end itemize
14845
14846 @item smpte240m
14847 Set color space conforming to SMPTE ST 240:1999.
14848 @end table
14849
14850 @item in_range
14851 @item out_range
14852 Set in/output YCbCr sample range.
14853
14854 This allows the autodetected value to be overridden as well as allows forcing
14855 a specific value used for the output and encoder. If not specified, the
14856 range depends on the pixel format. Possible values:
14857
14858 @table @samp
14859 @item auto/unknown
14860 Choose automatically.
14861
14862 @item jpeg/full/pc
14863 Set full range (0-255 in case of 8-bit luma).
14864
14865 @item mpeg/limited/tv
14866 Set "MPEG" range (16-235 in case of 8-bit luma).
14867 @end table
14868
14869 @item force_original_aspect_ratio
14870 Enable decreasing or increasing output video width or height if necessary to
14871 keep the original aspect ratio. Possible values:
14872
14873 @table @samp
14874 @item disable
14875 Scale the video as specified and disable this feature.
14876
14877 @item decrease
14878 The output video dimensions will automatically be decreased if needed.
14879
14880 @item increase
14881 The output video dimensions will automatically be increased if needed.
14882
14883 @end table
14884
14885 One useful instance of this option is that when you know a specific device's
14886 maximum allowed resolution, you can use this to limit the output video to
14887 that, while retaining the aspect ratio. For example, device A allows
14888 1280x720 playback, and your video is 1920x800. Using this option (set it to
14889 decrease) and specifying 1280x720 to the command line makes the output
14890 1280x533.
14891
14892 Please note that this is a different thing than specifying -1 for @option{w}
14893 or @option{h}, you still need to specify the output resolution for this option
14894 to work.
14895
14896 @end table
14897
14898 The values of the @option{w} and @option{h} options are expressions
14899 containing the following constants:
14900
14901 @table @var
14902 @item in_w
14903 @item in_h
14904 The input width and height
14905
14906 @item iw
14907 @item ih
14908 These are the same as @var{in_w} and @var{in_h}.
14909
14910 @item out_w
14911 @item out_h
14912 The output (scaled) width and height
14913
14914 @item ow
14915 @item oh
14916 These are the same as @var{out_w} and @var{out_h}
14917
14918 @item a
14919 The same as @var{iw} / @var{ih}
14920
14921 @item sar
14922 input sample aspect ratio
14923
14924 @item dar
14925 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14926
14927 @item hsub
14928 @item vsub
14929 horizontal and vertical input chroma subsample values. For example for the
14930 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14931
14932 @item ohsub
14933 @item ovsub
14934 horizontal and vertical output chroma subsample values. For example for the
14935 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14936 @end table
14937
14938 @subsection Examples
14939
14940 @itemize
14941 @item
14942 Scale the input video to a size of 200x100
14943 @example
14944 scale=w=200:h=100
14945 @end example
14946
14947 This is equivalent to:
14948 @example
14949 scale=200:100
14950 @end example
14951
14952 or:
14953 @example
14954 scale=200x100
14955 @end example
14956
14957 @item
14958 Specify a size abbreviation for the output size:
14959 @example
14960 scale=qcif
14961 @end example
14962
14963 which can also be written as:
14964 @example
14965 scale=size=qcif
14966 @end example
14967
14968 @item
14969 Scale the input to 2x:
14970 @example
14971 scale=w=2*iw:h=2*ih
14972 @end example
14973
14974 @item
14975 The above is the same as:
14976 @example
14977 scale=2*in_w:2*in_h
14978 @end example
14979
14980 @item
14981 Scale the input to 2x with forced interlaced scaling:
14982 @example
14983 scale=2*iw:2*ih:interl=1
14984 @end example
14985
14986 @item
14987 Scale the input to half size:
14988 @example
14989 scale=w=iw/2:h=ih/2
14990 @end example
14991
14992 @item
14993 Increase the width, and set the height to the same size:
14994 @example
14995 scale=3/2*iw:ow
14996 @end example
14997
14998 @item
14999 Seek Greek harmony:
15000 @example
15001 scale=iw:1/PHI*iw
15002 scale=ih*PHI:ih
15003 @end example
15004
15005 @item
15006 Increase the height, and set the width to 3/2 of the height:
15007 @example
15008 scale=w=3/2*oh:h=3/5*ih
15009 @end example
15010
15011 @item
15012 Increase the size, making the size a multiple of the chroma
15013 subsample values:
15014 @example
15015 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
15016 @end example
15017
15018 @item
15019 Increase the width to a maximum of 500 pixels,
15020 keeping the same aspect ratio as the input:
15021 @example
15022 scale=w='min(500\, iw*3/2):h=-1'
15023 @end example
15024
15025 @item
15026 Make pixels square by combining scale and setsar:
15027 @example
15028 scale='trunc(ih*dar):ih',setsar=1/1
15029 @end example
15030
15031 @item
15032 Make pixels square by combining scale and setsar,
15033 making sure the resulting resolution is even (required by some codecs):
15034 @example
15035 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
15036 @end example
15037 @end itemize
15038
15039 @subsection Commands
15040
15041 This filter supports the following commands:
15042 @table @option
15043 @item width, w
15044 @item height, h
15045 Set the output video dimension expression.
15046 The command accepts the same syntax of the corresponding option.
15047
15048 If the specified expression is not valid, it is kept at its current
15049 value.
15050 @end table
15051
15052 @section scale_npp
15053
15054 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
15055 format conversion on CUDA video frames. Setting the output width and height
15056 works in the same way as for the @var{scale} filter.
15057
15058 The following additional options are accepted:
15059 @table @option
15060 @item format
15061 The pixel format of the output CUDA frames. If set to the string "same" (the
15062 default), the input format will be kept. Note that automatic format negotiation
15063 and conversion is not yet supported for hardware frames
15064
15065 @item interp_algo
15066 The interpolation algorithm used for resizing. One of the following:
15067 @table @option
15068 @item nn
15069 Nearest neighbour.
15070
15071 @item linear
15072 @item cubic
15073 @item cubic2p_bspline
15074 2-parameter cubic (B=1, C=0)
15075
15076 @item cubic2p_catmullrom
15077 2-parameter cubic (B=0, C=1/2)
15078
15079 @item cubic2p_b05c03
15080 2-parameter cubic (B=1/2, C=3/10)
15081
15082 @item super
15083 Supersampling
15084
15085 @item lanczos
15086 @end table
15087
15088 @end table
15089
15090 @section scale2ref
15091
15092 Scale (resize) the input video, based on a reference video.
15093
15094 See the scale filter for available options, scale2ref supports the same but
15095 uses the reference video instead of the main input as basis. scale2ref also
15096 supports the following additional constants for the @option{w} and
15097 @option{h} options:
15098
15099 @table @var
15100 @item main_w
15101 @item main_h
15102 The main input video's width and height
15103
15104 @item main_a
15105 The same as @var{main_w} / @var{main_h}
15106
15107 @item main_sar
15108 The main input video's sample aspect ratio
15109
15110 @item main_dar, mdar
15111 The main input video's display aspect ratio. Calculated from
15112 @code{(main_w / main_h) * main_sar}.
15113
15114 @item main_hsub
15115 @item main_vsub
15116 The main input video's horizontal and vertical chroma subsample values.
15117 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
15118 is 1.
15119 @end table
15120
15121 @subsection Examples
15122
15123 @itemize
15124 @item
15125 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
15126 @example
15127 'scale2ref[b][a];[a][b]overlay'
15128 @end example
15129 @end itemize
15130
15131 @anchor{selectivecolor}
15132 @section selectivecolor
15133
15134 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
15135 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
15136 by the "purity" of the color (that is, how saturated it already is).
15137
15138 This filter is similar to the Adobe Photoshop Selective Color tool.
15139
15140 The filter accepts the following options:
15141
15142 @table @option
15143 @item correction_method
15144 Select color correction method.
15145
15146 Available values are:
15147 @table @samp
15148 @item absolute
15149 Specified adjustments are applied "as-is" (added/subtracted to original pixel
15150 component value).
15151 @item relative
15152 Specified adjustments are relative to the original component value.
15153 @end table
15154 Default is @code{absolute}.
15155 @item reds
15156 Adjustments for red pixels (pixels where the red component is the maximum)
15157 @item yellows
15158 Adjustments for yellow pixels (pixels where the blue component is the minimum)
15159 @item greens
15160 Adjustments for green pixels (pixels where the green component is the maximum)
15161 @item cyans
15162 Adjustments for cyan pixels (pixels where the red component is the minimum)
15163 @item blues
15164 Adjustments for blue pixels (pixels where the blue component is the maximum)
15165 @item magentas
15166 Adjustments for magenta pixels (pixels where the green component is the minimum)
15167 @item whites
15168 Adjustments for white pixels (pixels where all components are greater than 128)
15169 @item neutrals
15170 Adjustments for all pixels except pure black and pure white
15171 @item blacks
15172 Adjustments for black pixels (pixels where all components are lesser than 128)
15173 @item psfile
15174 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
15175 @end table
15176
15177 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
15178 4 space separated floating point adjustment values in the [-1,1] range,
15179 respectively to adjust the amount of cyan, magenta, yellow and black for the
15180 pixels of its range.
15181
15182 @subsection Examples
15183
15184 @itemize
15185 @item
15186 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
15187 increase magenta by 27% in blue areas:
15188 @example
15189 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
15190 @end example
15191
15192 @item
15193 Use a Photoshop selective color preset:
15194 @example
15195 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
15196 @end example
15197 @end itemize
15198
15199 @anchor{separatefields}
15200 @section separatefields
15201
15202 The @code{separatefields} takes a frame-based video input and splits
15203 each frame into its components fields, producing a new half height clip
15204 with twice the frame rate and twice the frame count.
15205
15206 This filter use field-dominance information in frame to decide which
15207 of each pair of fields to place first in the output.
15208 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
15209
15210 @section setdar, setsar
15211
15212 The @code{setdar} filter sets the Display Aspect Ratio for the filter
15213 output video.
15214
15215 This is done by changing the specified Sample (aka Pixel) Aspect
15216 Ratio, according to the following equation:
15217 @example
15218 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
15219 @end example
15220
15221 Keep in mind that the @code{setdar} filter does not modify the pixel
15222 dimensions of the video frame. Also, the display aspect ratio set by
15223 this filter may be changed by later filters in the filterchain,
15224 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
15225 applied.
15226
15227 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
15228 the filter output video.
15229
15230 Note that as a consequence of the application of this filter, the
15231 output display aspect ratio will change according to the equation
15232 above.
15233
15234 Keep in mind that the sample aspect ratio set by the @code{setsar}
15235 filter may be changed by later filters in the filterchain, e.g. if
15236 another "setsar" or a "setdar" filter is applied.
15237
15238 It accepts the following parameters:
15239
15240 @table @option
15241 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
15242 Set the aspect ratio used by the filter.
15243
15244 The parameter can be a floating point number string, an expression, or
15245 a string of the form @var{num}:@var{den}, where @var{num} and
15246 @var{den} are the numerator and denominator of the aspect ratio. If
15247 the parameter is not specified, it is assumed the value "0".
15248 In case the form "@var{num}:@var{den}" is used, the @code{:} character
15249 should be escaped.
15250
15251 @item max
15252 Set the maximum integer value to use for expressing numerator and
15253 denominator when reducing the expressed aspect ratio to a rational.
15254 Default value is @code{100}.
15255
15256 @end table
15257
15258 The parameter @var{sar} is an expression containing
15259 the following constants:
15260
15261 @table @option
15262 @item E, PI, PHI
15263 These are approximated values for the mathematical constants e
15264 (Euler's number), pi (Greek pi), and phi (the golden ratio).
15265
15266 @item w, h
15267 The input width and height.
15268
15269 @item a
15270 These are the same as @var{w} / @var{h}.
15271
15272 @item sar
15273 The input sample aspect ratio.
15274
15275 @item dar
15276 The input display aspect ratio. It is the same as
15277 (@var{w} / @var{h}) * @var{sar}.
15278
15279 @item hsub, vsub
15280 Horizontal and vertical chroma subsample values. For example, for the
15281 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15282 @end table
15283
15284 @subsection Examples
15285
15286 @itemize
15287
15288 @item
15289 To change the display aspect ratio to 16:9, specify one of the following:
15290 @example
15291 setdar=dar=1.77777
15292 setdar=dar=16/9
15293 @end example
15294
15295 @item
15296 To change the sample aspect ratio to 10:11, specify:
15297 @example
15298 setsar=sar=10/11
15299 @end example
15300
15301 @item
15302 To set a display aspect ratio of 16:9, and specify a maximum integer value of
15303 1000 in the aspect ratio reduction, use the command:
15304 @example
15305 setdar=ratio=16/9:max=1000
15306 @end example
15307
15308 @end itemize
15309
15310 @anchor{setfield}
15311 @section setfield
15312
15313 Force field for the output video frame.
15314
15315 The @code{setfield} filter marks the interlace type field for the
15316 output frames. It does not change the input frame, but only sets the
15317 corresponding property, which affects how the frame is treated by
15318 following filters (e.g. @code{fieldorder} or @code{yadif}).
15319
15320 The filter accepts the following options:
15321
15322 @table @option
15323
15324 @item mode
15325 Available values are:
15326
15327 @table @samp
15328 @item auto
15329 Keep the same field property.
15330
15331 @item bff
15332 Mark the frame as bottom-field-first.
15333
15334 @item tff
15335 Mark the frame as top-field-first.
15336
15337 @item prog
15338 Mark the frame as progressive.
15339 @end table
15340 @end table
15341
15342 @anchor{setparams}
15343 @section setparams
15344
15345 Force frame parameter for the output video frame.
15346
15347 The @code{setparams} filter marks interlace and color range for the
15348 output frames. It does not change the input frame, but only sets the
15349 corresponding property, which affects how the frame is treated by
15350 filters/encoders.
15351
15352 @table @option
15353 @item field_mode
15354 Available values are:
15355
15356 @table @samp
15357 @item auto
15358 Keep the same field property (default).
15359
15360 @item bff
15361 Mark the frame as bottom-field-first.
15362
15363 @item tff
15364 Mark the frame as top-field-first.
15365
15366 @item prog
15367 Mark the frame as progressive.
15368 @end table
15369
15370 @item range
15371 Available values are:
15372
15373 @table @samp
15374 @item auto
15375 Keep the same color range property (default).
15376
15377 @item unspecified, unknown
15378 Mark the frame as unspecified color range.
15379
15380 @item limited, tv, mpeg
15381 Mark the frame as limited range.
15382
15383 @item full, pc, jpeg
15384 Mark the frame as full range.
15385 @end table
15386
15387 @item color_primaries
15388 Set the color primaries.
15389 Available values are:
15390
15391 @table @samp
15392 @item auto
15393 Keep the same color primaries property (default).
15394
15395 @item bt709
15396 @item unknown
15397 @item bt470m
15398 @item bt470bg
15399 @item smpte170m
15400 @item smpte240m
15401 @item film
15402 @item bt2020
15403 @item smpte428
15404 @item smpte431
15405 @item smpte432
15406 @item jedec-p22
15407 @end table
15408
15409 @item color_trc
15410 Set the color transfer.
15411 Available values are:
15412
15413 @table @samp
15414 @item auto
15415 Keep the same color trc property (default).
15416
15417 @item bt709
15418 @item unknown
15419 @item bt470m
15420 @item bt470bg
15421 @item smpte170m
15422 @item smpte240m
15423 @item linear
15424 @item log100
15425 @item log316
15426 @item iec61966-2-4
15427 @item bt1361e
15428 @item iec61966-2-1
15429 @item bt2020-10
15430 @item bt2020-12
15431 @item smpte2084
15432 @item smpte428
15433 @item arib-std-b67
15434 @end table
15435
15436 @item colorspace
15437 Set the colorspace.
15438 Available values are:
15439
15440 @table @samp
15441 @item auto
15442 Keep the same colorspace property (default).
15443
15444 @item gbr
15445 @item bt709
15446 @item unknown
15447 @item fcc
15448 @item bt470bg
15449 @item smpte170m
15450 @item smpte240m
15451 @item ycgco
15452 @item bt2020nc
15453 @item bt2020c
15454 @item smpte2085
15455 @item chroma-derived-nc
15456 @item chroma-derived-c
15457 @item ictcp
15458 @end table
15459 @end table
15460
15461 @section showinfo
15462
15463 Show a line containing various information for each input video frame.
15464 The input video is not modified.
15465
15466 This filter supports the following options:
15467
15468 @table @option
15469 @item checksum
15470 Calculate checksums of each plane. By default enabled.
15471 @end table
15472
15473 The shown line contains a sequence of key/value pairs of the form
15474 @var{key}:@var{value}.
15475
15476 The following values are shown in the output:
15477
15478 @table @option
15479 @item n
15480 The (sequential) number of the input frame, starting from 0.
15481
15482 @item pts
15483 The Presentation TimeStamp of the input frame, expressed as a number of
15484 time base units. The time base unit depends on the filter input pad.
15485
15486 @item pts_time
15487 The Presentation TimeStamp of the input frame, expressed as a number of
15488 seconds.
15489
15490 @item pos
15491 The position of the frame in the input stream, or -1 if this information is
15492 unavailable and/or meaningless (for example in case of synthetic video).
15493
15494 @item fmt
15495 The pixel format name.
15496
15497 @item sar
15498 The sample aspect ratio of the input frame, expressed in the form
15499 @var{num}/@var{den}.
15500
15501 @item s
15502 The size of the input frame. For the syntax of this option, check the
15503 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15504
15505 @item i
15506 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
15507 for bottom field first).
15508
15509 @item iskey
15510 This is 1 if the frame is a key frame, 0 otherwise.
15511
15512 @item type
15513 The picture type of the input frame ("I" for an I-frame, "P" for a
15514 P-frame, "B" for a B-frame, or "?" for an unknown type).
15515 Also refer to the documentation of the @code{AVPictureType} enum and of
15516 the @code{av_get_picture_type_char} function defined in
15517 @file{libavutil/avutil.h}.
15518
15519 @item checksum
15520 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
15521
15522 @item plane_checksum
15523 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
15524 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
15525 @end table
15526
15527 @section showpalette
15528
15529 Displays the 256 colors palette of each frame. This filter is only relevant for
15530 @var{pal8} pixel format frames.
15531
15532 It accepts the following option:
15533
15534 @table @option
15535 @item s
15536 Set the size of the box used to represent one palette color entry. Default is
15537 @code{30} (for a @code{30x30} pixel box).
15538 @end table
15539
15540 @section shuffleframes
15541
15542 Reorder and/or duplicate and/or drop video frames.
15543
15544 It accepts the following parameters:
15545
15546 @table @option
15547 @item mapping
15548 Set the destination indexes of input frames.
15549 This is space or '|' separated list of indexes that maps input frames to output
15550 frames. Number of indexes also sets maximal value that each index may have.
15551 '-1' index have special meaning and that is to drop frame.
15552 @end table
15553
15554 The first frame has the index 0. The default is to keep the input unchanged.
15555
15556 @subsection Examples
15557
15558 @itemize
15559 @item
15560 Swap second and third frame of every three frames of the input:
15561 @example
15562 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
15563 @end example
15564
15565 @item
15566 Swap 10th and 1st frame of every ten frames of the input:
15567 @example
15568 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
15569 @end example
15570 @end itemize
15571
15572 @section shuffleplanes
15573
15574 Reorder and/or duplicate video planes.
15575
15576 It accepts the following parameters:
15577
15578 @table @option
15579
15580 @item map0
15581 The index of the input plane to be used as the first output plane.
15582
15583 @item map1
15584 The index of the input plane to be used as the second output plane.
15585
15586 @item map2
15587 The index of the input plane to be used as the third output plane.
15588
15589 @item map3
15590 The index of the input plane to be used as the fourth output plane.
15591
15592 @end table
15593
15594 The first plane has the index 0. The default is to keep the input unchanged.
15595
15596 @subsection Examples
15597
15598 @itemize
15599 @item
15600 Swap the second and third planes of the input:
15601 @example
15602 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
15603 @end example
15604 @end itemize
15605
15606 @anchor{signalstats}
15607 @section signalstats
15608 Evaluate various visual metrics that assist in determining issues associated
15609 with the digitization of analog video media.
15610
15611 By default the filter will log these metadata values:
15612
15613 @table @option
15614 @item YMIN
15615 Display the minimal Y value contained within the input frame. Expressed in
15616 range of [0-255].
15617
15618 @item YLOW
15619 Display the Y value at the 10% percentile within the input frame. Expressed in
15620 range of [0-255].
15621
15622 @item YAVG
15623 Display the average Y value within the input frame. Expressed in range of
15624 [0-255].
15625
15626 @item YHIGH
15627 Display the Y value at the 90% percentile within the input frame. Expressed in
15628 range of [0-255].
15629
15630 @item YMAX
15631 Display the maximum Y value contained within the input frame. Expressed in
15632 range of [0-255].
15633
15634 @item UMIN
15635 Display the minimal U value contained within the input frame. Expressed in
15636 range of [0-255].
15637
15638 @item ULOW
15639 Display the U value at the 10% percentile within the input frame. Expressed in
15640 range of [0-255].
15641
15642 @item UAVG
15643 Display the average U value within the input frame. Expressed in range of
15644 [0-255].
15645
15646 @item UHIGH
15647 Display the U value at the 90% percentile within the input frame. Expressed in
15648 range of [0-255].
15649
15650 @item UMAX
15651 Display the maximum U value contained within the input frame. Expressed in
15652 range of [0-255].
15653
15654 @item VMIN
15655 Display the minimal V value contained within the input frame. Expressed in
15656 range of [0-255].
15657
15658 @item VLOW
15659 Display the V value at the 10% percentile within the input frame. Expressed in
15660 range of [0-255].
15661
15662 @item VAVG
15663 Display the average V value within the input frame. Expressed in range of
15664 [0-255].
15665
15666 @item VHIGH
15667 Display the V value at the 90% percentile within the input frame. Expressed in
15668 range of [0-255].
15669
15670 @item VMAX
15671 Display the maximum V value contained within the input frame. Expressed in
15672 range of [0-255].
15673
15674 @item SATMIN
15675 Display the minimal saturation value contained within the input frame.
15676 Expressed in range of [0-~181.02].
15677
15678 @item SATLOW
15679 Display the saturation value at the 10% percentile within the input frame.
15680 Expressed in range of [0-~181.02].
15681
15682 @item SATAVG
15683 Display the average saturation value within the input frame. Expressed in range
15684 of [0-~181.02].
15685
15686 @item SATHIGH
15687 Display the saturation value at the 90% percentile within the input frame.
15688 Expressed in range of [0-~181.02].
15689
15690 @item SATMAX
15691 Display the maximum saturation value contained within the input frame.
15692 Expressed in range of [0-~181.02].
15693
15694 @item HUEMED
15695 Display the median value for hue within the input frame. Expressed in range of
15696 [0-360].
15697
15698 @item HUEAVG
15699 Display the average value for hue within the input frame. Expressed in range of
15700 [0-360].
15701
15702 @item YDIF
15703 Display the average of sample value difference between all values of the Y
15704 plane in the current frame and corresponding values of the previous input frame.
15705 Expressed in range of [0-255].
15706
15707 @item UDIF
15708 Display the average of sample value difference between all values of the U
15709 plane in the current frame and corresponding values of the previous input frame.
15710 Expressed in range of [0-255].
15711
15712 @item VDIF
15713 Display the average of sample value difference between all values of the V
15714 plane in the current frame and corresponding values of the previous input frame.
15715 Expressed in range of [0-255].
15716
15717 @item YBITDEPTH
15718 Display bit depth of Y plane in current frame.
15719 Expressed in range of [0-16].
15720
15721 @item UBITDEPTH
15722 Display bit depth of U plane in current frame.
15723 Expressed in range of [0-16].
15724
15725 @item VBITDEPTH
15726 Display bit depth of V plane in current frame.
15727 Expressed in range of [0-16].
15728 @end table
15729
15730 The filter accepts the following options:
15731
15732 @table @option
15733 @item stat
15734 @item out
15735
15736 @option{stat} specify an additional form of image analysis.
15737 @option{out} output video with the specified type of pixel highlighted.
15738
15739 Both options accept the following values:
15740
15741 @table @samp
15742 @item tout
15743 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
15744 unlike the neighboring pixels of the same field. Examples of temporal outliers
15745 include the results of video dropouts, head clogs, or tape tracking issues.
15746
15747 @item vrep
15748 Identify @var{vertical line repetition}. Vertical line repetition includes
15749 similar rows of pixels within a frame. In born-digital video vertical line
15750 repetition is common, but this pattern is uncommon in video digitized from an
15751 analog source. When it occurs in video that results from the digitization of an
15752 analog source it can indicate concealment from a dropout compensator.
15753
15754 @item brng
15755 Identify pixels that fall outside of legal broadcast range.
15756 @end table
15757
15758 @item color, c
15759 Set the highlight color for the @option{out} option. The default color is
15760 yellow.
15761 @end table
15762
15763 @subsection Examples
15764
15765 @itemize
15766 @item
15767 Output data of various video metrics:
15768 @example
15769 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
15770 @end example
15771
15772 @item
15773 Output specific data about the minimum and maximum values of the Y plane per frame:
15774 @example
15775 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
15776 @end example
15777
15778 @item
15779 Playback video while highlighting pixels that are outside of broadcast range in red.
15780 @example
15781 ffplay example.mov -vf signalstats="out=brng:color=red"
15782 @end example
15783
15784 @item
15785 Playback video with signalstats metadata drawn over the frame.
15786 @example
15787 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
15788 @end example
15789
15790 The contents of signalstat_drawtext.txt used in the command are:
15791 @example
15792 time %@{pts:hms@}
15793 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
15794 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
15795 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
15796 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
15797
15798 @end example
15799 @end itemize
15800
15801 @anchor{signature}
15802 @section signature
15803
15804 Calculates the MPEG-7 Video Signature. The filter can handle more than one
15805 input. In this case the matching between the inputs can be calculated additionally.
15806 The filter always passes through the first input. The signature of each stream can
15807 be written into a file.
15808
15809 It accepts the following options:
15810
15811 @table @option
15812 @item detectmode
15813 Enable or disable the matching process.
15814
15815 Available values are:
15816
15817 @table @samp
15818 @item off
15819 Disable the calculation of a matching (default).
15820 @item full
15821 Calculate the matching for the whole video and output whether the whole video
15822 matches or only parts.
15823 @item fast
15824 Calculate only until a matching is found or the video ends. Should be faster in
15825 some cases.
15826 @end table
15827
15828 @item nb_inputs
15829 Set the number of inputs. The option value must be a non negative integer.
15830 Default value is 1.
15831
15832 @item filename
15833 Set the path to which the output is written. If there is more than one input,
15834 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
15835 integer), that will be replaced with the input number. If no filename is
15836 specified, no output will be written. This is the default.
15837
15838 @item format
15839 Choose the output format.
15840
15841 Available values are:
15842
15843 @table @samp
15844 @item binary
15845 Use the specified binary representation (default).
15846 @item xml
15847 Use the specified xml representation.
15848 @end table
15849
15850 @item th_d
15851 Set threshold to detect one word as similar. The option value must be an integer
15852 greater than zero. The default value is 9000.
15853
15854 @item th_dc
15855 Set threshold to detect all words as similar. The option value must be an integer
15856 greater than zero. The default value is 60000.
15857
15858 @item th_xh
15859 Set threshold to detect frames as similar. The option value must be an integer
15860 greater than zero. The default value is 116.
15861
15862 @item th_di
15863 Set the minimum length of a sequence in frames to recognize it as matching
15864 sequence. The option value must be a non negative integer value.
15865 The default value is 0.
15866
15867 @item th_it
15868 Set the minimum relation, that matching frames to all frames must have.
15869 The option value must be a double value between 0 and 1. The default value is 0.5.
15870 @end table
15871
15872 @subsection Examples
15873
15874 @itemize
15875 @item
15876 To calculate the signature of an input video and store it in signature.bin:
15877 @example
15878 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
15879 @end example
15880
15881 @item
15882 To detect whether two videos match and store the signatures in XML format in
15883 signature0.xml and signature1.xml:
15884 @example
15885 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 -
15886 @end example
15887
15888 @end itemize
15889
15890 @anchor{smartblur}
15891 @section smartblur
15892
15893 Blur the input video without impacting the outlines.
15894
15895 It accepts the following options:
15896
15897 @table @option
15898 @item luma_radius, lr
15899 Set the luma radius. The option value must be a float number in
15900 the range [0.1,5.0] that specifies the variance of the gaussian filter
15901 used to blur the image (slower if larger). Default value is 1.0.
15902
15903 @item luma_strength, ls
15904 Set the luma strength. The option value must be a float number
15905 in the range [-1.0,1.0] that configures the blurring. A value included
15906 in [0.0,1.0] will blur the image whereas a value included in
15907 [-1.0,0.0] will sharpen the image. Default value is 1.0.
15908
15909 @item luma_threshold, lt
15910 Set the luma threshold used as a coefficient to determine
15911 whether a pixel should be blurred or not. The option value must be an
15912 integer in the range [-30,30]. A value of 0 will filter all the image,
15913 a value included in [0,30] will filter flat areas and a value included
15914 in [-30,0] will filter edges. Default value is 0.
15915
15916 @item chroma_radius, cr
15917 Set the chroma radius. The option value must be a float number in
15918 the range [0.1,5.0] that specifies the variance of the gaussian filter
15919 used to blur the image (slower if larger). Default value is @option{luma_radius}.
15920
15921 @item chroma_strength, cs
15922 Set the chroma strength. The option value must be a float number
15923 in the range [-1.0,1.0] that configures the blurring. A value included
15924 in [0.0,1.0] will blur the image whereas a value included in
15925 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
15926
15927 @item chroma_threshold, ct
15928 Set the chroma threshold used as a coefficient to determine
15929 whether a pixel should be blurred or not. The option value must be an
15930 integer in the range [-30,30]. A value of 0 will filter all the image,
15931 a value included in [0,30] will filter flat areas and a value included
15932 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
15933 @end table
15934
15935 If a chroma option is not explicitly set, the corresponding luma value
15936 is set.
15937
15938 @section ssim
15939
15940 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
15941
15942 This filter takes in input two input videos, the first input is
15943 considered the "main" source and is passed unchanged to the
15944 output. The second input is used as a "reference" video for computing
15945 the SSIM.
15946
15947 Both video inputs must have the same resolution and pixel format for
15948 this filter to work correctly. Also it assumes that both inputs
15949 have the same number of frames, which are compared one by one.
15950
15951 The filter stores the calculated SSIM of each frame.
15952
15953 The description of the accepted parameters follows.
15954
15955 @table @option
15956 @item stats_file, f
15957 If specified the filter will use the named file to save the SSIM of
15958 each individual frame. When filename equals "-" the data is sent to
15959 standard output.
15960 @end table
15961
15962 The file printed if @var{stats_file} is selected, contains a sequence of
15963 key/value pairs of the form @var{key}:@var{value} for each compared
15964 couple of frames.
15965
15966 A description of each shown parameter follows:
15967
15968 @table @option
15969 @item n
15970 sequential number of the input frame, starting from 1
15971
15972 @item Y, U, V, R, G, B
15973 SSIM of the compared frames for the component specified by the suffix.
15974
15975 @item All
15976 SSIM of the compared frames for the whole frame.
15977
15978 @item dB
15979 Same as above but in dB representation.
15980 @end table
15981
15982 This filter also supports the @ref{framesync} options.
15983
15984 For example:
15985 @example
15986 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15987 [main][ref] ssim="stats_file=stats.log" [out]
15988 @end example
15989
15990 On this example the input file being processed is compared with the
15991 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
15992 is stored in @file{stats.log}.
15993
15994 Another example with both psnr and ssim at same time:
15995 @example
15996 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
15997 @end example
15998
15999 @section stereo3d
16000
16001 Convert between different stereoscopic image formats.
16002
16003 The filters accept the following options:
16004
16005 @table @option
16006 @item in
16007 Set stereoscopic image format of input.
16008
16009 Available values for input image formats are:
16010 @table @samp
16011 @item sbsl
16012 side by side parallel (left eye left, right eye right)
16013
16014 @item sbsr
16015 side by side crosseye (right eye left, left eye right)
16016
16017 @item sbs2l
16018 side by side parallel with half width resolution
16019 (left eye left, right eye right)
16020
16021 @item sbs2r
16022 side by side crosseye with half width resolution
16023 (right eye left, left eye right)
16024
16025 @item abl
16026 above-below (left eye above, right eye below)
16027
16028 @item abr
16029 above-below (right eye above, left eye below)
16030
16031 @item ab2l
16032 above-below with half height resolution
16033 (left eye above, right eye below)
16034
16035 @item ab2r
16036 above-below with half height resolution
16037 (right eye above, left eye below)
16038
16039 @item al
16040 alternating frames (left eye first, right eye second)
16041
16042 @item ar
16043 alternating frames (right eye first, left eye second)
16044
16045 @item irl
16046 interleaved rows (left eye has top row, right eye starts on next row)
16047
16048 @item irr
16049 interleaved rows (right eye has top row, left eye starts on next row)
16050
16051 @item icl
16052 interleaved columns, left eye first
16053
16054 @item icr
16055 interleaved columns, right eye first
16056
16057 Default value is @samp{sbsl}.
16058 @end table
16059
16060 @item out
16061 Set stereoscopic image format of output.
16062
16063 @table @samp
16064 @item sbsl
16065 side by side parallel (left eye left, right eye right)
16066
16067 @item sbsr
16068 side by side crosseye (right eye left, left eye right)
16069
16070 @item sbs2l
16071 side by side parallel with half width resolution
16072 (left eye left, right eye right)
16073
16074 @item sbs2r
16075 side by side crosseye with half width resolution
16076 (right eye left, left eye right)
16077
16078 @item abl
16079 above-below (left eye above, right eye below)
16080
16081 @item abr
16082 above-below (right eye above, left eye below)
16083
16084 @item ab2l
16085 above-below with half height resolution
16086 (left eye above, right eye below)
16087
16088 @item ab2r
16089 above-below with half height resolution
16090 (right eye above, left eye below)
16091
16092 @item al
16093 alternating frames (left eye first, right eye second)
16094
16095 @item ar
16096 alternating frames (right eye first, left eye second)
16097
16098 @item irl
16099 interleaved rows (left eye has top row, right eye starts on next row)
16100
16101 @item irr
16102 interleaved rows (right eye has top row, left eye starts on next row)
16103
16104 @item arbg
16105 anaglyph red/blue gray
16106 (red filter on left eye, blue filter on right eye)
16107
16108 @item argg
16109 anaglyph red/green gray
16110 (red filter on left eye, green filter on right eye)
16111
16112 @item arcg
16113 anaglyph red/cyan gray
16114 (red filter on left eye, cyan filter on right eye)
16115
16116 @item arch
16117 anaglyph red/cyan half colored
16118 (red filter on left eye, cyan filter on right eye)
16119
16120 @item arcc
16121 anaglyph red/cyan color
16122 (red filter on left eye, cyan filter on right eye)
16123
16124 @item arcd
16125 anaglyph red/cyan color optimized with the least squares projection of dubois
16126 (red filter on left eye, cyan filter on right eye)
16127
16128 @item agmg
16129 anaglyph green/magenta gray
16130 (green filter on left eye, magenta filter on right eye)
16131
16132 @item agmh
16133 anaglyph green/magenta half colored
16134 (green filter on left eye, magenta filter on right eye)
16135
16136 @item agmc
16137 anaglyph green/magenta colored
16138 (green filter on left eye, magenta filter on right eye)
16139
16140 @item agmd
16141 anaglyph green/magenta color optimized with the least squares projection of dubois
16142 (green filter on left eye, magenta filter on right eye)
16143
16144 @item aybg
16145 anaglyph yellow/blue gray
16146 (yellow filter on left eye, blue filter on right eye)
16147
16148 @item aybh
16149 anaglyph yellow/blue half colored
16150 (yellow filter on left eye, blue filter on right eye)
16151
16152 @item aybc
16153 anaglyph yellow/blue colored
16154 (yellow filter on left eye, blue filter on right eye)
16155
16156 @item aybd
16157 anaglyph yellow/blue color optimized with the least squares projection of dubois
16158 (yellow filter on left eye, blue filter on right eye)
16159
16160 @item ml
16161 mono output (left eye only)
16162
16163 @item mr
16164 mono output (right eye only)
16165
16166 @item chl
16167 checkerboard, left eye first
16168
16169 @item chr
16170 checkerboard, right eye first
16171
16172 @item icl
16173 interleaved columns, left eye first
16174
16175 @item icr
16176 interleaved columns, right eye first
16177
16178 @item hdmi
16179 HDMI frame pack
16180 @end table
16181
16182 Default value is @samp{arcd}.
16183 @end table
16184
16185 @subsection Examples
16186
16187 @itemize
16188 @item
16189 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
16190 @example
16191 stereo3d=sbsl:aybd
16192 @end example
16193
16194 @item
16195 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
16196 @example
16197 stereo3d=abl:sbsr
16198 @end example
16199 @end itemize
16200
16201 @section streamselect, astreamselect
16202 Select video or audio streams.
16203
16204 The filter accepts the following options:
16205
16206 @table @option
16207 @item inputs
16208 Set number of inputs. Default is 2.
16209
16210 @item map
16211 Set input indexes to remap to outputs.
16212 @end table
16213
16214 @subsection Commands
16215
16216 The @code{streamselect} and @code{astreamselect} filter supports the following
16217 commands:
16218
16219 @table @option
16220 @item map
16221 Set input indexes to remap to outputs.
16222 @end table
16223
16224 @subsection Examples
16225
16226 @itemize
16227 @item
16228 Select first 5 seconds 1st stream and rest of time 2nd stream:
16229 @example
16230 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
16231 @end example
16232
16233 @item
16234 Same as above, but for audio:
16235 @example
16236 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
16237 @end example
16238 @end itemize
16239
16240 @section sobel
16241 Apply sobel operator to input video stream.
16242
16243 The filter accepts the following option:
16244
16245 @table @option
16246 @item planes
16247 Set which planes will be processed, unprocessed planes will be copied.
16248 By default value 0xf, all planes will be processed.
16249
16250 @item scale
16251 Set value which will be multiplied with filtered result.
16252
16253 @item delta
16254 Set value which will be added to filtered result.
16255 @end table
16256
16257 @anchor{spp}
16258 @section spp
16259
16260 Apply a simple postprocessing filter that compresses and decompresses the image
16261 at several (or - in the case of @option{quality} level @code{6} - all) shifts
16262 and average the results.
16263
16264 The filter accepts the following options:
16265
16266 @table @option
16267 @item quality
16268 Set quality. This option defines the number of levels for averaging. It accepts
16269 an integer in the range 0-6. If set to @code{0}, the filter will have no
16270 effect. A value of @code{6} means the higher quality. For each increment of
16271 that value the speed drops by a factor of approximately 2.  Default value is
16272 @code{3}.
16273
16274 @item qp
16275 Force a constant quantization parameter. If not set, the filter will use the QP
16276 from the video stream (if available).
16277
16278 @item mode
16279 Set thresholding mode. Available modes are:
16280
16281 @table @samp
16282 @item hard
16283 Set hard thresholding (default).
16284 @item soft
16285 Set soft thresholding (better de-ringing effect, but likely blurrier).
16286 @end table
16287
16288 @item use_bframe_qp
16289 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
16290 option may cause flicker since the B-Frames have often larger QP. Default is
16291 @code{0} (not enabled).
16292 @end table
16293
16294 @section sr
16295
16296 Scale the input by applying one of the super-resolution methods based on
16297 convolutional neural networks. Supported models:
16298
16299 @itemize
16300 @item
16301 Super-Resolution Convolutional Neural Network model (SRCNN).
16302 See @url{https://arxiv.org/abs/1501.00092}.
16303
16304 @item
16305 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
16306 See @url{https://arxiv.org/abs/1609.05158}.
16307 @end itemize
16308
16309 Training scripts as well as scripts for model generation are provided in
16310 the repository at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
16311
16312 The filter accepts the following options:
16313
16314 @table @option
16315 @item dnn_backend
16316 Specify which DNN backend to use for model loading and execution. This option accepts
16317 the following values:
16318
16319 @table @samp
16320 @item native
16321 Native implementation of DNN loading and execution.
16322
16323 @item tensorflow
16324 TensorFlow backend. To enable this backend you
16325 need to install the TensorFlow for C library (see
16326 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
16327 @code{--enable-libtensorflow}
16328 @end table
16329
16330 Default value is @samp{native}.
16331
16332 @item model
16333 Set path to model file specifying network architecture and its parameters.
16334 Note that different backends use different file formats. TensorFlow backend
16335 can load files for both formats, while native backend can load files for only
16336 its format.
16337
16338 @item scale_factor
16339 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
16340 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
16341 input upscaled using bicubic upscaling with proper scale factor.
16342 @end table
16343
16344 @anchor{subtitles}
16345 @section subtitles
16346
16347 Draw subtitles on top of input video using the libass library.
16348
16349 To enable compilation of this filter you need to configure FFmpeg with
16350 @code{--enable-libass}. This filter also requires a build with libavcodec and
16351 libavformat to convert the passed subtitles file to ASS (Advanced Substation
16352 Alpha) subtitles format.
16353
16354 The filter accepts the following options:
16355
16356 @table @option
16357 @item filename, f
16358 Set the filename of the subtitle file to read. It must be specified.
16359
16360 @item original_size
16361 Specify the size of the original video, the video for which the ASS file
16362 was composed. For the syntax of this option, check the
16363 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16364 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
16365 correctly scale the fonts if the aspect ratio has been changed.
16366
16367 @item fontsdir
16368 Set a directory path containing fonts that can be used by the filter.
16369 These fonts will be used in addition to whatever the font provider uses.
16370
16371 @item alpha
16372 Process alpha channel, by default alpha channel is untouched.
16373
16374 @item charenc
16375 Set subtitles input character encoding. @code{subtitles} filter only. Only
16376 useful if not UTF-8.
16377
16378 @item stream_index, si
16379 Set subtitles stream index. @code{subtitles} filter only.
16380
16381 @item force_style
16382 Override default style or script info parameters of the subtitles. It accepts a
16383 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
16384 @end table
16385
16386 If the first key is not specified, it is assumed that the first value
16387 specifies the @option{filename}.
16388
16389 For example, to render the file @file{sub.srt} on top of the input
16390 video, use the command:
16391 @example
16392 subtitles=sub.srt
16393 @end example
16394
16395 which is equivalent to:
16396 @example
16397 subtitles=filename=sub.srt
16398 @end example
16399
16400 To render the default subtitles stream from file @file{video.mkv}, use:
16401 @example
16402 subtitles=video.mkv
16403 @end example
16404
16405 To render the second subtitles stream from that file, use:
16406 @example
16407 subtitles=video.mkv:si=1
16408 @end example
16409
16410 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
16411 @code{DejaVu Serif}, use:
16412 @example
16413 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
16414 @end example
16415
16416 @section super2xsai
16417
16418 Scale the input by 2x and smooth using the Super2xSaI (Scale and
16419 Interpolate) pixel art scaling algorithm.
16420
16421 Useful for enlarging pixel art images without reducing sharpness.
16422
16423 @section swaprect
16424
16425 Swap two rectangular objects in video.
16426
16427 This filter accepts the following options:
16428
16429 @table @option
16430 @item w
16431 Set object width.
16432
16433 @item h
16434 Set object height.
16435
16436 @item x1
16437 Set 1st rect x coordinate.
16438
16439 @item y1
16440 Set 1st rect y coordinate.
16441
16442 @item x2
16443 Set 2nd rect x coordinate.
16444
16445 @item y2
16446 Set 2nd rect y coordinate.
16447
16448 All expressions are evaluated once for each frame.
16449 @end table
16450
16451 The all options are expressions containing the following constants:
16452
16453 @table @option
16454 @item w
16455 @item h
16456 The input width and height.
16457
16458 @item a
16459 same as @var{w} / @var{h}
16460
16461 @item sar
16462 input sample aspect ratio
16463
16464 @item dar
16465 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
16466
16467 @item n
16468 The number of the input frame, starting from 0.
16469
16470 @item t
16471 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
16472
16473 @item pos
16474 the position in the file of the input frame, NAN if unknown
16475 @end table
16476
16477 @section swapuv
16478 Swap U & V plane.
16479
16480 @section telecine
16481
16482 Apply telecine process to the video.
16483
16484 This filter accepts the following options:
16485
16486 @table @option
16487 @item first_field
16488 @table @samp
16489 @item top, t
16490 top field first
16491 @item bottom, b
16492 bottom field first
16493 The default value is @code{top}.
16494 @end table
16495
16496 @item pattern
16497 A string of numbers representing the pulldown pattern you wish to apply.
16498 The default value is @code{23}.
16499 @end table
16500
16501 @example
16502 Some typical patterns:
16503
16504 NTSC output (30i):
16505 27.5p: 32222
16506 24p: 23 (classic)
16507 24p: 2332 (preferred)
16508 20p: 33
16509 18p: 334
16510 16p: 3444
16511
16512 PAL output (25i):
16513 27.5p: 12222
16514 24p: 222222222223 ("Euro pulldown")
16515 16.67p: 33
16516 16p: 33333334
16517 @end example
16518
16519 @section threshold
16520
16521 Apply threshold effect to video stream.
16522
16523 This filter needs four video streams to perform thresholding.
16524 First stream is stream we are filtering.
16525 Second stream is holding threshold values, third stream is holding min values,
16526 and last, fourth stream is holding max values.
16527
16528 The filter accepts the following option:
16529
16530 @table @option
16531 @item planes
16532 Set which planes will be processed, unprocessed planes will be copied.
16533 By default value 0xf, all planes will be processed.
16534 @end table
16535
16536 For example if first stream pixel's component value is less then threshold value
16537 of pixel component from 2nd threshold stream, third stream value will picked,
16538 otherwise fourth stream pixel component value will be picked.
16539
16540 Using color source filter one can perform various types of thresholding:
16541
16542 @subsection Examples
16543
16544 @itemize
16545 @item
16546 Binary threshold, using gray color as threshold:
16547 @example
16548 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
16549 @end example
16550
16551 @item
16552 Inverted binary threshold, using gray color as threshold:
16553 @example
16554 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
16555 @end example
16556
16557 @item
16558 Truncate binary threshold, using gray color as threshold:
16559 @example
16560 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
16561 @end example
16562
16563 @item
16564 Threshold to zero, using gray color as threshold:
16565 @example
16566 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
16567 @end example
16568
16569 @item
16570 Inverted threshold to zero, using gray color as threshold:
16571 @example
16572 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
16573 @end example
16574 @end itemize
16575
16576 @section thumbnail
16577 Select the most representative frame in a given sequence of consecutive frames.
16578
16579 The filter accepts the following options:
16580
16581 @table @option
16582 @item n
16583 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
16584 will pick one of them, and then handle the next batch of @var{n} frames until
16585 the end. Default is @code{100}.
16586 @end table
16587
16588 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
16589 value will result in a higher memory usage, so a high value is not recommended.
16590
16591 @subsection Examples
16592
16593 @itemize
16594 @item
16595 Extract one picture each 50 frames:
16596 @example
16597 thumbnail=50
16598 @end example
16599
16600 @item
16601 Complete example of a thumbnail creation with @command{ffmpeg}:
16602 @example
16603 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
16604 @end example
16605 @end itemize
16606
16607 @section tile
16608
16609 Tile several successive frames together.
16610
16611 The filter accepts the following options:
16612
16613 @table @option
16614
16615 @item layout
16616 Set the grid size (i.e. the number of lines and columns). For the syntax of
16617 this option, check the
16618 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16619
16620 @item nb_frames
16621 Set the maximum number of frames to render in the given area. It must be less
16622 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
16623 the area will be used.
16624
16625 @item margin
16626 Set the outer border margin in pixels.
16627
16628 @item padding
16629 Set the inner border thickness (i.e. the number of pixels between frames). For
16630 more advanced padding options (such as having different values for the edges),
16631 refer to the pad video filter.
16632
16633 @item color
16634 Specify the color of the unused area. For the syntax of this option, check the
16635 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16636 The default value of @var{color} is "black".
16637
16638 @item overlap
16639 Set the number of frames to overlap when tiling several successive frames together.
16640 The value must be between @code{0} and @var{nb_frames - 1}.
16641
16642 @item init_padding
16643 Set the number of frames to initially be empty before displaying first output frame.
16644 This controls how soon will one get first output frame.
16645 The value must be between @code{0} and @var{nb_frames - 1}.
16646 @end table
16647
16648 @subsection Examples
16649
16650 @itemize
16651 @item
16652 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
16653 @example
16654 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
16655 @end example
16656 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
16657 duplicating each output frame to accommodate the originally detected frame
16658 rate.
16659
16660 @item
16661 Display @code{5} pictures in an area of @code{3x2} frames,
16662 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
16663 mixed flat and named options:
16664 @example
16665 tile=3x2:nb_frames=5:padding=7:margin=2
16666 @end example
16667 @end itemize
16668
16669 @section tinterlace
16670
16671 Perform various types of temporal field interlacing.
16672
16673 Frames are counted starting from 1, so the first input frame is
16674 considered odd.
16675
16676 The filter accepts the following options:
16677
16678 @table @option
16679
16680 @item mode
16681 Specify the mode of the interlacing. This option can also be specified
16682 as a value alone. See below for a list of values for this option.
16683
16684 Available values are:
16685
16686 @table @samp
16687 @item merge, 0
16688 Move odd frames into the upper field, even into the lower field,
16689 generating a double height frame at half frame rate.
16690 @example
16691  ------> time
16692 Input:
16693 Frame 1         Frame 2         Frame 3         Frame 4
16694
16695 11111           22222           33333           44444
16696 11111           22222           33333           44444
16697 11111           22222           33333           44444
16698 11111           22222           33333           44444
16699
16700 Output:
16701 11111                           33333
16702 22222                           44444
16703 11111                           33333
16704 22222                           44444
16705 11111                           33333
16706 22222                           44444
16707 11111                           33333
16708 22222                           44444
16709 @end example
16710
16711 @item drop_even, 1
16712 Only output odd frames, even frames are dropped, generating a frame with
16713 unchanged height at half frame rate.
16714
16715 @example
16716  ------> time
16717 Input:
16718 Frame 1         Frame 2         Frame 3         Frame 4
16719
16720 11111           22222           33333           44444
16721 11111           22222           33333           44444
16722 11111           22222           33333           44444
16723 11111           22222           33333           44444
16724
16725 Output:
16726 11111                           33333
16727 11111                           33333
16728 11111                           33333
16729 11111                           33333
16730 @end example
16731
16732 @item drop_odd, 2
16733 Only output even frames, odd frames are dropped, generating a frame with
16734 unchanged height at half frame rate.
16735
16736 @example
16737  ------> time
16738 Input:
16739 Frame 1         Frame 2         Frame 3         Frame 4
16740
16741 11111           22222           33333           44444
16742 11111           22222           33333           44444
16743 11111           22222           33333           44444
16744 11111           22222           33333           44444
16745
16746 Output:
16747                 22222                           44444
16748                 22222                           44444
16749                 22222                           44444
16750                 22222                           44444
16751 @end example
16752
16753 @item pad, 3
16754 Expand each frame to full height, but pad alternate lines with black,
16755 generating a frame with double height at the same input frame rate.
16756
16757 @example
16758  ------> time
16759 Input:
16760 Frame 1         Frame 2         Frame 3         Frame 4
16761
16762 11111           22222           33333           44444
16763 11111           22222           33333           44444
16764 11111           22222           33333           44444
16765 11111           22222           33333           44444
16766
16767 Output:
16768 11111           .....           33333           .....
16769 .....           22222           .....           44444
16770 11111           .....           33333           .....
16771 .....           22222           .....           44444
16772 11111           .....           33333           .....
16773 .....           22222           .....           44444
16774 11111           .....           33333           .....
16775 .....           22222           .....           44444
16776 @end example
16777
16778
16779 @item interleave_top, 4
16780 Interleave the upper field from odd frames with the lower field from
16781 even frames, generating a frame with unchanged height at half frame rate.
16782
16783 @example
16784  ------> time
16785 Input:
16786 Frame 1         Frame 2         Frame 3         Frame 4
16787
16788 11111<-         22222           33333<-         44444
16789 11111           22222<-         33333           44444<-
16790 11111<-         22222           33333<-         44444
16791 11111           22222<-         33333           44444<-
16792
16793 Output:
16794 11111                           33333
16795 22222                           44444
16796 11111                           33333
16797 22222                           44444
16798 @end example
16799
16800
16801 @item interleave_bottom, 5
16802 Interleave the lower field from odd frames with the upper field from
16803 even frames, generating a frame with unchanged height at half frame rate.
16804
16805 @example
16806  ------> time
16807 Input:
16808 Frame 1         Frame 2         Frame 3         Frame 4
16809
16810 11111           22222<-         33333           44444<-
16811 11111<-         22222           33333<-         44444
16812 11111           22222<-         33333           44444<-
16813 11111<-         22222           33333<-         44444
16814
16815 Output:
16816 22222                           44444
16817 11111                           33333
16818 22222                           44444
16819 11111                           33333
16820 @end example
16821
16822
16823 @item interlacex2, 6
16824 Double frame rate with unchanged height. Frames are inserted each
16825 containing the second temporal field from the previous input frame and
16826 the first temporal field from the next input frame. This mode relies on
16827 the top_field_first flag. Useful for interlaced video displays with no
16828 field synchronisation.
16829
16830 @example
16831  ------> time
16832 Input:
16833 Frame 1         Frame 2         Frame 3         Frame 4
16834
16835 11111           22222           33333           44444
16836  11111           22222           33333           44444
16837 11111           22222           33333           44444
16838  11111           22222           33333           44444
16839
16840 Output:
16841 11111   22222   22222   33333   33333   44444   44444
16842  11111   11111   22222   22222   33333   33333   44444
16843 11111   22222   22222   33333   33333   44444   44444
16844  11111   11111   22222   22222   33333   33333   44444
16845 @end example
16846
16847
16848 @item mergex2, 7
16849 Move odd frames into the upper field, even into the lower field,
16850 generating a double height frame at same frame rate.
16851
16852 @example
16853  ------> time
16854 Input:
16855 Frame 1         Frame 2         Frame 3         Frame 4
16856
16857 11111           22222           33333           44444
16858 11111           22222           33333           44444
16859 11111           22222           33333           44444
16860 11111           22222           33333           44444
16861
16862 Output:
16863 11111           33333           33333           55555
16864 22222           22222           44444           44444
16865 11111           33333           33333           55555
16866 22222           22222           44444           44444
16867 11111           33333           33333           55555
16868 22222           22222           44444           44444
16869 11111           33333           33333           55555
16870 22222           22222           44444           44444
16871 @end example
16872
16873 @end table
16874
16875 Numeric values are deprecated but are accepted for backward
16876 compatibility reasons.
16877
16878 Default mode is @code{merge}.
16879
16880 @item flags
16881 Specify flags influencing the filter process.
16882
16883 Available value for @var{flags} is:
16884
16885 @table @option
16886 @item low_pass_filter, vlfp
16887 Enable linear vertical low-pass filtering in the filter.
16888 Vertical low-pass filtering is required when creating an interlaced
16889 destination from a progressive source which contains high-frequency
16890 vertical detail. Filtering will reduce interlace 'twitter' and Moire
16891 patterning.
16892
16893 @item complex_filter, cvlfp
16894 Enable complex vertical low-pass filtering.
16895 This will slightly less reduce interlace 'twitter' and Moire
16896 patterning but better retain detail and subjective sharpness impression.
16897
16898 @end table
16899
16900 Vertical low-pass filtering can only be enabled for @option{mode}
16901 @var{interleave_top} and @var{interleave_bottom}.
16902
16903 @end table
16904
16905 @section tmix
16906
16907 Mix successive video frames.
16908
16909 A description of the accepted options follows.
16910
16911 @table @option
16912 @item frames
16913 The number of successive frames to mix. If unspecified, it defaults to 3.
16914
16915 @item weights
16916 Specify weight of each input video frame.
16917 Each weight is separated by space. If number of weights is smaller than
16918 number of @var{frames} last specified weight will be used for all remaining
16919 unset weights.
16920
16921 @item scale
16922 Specify scale, if it is set it will be multiplied with sum
16923 of each weight multiplied with pixel values to give final destination
16924 pixel value. By default @var{scale} is auto scaled to sum of weights.
16925 @end table
16926
16927 @subsection Examples
16928
16929 @itemize
16930 @item
16931 Average 7 successive frames:
16932 @example
16933 tmix=frames=7:weights="1 1 1 1 1 1 1"
16934 @end example
16935
16936 @item
16937 Apply simple temporal convolution:
16938 @example
16939 tmix=frames=3:weights="-1 3 -1"
16940 @end example
16941
16942 @item
16943 Similar as above but only showing temporal differences:
16944 @example
16945 tmix=frames=3:weights="-1 2 -1":scale=1
16946 @end example
16947 @end itemize
16948
16949 @anchor{tonemap}
16950 @section tonemap
16951 Tone map colors from different dynamic ranges.
16952
16953 This filter expects data in single precision floating point, as it needs to
16954 operate on (and can output) out-of-range values. Another filter, such as
16955 @ref{zscale}, is needed to convert the resulting frame to a usable format.
16956
16957 The tonemapping algorithms implemented only work on linear light, so input
16958 data should be linearized beforehand (and possibly correctly tagged).
16959
16960 @example
16961 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
16962 @end example
16963
16964 @subsection Options
16965 The filter accepts the following options.
16966
16967 @table @option
16968 @item tonemap
16969 Set the tone map algorithm to use.
16970
16971 Possible values are:
16972 @table @var
16973 @item none
16974 Do not apply any tone map, only desaturate overbright pixels.
16975
16976 @item clip
16977 Hard-clip any out-of-range values. Use it for perfect color accuracy for
16978 in-range values, while distorting out-of-range values.
16979
16980 @item linear
16981 Stretch the entire reference gamut to a linear multiple of the display.
16982
16983 @item gamma
16984 Fit a logarithmic transfer between the tone curves.
16985
16986 @item reinhard
16987 Preserve overall image brightness with a simple curve, using nonlinear
16988 contrast, which results in flattening details and degrading color accuracy.
16989
16990 @item hable
16991 Preserve both dark and bright details better than @var{reinhard}, at the cost
16992 of slightly darkening everything. Use it when detail preservation is more
16993 important than color and brightness accuracy.
16994
16995 @item mobius
16996 Smoothly map out-of-range values, while retaining contrast and colors for
16997 in-range material as much as possible. Use it when color accuracy is more
16998 important than detail preservation.
16999 @end table
17000
17001 Default is none.
17002
17003 @item param
17004 Tune the tone mapping algorithm.
17005
17006 This affects the following algorithms:
17007 @table @var
17008 @item none
17009 Ignored.
17010
17011 @item linear
17012 Specifies the scale factor to use while stretching.
17013 Default to 1.0.
17014
17015 @item gamma
17016 Specifies the exponent of the function.
17017 Default to 1.8.
17018
17019 @item clip
17020 Specify an extra linear coefficient to multiply into the signal before clipping.
17021 Default to 1.0.
17022
17023 @item reinhard
17024 Specify the local contrast coefficient at the display peak.
17025 Default to 0.5, which means that in-gamut values will be about half as bright
17026 as when clipping.
17027
17028 @item hable
17029 Ignored.
17030
17031 @item mobius
17032 Specify the transition point from linear to mobius transform. Every value
17033 below this point is guaranteed to be mapped 1:1. The higher the value, the
17034 more accurate the result will be, at the cost of losing bright details.
17035 Default to 0.3, which due to the steep initial slope still preserves in-range
17036 colors fairly accurately.
17037 @end table
17038
17039 @item desat
17040 Apply desaturation for highlights that exceed this level of brightness. The
17041 higher the parameter, the more color information will be preserved. This
17042 setting helps prevent unnaturally blown-out colors for super-highlights, by
17043 (smoothly) turning into white instead. This makes images feel more natural,
17044 at the cost of reducing information about out-of-range colors.
17045
17046 The default of 2.0 is somewhat conservative and will mostly just apply to
17047 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
17048
17049 This option works only if the input frame has a supported color tag.
17050
17051 @item peak
17052 Override signal/nominal/reference peak with this value. Useful when the
17053 embedded peak information in display metadata is not reliable or when tone
17054 mapping from a lower range to a higher range.
17055 @end table
17056
17057 @section tpad
17058
17059 Temporarily pad video frames.
17060
17061 The filter accepts the following options:
17062
17063 @table @option
17064 @item start
17065 Specify number of delay frames before input video stream.
17066
17067 @item stop
17068 Specify number of padding frames after input video stream.
17069 Set to -1 to pad indefinitely.
17070
17071 @item start_mode
17072 Set kind of frames added to beginning of stream.
17073 Can be either @var{add} or @var{clone}.
17074 With @var{add} frames of solid-color are added.
17075 With @var{clone} frames are clones of first frame.
17076
17077 @item stop_mode
17078 Set kind of frames added to end of stream.
17079 Can be either @var{add} or @var{clone}.
17080 With @var{add} frames of solid-color are added.
17081 With @var{clone} frames are clones of last frame.
17082
17083 @item start_duration, stop_duration
17084 Specify the duration of the start/stop delay. See
17085 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17086 for the accepted syntax.
17087 These options override @var{start} and @var{stop}.
17088
17089 @item color
17090 Specify the color of the padded area. For the syntax of this option,
17091 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
17092 manual,ffmpeg-utils}.
17093
17094 The default value of @var{color} is "black".
17095 @end table
17096
17097 @anchor{transpose}
17098 @section transpose
17099
17100 Transpose rows with columns in the input video and optionally flip it.
17101
17102 It accepts the following parameters:
17103
17104 @table @option
17105
17106 @item dir
17107 Specify the transposition direction.
17108
17109 Can assume the following values:
17110 @table @samp
17111 @item 0, 4, cclock_flip
17112 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
17113 @example
17114 L.R     L.l
17115 . . ->  . .
17116 l.r     R.r
17117 @end example
17118
17119 @item 1, 5, clock
17120 Rotate by 90 degrees clockwise, that is:
17121 @example
17122 L.R     l.L
17123 . . ->  . .
17124 l.r     r.R
17125 @end example
17126
17127 @item 2, 6, cclock
17128 Rotate by 90 degrees counterclockwise, that is:
17129 @example
17130 L.R     R.r
17131 . . ->  . .
17132 l.r     L.l
17133 @end example
17134
17135 @item 3, 7, clock_flip
17136 Rotate by 90 degrees clockwise and vertically flip, that is:
17137 @example
17138 L.R     r.R
17139 . . ->  . .
17140 l.r     l.L
17141 @end example
17142 @end table
17143
17144 For values between 4-7, the transposition is only done if the input
17145 video geometry is portrait and not landscape. These values are
17146 deprecated, the @code{passthrough} option should be used instead.
17147
17148 Numerical values are deprecated, and should be dropped in favor of
17149 symbolic constants.
17150
17151 @item passthrough
17152 Do not apply the transposition if the input geometry matches the one
17153 specified by the specified value. It accepts the following values:
17154 @table @samp
17155 @item none
17156 Always apply transposition.
17157 @item portrait
17158 Preserve portrait geometry (when @var{height} >= @var{width}).
17159 @item landscape
17160 Preserve landscape geometry (when @var{width} >= @var{height}).
17161 @end table
17162
17163 Default value is @code{none}.
17164 @end table
17165
17166 For example to rotate by 90 degrees clockwise and preserve portrait
17167 layout:
17168 @example
17169 transpose=dir=1:passthrough=portrait
17170 @end example
17171
17172 The command above can also be specified as:
17173 @example
17174 transpose=1:portrait
17175 @end example
17176
17177 @section transpose_npp
17178
17179 Transpose rows with columns in the input video and optionally flip it.
17180 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
17181
17182 It accepts the following parameters:
17183
17184 @table @option
17185
17186 @item dir
17187 Specify the transposition direction.
17188
17189 Can assume the following values:
17190 @table @samp
17191 @item cclock_flip
17192 Rotate by 90 degrees counterclockwise and vertically flip. (default)
17193
17194 @item clock
17195 Rotate by 90 degrees clockwise.
17196
17197 @item cclock
17198 Rotate by 90 degrees counterclockwise.
17199
17200 @item clock_flip
17201 Rotate by 90 degrees clockwise and vertically flip.
17202 @end table
17203
17204 @item passthrough
17205 Do not apply the transposition if the input geometry matches the one
17206 specified by the specified value. It accepts the following values:
17207 @table @samp
17208 @item none
17209 Always apply transposition. (default)
17210 @item portrait
17211 Preserve portrait geometry (when @var{height} >= @var{width}).
17212 @item landscape
17213 Preserve landscape geometry (when @var{width} >= @var{height}).
17214 @end table
17215
17216 @end table
17217
17218 @section trim
17219 Trim the input so that the output contains one continuous subpart of the input.
17220
17221 It accepts the following parameters:
17222 @table @option
17223 @item start
17224 Specify the time of the start of the kept section, i.e. the frame with the
17225 timestamp @var{start} will be the first frame in the output.
17226
17227 @item end
17228 Specify the time of the first frame that will be dropped, i.e. the frame
17229 immediately preceding the one with the timestamp @var{end} will be the last
17230 frame in the output.
17231
17232 @item start_pts
17233 This is the same as @var{start}, except this option sets the start timestamp
17234 in timebase units instead of seconds.
17235
17236 @item end_pts
17237 This is the same as @var{end}, except this option sets the end timestamp
17238 in timebase units instead of seconds.
17239
17240 @item duration
17241 The maximum duration of the output in seconds.
17242
17243 @item start_frame
17244 The number of the first frame that should be passed to the output.
17245
17246 @item end_frame
17247 The number of the first frame that should be dropped.
17248 @end table
17249
17250 @option{start}, @option{end}, and @option{duration} are expressed as time
17251 duration specifications; see
17252 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17253 for the accepted syntax.
17254
17255 Note that the first two sets of the start/end options and the @option{duration}
17256 option look at the frame timestamp, while the _frame variants simply count the
17257 frames that pass through the filter. Also note that this filter does not modify
17258 the timestamps. If you wish for the output timestamps to start at zero, insert a
17259 setpts filter after the trim filter.
17260
17261 If multiple start or end options are set, this filter tries to be greedy and
17262 keep all the frames that match at least one of the specified constraints. To keep
17263 only the part that matches all the constraints at once, chain multiple trim
17264 filters.
17265
17266 The defaults are such that all the input is kept. So it is possible to set e.g.
17267 just the end values to keep everything before the specified time.
17268
17269 Examples:
17270 @itemize
17271 @item
17272 Drop everything except the second minute of input:
17273 @example
17274 ffmpeg -i INPUT -vf trim=60:120
17275 @end example
17276
17277 @item
17278 Keep only the first second:
17279 @example
17280 ffmpeg -i INPUT -vf trim=duration=1
17281 @end example
17282
17283 @end itemize
17284
17285 @section unpremultiply
17286 Apply alpha unpremultiply effect to input video stream using first plane
17287 of second stream as alpha.
17288
17289 Both streams must have same dimensions and same pixel format.
17290
17291 The filter accepts the following option:
17292
17293 @table @option
17294 @item planes
17295 Set which planes will be processed, unprocessed planes will be copied.
17296 By default value 0xf, all planes will be processed.
17297
17298 If the format has 1 or 2 components, then luma is bit 0.
17299 If the format has 3 or 4 components:
17300 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
17301 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
17302 If present, the alpha channel is always the last bit.
17303
17304 @item inplace
17305 Do not require 2nd input for processing, instead use alpha plane from input stream.
17306 @end table
17307
17308 @anchor{unsharp}
17309 @section unsharp
17310
17311 Sharpen or blur the input video.
17312
17313 It accepts the following parameters:
17314
17315 @table @option
17316 @item luma_msize_x, lx
17317 Set the luma matrix horizontal size. It must be an odd integer between
17318 3 and 23. The default value is 5.
17319
17320 @item luma_msize_y, ly
17321 Set the luma matrix vertical size. It must be an odd integer between 3
17322 and 23. The default value is 5.
17323
17324 @item luma_amount, la
17325 Set the luma effect strength. It must be a floating point number, reasonable
17326 values lay between -1.5 and 1.5.
17327
17328 Negative values will blur the input video, while positive values will
17329 sharpen it, a value of zero will disable the effect.
17330
17331 Default value is 1.0.
17332
17333 @item chroma_msize_x, cx
17334 Set the chroma matrix horizontal size. It must be an odd integer
17335 between 3 and 23. The default value is 5.
17336
17337 @item chroma_msize_y, cy
17338 Set the chroma matrix vertical size. It must be an odd integer
17339 between 3 and 23. The default value is 5.
17340
17341 @item chroma_amount, ca
17342 Set the chroma effect strength. It must be a floating point number, reasonable
17343 values lay between -1.5 and 1.5.
17344
17345 Negative values will blur the input video, while positive values will
17346 sharpen it, a value of zero will disable the effect.
17347
17348 Default value is 0.0.
17349
17350 @end table
17351
17352 All parameters are optional and default to the equivalent of the
17353 string '5:5:1.0:5:5:0.0'.
17354
17355 @subsection Examples
17356
17357 @itemize
17358 @item
17359 Apply strong luma sharpen effect:
17360 @example
17361 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
17362 @end example
17363
17364 @item
17365 Apply a strong blur of both luma and chroma parameters:
17366 @example
17367 unsharp=7:7:-2:7:7:-2
17368 @end example
17369 @end itemize
17370
17371 @section uspp
17372
17373 Apply ultra slow/simple postprocessing filter that compresses and decompresses
17374 the image at several (or - in the case of @option{quality} level @code{8} - all)
17375 shifts and average the results.
17376
17377 The way this differs from the behavior of spp is that uspp actually encodes &
17378 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
17379 DCT similar to MJPEG.
17380
17381 The filter accepts the following options:
17382
17383 @table @option
17384 @item quality
17385 Set quality. This option defines the number of levels for averaging. It accepts
17386 an integer in the range 0-8. If set to @code{0}, the filter will have no
17387 effect. A value of @code{8} means the higher quality. For each increment of
17388 that value the speed drops by a factor of approximately 2.  Default value is
17389 @code{3}.
17390
17391 @item qp
17392 Force a constant quantization parameter. If not set, the filter will use the QP
17393 from the video stream (if available).
17394 @end table
17395
17396 @section vaguedenoiser
17397
17398 Apply a wavelet based denoiser.
17399
17400 It transforms each frame from the video input into the wavelet domain,
17401 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
17402 the obtained coefficients. It does an inverse wavelet transform after.
17403 Due to wavelet properties, it should give a nice smoothed result, and
17404 reduced noise, without blurring picture features.
17405
17406 This filter accepts the following options:
17407
17408 @table @option
17409 @item threshold
17410 The filtering strength. The higher, the more filtered the video will be.
17411 Hard thresholding can use a higher threshold than soft thresholding
17412 before the video looks overfiltered. Default value is 2.
17413
17414 @item method
17415 The filtering method the filter will use.
17416
17417 It accepts the following values:
17418 @table @samp
17419 @item hard
17420 All values under the threshold will be zeroed.
17421
17422 @item soft
17423 All values under the threshold will be zeroed. All values above will be
17424 reduced by the threshold.
17425
17426 @item garrote
17427 Scales or nullifies coefficients - intermediary between (more) soft and
17428 (less) hard thresholding.
17429 @end table
17430
17431 Default is garrote.
17432
17433 @item nsteps
17434 Number of times, the wavelet will decompose the picture. Picture can't
17435 be decomposed beyond a particular point (typically, 8 for a 640x480
17436 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
17437
17438 @item percent
17439 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
17440
17441 @item planes
17442 A list of the planes to process. By default all planes are processed.
17443 @end table
17444
17445 @section vectorscope
17446
17447 Display 2 color component values in the two dimensional graph (which is called
17448 a vectorscope).
17449
17450 This filter accepts the following options:
17451
17452 @table @option
17453 @item mode, m
17454 Set vectorscope mode.
17455
17456 It accepts the following values:
17457 @table @samp
17458 @item gray
17459 Gray values are displayed on graph, higher brightness means more pixels have
17460 same component color value on location in graph. This is the default mode.
17461
17462 @item color
17463 Gray values are displayed on graph. Surrounding pixels values which are not
17464 present in video frame are drawn in gradient of 2 color components which are
17465 set by option @code{x} and @code{y}. The 3rd color component is static.
17466
17467 @item color2
17468 Actual color components values present in video frame are displayed on graph.
17469
17470 @item color3
17471 Similar as color2 but higher frequency of same values @code{x} and @code{y}
17472 on graph increases value of another color component, which is luminance by
17473 default values of @code{x} and @code{y}.
17474
17475 @item color4
17476 Actual colors present in video frame are displayed on graph. If two different
17477 colors map to same position on graph then color with higher value of component
17478 not present in graph is picked.
17479
17480 @item color5
17481 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
17482 component picked from radial gradient.
17483 @end table
17484
17485 @item x
17486 Set which color component will be represented on X-axis. Default is @code{1}.
17487
17488 @item y
17489 Set which color component will be represented on Y-axis. Default is @code{2}.
17490
17491 @item intensity, i
17492 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
17493 of color component which represents frequency of (X, Y) location in graph.
17494
17495 @item envelope, e
17496 @table @samp
17497 @item none
17498 No envelope, this is default.
17499
17500 @item instant
17501 Instant envelope, even darkest single pixel will be clearly highlighted.
17502
17503 @item peak
17504 Hold maximum and minimum values presented in graph over time. This way you
17505 can still spot out of range values without constantly looking at vectorscope.
17506
17507 @item peak+instant
17508 Peak and instant envelope combined together.
17509 @end table
17510
17511 @item graticule, g
17512 Set what kind of graticule to draw.
17513 @table @samp
17514 @item none
17515 @item green
17516 @item color
17517 @end table
17518
17519 @item opacity, o
17520 Set graticule opacity.
17521
17522 @item flags, f
17523 Set graticule flags.
17524
17525 @table @samp
17526 @item white
17527 Draw graticule for white point.
17528
17529 @item black
17530 Draw graticule for black point.
17531
17532 @item name
17533 Draw color points short names.
17534 @end table
17535
17536 @item bgopacity, b
17537 Set background opacity.
17538
17539 @item lthreshold, l
17540 Set low threshold for color component not represented on X or Y axis.
17541 Values lower than this value will be ignored. Default is 0.
17542 Note this value is multiplied with actual max possible value one pixel component
17543 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
17544 is 0.1 * 255 = 25.
17545
17546 @item hthreshold, h
17547 Set high threshold for color component not represented on X or Y axis.
17548 Values higher than this value will be ignored. Default is 1.
17549 Note this value is multiplied with actual max possible value one pixel component
17550 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
17551 is 0.9 * 255 = 230.
17552
17553 @item colorspace, c
17554 Set what kind of colorspace to use when drawing graticule.
17555 @table @samp
17556 @item auto
17557 @item 601
17558 @item 709
17559 @end table
17560 Default is auto.
17561 @end table
17562
17563 @anchor{vidstabdetect}
17564 @section vidstabdetect
17565
17566 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
17567 @ref{vidstabtransform} for pass 2.
17568
17569 This filter generates a file with relative translation and rotation
17570 transform information about subsequent frames, which is then used by
17571 the @ref{vidstabtransform} filter.
17572
17573 To enable compilation of this filter you need to configure FFmpeg with
17574 @code{--enable-libvidstab}.
17575
17576 This filter accepts the following options:
17577
17578 @table @option
17579 @item result
17580 Set the path to the file used to write the transforms information.
17581 Default value is @file{transforms.trf}.
17582
17583 @item shakiness
17584 Set how shaky the video is and how quick the camera is. It accepts an
17585 integer in the range 1-10, a value of 1 means little shakiness, a
17586 value of 10 means strong shakiness. Default value is 5.
17587
17588 @item accuracy
17589 Set the accuracy of the detection process. It must be a value in the
17590 range 1-15. A value of 1 means low accuracy, a value of 15 means high
17591 accuracy. Default value is 15.
17592
17593 @item stepsize
17594 Set stepsize of the search process. The region around minimum is
17595 scanned with 1 pixel resolution. Default value is 6.
17596
17597 @item mincontrast
17598 Set minimum contrast. Below this value a local measurement field is
17599 discarded. Must be a floating point value in the range 0-1. Default
17600 value is 0.3.
17601
17602 @item tripod
17603 Set reference frame number for tripod mode.
17604
17605 If enabled, the motion of the frames is compared to a reference frame
17606 in the filtered stream, identified by the specified number. The idea
17607 is to compensate all movements in a more-or-less static scene and keep
17608 the camera view absolutely still.
17609
17610 If set to 0, it is disabled. The frames are counted starting from 1.
17611
17612 @item show
17613 Show fields and transforms in the resulting frames. It accepts an
17614 integer in the range 0-2. Default value is 0, which disables any
17615 visualization.
17616 @end table
17617
17618 @subsection Examples
17619
17620 @itemize
17621 @item
17622 Use default values:
17623 @example
17624 vidstabdetect
17625 @end example
17626
17627 @item
17628 Analyze strongly shaky movie and put the results in file
17629 @file{mytransforms.trf}:
17630 @example
17631 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
17632 @end example
17633
17634 @item
17635 Visualize the result of internal transformations in the resulting
17636 video:
17637 @example
17638 vidstabdetect=show=1
17639 @end example
17640
17641 @item
17642 Analyze a video with medium shakiness using @command{ffmpeg}:
17643 @example
17644 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
17645 @end example
17646 @end itemize
17647
17648 @anchor{vidstabtransform}
17649 @section vidstabtransform
17650
17651 Video stabilization/deshaking: pass 2 of 2,
17652 see @ref{vidstabdetect} for pass 1.
17653
17654 Read a file with transform information for each frame and
17655 apply/compensate them. Together with the @ref{vidstabdetect}
17656 filter this can be used to deshake videos. See also
17657 @url{http://public.hronopik.de/vid.stab}. It is important to also use
17658 the @ref{unsharp} filter, see below.
17659
17660 To enable compilation of this filter you need to configure FFmpeg with
17661 @code{--enable-libvidstab}.
17662
17663 @subsection Options
17664
17665 @table @option
17666 @item input
17667 Set path to the file used to read the transforms. Default value is
17668 @file{transforms.trf}.
17669
17670 @item smoothing
17671 Set the number of frames (value*2 + 1) used for lowpass filtering the
17672 camera movements. Default value is 10.
17673
17674 For example a number of 10 means that 21 frames are used (10 in the
17675 past and 10 in the future) to smoothen the motion in the video. A
17676 larger value leads to a smoother video, but limits the acceleration of
17677 the camera (pan/tilt movements). 0 is a special case where a static
17678 camera is simulated.
17679
17680 @item optalgo
17681 Set the camera path optimization algorithm.
17682
17683 Accepted values are:
17684 @table @samp
17685 @item gauss
17686 gaussian kernel low-pass filter on camera motion (default)
17687 @item avg
17688 averaging on transformations
17689 @end table
17690
17691 @item maxshift
17692 Set maximal number of pixels to translate frames. Default value is -1,
17693 meaning no limit.
17694
17695 @item maxangle
17696 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
17697 value is -1, meaning no limit.
17698
17699 @item crop
17700 Specify how to deal with borders that may be visible due to movement
17701 compensation.
17702
17703 Available values are:
17704 @table @samp
17705 @item keep
17706 keep image information from previous frame (default)
17707 @item black
17708 fill the border black
17709 @end table
17710
17711 @item invert
17712 Invert transforms if set to 1. Default value is 0.
17713
17714 @item relative
17715 Consider transforms as relative to previous frame if set to 1,
17716 absolute if set to 0. Default value is 0.
17717
17718 @item zoom
17719 Set percentage to zoom. A positive value will result in a zoom-in
17720 effect, a negative value in a zoom-out effect. Default value is 0 (no
17721 zoom).
17722
17723 @item optzoom
17724 Set optimal zooming to avoid borders.
17725
17726 Accepted values are:
17727 @table @samp
17728 @item 0
17729 disabled
17730 @item 1
17731 optimal static zoom value is determined (only very strong movements
17732 will lead to visible borders) (default)
17733 @item 2
17734 optimal adaptive zoom value is determined (no borders will be
17735 visible), see @option{zoomspeed}
17736 @end table
17737
17738 Note that the value given at zoom is added to the one calculated here.
17739
17740 @item zoomspeed
17741 Set percent to zoom maximally each frame (enabled when
17742 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
17743 0.25.
17744
17745 @item interpol
17746 Specify type of interpolation.
17747
17748 Available values are:
17749 @table @samp
17750 @item no
17751 no interpolation
17752 @item linear
17753 linear only horizontal
17754 @item bilinear
17755 linear in both directions (default)
17756 @item bicubic
17757 cubic in both directions (slow)
17758 @end table
17759
17760 @item tripod
17761 Enable virtual tripod mode if set to 1, which is equivalent to
17762 @code{relative=0:smoothing=0}. Default value is 0.
17763
17764 Use also @code{tripod} option of @ref{vidstabdetect}.
17765
17766 @item debug
17767 Increase log verbosity if set to 1. Also the detected global motions
17768 are written to the temporary file @file{global_motions.trf}. Default
17769 value is 0.
17770 @end table
17771
17772 @subsection Examples
17773
17774 @itemize
17775 @item
17776 Use @command{ffmpeg} for a typical stabilization with default values:
17777 @example
17778 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
17779 @end example
17780
17781 Note the use of the @ref{unsharp} filter which is always recommended.
17782
17783 @item
17784 Zoom in a bit more and load transform data from a given file:
17785 @example
17786 vidstabtransform=zoom=5:input="mytransforms.trf"
17787 @end example
17788
17789 @item
17790 Smoothen the video even more:
17791 @example
17792 vidstabtransform=smoothing=30
17793 @end example
17794 @end itemize
17795
17796 @section vflip
17797
17798 Flip the input video vertically.
17799
17800 For example, to vertically flip a video with @command{ffmpeg}:
17801 @example
17802 ffmpeg -i in.avi -vf "vflip" out.avi
17803 @end example
17804
17805 @section vfrdet
17806
17807 Detect variable frame rate video.
17808
17809 This filter tries to detect if the input is variable or constant frame rate.
17810
17811 At end it will output number of frames detected as having variable delta pts,
17812 and ones with constant delta pts.
17813 If there was frames with variable delta, than it will also show min and max delta
17814 encountered.
17815
17816 @section vibrance
17817
17818 Boost or alter saturation.
17819
17820 The filter accepts the following options:
17821 @table @option
17822 @item intensity
17823 Set strength of boost if positive value or strength of alter if negative value.
17824 Default is 0. Allowed range is from -2 to 2.
17825
17826 @item rbal
17827 Set the red balance. Default is 1. Allowed range is from -10 to 10.
17828
17829 @item gbal
17830 Set the green balance. Default is 1. Allowed range is from -10 to 10.
17831
17832 @item bbal
17833 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
17834
17835 @item rlum
17836 Set the red luma coefficient.
17837
17838 @item glum
17839 Set the green luma coefficient.
17840
17841 @item blum
17842 Set the blue luma coefficient.
17843 @end table
17844
17845 @anchor{vignette}
17846 @section vignette
17847
17848 Make or reverse a natural vignetting effect.
17849
17850 The filter accepts the following options:
17851
17852 @table @option
17853 @item angle, a
17854 Set lens angle expression as a number of radians.
17855
17856 The value is clipped in the @code{[0,PI/2]} range.
17857
17858 Default value: @code{"PI/5"}
17859
17860 @item x0
17861 @item y0
17862 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
17863 by default.
17864
17865 @item mode
17866 Set forward/backward mode.
17867
17868 Available modes are:
17869 @table @samp
17870 @item forward
17871 The larger the distance from the central point, the darker the image becomes.
17872
17873 @item backward
17874 The larger the distance from the central point, the brighter the image becomes.
17875 This can be used to reverse a vignette effect, though there is no automatic
17876 detection to extract the lens @option{angle} and other settings (yet). It can
17877 also be used to create a burning effect.
17878 @end table
17879
17880 Default value is @samp{forward}.
17881
17882 @item eval
17883 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
17884
17885 It accepts the following values:
17886 @table @samp
17887 @item init
17888 Evaluate expressions only once during the filter initialization.
17889
17890 @item frame
17891 Evaluate expressions for each incoming frame. This is way slower than the
17892 @samp{init} mode since it requires all the scalers to be re-computed, but it
17893 allows advanced dynamic expressions.
17894 @end table
17895
17896 Default value is @samp{init}.
17897
17898 @item dither
17899 Set dithering to reduce the circular banding effects. Default is @code{1}
17900 (enabled).
17901
17902 @item aspect
17903 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
17904 Setting this value to the SAR of the input will make a rectangular vignetting
17905 following the dimensions of the video.
17906
17907 Default is @code{1/1}.
17908 @end table
17909
17910 @subsection Expressions
17911
17912 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
17913 following parameters.
17914
17915 @table @option
17916 @item w
17917 @item h
17918 input width and height
17919
17920 @item n
17921 the number of input frame, starting from 0
17922
17923 @item pts
17924 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
17925 @var{TB} units, NAN if undefined
17926
17927 @item r
17928 frame rate of the input video, NAN if the input frame rate is unknown
17929
17930 @item t
17931 the PTS (Presentation TimeStamp) of the filtered video frame,
17932 expressed in seconds, NAN if undefined
17933
17934 @item tb
17935 time base of the input video
17936 @end table
17937
17938
17939 @subsection Examples
17940
17941 @itemize
17942 @item
17943 Apply simple strong vignetting effect:
17944 @example
17945 vignette=PI/4
17946 @end example
17947
17948 @item
17949 Make a flickering vignetting:
17950 @example
17951 vignette='PI/4+random(1)*PI/50':eval=frame
17952 @end example
17953
17954 @end itemize
17955
17956 @section vmafmotion
17957
17958 Obtain the average vmaf motion score of a video.
17959 It is one of the component filters of VMAF.
17960
17961 The obtained average motion score is printed through the logging system.
17962
17963 In the below example the input file @file{ref.mpg} is being processed and score
17964 is computed.
17965
17966 @example
17967 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
17968 @end example
17969
17970 @section vstack
17971 Stack input videos vertically.
17972
17973 All streams must be of same pixel format and of same width.
17974
17975 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
17976 to create same output.
17977
17978 The filter accept the following option:
17979
17980 @table @option
17981 @item inputs
17982 Set number of input streams. Default is 2.
17983
17984 @item shortest
17985 If set to 1, force the output to terminate when the shortest input
17986 terminates. Default value is 0.
17987 @end table
17988
17989 @section w3fdif
17990
17991 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
17992 Deinterlacing Filter").
17993
17994 Based on the process described by Martin Weston for BBC R&D, and
17995 implemented based on the de-interlace algorithm written by Jim
17996 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
17997 uses filter coefficients calculated by BBC R&D.
17998
17999 There are two sets of filter coefficients, so called "simple":
18000 and "complex". Which set of filter coefficients is used can
18001 be set by passing an optional parameter:
18002
18003 @table @option
18004 @item filter
18005 Set the interlacing filter coefficients. Accepts one of the following values:
18006
18007 @table @samp
18008 @item simple
18009 Simple filter coefficient set.
18010 @item complex
18011 More-complex filter coefficient set.
18012 @end table
18013 Default value is @samp{complex}.
18014
18015 @item deint
18016 Specify which frames to deinterlace. Accept one of the following values:
18017
18018 @table @samp
18019 @item all
18020 Deinterlace all frames,
18021 @item interlaced
18022 Only deinterlace frames marked as interlaced.
18023 @end table
18024
18025 Default value is @samp{all}.
18026 @end table
18027
18028 @section waveform
18029 Video waveform monitor.
18030
18031 The waveform monitor plots color component intensity. By default luminance
18032 only. Each column of the waveform corresponds to a column of pixels in the
18033 source video.
18034
18035 It accepts the following options:
18036
18037 @table @option
18038 @item mode, m
18039 Can be either @code{row}, or @code{column}. Default is @code{column}.
18040 In row mode, the graph on the left side represents color component value 0 and
18041 the right side represents value = 255. In column mode, the top side represents
18042 color component value = 0 and bottom side represents value = 255.
18043
18044 @item intensity, i
18045 Set intensity. Smaller values are useful to find out how many values of the same
18046 luminance are distributed across input rows/columns.
18047 Default value is @code{0.04}. Allowed range is [0, 1].
18048
18049 @item mirror, r
18050 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
18051 In mirrored mode, higher values will be represented on the left
18052 side for @code{row} mode and at the top for @code{column} mode. Default is
18053 @code{1} (mirrored).
18054
18055 @item display, d
18056 Set display mode.
18057 It accepts the following values:
18058 @table @samp
18059 @item overlay
18060 Presents information identical to that in the @code{parade}, except
18061 that the graphs representing color components are superimposed directly
18062 over one another.
18063
18064 This display mode makes it easier to spot relative differences or similarities
18065 in overlapping areas of the color components that are supposed to be identical,
18066 such as neutral whites, grays, or blacks.
18067
18068 @item stack
18069 Display separate graph for the color components side by side in
18070 @code{row} mode or one below the other in @code{column} mode.
18071
18072 @item parade
18073 Display separate graph for the color components side by side in
18074 @code{column} mode or one below the other in @code{row} mode.
18075
18076 Using this display mode makes it easy to spot color casts in the highlights
18077 and shadows of an image, by comparing the contours of the top and the bottom
18078 graphs of each waveform. Since whites, grays, and blacks are characterized
18079 by exactly equal amounts of red, green, and blue, neutral areas of the picture
18080 should display three waveforms of roughly equal width/height. If not, the
18081 correction is easy to perform by making level adjustments the three waveforms.
18082 @end table
18083 Default is @code{stack}.
18084
18085 @item components, c
18086 Set which color components to display. Default is 1, which means only luminance
18087 or red color component if input is in RGB colorspace. If is set for example to
18088 7 it will display all 3 (if) available color components.
18089
18090 @item envelope, e
18091 @table @samp
18092 @item none
18093 No envelope, this is default.
18094
18095 @item instant
18096 Instant envelope, minimum and maximum values presented in graph will be easily
18097 visible even with small @code{step} value.
18098
18099 @item peak
18100 Hold minimum and maximum values presented in graph across time. This way you
18101 can still spot out of range values without constantly looking at waveforms.
18102
18103 @item peak+instant
18104 Peak and instant envelope combined together.
18105 @end table
18106
18107 @item filter, f
18108 @table @samp
18109 @item lowpass
18110 No filtering, this is default.
18111
18112 @item flat
18113 Luma and chroma combined together.
18114
18115 @item aflat
18116 Similar as above, but shows difference between blue and red chroma.
18117
18118 @item xflat
18119 Similar as above, but use different colors.
18120
18121 @item chroma
18122 Displays only chroma.
18123
18124 @item color
18125 Displays actual color value on waveform.
18126
18127 @item acolor
18128 Similar as above, but with luma showing frequency of chroma values.
18129 @end table
18130
18131 @item graticule, g
18132 Set which graticule to display.
18133
18134 @table @samp
18135 @item none
18136 Do not display graticule.
18137
18138 @item green
18139 Display green graticule showing legal broadcast ranges.
18140
18141 @item orange
18142 Display orange graticule showing legal broadcast ranges.
18143 @end table
18144
18145 @item opacity, o
18146 Set graticule opacity.
18147
18148 @item flags, fl
18149 Set graticule flags.
18150
18151 @table @samp
18152 @item numbers
18153 Draw numbers above lines. By default enabled.
18154
18155 @item dots
18156 Draw dots instead of lines.
18157 @end table
18158
18159 @item scale, s
18160 Set scale used for displaying graticule.
18161
18162 @table @samp
18163 @item digital
18164 @item millivolts
18165 @item ire
18166 @end table
18167 Default is digital.
18168
18169 @item bgopacity, b
18170 Set background opacity.
18171 @end table
18172
18173 @section weave, doubleweave
18174
18175 The @code{weave} takes a field-based video input and join
18176 each two sequential fields into single frame, producing a new double
18177 height clip with half the frame rate and half the frame count.
18178
18179 The @code{doubleweave} works same as @code{weave} but without
18180 halving frame rate and frame count.
18181
18182 It accepts the following option:
18183
18184 @table @option
18185 @item first_field
18186 Set first field. Available values are:
18187
18188 @table @samp
18189 @item top, t
18190 Set the frame as top-field-first.
18191
18192 @item bottom, b
18193 Set the frame as bottom-field-first.
18194 @end table
18195 @end table
18196
18197 @subsection Examples
18198
18199 @itemize
18200 @item
18201 Interlace video using @ref{select} and @ref{separatefields} filter:
18202 @example
18203 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
18204 @end example
18205 @end itemize
18206
18207 @section xbr
18208 Apply the xBR high-quality magnification filter which is designed for pixel
18209 art. It follows a set of edge-detection rules, see
18210 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
18211
18212 It accepts the following option:
18213
18214 @table @option
18215 @item n
18216 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
18217 @code{3xBR} and @code{4} for @code{4xBR}.
18218 Default is @code{3}.
18219 @end table
18220
18221 @section xstack
18222 Stack video inputs into custom layout.
18223
18224 All streams must be of same pixel format.
18225
18226 The filter accept the following option:
18227
18228 @table @option
18229 @item inputs
18230 Set number of input streams. Default is 2.
18231
18232 @item layout
18233 Specify layout of inputs.
18234 This option requires the desired layout configuration to be explicitly set by the user.
18235 This sets position of each video input in output. Each input
18236 is separated by '|'.
18237 The first number represents the column, and the second number represents the row.
18238 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
18239 where X is video input from which to take width or height.
18240 Multiple values can be used when separated by '+'. In such
18241 case values are summed together.
18242
18243 @item shortest
18244 If set to 1, force the output to terminate when the shortest input
18245 terminates. Default value is 0.
18246 @end table
18247
18248 @subsection Examples
18249
18250 @itemize
18251 @item
18252 Display 4 inputs into 2x2 grid,
18253 note that if inputs are of different sizes unused gaps might appear,
18254 as not all of output video is used.
18255 @example
18256 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
18257 @end example
18258
18259 @item
18260 Display 4 inputs into 1x4 grid,
18261 note that if inputs are of different sizes unused gaps might appear,
18262 as not all of output video is used.
18263 @example
18264 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
18265 @end example
18266
18267 @item
18268 Display 9 inputs into 3x3 grid,
18269 note that if inputs are of different sizes unused gaps might appear,
18270 as not all of output video is used.
18271 @example
18272 xstack=inputs=9:layout=w3_0|w3_h0+h2|w3_h0|0_h4|0_0|w3+w1_0|0_h1+h2|w3+w1_h0|w3+w1_h1+h2
18273 @end example
18274 @end itemize
18275
18276 @anchor{yadif}
18277 @section yadif
18278
18279 Deinterlace the input video ("yadif" means "yet another deinterlacing
18280 filter").
18281
18282 It accepts the following parameters:
18283
18284
18285 @table @option
18286
18287 @item mode
18288 The interlacing mode to adopt. It accepts one of the following values:
18289
18290 @table @option
18291 @item 0, send_frame
18292 Output one frame for each frame.
18293 @item 1, send_field
18294 Output one frame for each field.
18295 @item 2, send_frame_nospatial
18296 Like @code{send_frame}, but it skips the spatial interlacing check.
18297 @item 3, send_field_nospatial
18298 Like @code{send_field}, but it skips the spatial interlacing check.
18299 @end table
18300
18301 The default value is @code{send_frame}.
18302
18303 @item parity
18304 The picture field parity assumed for the input interlaced video. It accepts one
18305 of the following values:
18306
18307 @table @option
18308 @item 0, tff
18309 Assume the top field is first.
18310 @item 1, bff
18311 Assume the bottom field is first.
18312 @item -1, auto
18313 Enable automatic detection of field parity.
18314 @end table
18315
18316 The default value is @code{auto}.
18317 If the interlacing is unknown or the decoder does not export this information,
18318 top field first will be assumed.
18319
18320 @item deint
18321 Specify which frames to deinterlace. Accept one of the following
18322 values:
18323
18324 @table @option
18325 @item 0, all
18326 Deinterlace all frames.
18327 @item 1, interlaced
18328 Only deinterlace frames marked as interlaced.
18329 @end table
18330
18331 The default value is @code{all}.
18332 @end table
18333
18334 @section yadif_cuda
18335
18336 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
18337 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
18338 and/or nvenc.
18339
18340 It accepts the following parameters:
18341
18342
18343 @table @option
18344
18345 @item mode
18346 The interlacing mode to adopt. It accepts one of the following values:
18347
18348 @table @option
18349 @item 0, send_frame
18350 Output one frame for each frame.
18351 @item 1, send_field
18352 Output one frame for each field.
18353 @item 2, send_frame_nospatial
18354 Like @code{send_frame}, but it skips the spatial interlacing check.
18355 @item 3, send_field_nospatial
18356 Like @code{send_field}, but it skips the spatial interlacing check.
18357 @end table
18358
18359 The default value is @code{send_frame}.
18360
18361 @item parity
18362 The picture field parity assumed for the input interlaced video. It accepts one
18363 of the following values:
18364
18365 @table @option
18366 @item 0, tff
18367 Assume the top field is first.
18368 @item 1, bff
18369 Assume the bottom field is first.
18370 @item -1, auto
18371 Enable automatic detection of field parity.
18372 @end table
18373
18374 The default value is @code{auto}.
18375 If the interlacing is unknown or the decoder does not export this information,
18376 top field first will be assumed.
18377
18378 @item deint
18379 Specify which frames to deinterlace. Accept one of the following
18380 values:
18381
18382 @table @option
18383 @item 0, all
18384 Deinterlace all frames.
18385 @item 1, interlaced
18386 Only deinterlace frames marked as interlaced.
18387 @end table
18388
18389 The default value is @code{all}.
18390 @end table
18391
18392 @section zoompan
18393
18394 Apply Zoom & Pan effect.
18395
18396 This filter accepts the following options:
18397
18398 @table @option
18399 @item zoom, z
18400 Set the zoom expression. Range is 1-10. Default is 1.
18401
18402 @item x
18403 @item y
18404 Set the x and y expression. Default is 0.
18405
18406 @item d
18407 Set the duration expression in number of frames.
18408 This sets for how many number of frames effect will last for
18409 single input image.
18410
18411 @item s
18412 Set the output image size, default is 'hd720'.
18413
18414 @item fps
18415 Set the output frame rate, default is '25'.
18416 @end table
18417
18418 Each expression can contain the following constants:
18419
18420 @table @option
18421 @item in_w, iw
18422 Input width.
18423
18424 @item in_h, ih
18425 Input height.
18426
18427 @item out_w, ow
18428 Output width.
18429
18430 @item out_h, oh
18431 Output height.
18432
18433 @item in
18434 Input frame count.
18435
18436 @item on
18437 Output frame count.
18438
18439 @item x
18440 @item y
18441 Last calculated 'x' and 'y' position from 'x' and 'y' expression
18442 for current input frame.
18443
18444 @item px
18445 @item py
18446 'x' and 'y' of last output frame of previous input frame or 0 when there was
18447 not yet such frame (first input frame).
18448
18449 @item zoom
18450 Last calculated zoom from 'z' expression for current input frame.
18451
18452 @item pzoom
18453 Last calculated zoom of last output frame of previous input frame.
18454
18455 @item duration
18456 Number of output frames for current input frame. Calculated from 'd' expression
18457 for each input frame.
18458
18459 @item pduration
18460 number of output frames created for previous input frame
18461
18462 @item a
18463 Rational number: input width / input height
18464
18465 @item sar
18466 sample aspect ratio
18467
18468 @item dar
18469 display aspect ratio
18470
18471 @end table
18472
18473 @subsection Examples
18474
18475 @itemize
18476 @item
18477 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
18478 @example
18479 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
18480 @end example
18481
18482 @item
18483 Zoom-in up to 1.5 and pan always at center of picture:
18484 @example
18485 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18486 @end example
18487
18488 @item
18489 Same as above but without pausing:
18490 @example
18491 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18492 @end example
18493 @end itemize
18494
18495 @anchor{zscale}
18496 @section zscale
18497 Scale (resize) the input video, using the z.lib library:
18498 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
18499 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
18500
18501 The zscale filter forces the output display aspect ratio to be the same
18502 as the input, by changing the output sample aspect ratio.
18503
18504 If the input image format is different from the format requested by
18505 the next filter, the zscale filter will convert the input to the
18506 requested format.
18507
18508 @subsection Options
18509 The filter accepts the following options.
18510
18511 @table @option
18512 @item width, w
18513 @item height, h
18514 Set the output video dimension expression. Default value is the input
18515 dimension.
18516
18517 If the @var{width} or @var{w} value is 0, the input width is used for
18518 the output. If the @var{height} or @var{h} value is 0, the input height
18519 is used for the output.
18520
18521 If one and only one of the values is -n with n >= 1, the zscale filter
18522 will use a value that maintains the aspect ratio of the input image,
18523 calculated from the other specified dimension. After that it will,
18524 however, make sure that the calculated dimension is divisible by n and
18525 adjust the value if necessary.
18526
18527 If both values are -n with n >= 1, the behavior will be identical to
18528 both values being set to 0 as previously detailed.
18529
18530 See below for the list of accepted constants for use in the dimension
18531 expression.
18532
18533 @item size, s
18534 Set the video size. For the syntax of this option, check the
18535 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18536
18537 @item dither, d
18538 Set the dither type.
18539
18540 Possible values are:
18541 @table @var
18542 @item none
18543 @item ordered
18544 @item random
18545 @item error_diffusion
18546 @end table
18547
18548 Default is none.
18549
18550 @item filter, f
18551 Set the resize filter type.
18552
18553 Possible values are:
18554 @table @var
18555 @item point
18556 @item bilinear
18557 @item bicubic
18558 @item spline16
18559 @item spline36
18560 @item lanczos
18561 @end table
18562
18563 Default is bilinear.
18564
18565 @item range, r
18566 Set the color range.
18567
18568 Possible values are:
18569 @table @var
18570 @item input
18571 @item limited
18572 @item full
18573 @end table
18574
18575 Default is same as input.
18576
18577 @item primaries, p
18578 Set the color primaries.
18579
18580 Possible values are:
18581 @table @var
18582 @item input
18583 @item 709
18584 @item unspecified
18585 @item 170m
18586 @item 240m
18587 @item 2020
18588 @end table
18589
18590 Default is same as input.
18591
18592 @item transfer, t
18593 Set the transfer characteristics.
18594
18595 Possible values are:
18596 @table @var
18597 @item input
18598 @item 709
18599 @item unspecified
18600 @item 601
18601 @item linear
18602 @item 2020_10
18603 @item 2020_12
18604 @item smpte2084
18605 @item iec61966-2-1
18606 @item arib-std-b67
18607 @end table
18608
18609 Default is same as input.
18610
18611 @item matrix, m
18612 Set the colorspace matrix.
18613
18614 Possible value are:
18615 @table @var
18616 @item input
18617 @item 709
18618 @item unspecified
18619 @item 470bg
18620 @item 170m
18621 @item 2020_ncl
18622 @item 2020_cl
18623 @end table
18624
18625 Default is same as input.
18626
18627 @item rangein, rin
18628 Set the input color range.
18629
18630 Possible values are:
18631 @table @var
18632 @item input
18633 @item limited
18634 @item full
18635 @end table
18636
18637 Default is same as input.
18638
18639 @item primariesin, pin
18640 Set the input color primaries.
18641
18642 Possible values are:
18643 @table @var
18644 @item input
18645 @item 709
18646 @item unspecified
18647 @item 170m
18648 @item 240m
18649 @item 2020
18650 @end table
18651
18652 Default is same as input.
18653
18654 @item transferin, tin
18655 Set the input transfer characteristics.
18656
18657 Possible values are:
18658 @table @var
18659 @item input
18660 @item 709
18661 @item unspecified
18662 @item 601
18663 @item linear
18664 @item 2020_10
18665 @item 2020_12
18666 @end table
18667
18668 Default is same as input.
18669
18670 @item matrixin, min
18671 Set the input colorspace matrix.
18672
18673 Possible value are:
18674 @table @var
18675 @item input
18676 @item 709
18677 @item unspecified
18678 @item 470bg
18679 @item 170m
18680 @item 2020_ncl
18681 @item 2020_cl
18682 @end table
18683
18684 @item chromal, c
18685 Set the output chroma location.
18686
18687 Possible values are:
18688 @table @var
18689 @item input
18690 @item left
18691 @item center
18692 @item topleft
18693 @item top
18694 @item bottomleft
18695 @item bottom
18696 @end table
18697
18698 @item chromalin, cin
18699 Set the input chroma location.
18700
18701 Possible values are:
18702 @table @var
18703 @item input
18704 @item left
18705 @item center
18706 @item topleft
18707 @item top
18708 @item bottomleft
18709 @item bottom
18710 @end table
18711
18712 @item npl
18713 Set the nominal peak luminance.
18714 @end table
18715
18716 The values of the @option{w} and @option{h} options are expressions
18717 containing the following constants:
18718
18719 @table @var
18720 @item in_w
18721 @item in_h
18722 The input width and height
18723
18724 @item iw
18725 @item ih
18726 These are the same as @var{in_w} and @var{in_h}.
18727
18728 @item out_w
18729 @item out_h
18730 The output (scaled) width and height
18731
18732 @item ow
18733 @item oh
18734 These are the same as @var{out_w} and @var{out_h}
18735
18736 @item a
18737 The same as @var{iw} / @var{ih}
18738
18739 @item sar
18740 input sample aspect ratio
18741
18742 @item dar
18743 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
18744
18745 @item hsub
18746 @item vsub
18747 horizontal and vertical input chroma subsample values. For example for the
18748 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
18749
18750 @item ohsub
18751 @item ovsub
18752 horizontal and vertical output chroma subsample values. For example for the
18753 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
18754 @end table
18755
18756 @table @option
18757 @end table
18758
18759 @c man end VIDEO FILTERS
18760
18761 @chapter OpenCL Video Filters
18762 @c man begin OPENCL VIDEO FILTERS
18763
18764 Below is a description of the currently available OpenCL video filters.
18765
18766 To enable compilation of these filters you need to configure FFmpeg with
18767 @code{--enable-opencl}.
18768
18769 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
18770 @table @option
18771
18772 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
18773 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
18774 given device parameters.
18775
18776 @item -filter_hw_device @var{name}
18777 Pass the hardware device called @var{name} to all filters in any filter graph.
18778
18779 @end table
18780
18781 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
18782
18783 @itemize
18784 @item
18785 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
18786 @example
18787 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
18788 @end example
18789 @end itemize
18790
18791 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.
18792
18793 @section avgblur_opencl
18794
18795 Apply average blur filter.
18796
18797 The filter accepts the following options:
18798
18799 @table @option
18800 @item sizeX
18801 Set horizontal radius size.
18802 Range is @code{[1, 1024]} and default value is @code{1}.
18803
18804 @item planes
18805 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
18806
18807 @item sizeY
18808 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
18809 @end table
18810
18811 @subsection Example
18812
18813 @itemize
18814 @item
18815 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.
18816 @example
18817 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
18818 @end example
18819 @end itemize
18820
18821 @section boxblur_opencl
18822
18823 Apply a boxblur algorithm to the input video.
18824
18825 It accepts the following parameters:
18826
18827 @table @option
18828
18829 @item luma_radius, lr
18830 @item luma_power, lp
18831 @item chroma_radius, cr
18832 @item chroma_power, cp
18833 @item alpha_radius, ar
18834 @item alpha_power, ap
18835
18836 @end table
18837
18838 A description of the accepted options follows.
18839
18840 @table @option
18841 @item luma_radius, lr
18842 @item chroma_radius, cr
18843 @item alpha_radius, ar
18844 Set an expression for the box radius in pixels used for blurring the
18845 corresponding input plane.
18846
18847 The radius value must be a non-negative number, and must not be
18848 greater than the value of the expression @code{min(w,h)/2} for the
18849 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
18850 planes.
18851
18852 Default value for @option{luma_radius} is "2". If not specified,
18853 @option{chroma_radius} and @option{alpha_radius} default to the
18854 corresponding value set for @option{luma_radius}.
18855
18856 The expressions can contain the following constants:
18857 @table @option
18858 @item w
18859 @item h
18860 The input width and height in pixels.
18861
18862 @item cw
18863 @item ch
18864 The input chroma image width and height in pixels.
18865
18866 @item hsub
18867 @item vsub
18868 The horizontal and vertical chroma subsample values. For example, for the
18869 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
18870 @end table
18871
18872 @item luma_power, lp
18873 @item chroma_power, cp
18874 @item alpha_power, ap
18875 Specify how many times the boxblur filter is applied to the
18876 corresponding plane.
18877
18878 Default value for @option{luma_power} is 2. If not specified,
18879 @option{chroma_power} and @option{alpha_power} default to the
18880 corresponding value set for @option{luma_power}.
18881
18882 A value of 0 will disable the effect.
18883 @end table
18884
18885 @subsection Examples
18886
18887 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.
18888
18889 @itemize
18890 @item
18891 Apply a boxblur filter with the luma, chroma, and alpha radius
18892 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.
18893 @example
18894 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
18895 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
18896 @end example
18897
18898 @item
18899 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.
18900
18901 For the luma plane, a 2x2 box radius will be run once.
18902
18903 For the chroma plane, a 4x4 box radius will be run 5 times.
18904
18905 For the alpha plane, a 3x3 box radius will be run 7 times.
18906 @example
18907 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
18908 @end example
18909 @end itemize
18910
18911 @section convolution_opencl
18912
18913 Apply convolution of 3x3, 5x5, 7x7 matrix.
18914
18915 The filter accepts the following options:
18916
18917 @table @option
18918 @item 0m
18919 @item 1m
18920 @item 2m
18921 @item 3m
18922 Set matrix for each plane.
18923 Matrix is sequence of 9, 25 or 49 signed numbers.
18924 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
18925
18926 @item 0rdiv
18927 @item 1rdiv
18928 @item 2rdiv
18929 @item 3rdiv
18930 Set multiplier for calculated value for each plane.
18931 If unset or 0, it will be sum of all matrix elements.
18932 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
18933
18934 @item 0bias
18935 @item 1bias
18936 @item 2bias
18937 @item 3bias
18938 Set bias for each plane. This value is added to the result of the multiplication.
18939 Useful for making the overall image brighter or darker.
18940 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
18941
18942 @end table
18943
18944 @subsection Examples
18945
18946 @itemize
18947 @item
18948 Apply sharpen:
18949 @example
18950 -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
18951 @end example
18952
18953 @item
18954 Apply blur:
18955 @example
18956 -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
18957 @end example
18958
18959 @item
18960 Apply edge enhance:
18961 @example
18962 -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
18963 @end example
18964
18965 @item
18966 Apply edge detect:
18967 @example
18968 -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
18969 @end example
18970
18971 @item
18972 Apply laplacian edge detector which includes diagonals:
18973 @example
18974 -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
18975 @end example
18976
18977 @item
18978 Apply emboss:
18979 @example
18980 -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
18981 @end example
18982 @end itemize
18983
18984 @section dilation_opencl
18985
18986 Apply dilation effect to the video.
18987
18988 This filter replaces the pixel by the local(3x3) maximum.
18989
18990 It accepts the following options:
18991
18992 @table @option
18993 @item threshold0
18994 @item threshold1
18995 @item threshold2
18996 @item threshold3
18997 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
18998 If @code{0}, plane will remain unchanged.
18999
19000 @item coordinates
19001 Flag which specifies the pixel to refer to.
19002 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19003
19004 Flags to local 3x3 coordinates region centered on @code{x}:
19005
19006     1 2 3
19007
19008     4 x 5
19009
19010     6 7 8
19011 @end table
19012
19013 @subsection Example
19014
19015 @itemize
19016 @item
19017 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.
19018 @example
19019 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19020 @end example
19021 @end itemize
19022
19023 @section erosion_opencl
19024
19025 Apply erosion effect to the video.
19026
19027 This filter replaces the pixel by the local(3x3) minimum.
19028
19029 It accepts the following options:
19030
19031 @table @option
19032 @item threshold0
19033 @item threshold1
19034 @item threshold2
19035 @item threshold3
19036 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19037 If @code{0}, plane will remain unchanged.
19038
19039 @item coordinates
19040 Flag which specifies the pixel to refer to.
19041 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19042
19043 Flags to local 3x3 coordinates region centered on @code{x}:
19044
19045     1 2 3
19046
19047     4 x 5
19048
19049     6 7 8
19050 @end table
19051
19052 @subsection Example
19053
19054 @itemize
19055 @item
19056 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.
19057 @example
19058 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19059 @end example
19060 @end itemize
19061
19062 @section overlay_opencl
19063
19064 Overlay one video on top of another.
19065
19066 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
19067 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
19068
19069 The filter accepts the following options:
19070
19071 @table @option
19072
19073 @item x
19074 Set the x coordinate of the overlaid video on the main video.
19075 Default value is @code{0}.
19076
19077 @item y
19078 Set the x coordinate of the overlaid video on the main video.
19079 Default value is @code{0}.
19080
19081 @end table
19082
19083 @subsection Examples
19084
19085 @itemize
19086 @item
19087 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
19088 @example
19089 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19090 @end example
19091 @item
19092 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
19093 @example
19094 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19095 @end example
19096
19097 @end itemize
19098
19099 @section prewitt_opencl
19100
19101 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
19102
19103 The filter accepts the following option:
19104
19105 @table @option
19106 @item planes
19107 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19108
19109 @item scale
19110 Set value which will be multiplied with filtered result.
19111 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19112
19113 @item delta
19114 Set value which will be added to filtered result.
19115 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19116 @end table
19117
19118 @subsection Example
19119
19120 @itemize
19121 @item
19122 Apply the Prewitt operator with scale set to 2 and delta set to 10.
19123 @example
19124 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
19125 @end example
19126 @end itemize
19127
19128 @section roberts_opencl
19129 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
19130
19131 The filter accepts the following option:
19132
19133 @table @option
19134 @item planes
19135 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19136
19137 @item scale
19138 Set value which will be multiplied with filtered result.
19139 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19140
19141 @item delta
19142 Set value which will be added to filtered result.
19143 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19144 @end table
19145
19146 @subsection Example
19147
19148 @itemize
19149 @item
19150 Apply the Roberts cross operator with scale set to 2 and delta set to 10
19151 @example
19152 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
19153 @end example
19154 @end itemize
19155
19156 @section sobel_opencl
19157
19158 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
19159
19160 The filter accepts the following option:
19161
19162 @table @option
19163 @item planes
19164 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19165
19166 @item scale
19167 Set value which will be multiplied with filtered result.
19168 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19169
19170 @item delta
19171 Set value which will be added to filtered result.
19172 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19173 @end table
19174
19175 @subsection Example
19176
19177 @itemize
19178 @item
19179 Apply sobel operator with scale set to 2 and delta set to 10
19180 @example
19181 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
19182 @end example
19183 @end itemize
19184
19185 @section tonemap_opencl
19186
19187 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
19188
19189 It accepts the following parameters:
19190
19191 @table @option
19192 @item tonemap
19193 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
19194
19195 @item param
19196 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
19197
19198 @item desat
19199 Apply desaturation for highlights that exceed this level of brightness. The
19200 higher the parameter, the more color information will be preserved. This
19201 setting helps prevent unnaturally blown-out colors for super-highlights, by
19202 (smoothly) turning into white instead. This makes images feel more natural,
19203 at the cost of reducing information about out-of-range colors.
19204
19205 The default value is 0.5, and the algorithm here is a little different from
19206 the cpu version tonemap currently. A setting of 0.0 disables this option.
19207
19208 @item threshold
19209 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
19210 is used to detect whether the scene has changed or not. If the distance between
19211 the current frame average brightness and the current running average exceeds
19212 a threshold value, we would re-calculate scene average and peak brightness.
19213 The default value is 0.2.
19214
19215 @item format
19216 Specify the output pixel format.
19217
19218 Currently supported formats are:
19219 @table @var
19220 @item p010
19221 @item nv12
19222 @end table
19223
19224 @item range, r
19225 Set the output color range.
19226
19227 Possible values are:
19228 @table @var
19229 @item tv/mpeg
19230 @item pc/jpeg
19231 @end table
19232
19233 Default is same as input.
19234
19235 @item primaries, p
19236 Set the output color primaries.
19237
19238 Possible values are:
19239 @table @var
19240 @item bt709
19241 @item bt2020
19242 @end table
19243
19244 Default is same as input.
19245
19246 @item transfer, t
19247 Set the output transfer characteristics.
19248
19249 Possible values are:
19250 @table @var
19251 @item bt709
19252 @item bt2020
19253 @end table
19254
19255 Default is bt709.
19256
19257 @item matrix, m
19258 Set the output colorspace matrix.
19259
19260 Possible value are:
19261 @table @var
19262 @item bt709
19263 @item bt2020
19264 @end table
19265
19266 Default is same as input.
19267
19268 @end table
19269
19270 @subsection Example
19271
19272 @itemize
19273 @item
19274 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
19275 @example
19276 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
19277 @end example
19278 @end itemize
19279
19280 @section unsharp_opencl
19281
19282 Sharpen or blur the input video.
19283
19284 It accepts the following parameters:
19285
19286 @table @option
19287 @item luma_msize_x, lx
19288 Set the luma matrix horizontal size.
19289 Range is @code{[1, 23]} and default value is @code{5}.
19290
19291 @item luma_msize_y, ly
19292 Set the luma matrix vertical size.
19293 Range is @code{[1, 23]} and default value is @code{5}.
19294
19295 @item luma_amount, la
19296 Set the luma effect strength.
19297 Range is @code{[-10, 10]} and default value is @code{1.0}.
19298
19299 Negative values will blur the input video, while positive values will
19300 sharpen it, a value of zero will disable the effect.
19301
19302 @item chroma_msize_x, cx
19303 Set the chroma matrix horizontal size.
19304 Range is @code{[1, 23]} and default value is @code{5}.
19305
19306 @item chroma_msize_y, cy
19307 Set the chroma matrix vertical size.
19308 Range is @code{[1, 23]} and default value is @code{5}.
19309
19310 @item chroma_amount, ca
19311 Set the chroma effect strength.
19312 Range is @code{[-10, 10]} and default value is @code{0.0}.
19313
19314 Negative values will blur the input video, while positive values will
19315 sharpen it, a value of zero will disable the effect.
19316
19317 @end table
19318
19319 All parameters are optional and default to the equivalent of the
19320 string '5:5:1.0:5:5:0.0'.
19321
19322 @subsection Examples
19323
19324 @itemize
19325 @item
19326 Apply strong luma sharpen effect:
19327 @example
19328 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
19329 @end example
19330
19331 @item
19332 Apply a strong blur of both luma and chroma parameters:
19333 @example
19334 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
19335 @end example
19336 @end itemize
19337
19338 @c man end OPENCL VIDEO FILTERS
19339
19340 @chapter Video Sources
19341 @c man begin VIDEO SOURCES
19342
19343 Below is a description of the currently available video sources.
19344
19345 @section buffer
19346
19347 Buffer video frames, and make them available to the filter chain.
19348
19349 This source is mainly intended for a programmatic use, in particular
19350 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
19351
19352 It accepts the following parameters:
19353
19354 @table @option
19355
19356 @item video_size
19357 Specify the size (width and height) of the buffered video frames. For the
19358 syntax of this option, check the
19359 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19360
19361 @item width
19362 The input video width.
19363
19364 @item height
19365 The input video height.
19366
19367 @item pix_fmt
19368 A string representing the pixel format of the buffered video frames.
19369 It may be a number corresponding to a pixel format, or a pixel format
19370 name.
19371
19372 @item time_base
19373 Specify the timebase assumed by the timestamps of the buffered frames.
19374
19375 @item frame_rate
19376 Specify the frame rate expected for the video stream.
19377
19378 @item pixel_aspect, sar
19379 The sample (pixel) aspect ratio of the input video.
19380
19381 @item sws_param
19382 Specify the optional parameters to be used for the scale filter which
19383 is automatically inserted when an input change is detected in the
19384 input size or format.
19385
19386 @item hw_frames_ctx
19387 When using a hardware pixel format, this should be a reference to an
19388 AVHWFramesContext describing input frames.
19389 @end table
19390
19391 For example:
19392 @example
19393 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
19394 @end example
19395
19396 will instruct the source to accept video frames with size 320x240 and
19397 with format "yuv410p", assuming 1/24 as the timestamps timebase and
19398 square pixels (1:1 sample aspect ratio).
19399 Since the pixel format with name "yuv410p" corresponds to the number 6
19400 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
19401 this example corresponds to:
19402 @example
19403 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
19404 @end example
19405
19406 Alternatively, the options can be specified as a flat string, but this
19407 syntax is deprecated:
19408
19409 @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}]
19410
19411 @section cellauto
19412
19413 Create a pattern generated by an elementary cellular automaton.
19414
19415 The initial state of the cellular automaton can be defined through the
19416 @option{filename} and @option{pattern} options. If such options are
19417 not specified an initial state is created randomly.
19418
19419 At each new frame a new row in the video is filled with the result of
19420 the cellular automaton next generation. The behavior when the whole
19421 frame is filled is defined by the @option{scroll} option.
19422
19423 This source accepts the following options:
19424
19425 @table @option
19426 @item filename, f
19427 Read the initial cellular automaton state, i.e. the starting row, from
19428 the specified file.
19429 In the file, each non-whitespace character is considered an alive
19430 cell, a newline will terminate the row, and further characters in the
19431 file will be ignored.
19432
19433 @item pattern, p
19434 Read the initial cellular automaton state, i.e. the starting row, from
19435 the specified string.
19436
19437 Each non-whitespace character in the string is considered an alive
19438 cell, a newline will terminate the row, and further characters in the
19439 string will be ignored.
19440
19441 @item rate, r
19442 Set the video rate, that is the number of frames generated per second.
19443 Default is 25.
19444
19445 @item random_fill_ratio, ratio
19446 Set the random fill ratio for the initial cellular automaton row. It
19447 is a floating point number value ranging from 0 to 1, defaults to
19448 1/PHI.
19449
19450 This option is ignored when a file or a pattern is specified.
19451
19452 @item random_seed, seed
19453 Set the seed for filling randomly the initial row, must be an integer
19454 included between 0 and UINT32_MAX. If not specified, or if explicitly
19455 set to -1, the filter will try to use a good random seed on a best
19456 effort basis.
19457
19458 @item rule
19459 Set the cellular automaton rule, it is a number ranging from 0 to 255.
19460 Default value is 110.
19461
19462 @item size, s
19463 Set the size of the output video. For the syntax of this option, check the
19464 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19465
19466 If @option{filename} or @option{pattern} is specified, the size is set
19467 by default to the width of the specified initial state row, and the
19468 height is set to @var{width} * PHI.
19469
19470 If @option{size} is set, it must contain the width of the specified
19471 pattern string, and the specified pattern will be centered in the
19472 larger row.
19473
19474 If a filename or a pattern string is not specified, the size value
19475 defaults to "320x518" (used for a randomly generated initial state).
19476
19477 @item scroll
19478 If set to 1, scroll the output upward when all the rows in the output
19479 have been already filled. If set to 0, the new generated row will be
19480 written over the top row just after the bottom row is filled.
19481 Defaults to 1.
19482
19483 @item start_full, full
19484 If set to 1, completely fill the output with generated rows before
19485 outputting the first frame.
19486 This is the default behavior, for disabling set the value to 0.
19487
19488 @item stitch
19489 If set to 1, stitch the left and right row edges together.
19490 This is the default behavior, for disabling set the value to 0.
19491 @end table
19492
19493 @subsection Examples
19494
19495 @itemize
19496 @item
19497 Read the initial state from @file{pattern}, and specify an output of
19498 size 200x400.
19499 @example
19500 cellauto=f=pattern:s=200x400
19501 @end example
19502
19503 @item
19504 Generate a random initial row with a width of 200 cells, with a fill
19505 ratio of 2/3:
19506 @example
19507 cellauto=ratio=2/3:s=200x200
19508 @end example
19509
19510 @item
19511 Create a pattern generated by rule 18 starting by a single alive cell
19512 centered on an initial row with width 100:
19513 @example
19514 cellauto=p=@@:s=100x400:full=0:rule=18
19515 @end example
19516
19517 @item
19518 Specify a more elaborated initial pattern:
19519 @example
19520 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
19521 @end example
19522
19523 @end itemize
19524
19525 @anchor{coreimagesrc}
19526 @section coreimagesrc
19527 Video source generated on GPU using Apple's CoreImage API on OSX.
19528
19529 This video source is a specialized version of the @ref{coreimage} video filter.
19530 Use a core image generator at the beginning of the applied filterchain to
19531 generate the content.
19532
19533 The coreimagesrc video source accepts the following options:
19534 @table @option
19535 @item list_generators
19536 List all available generators along with all their respective options as well as
19537 possible minimum and maximum values along with the default values.
19538 @example
19539 list_generators=true
19540 @end example
19541
19542 @item size, s
19543 Specify the size of the sourced video. For the syntax of this option, check the
19544 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19545 The default value is @code{320x240}.
19546
19547 @item rate, r
19548 Specify the frame rate of the sourced video, as the number of frames
19549 generated per second. It has to be a string in the format
19550 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
19551 number or a valid video frame rate abbreviation. The default value is
19552 "25".
19553
19554 @item sar
19555 Set the sample aspect ratio of the sourced video.
19556
19557 @item duration, d
19558 Set the duration of the sourced video. See
19559 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19560 for the accepted syntax.
19561
19562 If not specified, or the expressed duration is negative, the video is
19563 supposed to be generated forever.
19564 @end table
19565
19566 Additionally, all options of the @ref{coreimage} video filter are accepted.
19567 A complete filterchain can be used for further processing of the
19568 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
19569 and examples for details.
19570
19571 @subsection Examples
19572
19573 @itemize
19574
19575 @item
19576 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
19577 given as complete and escaped command-line for Apple's standard bash shell:
19578 @example
19579 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
19580 @end example
19581 This example is equivalent to the QRCode example of @ref{coreimage} without the
19582 need for a nullsrc video source.
19583 @end itemize
19584
19585
19586 @section mandelbrot
19587
19588 Generate a Mandelbrot set fractal, and progressively zoom towards the
19589 point specified with @var{start_x} and @var{start_y}.
19590
19591 This source accepts the following options:
19592
19593 @table @option
19594
19595 @item end_pts
19596 Set the terminal pts value. Default value is 400.
19597
19598 @item end_scale
19599 Set the terminal scale value.
19600 Must be a floating point value. Default value is 0.3.
19601
19602 @item inner
19603 Set the inner coloring mode, that is the algorithm used to draw the
19604 Mandelbrot fractal internal region.
19605
19606 It shall assume one of the following values:
19607 @table @option
19608 @item black
19609 Set black mode.
19610 @item convergence
19611 Show time until convergence.
19612 @item mincol
19613 Set color based on point closest to the origin of the iterations.
19614 @item period
19615 Set period mode.
19616 @end table
19617
19618 Default value is @var{mincol}.
19619
19620 @item bailout
19621 Set the bailout value. Default value is 10.0.
19622
19623 @item maxiter
19624 Set the maximum of iterations performed by the rendering
19625 algorithm. Default value is 7189.
19626
19627 @item outer
19628 Set outer coloring mode.
19629 It shall assume one of following values:
19630 @table @option
19631 @item iteration_count
19632 Set iteration count mode.
19633 @item normalized_iteration_count
19634 set normalized iteration count mode.
19635 @end table
19636 Default value is @var{normalized_iteration_count}.
19637
19638 @item rate, r
19639 Set frame rate, expressed as number of frames per second. Default
19640 value is "25".
19641
19642 @item size, s
19643 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
19644 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
19645
19646 @item start_scale
19647 Set the initial scale value. Default value is 3.0.
19648
19649 @item start_x
19650 Set the initial x position. Must be a floating point value between
19651 -100 and 100. Default value is -0.743643887037158704752191506114774.
19652
19653 @item start_y
19654 Set the initial y position. Must be a floating point value between
19655 -100 and 100. Default value is -0.131825904205311970493132056385139.
19656 @end table
19657
19658 @section mptestsrc
19659
19660 Generate various test patterns, as generated by the MPlayer test filter.
19661
19662 The size of the generated video is fixed, and is 256x256.
19663 This source is useful in particular for testing encoding features.
19664
19665 This source accepts the following options:
19666
19667 @table @option
19668
19669 @item rate, r
19670 Specify the frame rate of the sourced video, as the number of frames
19671 generated per second. It has to be a string in the format
19672 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
19673 number or a valid video frame rate abbreviation. The default value is
19674 "25".
19675
19676 @item duration, d
19677 Set the duration of the sourced video. See
19678 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19679 for the accepted syntax.
19680
19681 If not specified, or the expressed duration is negative, the video is
19682 supposed to be generated forever.
19683
19684 @item test, t
19685
19686 Set the number or the name of the test to perform. Supported tests are:
19687 @table @option
19688 @item dc_luma
19689 @item dc_chroma
19690 @item freq_luma
19691 @item freq_chroma
19692 @item amp_luma
19693 @item amp_chroma
19694 @item cbp
19695 @item mv
19696 @item ring1
19697 @item ring2
19698 @item all
19699
19700 @end table
19701
19702 Default value is "all", which will cycle through the list of all tests.
19703 @end table
19704
19705 Some examples:
19706 @example
19707 mptestsrc=t=dc_luma
19708 @end example
19709
19710 will generate a "dc_luma" test pattern.
19711
19712 @section frei0r_src
19713
19714 Provide a frei0r source.
19715
19716 To enable compilation of this filter you need to install the frei0r
19717 header and configure FFmpeg with @code{--enable-frei0r}.
19718
19719 This source accepts the following parameters:
19720
19721 @table @option
19722
19723 @item size
19724 The size of the video to generate. For the syntax of this option, check the
19725 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19726
19727 @item framerate
19728 The framerate of the generated video. It may be a string of the form
19729 @var{num}/@var{den} or a frame rate abbreviation.
19730
19731 @item filter_name
19732 The name to the frei0r source to load. For more information regarding frei0r and
19733 how to set the parameters, read the @ref{frei0r} section in the video filters
19734 documentation.
19735
19736 @item filter_params
19737 A '|'-separated list of parameters to pass to the frei0r source.
19738
19739 @end table
19740
19741 For example, to generate a frei0r partik0l source with size 200x200
19742 and frame rate 10 which is overlaid on the overlay filter main input:
19743 @example
19744 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
19745 @end example
19746
19747 @section life
19748
19749 Generate a life pattern.
19750
19751 This source is based on a generalization of John Conway's life game.
19752
19753 The sourced input represents a life grid, each pixel represents a cell
19754 which can be in one of two possible states, alive or dead. Every cell
19755 interacts with its eight neighbours, which are the cells that are
19756 horizontally, vertically, or diagonally adjacent.
19757
19758 At each interaction the grid evolves according to the adopted rule,
19759 which specifies the number of neighbor alive cells which will make a
19760 cell stay alive or born. The @option{rule} option allows one to specify
19761 the rule to adopt.
19762
19763 This source accepts the following options:
19764
19765 @table @option
19766 @item filename, f
19767 Set the file from which to read the initial grid state. In the file,
19768 each non-whitespace character is considered an alive cell, and newline
19769 is used to delimit the end of each row.
19770
19771 If this option is not specified, the initial grid is generated
19772 randomly.
19773
19774 @item rate, r
19775 Set the video rate, that is the number of frames generated per second.
19776 Default is 25.
19777
19778 @item random_fill_ratio, ratio
19779 Set the random fill ratio for the initial random grid. It is a
19780 floating point number value ranging from 0 to 1, defaults to 1/PHI.
19781 It is ignored when a file is specified.
19782
19783 @item random_seed, seed
19784 Set the seed for filling the initial random grid, must be an integer
19785 included between 0 and UINT32_MAX. If not specified, or if explicitly
19786 set to -1, the filter will try to use a good random seed on a best
19787 effort basis.
19788
19789 @item rule
19790 Set the life rule.
19791
19792 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
19793 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
19794 @var{NS} specifies the number of alive neighbor cells which make a
19795 live cell stay alive, and @var{NB} the number of alive neighbor cells
19796 which make a dead cell to become alive (i.e. to "born").
19797 "s" and "b" can be used in place of "S" and "B", respectively.
19798
19799 Alternatively a rule can be specified by an 18-bits integer. The 9
19800 high order bits are used to encode the next cell state if it is alive
19801 for each number of neighbor alive cells, the low order bits specify
19802 the rule for "borning" new cells. Higher order bits encode for an
19803 higher number of neighbor cells.
19804 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
19805 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
19806
19807 Default value is "S23/B3", which is the original Conway's game of life
19808 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
19809 cells, and will born a new cell if there are three alive cells around
19810 a dead cell.
19811
19812 @item size, s
19813 Set the size of the output video. For the syntax of this option, check the
19814 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19815
19816 If @option{filename} is specified, the size is set by default to the
19817 same size of the input file. If @option{size} is set, it must contain
19818 the size specified in the input file, and the initial grid defined in
19819 that file is centered in the larger resulting area.
19820
19821 If a filename is not specified, the size value defaults to "320x240"
19822 (used for a randomly generated initial grid).
19823
19824 @item stitch
19825 If set to 1, stitch the left and right grid edges together, and the
19826 top and bottom edges also. Defaults to 1.
19827
19828 @item mold
19829 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
19830 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
19831 value from 0 to 255.
19832
19833 @item life_color
19834 Set the color of living (or new born) cells.
19835
19836 @item death_color
19837 Set the color of dead cells. If @option{mold} is set, this is the first color
19838 used to represent a dead cell.
19839
19840 @item mold_color
19841 Set mold color, for definitely dead and moldy cells.
19842
19843 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
19844 ffmpeg-utils manual,ffmpeg-utils}.
19845 @end table
19846
19847 @subsection Examples
19848
19849 @itemize
19850 @item
19851 Read a grid from @file{pattern}, and center it on a grid of size
19852 300x300 pixels:
19853 @example
19854 life=f=pattern:s=300x300
19855 @end example
19856
19857 @item
19858 Generate a random grid of size 200x200, with a fill ratio of 2/3:
19859 @example
19860 life=ratio=2/3:s=200x200
19861 @end example
19862
19863 @item
19864 Specify a custom rule for evolving a randomly generated grid:
19865 @example
19866 life=rule=S14/B34
19867 @end example
19868
19869 @item
19870 Full example with slow death effect (mold) using @command{ffplay}:
19871 @example
19872 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
19873 @end example
19874 @end itemize
19875
19876 @anchor{allrgb}
19877 @anchor{allyuv}
19878 @anchor{color}
19879 @anchor{haldclutsrc}
19880 @anchor{nullsrc}
19881 @anchor{pal75bars}
19882 @anchor{pal100bars}
19883 @anchor{rgbtestsrc}
19884 @anchor{smptebars}
19885 @anchor{smptehdbars}
19886 @anchor{testsrc}
19887 @anchor{testsrc2}
19888 @anchor{yuvtestsrc}
19889 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
19890
19891 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
19892
19893 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
19894
19895 The @code{color} source provides an uniformly colored input.
19896
19897 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
19898 @ref{haldclut} filter.
19899
19900 The @code{nullsrc} source returns unprocessed video frames. It is
19901 mainly useful to be employed in analysis / debugging tools, or as the
19902 source for filters which ignore the input data.
19903
19904 The @code{pal75bars} source generates a color bars pattern, based on
19905 EBU PAL recommendations with 75% color levels.
19906
19907 The @code{pal100bars} source generates a color bars pattern, based on
19908 EBU PAL recommendations with 100% color levels.
19909
19910 The @code{rgbtestsrc} source generates an RGB test pattern useful for
19911 detecting RGB vs BGR issues. You should see a red, green and blue
19912 stripe from top to bottom.
19913
19914 The @code{smptebars} source generates a color bars pattern, based on
19915 the SMPTE Engineering Guideline EG 1-1990.
19916
19917 The @code{smptehdbars} source generates a color bars pattern, based on
19918 the SMPTE RP 219-2002.
19919
19920 The @code{testsrc} source generates a test video pattern, showing a
19921 color pattern, a scrolling gradient and a timestamp. This is mainly
19922 intended for testing purposes.
19923
19924 The @code{testsrc2} source is similar to testsrc, but supports more
19925 pixel formats instead of just @code{rgb24}. This allows using it as an
19926 input for other tests without requiring a format conversion.
19927
19928 The @code{yuvtestsrc} source generates an YUV test pattern. You should
19929 see a y, cb and cr stripe from top to bottom.
19930
19931 The sources accept the following parameters:
19932
19933 @table @option
19934
19935 @item level
19936 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
19937 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
19938 pixels to be used as identity matrix for 3D lookup tables. Each component is
19939 coded on a @code{1/(N*N)} scale.
19940
19941 @item color, c
19942 Specify the color of the source, only available in the @code{color}
19943 source. For the syntax of this option, check the
19944 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19945
19946 @item size, s
19947 Specify the size of the sourced video. For the syntax of this option, check the
19948 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19949 The default value is @code{320x240}.
19950
19951 This option is not available with the @code{allrgb}, @code{allyuv}, and
19952 @code{haldclutsrc} filters.
19953
19954 @item rate, r
19955 Specify the frame rate of the sourced video, as the number of frames
19956 generated per second. It has to be a string in the format
19957 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
19958 number or a valid video frame rate abbreviation. The default value is
19959 "25".
19960
19961 @item duration, d
19962 Set the duration of the sourced video. See
19963 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19964 for the accepted syntax.
19965
19966 If not specified, or the expressed duration is negative, the video is
19967 supposed to be generated forever.
19968
19969 @item sar
19970 Set the sample aspect ratio of the sourced video.
19971
19972 @item alpha
19973 Specify the alpha (opacity) of the background, only available in the
19974 @code{testsrc2} source. The value must be between 0 (fully transparent) and
19975 255 (fully opaque, the default).
19976
19977 @item decimals, n
19978 Set the number of decimals to show in the timestamp, only available in the
19979 @code{testsrc} source.
19980
19981 The displayed timestamp value will correspond to the original
19982 timestamp value multiplied by the power of 10 of the specified
19983 value. Default value is 0.
19984 @end table
19985
19986 @subsection Examples
19987
19988 @itemize
19989 @item
19990 Generate a video with a duration of 5.3 seconds, with size
19991 176x144 and a frame rate of 10 frames per second:
19992 @example
19993 testsrc=duration=5.3:size=qcif:rate=10
19994 @end example
19995
19996 @item
19997 The following graph description will generate a red source
19998 with an opacity of 0.2, with size "qcif" and a frame rate of 10
19999 frames per second:
20000 @example
20001 color=c=red@@0.2:s=qcif:r=10
20002 @end example
20003
20004 @item
20005 If the input content is to be ignored, @code{nullsrc} can be used. The
20006 following command generates noise in the luminance plane by employing
20007 the @code{geq} filter:
20008 @example
20009 nullsrc=s=256x256, geq=random(1)*255:128:128
20010 @end example
20011 @end itemize
20012
20013 @subsection Commands
20014
20015 The @code{color} source supports the following commands:
20016
20017 @table @option
20018 @item c, color
20019 Set the color of the created image. Accepts the same syntax of the
20020 corresponding @option{color} option.
20021 @end table
20022
20023 @section openclsrc
20024
20025 Generate video using an OpenCL program.
20026
20027 @table @option
20028
20029 @item source
20030 OpenCL program source file.
20031
20032 @item kernel
20033 Kernel name in program.
20034
20035 @item size, s
20036 Size of frames to generate.  This must be set.
20037
20038 @item format
20039 Pixel format to use for the generated frames.  This must be set.
20040
20041 @item rate, r
20042 Number of frames generated every second.  Default value is '25'.
20043
20044 @end table
20045
20046 For details of how the program loading works, see the @ref{program_opencl}
20047 filter.
20048
20049 Example programs:
20050
20051 @itemize
20052 @item
20053 Generate a colour ramp by setting pixel values from the position of the pixel
20054 in the output image.  (Note that this will work with all pixel formats, but
20055 the generated output will not be the same.)
20056 @verbatim
20057 __kernel void ramp(__write_only image2d_t dst,
20058                    unsigned int index)
20059 {
20060     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20061
20062     float4 val;
20063     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
20064
20065     write_imagef(dst, loc, val);
20066 }
20067 @end verbatim
20068
20069 @item
20070 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
20071 @verbatim
20072 __kernel void sierpinski_carpet(__write_only image2d_t dst,
20073                                 unsigned int index)
20074 {
20075     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20076
20077     float4 value = 0.0f;
20078     int x = loc.x + index;
20079     int y = loc.y + index;
20080     while (x > 0 || y > 0) {
20081         if (x % 3 == 1 && y % 3 == 1) {
20082             value = 1.0f;
20083             break;
20084         }
20085         x /= 3;
20086         y /= 3;
20087     }
20088
20089     write_imagef(dst, loc, value);
20090 }
20091 @end verbatim
20092
20093 @end itemize
20094
20095 @c man end VIDEO SOURCES
20096
20097 @chapter Video Sinks
20098 @c man begin VIDEO SINKS
20099
20100 Below is a description of the currently available video sinks.
20101
20102 @section buffersink
20103
20104 Buffer video frames, and make them available to the end of the filter
20105 graph.
20106
20107 This sink is mainly intended for programmatic use, in particular
20108 through the interface defined in @file{libavfilter/buffersink.h}
20109 or the options system.
20110
20111 It accepts a pointer to an AVBufferSinkContext structure, which
20112 defines the incoming buffers' formats, to be passed as the opaque
20113 parameter to @code{avfilter_init_filter} for initialization.
20114
20115 @section nullsink
20116
20117 Null video sink: do absolutely nothing with the input video. It is
20118 mainly useful as a template and for use in analysis / debugging
20119 tools.
20120
20121 @c man end VIDEO SINKS
20122
20123 @chapter Multimedia Filters
20124 @c man begin MULTIMEDIA FILTERS
20125
20126 Below is a description of the currently available multimedia filters.
20127
20128 @section abitscope
20129
20130 Convert input audio to a video output, displaying the audio bit scope.
20131
20132 The filter accepts the following options:
20133
20134 @table @option
20135 @item rate, r
20136 Set frame rate, expressed as number of frames per second. Default
20137 value is "25".
20138
20139 @item size, s
20140 Specify the video size for the output. For the syntax of this option, check the
20141 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20142 Default value is @code{1024x256}.
20143
20144 @item colors
20145 Specify list of colors separated by space or by '|' which will be used to
20146 draw channels. Unrecognized or missing colors will be replaced
20147 by white color.
20148 @end table
20149
20150 @section ahistogram
20151
20152 Convert input audio to a video output, displaying the volume histogram.
20153
20154 The filter accepts the following options:
20155
20156 @table @option
20157 @item dmode
20158 Specify how histogram is calculated.
20159
20160 It accepts the following values:
20161 @table @samp
20162 @item single
20163 Use single histogram for all channels.
20164 @item separate
20165 Use separate histogram for each channel.
20166 @end table
20167 Default is @code{single}.
20168
20169 @item rate, r
20170 Set frame rate, expressed as number of frames per second. Default
20171 value is "25".
20172
20173 @item size, s
20174 Specify the video size for the output. For the syntax of this option, check the
20175 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20176 Default value is @code{hd720}.
20177
20178 @item scale
20179 Set display scale.
20180
20181 It accepts the following values:
20182 @table @samp
20183 @item log
20184 logarithmic
20185 @item sqrt
20186 square root
20187 @item cbrt
20188 cubic root
20189 @item lin
20190 linear
20191 @item rlog
20192 reverse logarithmic
20193 @end table
20194 Default is @code{log}.
20195
20196 @item ascale
20197 Set amplitude scale.
20198
20199 It accepts the following values:
20200 @table @samp
20201 @item log
20202 logarithmic
20203 @item lin
20204 linear
20205 @end table
20206 Default is @code{log}.
20207
20208 @item acount
20209 Set how much frames to accumulate in histogram.
20210 Default is 1. Setting this to -1 accumulates all frames.
20211
20212 @item rheight
20213 Set histogram ratio of window height.
20214
20215 @item slide
20216 Set sonogram sliding.
20217
20218 It accepts the following values:
20219 @table @samp
20220 @item replace
20221 replace old rows with new ones.
20222 @item scroll
20223 scroll from top to bottom.
20224 @end table
20225 Default is @code{replace}.
20226 @end table
20227
20228 @section aphasemeter
20229
20230 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
20231 representing mean phase of current audio frame. A video output can also be produced and is
20232 enabled by default. The audio is passed through as first output.
20233
20234 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
20235 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
20236 and @code{1} means channels are in phase.
20237
20238 The filter accepts the following options, all related to its video output:
20239
20240 @table @option
20241 @item rate, r
20242 Set the output frame rate. Default value is @code{25}.
20243
20244 @item size, s
20245 Set the video size for the output. For the syntax of this option, check the
20246 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20247 Default value is @code{800x400}.
20248
20249 @item rc
20250 @item gc
20251 @item bc
20252 Specify the red, green, blue contrast. Default values are @code{2},
20253 @code{7} and @code{1}.
20254 Allowed range is @code{[0, 255]}.
20255
20256 @item mpc
20257 Set color which will be used for drawing median phase. If color is
20258 @code{none} which is default, no median phase value will be drawn.
20259
20260 @item video
20261 Enable video output. Default is enabled.
20262 @end table
20263
20264 @section avectorscope
20265
20266 Convert input audio to a video output, representing the audio vector
20267 scope.
20268
20269 The filter is used to measure the difference between channels of stereo
20270 audio stream. A monoaural signal, consisting of identical left and right
20271 signal, results in straight vertical line. Any stereo separation is visible
20272 as a deviation from this line, creating a Lissajous figure.
20273 If the straight (or deviation from it) but horizontal line appears this
20274 indicates that the left and right channels are out of phase.
20275
20276 The filter accepts the following options:
20277
20278 @table @option
20279 @item mode, m
20280 Set the vectorscope mode.
20281
20282 Available values are:
20283 @table @samp
20284 @item lissajous
20285 Lissajous rotated by 45 degrees.
20286
20287 @item lissajous_xy
20288 Same as above but not rotated.
20289
20290 @item polar
20291 Shape resembling half of circle.
20292 @end table
20293
20294 Default value is @samp{lissajous}.
20295
20296 @item size, s
20297 Set the video size for the output. For the syntax of this option, check the
20298 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20299 Default value is @code{400x400}.
20300
20301 @item rate, r
20302 Set the output frame rate. Default value is @code{25}.
20303
20304 @item rc
20305 @item gc
20306 @item bc
20307 @item ac
20308 Specify the red, green, blue and alpha contrast. Default values are @code{40},
20309 @code{160}, @code{80} and @code{255}.
20310 Allowed range is @code{[0, 255]}.
20311
20312 @item rf
20313 @item gf
20314 @item bf
20315 @item af
20316 Specify the red, green, blue and alpha fade. Default values are @code{15},
20317 @code{10}, @code{5} and @code{5}.
20318 Allowed range is @code{[0, 255]}.
20319
20320 @item zoom
20321 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
20322 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
20323
20324 @item draw
20325 Set the vectorscope drawing mode.
20326
20327 Available values are:
20328 @table @samp
20329 @item dot
20330 Draw dot for each sample.
20331
20332 @item line
20333 Draw line between previous and current sample.
20334 @end table
20335
20336 Default value is @samp{dot}.
20337
20338 @item scale
20339 Specify amplitude scale of audio samples.
20340
20341 Available values are:
20342 @table @samp
20343 @item lin
20344 Linear.
20345
20346 @item sqrt
20347 Square root.
20348
20349 @item cbrt
20350 Cubic root.
20351
20352 @item log
20353 Logarithmic.
20354 @end table
20355
20356 @item swap
20357 Swap left channel axis with right channel axis.
20358
20359 @item mirror
20360 Mirror axis.
20361
20362 @table @samp
20363 @item none
20364 No mirror.
20365
20366 @item x
20367 Mirror only x axis.
20368
20369 @item y
20370 Mirror only y axis.
20371
20372 @item xy
20373 Mirror both axis.
20374 @end table
20375
20376 @end table
20377
20378 @subsection Examples
20379
20380 @itemize
20381 @item
20382 Complete example using @command{ffplay}:
20383 @example
20384 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
20385              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
20386 @end example
20387 @end itemize
20388
20389 @section bench, abench
20390
20391 Benchmark part of a filtergraph.
20392
20393 The filter accepts the following options:
20394
20395 @table @option
20396 @item action
20397 Start or stop a timer.
20398
20399 Available values are:
20400 @table @samp
20401 @item start
20402 Get the current time, set it as frame metadata (using the key
20403 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
20404
20405 @item stop
20406 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
20407 the input frame metadata to get the time difference. Time difference, average,
20408 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
20409 @code{min}) are then printed. The timestamps are expressed in seconds.
20410 @end table
20411 @end table
20412
20413 @subsection Examples
20414
20415 @itemize
20416 @item
20417 Benchmark @ref{selectivecolor} filter:
20418 @example
20419 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
20420 @end example
20421 @end itemize
20422
20423 @section concat
20424
20425 Concatenate audio and video streams, joining them together one after the
20426 other.
20427
20428 The filter works on segments of synchronized video and audio streams. All
20429 segments must have the same number of streams of each type, and that will
20430 also be the number of streams at output.
20431
20432 The filter accepts the following options:
20433
20434 @table @option
20435
20436 @item n
20437 Set the number of segments. Default is 2.
20438
20439 @item v
20440 Set the number of output video streams, that is also the number of video
20441 streams in each segment. Default is 1.
20442
20443 @item a
20444 Set the number of output audio streams, that is also the number of audio
20445 streams in each segment. Default is 0.
20446
20447 @item unsafe
20448 Activate unsafe mode: do not fail if segments have a different format.
20449
20450 @end table
20451
20452 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
20453 @var{a} audio outputs.
20454
20455 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
20456 segment, in the same order as the outputs, then the inputs for the second
20457 segment, etc.
20458
20459 Related streams do not always have exactly the same duration, for various
20460 reasons including codec frame size or sloppy authoring. For that reason,
20461 related synchronized streams (e.g. a video and its audio track) should be
20462 concatenated at once. The concat filter will use the duration of the longest
20463 stream in each segment (except the last one), and if necessary pad shorter
20464 audio streams with silence.
20465
20466 For this filter to work correctly, all segments must start at timestamp 0.
20467
20468 All corresponding streams must have the same parameters in all segments; the
20469 filtering system will automatically select a common pixel format for video
20470 streams, and a common sample format, sample rate and channel layout for
20471 audio streams, but other settings, such as resolution, must be converted
20472 explicitly by the user.
20473
20474 Different frame rates are acceptable but will result in variable frame rate
20475 at output; be sure to configure the output file to handle it.
20476
20477 @subsection Examples
20478
20479 @itemize
20480 @item
20481 Concatenate an opening, an episode and an ending, all in bilingual version
20482 (video in stream 0, audio in streams 1 and 2):
20483 @example
20484 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
20485   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
20486    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
20487   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
20488 @end example
20489
20490 @item
20491 Concatenate two parts, handling audio and video separately, using the
20492 (a)movie sources, and adjusting the resolution:
20493 @example
20494 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
20495 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
20496 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
20497 @end example
20498 Note that a desync will happen at the stitch if the audio and video streams
20499 do not have exactly the same duration in the first file.
20500
20501 @end itemize
20502
20503 @subsection Commands
20504
20505 This filter supports the following commands:
20506 @table @option
20507 @item next
20508 Close the current segment and step to the next one
20509 @end table
20510
20511 @section drawgraph, adrawgraph
20512
20513 Draw a graph using input video or audio metadata.
20514
20515 It accepts the following parameters:
20516
20517 @table @option
20518 @item m1
20519 Set 1st frame metadata key from which metadata values will be used to draw a graph.
20520
20521 @item fg1
20522 Set 1st foreground color expression.
20523
20524 @item m2
20525 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
20526
20527 @item fg2
20528 Set 2nd foreground color expression.
20529
20530 @item m3
20531 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
20532
20533 @item fg3
20534 Set 3rd foreground color expression.
20535
20536 @item m4
20537 Set 4th frame metadata key from which metadata values will be used to draw a graph.
20538
20539 @item fg4
20540 Set 4th foreground color expression.
20541
20542 @item min
20543 Set minimal value of metadata value.
20544
20545 @item max
20546 Set maximal value of metadata value.
20547
20548 @item bg
20549 Set graph background color. Default is white.
20550
20551 @item mode
20552 Set graph mode.
20553
20554 Available values for mode is:
20555 @table @samp
20556 @item bar
20557 @item dot
20558 @item line
20559 @end table
20560
20561 Default is @code{line}.
20562
20563 @item slide
20564 Set slide mode.
20565
20566 Available values for slide is:
20567 @table @samp
20568 @item frame
20569 Draw new frame when right border is reached.
20570
20571 @item replace
20572 Replace old columns with new ones.
20573
20574 @item scroll
20575 Scroll from right to left.
20576
20577 @item rscroll
20578 Scroll from left to right.
20579
20580 @item picture
20581 Draw single picture.
20582 @end table
20583
20584 Default is @code{frame}.
20585
20586 @item size
20587 Set size of graph video. For the syntax of this option, check the
20588 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20589 The default value is @code{900x256}.
20590
20591 The foreground color expressions can use the following variables:
20592 @table @option
20593 @item MIN
20594 Minimal value of metadata value.
20595
20596 @item MAX
20597 Maximal value of metadata value.
20598
20599 @item VAL
20600 Current metadata key value.
20601 @end table
20602
20603 The color is defined as 0xAABBGGRR.
20604 @end table
20605
20606 Example using metadata from @ref{signalstats} filter:
20607 @example
20608 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
20609 @end example
20610
20611 Example using metadata from @ref{ebur128} filter:
20612 @example
20613 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
20614 @end example
20615
20616 @anchor{ebur128}
20617 @section ebur128
20618
20619 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
20620 level. By default, it logs a message at a frequency of 10Hz with the
20621 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
20622 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
20623
20624 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
20625 sample format is double-precision floating point. The input stream will be converted to
20626 this specification, if needed. Users may need to insert aformat and/or aresample filters
20627 after this filter to obtain the original parameters.
20628
20629 The filter also has a video output (see the @var{video} option) with a real
20630 time graph to observe the loudness evolution. The graphic contains the logged
20631 message mentioned above, so it is not printed anymore when this option is set,
20632 unless the verbose logging is set. The main graphing area contains the
20633 short-term loudness (3 seconds of analysis), and the gauge on the right is for
20634 the momentary loudness (400 milliseconds), but can optionally be configured
20635 to instead display short-term loudness (see @var{gauge}).
20636
20637 The green area marks a  +/- 1LU target range around the target loudness
20638 (-23LUFS by default, unless modified through @var{target}).
20639
20640 More information about the Loudness Recommendation EBU R128 on
20641 @url{http://tech.ebu.ch/loudness}.
20642
20643 The filter accepts the following options:
20644
20645 @table @option
20646
20647 @item video
20648 Activate the video output. The audio stream is passed unchanged whether this
20649 option is set or no. The video stream will be the first output stream if
20650 activated. Default is @code{0}.
20651
20652 @item size
20653 Set the video size. This option is for video only. For the syntax of this
20654 option, check the
20655 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20656 Default and minimum resolution is @code{640x480}.
20657
20658 @item meter
20659 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
20660 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
20661 other integer value between this range is allowed.
20662
20663 @item metadata
20664 Set metadata injection. If set to @code{1}, the audio input will be segmented
20665 into 100ms output frames, each of them containing various loudness information
20666 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
20667
20668 Default is @code{0}.
20669
20670 @item framelog
20671 Force the frame logging level.
20672
20673 Available values are:
20674 @table @samp
20675 @item info
20676 information logging level
20677 @item verbose
20678 verbose logging level
20679 @end table
20680
20681 By default, the logging level is set to @var{info}. If the @option{video} or
20682 the @option{metadata} options are set, it switches to @var{verbose}.
20683
20684 @item peak
20685 Set peak mode(s).
20686
20687 Available modes can be cumulated (the option is a @code{flag} type). Possible
20688 values are:
20689 @table @samp
20690 @item none
20691 Disable any peak mode (default).
20692 @item sample
20693 Enable sample-peak mode.
20694
20695 Simple peak mode looking for the higher sample value. It logs a message
20696 for sample-peak (identified by @code{SPK}).
20697 @item true
20698 Enable true-peak mode.
20699
20700 If enabled, the peak lookup is done on an over-sampled version of the input
20701 stream for better peak accuracy. It logs a message for true-peak.
20702 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
20703 This mode requires a build with @code{libswresample}.
20704 @end table
20705
20706 @item dualmono
20707 Treat mono input files as "dual mono". If a mono file is intended for playback
20708 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
20709 If set to @code{true}, this option will compensate for this effect.
20710 Multi-channel input files are not affected by this option.
20711
20712 @item panlaw
20713 Set a specific pan law to be used for the measurement of dual mono files.
20714 This parameter is optional, and has a default value of -3.01dB.
20715
20716 @item target
20717 Set a specific target level (in LUFS) used as relative zero in the visualization.
20718 This parameter is optional and has a default value of -23LUFS as specified
20719 by EBU R128. However, material published online may prefer a level of -16LUFS
20720 (e.g. for use with podcasts or video platforms).
20721
20722 @item gauge
20723 Set the value displayed by the gauge. Valid values are @code{momentary} and s
20724 @code{shortterm}. By default the momentary value will be used, but in certain
20725 scenarios it may be more useful to observe the short term value instead (e.g.
20726 live mixing).
20727
20728 @item scale
20729 Sets the display scale for the loudness. Valid parameters are @code{absolute}
20730 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
20731 video output, not the summary or continuous log output.
20732 @end table
20733
20734 @subsection Examples
20735
20736 @itemize
20737 @item
20738 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
20739 @example
20740 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
20741 @end example
20742
20743 @item
20744 Run an analysis with @command{ffmpeg}:
20745 @example
20746 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
20747 @end example
20748 @end itemize
20749
20750 @section interleave, ainterleave
20751
20752 Temporally interleave frames from several inputs.
20753
20754 @code{interleave} works with video inputs, @code{ainterleave} with audio.
20755
20756 These filters read frames from several inputs and send the oldest
20757 queued frame to the output.
20758
20759 Input streams must have well defined, monotonically increasing frame
20760 timestamp values.
20761
20762 In order to submit one frame to output, these filters need to enqueue
20763 at least one frame for each input, so they cannot work in case one
20764 input is not yet terminated and will not receive incoming frames.
20765
20766 For example consider the case when one input is a @code{select} filter
20767 which always drops input frames. The @code{interleave} filter will keep
20768 reading from that input, but it will never be able to send new frames
20769 to output until the input sends an end-of-stream signal.
20770
20771 Also, depending on inputs synchronization, the filters will drop
20772 frames in case one input receives more frames than the other ones, and
20773 the queue is already filled.
20774
20775 These filters accept the following options:
20776
20777 @table @option
20778 @item nb_inputs, n
20779 Set the number of different inputs, it is 2 by default.
20780 @end table
20781
20782 @subsection Examples
20783
20784 @itemize
20785 @item
20786 Interleave frames belonging to different streams using @command{ffmpeg}:
20787 @example
20788 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
20789 @end example
20790
20791 @item
20792 Add flickering blur effect:
20793 @example
20794 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
20795 @end example
20796 @end itemize
20797
20798 @section metadata, ametadata
20799
20800 Manipulate frame metadata.
20801
20802 This filter accepts the following options:
20803
20804 @table @option
20805 @item mode
20806 Set mode of operation of the filter.
20807
20808 Can be one of the following:
20809
20810 @table @samp
20811 @item select
20812 If both @code{value} and @code{key} is set, select frames
20813 which have such metadata. If only @code{key} is set, select
20814 every frame that has such key in metadata.
20815
20816 @item add
20817 Add new metadata @code{key} and @code{value}. If key is already available
20818 do nothing.
20819
20820 @item modify
20821 Modify value of already present key.
20822
20823 @item delete
20824 If @code{value} is set, delete only keys that have such value.
20825 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
20826 the frame.
20827
20828 @item print
20829 Print key and its value if metadata was found. If @code{key} is not set print all
20830 metadata values available in frame.
20831 @end table
20832
20833 @item key
20834 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
20835
20836 @item value
20837 Set metadata value which will be used. This option is mandatory for
20838 @code{modify} and @code{add} mode.
20839
20840 @item function
20841 Which function to use when comparing metadata value and @code{value}.
20842
20843 Can be one of following:
20844
20845 @table @samp
20846 @item same_str
20847 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
20848
20849 @item starts_with
20850 Values are interpreted as strings, returns true if metadata value starts with
20851 the @code{value} option string.
20852
20853 @item less
20854 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
20855
20856 @item equal
20857 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
20858
20859 @item greater
20860 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
20861
20862 @item expr
20863 Values are interpreted as floats, returns true if expression from option @code{expr}
20864 evaluates to true.
20865 @end table
20866
20867 @item expr
20868 Set expression which is used when @code{function} is set to @code{expr}.
20869 The expression is evaluated through the eval API and can contain the following
20870 constants:
20871
20872 @table @option
20873 @item VALUE1
20874 Float representation of @code{value} from metadata key.
20875
20876 @item VALUE2
20877 Float representation of @code{value} as supplied by user in @code{value} option.
20878 @end table
20879
20880 @item file
20881 If specified in @code{print} mode, output is written to the named file. Instead of
20882 plain filename any writable url can be specified. Filename ``-'' is a shorthand
20883 for standard output. If @code{file} option is not set, output is written to the log
20884 with AV_LOG_INFO loglevel.
20885
20886 @end table
20887
20888 @subsection Examples
20889
20890 @itemize
20891 @item
20892 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
20893 between 0 and 1.
20894 @example
20895 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
20896 @end example
20897 @item
20898 Print silencedetect output to file @file{metadata.txt}.
20899 @example
20900 silencedetect,ametadata=mode=print:file=metadata.txt
20901 @end example
20902 @item
20903 Direct all metadata to a pipe with file descriptor 4.
20904 @example
20905 metadata=mode=print:file='pipe\:4'
20906 @end example
20907 @end itemize
20908
20909 @section perms, aperms
20910
20911 Set read/write permissions for the output frames.
20912
20913 These filters are mainly aimed at developers to test direct path in the
20914 following filter in the filtergraph.
20915
20916 The filters accept the following options:
20917
20918 @table @option
20919 @item mode
20920 Select the permissions mode.
20921
20922 It accepts the following values:
20923 @table @samp
20924 @item none
20925 Do nothing. This is the default.
20926 @item ro
20927 Set all the output frames read-only.
20928 @item rw
20929 Set all the output frames directly writable.
20930 @item toggle
20931 Make the frame read-only if writable, and writable if read-only.
20932 @item random
20933 Set each output frame read-only or writable randomly.
20934 @end table
20935
20936 @item seed
20937 Set the seed for the @var{random} mode, must be an integer included between
20938 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
20939 @code{-1}, the filter will try to use a good random seed on a best effort
20940 basis.
20941 @end table
20942
20943 Note: in case of auto-inserted filter between the permission filter and the
20944 following one, the permission might not be received as expected in that
20945 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
20946 perms/aperms filter can avoid this problem.
20947
20948 @section realtime, arealtime
20949
20950 Slow down filtering to match real time approximately.
20951
20952 These filters will pause the filtering for a variable amount of time to
20953 match the output rate with the input timestamps.
20954 They are similar to the @option{re} option to @code{ffmpeg}.
20955
20956 They accept the following options:
20957
20958 @table @option
20959 @item limit
20960 Time limit for the pauses. Any pause longer than that will be considered
20961 a timestamp discontinuity and reset the timer. Default is 2 seconds.
20962 @end table
20963
20964 @anchor{select}
20965 @section select, aselect
20966
20967 Select frames to pass in output.
20968
20969 This filter accepts the following options:
20970
20971 @table @option
20972
20973 @item expr, e
20974 Set expression, which is evaluated for each input frame.
20975
20976 If the expression is evaluated to zero, the frame is discarded.
20977
20978 If the evaluation result is negative or NaN, the frame is sent to the
20979 first output; otherwise it is sent to the output with index
20980 @code{ceil(val)-1}, assuming that the input index starts from 0.
20981
20982 For example a value of @code{1.2} corresponds to the output with index
20983 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
20984
20985 @item outputs, n
20986 Set the number of outputs. The output to which to send the selected
20987 frame is based on the result of the evaluation. Default value is 1.
20988 @end table
20989
20990 The expression can contain the following constants:
20991
20992 @table @option
20993 @item n
20994 The (sequential) number of the filtered frame, starting from 0.
20995
20996 @item selected_n
20997 The (sequential) number of the selected frame, starting from 0.
20998
20999 @item prev_selected_n
21000 The sequential number of the last selected frame. It's NAN if undefined.
21001
21002 @item TB
21003 The timebase of the input timestamps.
21004
21005 @item pts
21006 The PTS (Presentation TimeStamp) of the filtered video frame,
21007 expressed in @var{TB} units. It's NAN if undefined.
21008
21009 @item t
21010 The PTS of the filtered video frame,
21011 expressed in seconds. It's NAN if undefined.
21012
21013 @item prev_pts
21014 The PTS of the previously filtered video frame. It's NAN if undefined.
21015
21016 @item prev_selected_pts
21017 The PTS of the last previously filtered video frame. It's NAN if undefined.
21018
21019 @item prev_selected_t
21020 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
21021
21022 @item start_pts
21023 The PTS of the first video frame in the video. It's NAN if undefined.
21024
21025 @item start_t
21026 The time of the first video frame in the video. It's NAN if undefined.
21027
21028 @item pict_type @emph{(video only)}
21029 The type of the filtered frame. It can assume one of the following
21030 values:
21031 @table @option
21032 @item I
21033 @item P
21034 @item B
21035 @item S
21036 @item SI
21037 @item SP
21038 @item BI
21039 @end table
21040
21041 @item interlace_type @emph{(video only)}
21042 The frame interlace type. It can assume one of the following values:
21043 @table @option
21044 @item PROGRESSIVE
21045 The frame is progressive (not interlaced).
21046 @item TOPFIRST
21047 The frame is top-field-first.
21048 @item BOTTOMFIRST
21049 The frame is bottom-field-first.
21050 @end table
21051
21052 @item consumed_sample_n @emph{(audio only)}
21053 the number of selected samples before the current frame
21054
21055 @item samples_n @emph{(audio only)}
21056 the number of samples in the current frame
21057
21058 @item sample_rate @emph{(audio only)}
21059 the input sample rate
21060
21061 @item key
21062 This is 1 if the filtered frame is a key-frame, 0 otherwise.
21063
21064 @item pos
21065 the position in the file of the filtered frame, -1 if the information
21066 is not available (e.g. for synthetic video)
21067
21068 @item scene @emph{(video only)}
21069 value between 0 and 1 to indicate a new scene; a low value reflects a low
21070 probability for the current frame to introduce a new scene, while a higher
21071 value means the current frame is more likely to be one (see the example below)
21072
21073 @item concatdec_select
21074 The concat demuxer can select only part of a concat input file by setting an
21075 inpoint and an outpoint, but the output packets may not be entirely contained
21076 in the selected interval. By using this variable, it is possible to skip frames
21077 generated by the concat demuxer which are not exactly contained in the selected
21078 interval.
21079
21080 This works by comparing the frame pts against the @var{lavf.concat.start_time}
21081 and the @var{lavf.concat.duration} packet metadata values which are also
21082 present in the decoded frames.
21083
21084 The @var{concatdec_select} variable is -1 if the frame pts is at least
21085 start_time and either the duration metadata is missing or the frame pts is less
21086 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
21087 missing.
21088
21089 That basically means that an input frame is selected if its pts is within the
21090 interval set by the concat demuxer.
21091
21092 @end table
21093
21094 The default value of the select expression is "1".
21095
21096 @subsection Examples
21097
21098 @itemize
21099 @item
21100 Select all frames in input:
21101 @example
21102 select
21103 @end example
21104
21105 The example above is the same as:
21106 @example
21107 select=1
21108 @end example
21109
21110 @item
21111 Skip all frames:
21112 @example
21113 select=0
21114 @end example
21115
21116 @item
21117 Select only I-frames:
21118 @example
21119 select='eq(pict_type\,I)'
21120 @end example
21121
21122 @item
21123 Select one frame every 100:
21124 @example
21125 select='not(mod(n\,100))'
21126 @end example
21127
21128 @item
21129 Select only frames contained in the 10-20 time interval:
21130 @example
21131 select=between(t\,10\,20)
21132 @end example
21133
21134 @item
21135 Select only I-frames contained in the 10-20 time interval:
21136 @example
21137 select=between(t\,10\,20)*eq(pict_type\,I)
21138 @end example
21139
21140 @item
21141 Select frames with a minimum distance of 10 seconds:
21142 @example
21143 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
21144 @end example
21145
21146 @item
21147 Use aselect to select only audio frames with samples number > 100:
21148 @example
21149 aselect='gt(samples_n\,100)'
21150 @end example
21151
21152 @item
21153 Create a mosaic of the first scenes:
21154 @example
21155 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
21156 @end example
21157
21158 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
21159 choice.
21160
21161 @item
21162 Send even and odd frames to separate outputs, and compose them:
21163 @example
21164 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
21165 @end example
21166
21167 @item
21168 Select useful frames from an ffconcat file which is using inpoints and
21169 outpoints but where the source files are not intra frame only.
21170 @example
21171 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
21172 @end example
21173 @end itemize
21174
21175 @section sendcmd, asendcmd
21176
21177 Send commands to filters in the filtergraph.
21178
21179 These filters read commands to be sent to other filters in the
21180 filtergraph.
21181
21182 @code{sendcmd} must be inserted between two video filters,
21183 @code{asendcmd} must be inserted between two audio filters, but apart
21184 from that they act the same way.
21185
21186 The specification of commands can be provided in the filter arguments
21187 with the @var{commands} option, or in a file specified by the
21188 @var{filename} option.
21189
21190 These filters accept the following options:
21191 @table @option
21192 @item commands, c
21193 Set the commands to be read and sent to the other filters.
21194 @item filename, f
21195 Set the filename of the commands to be read and sent to the other
21196 filters.
21197 @end table
21198
21199 @subsection Commands syntax
21200
21201 A commands description consists of a sequence of interval
21202 specifications, comprising a list of commands to be executed when a
21203 particular event related to that interval occurs. The occurring event
21204 is typically the current frame time entering or leaving a given time
21205 interval.
21206
21207 An interval is specified by the following syntax:
21208 @example
21209 @var{START}[-@var{END}] @var{COMMANDS};
21210 @end example
21211
21212 The time interval is specified by the @var{START} and @var{END} times.
21213 @var{END} is optional and defaults to the maximum time.
21214
21215 The current frame time is considered within the specified interval if
21216 it is included in the interval [@var{START}, @var{END}), that is when
21217 the time is greater or equal to @var{START} and is lesser than
21218 @var{END}.
21219
21220 @var{COMMANDS} consists of a sequence of one or more command
21221 specifications, separated by ",", relating to that interval.  The
21222 syntax of a command specification is given by:
21223 @example
21224 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
21225 @end example
21226
21227 @var{FLAGS} is optional and specifies the type of events relating to
21228 the time interval which enable sending the specified command, and must
21229 be a non-null sequence of identifier flags separated by "+" or "|" and
21230 enclosed between "[" and "]".
21231
21232 The following flags are recognized:
21233 @table @option
21234 @item enter
21235 The command is sent when the current frame timestamp enters the
21236 specified interval. In other words, the command is sent when the
21237 previous frame timestamp was not in the given interval, and the
21238 current is.
21239
21240 @item leave
21241 The command is sent when the current frame timestamp leaves the
21242 specified interval. In other words, the command is sent when the
21243 previous frame timestamp was in the given interval, and the
21244 current is not.
21245 @end table
21246
21247 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
21248 assumed.
21249
21250 @var{TARGET} specifies the target of the command, usually the name of
21251 the filter class or a specific filter instance name.
21252
21253 @var{COMMAND} specifies the name of the command for the target filter.
21254
21255 @var{ARG} is optional and specifies the optional list of argument for
21256 the given @var{COMMAND}.
21257
21258 Between one interval specification and another, whitespaces, or
21259 sequences of characters starting with @code{#} until the end of line,
21260 are ignored and can be used to annotate comments.
21261
21262 A simplified BNF description of the commands specification syntax
21263 follows:
21264 @example
21265 @var{COMMAND_FLAG}  ::= "enter" | "leave"
21266 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
21267 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
21268 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
21269 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
21270 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
21271 @end example
21272
21273 @subsection Examples
21274
21275 @itemize
21276 @item
21277 Specify audio tempo change at second 4:
21278 @example
21279 asendcmd=c='4.0 atempo tempo 1.5',atempo
21280 @end example
21281
21282 @item
21283 Target a specific filter instance:
21284 @example
21285 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
21286 @end example
21287
21288 @item
21289 Specify a list of drawtext and hue commands in a file.
21290 @example
21291 # show text in the interval 5-10
21292 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
21293          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
21294
21295 # desaturate the image in the interval 15-20
21296 15.0-20.0 [enter] hue s 0,
21297           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
21298           [leave] hue s 1,
21299           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
21300
21301 # apply an exponential saturation fade-out effect, starting from time 25
21302 25 [enter] hue s exp(25-t)
21303 @end example
21304
21305 A filtergraph allowing to read and process the above command list
21306 stored in a file @file{test.cmd}, can be specified with:
21307 @example
21308 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
21309 @end example
21310 @end itemize
21311
21312 @anchor{setpts}
21313 @section setpts, asetpts
21314
21315 Change the PTS (presentation timestamp) of the input frames.
21316
21317 @code{setpts} works on video frames, @code{asetpts} on audio frames.
21318
21319 This filter accepts the following options:
21320
21321 @table @option
21322
21323 @item expr
21324 The expression which is evaluated for each frame to construct its timestamp.
21325
21326 @end table
21327
21328 The expression is evaluated through the eval API and can contain the following
21329 constants:
21330
21331 @table @option
21332 @item FRAME_RATE, FR
21333 frame rate, only defined for constant frame-rate video
21334
21335 @item PTS
21336 The presentation timestamp in input
21337
21338 @item N
21339 The count of the input frame for video or the number of consumed samples,
21340 not including the current frame for audio, starting from 0.
21341
21342 @item NB_CONSUMED_SAMPLES
21343 The number of consumed samples, not including the current frame (only
21344 audio)
21345
21346 @item NB_SAMPLES, S
21347 The number of samples in the current frame (only audio)
21348
21349 @item SAMPLE_RATE, SR
21350 The audio sample rate.
21351
21352 @item STARTPTS
21353 The PTS of the first frame.
21354
21355 @item STARTT
21356 the time in seconds of the first frame
21357
21358 @item INTERLACED
21359 State whether the current frame is interlaced.
21360
21361 @item T
21362 the time in seconds of the current frame
21363
21364 @item POS
21365 original position in the file of the frame, or undefined if undefined
21366 for the current frame
21367
21368 @item PREV_INPTS
21369 The previous input PTS.
21370
21371 @item PREV_INT
21372 previous input time in seconds
21373
21374 @item PREV_OUTPTS
21375 The previous output PTS.
21376
21377 @item PREV_OUTT
21378 previous output time in seconds
21379
21380 @item RTCTIME
21381 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
21382 instead.
21383
21384 @item RTCSTART
21385 The wallclock (RTC) time at the start of the movie in microseconds.
21386
21387 @item TB
21388 The timebase of the input timestamps.
21389
21390 @end table
21391
21392 @subsection Examples
21393
21394 @itemize
21395 @item
21396 Start counting PTS from zero
21397 @example
21398 setpts=PTS-STARTPTS
21399 @end example
21400
21401 @item
21402 Apply fast motion effect:
21403 @example
21404 setpts=0.5*PTS
21405 @end example
21406
21407 @item
21408 Apply slow motion effect:
21409 @example
21410 setpts=2.0*PTS
21411 @end example
21412
21413 @item
21414 Set fixed rate of 25 frames per second:
21415 @example
21416 setpts=N/(25*TB)
21417 @end example
21418
21419 @item
21420 Set fixed rate 25 fps with some jitter:
21421 @example
21422 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
21423 @end example
21424
21425 @item
21426 Apply an offset of 10 seconds to the input PTS:
21427 @example
21428 setpts=PTS+10/TB
21429 @end example
21430
21431 @item
21432 Generate timestamps from a "live source" and rebase onto the current timebase:
21433 @example
21434 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
21435 @end example
21436
21437 @item
21438 Generate timestamps by counting samples:
21439 @example
21440 asetpts=N/SR/TB
21441 @end example
21442
21443 @end itemize
21444
21445 @section setrange
21446
21447 Force color range for the output video frame.
21448
21449 The @code{setrange} filter marks the color range property for the
21450 output frames. It does not change the input frame, but only sets the
21451 corresponding property, which affects how the frame is treated by
21452 following filters.
21453
21454 The filter accepts the following options:
21455
21456 @table @option
21457
21458 @item range
21459 Available values are:
21460
21461 @table @samp
21462 @item auto
21463 Keep the same color range property.
21464
21465 @item unspecified, unknown
21466 Set the color range as unspecified.
21467
21468 @item limited, tv, mpeg
21469 Set the color range as limited.
21470
21471 @item full, pc, jpeg
21472 Set the color range as full.
21473 @end table
21474 @end table
21475
21476 @section settb, asettb
21477
21478 Set the timebase to use for the output frames timestamps.
21479 It is mainly useful for testing timebase configuration.
21480
21481 It accepts the following parameters:
21482
21483 @table @option
21484
21485 @item expr, tb
21486 The expression which is evaluated into the output timebase.
21487
21488 @end table
21489
21490 The value for @option{tb} is an arithmetic expression representing a
21491 rational. The expression can contain the constants "AVTB" (the default
21492 timebase), "intb" (the input timebase) and "sr" (the sample rate,
21493 audio only). Default value is "intb".
21494
21495 @subsection Examples
21496
21497 @itemize
21498 @item
21499 Set the timebase to 1/25:
21500 @example
21501 settb=expr=1/25
21502 @end example
21503
21504 @item
21505 Set the timebase to 1/10:
21506 @example
21507 settb=expr=0.1
21508 @end example
21509
21510 @item
21511 Set the timebase to 1001/1000:
21512 @example
21513 settb=1+0.001
21514 @end example
21515
21516 @item
21517 Set the timebase to 2*intb:
21518 @example
21519 settb=2*intb
21520 @end example
21521
21522 @item
21523 Set the default timebase value:
21524 @example
21525 settb=AVTB
21526 @end example
21527 @end itemize
21528
21529 @section showcqt
21530 Convert input audio to a video output representing frequency spectrum
21531 logarithmically using Brown-Puckette constant Q transform algorithm with
21532 direct frequency domain coefficient calculation (but the transform itself
21533 is not really constant Q, instead the Q factor is actually variable/clamped),
21534 with musical tone scale, from E0 to D#10.
21535
21536 The filter accepts the following options:
21537
21538 @table @option
21539 @item size, s
21540 Specify the video size for the output. It must be even. For the syntax of this option,
21541 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21542 Default value is @code{1920x1080}.
21543
21544 @item fps, rate, r
21545 Set the output frame rate. Default value is @code{25}.
21546
21547 @item bar_h
21548 Set the bargraph height. It must be even. Default value is @code{-1} which
21549 computes the bargraph height automatically.
21550
21551 @item axis_h
21552 Set the axis height. It must be even. Default value is @code{-1} which computes
21553 the axis height automatically.
21554
21555 @item sono_h
21556 Set the sonogram height. It must be even. Default value is @code{-1} which
21557 computes the sonogram height automatically.
21558
21559 @item fullhd
21560 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
21561 instead. Default value is @code{1}.
21562
21563 @item sono_v, volume
21564 Specify the sonogram volume expression. It can contain variables:
21565 @table @option
21566 @item bar_v
21567 the @var{bar_v} evaluated expression
21568 @item frequency, freq, f
21569 the frequency where it is evaluated
21570 @item timeclamp, tc
21571 the value of @var{timeclamp} option
21572 @end table
21573 and functions:
21574 @table @option
21575 @item a_weighting(f)
21576 A-weighting of equal loudness
21577 @item b_weighting(f)
21578 B-weighting of equal loudness
21579 @item c_weighting(f)
21580 C-weighting of equal loudness.
21581 @end table
21582 Default value is @code{16}.
21583
21584 @item bar_v, volume2
21585 Specify the bargraph volume expression. It can contain variables:
21586 @table @option
21587 @item sono_v
21588 the @var{sono_v} evaluated expression
21589 @item frequency, freq, f
21590 the frequency where it is evaluated
21591 @item timeclamp, tc
21592 the value of @var{timeclamp} option
21593 @end table
21594 and functions:
21595 @table @option
21596 @item a_weighting(f)
21597 A-weighting of equal loudness
21598 @item b_weighting(f)
21599 B-weighting of equal loudness
21600 @item c_weighting(f)
21601 C-weighting of equal loudness.
21602 @end table
21603 Default value is @code{sono_v}.
21604
21605 @item sono_g, gamma
21606 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
21607 higher gamma makes the spectrum having more range. Default value is @code{3}.
21608 Acceptable range is @code{[1, 7]}.
21609
21610 @item bar_g, gamma2
21611 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
21612 @code{[1, 7]}.
21613
21614 @item bar_t
21615 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
21616 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
21617
21618 @item timeclamp, tc
21619 Specify the transform timeclamp. At low frequency, there is trade-off between
21620 accuracy in time domain and frequency domain. If timeclamp is lower,
21621 event in time domain is represented more accurately (such as fast bass drum),
21622 otherwise event in frequency domain is represented more accurately
21623 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
21624
21625 @item attack
21626 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
21627 limits future samples by applying asymmetric windowing in time domain, useful
21628 when low latency is required. Accepted range is @code{[0, 1]}.
21629
21630 @item basefreq
21631 Specify the transform base frequency. Default value is @code{20.01523126408007475},
21632 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
21633
21634 @item endfreq
21635 Specify the transform end frequency. Default value is @code{20495.59681441799654},
21636 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
21637
21638 @item coeffclamp
21639 This option is deprecated and ignored.
21640
21641 @item tlength
21642 Specify the transform length in time domain. Use this option to control accuracy
21643 trade-off between time domain and frequency domain at every frequency sample.
21644 It can contain variables:
21645 @table @option
21646 @item frequency, freq, f
21647 the frequency where it is evaluated
21648 @item timeclamp, tc
21649 the value of @var{timeclamp} option.
21650 @end table
21651 Default value is @code{384*tc/(384+tc*f)}.
21652
21653 @item count
21654 Specify the transform count for every video frame. Default value is @code{6}.
21655 Acceptable range is @code{[1, 30]}.
21656
21657 @item fcount
21658 Specify the transform count for every single pixel. Default value is @code{0},
21659 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
21660
21661 @item fontfile
21662 Specify font file for use with freetype to draw the axis. If not specified,
21663 use embedded font. Note that drawing with font file or embedded font is not
21664 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
21665 option instead.
21666
21667 @item font
21668 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
21669 The : in the pattern may be replaced by | to avoid unnecessary escaping.
21670
21671 @item fontcolor
21672 Specify font color expression. This is arithmetic expression that should return
21673 integer value 0xRRGGBB. It can contain variables:
21674 @table @option
21675 @item frequency, freq, f
21676 the frequency where it is evaluated
21677 @item timeclamp, tc
21678 the value of @var{timeclamp} option
21679 @end table
21680 and functions:
21681 @table @option
21682 @item midi(f)
21683 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
21684 @item r(x), g(x), b(x)
21685 red, green, and blue value of intensity x.
21686 @end table
21687 Default value is @code{st(0, (midi(f)-59.5)/12);
21688 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
21689 r(1-ld(1)) + b(ld(1))}.
21690
21691 @item axisfile
21692 Specify image file to draw the axis. This option override @var{fontfile} and
21693 @var{fontcolor} option.
21694
21695 @item axis, text
21696 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
21697 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
21698 Default value is @code{1}.
21699
21700 @item csp
21701 Set colorspace. The accepted values are:
21702 @table @samp
21703 @item unspecified
21704 Unspecified (default)
21705
21706 @item bt709
21707 BT.709
21708
21709 @item fcc
21710 FCC
21711
21712 @item bt470bg
21713 BT.470BG or BT.601-6 625
21714
21715 @item smpte170m
21716 SMPTE-170M or BT.601-6 525
21717
21718 @item smpte240m
21719 SMPTE-240M
21720
21721 @item bt2020ncl
21722 BT.2020 with non-constant luminance
21723
21724 @end table
21725
21726 @item cscheme
21727 Set spectrogram color scheme. This is list of floating point values with format
21728 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
21729 The default is @code{1|0.5|0|0|0.5|1}.
21730
21731 @end table
21732
21733 @subsection Examples
21734
21735 @itemize
21736 @item
21737 Playing audio while showing the spectrum:
21738 @example
21739 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
21740 @end example
21741
21742 @item
21743 Same as above, but with frame rate 30 fps:
21744 @example
21745 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
21746 @end example
21747
21748 @item
21749 Playing at 1280x720:
21750 @example
21751 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
21752 @end example
21753
21754 @item
21755 Disable sonogram display:
21756 @example
21757 sono_h=0
21758 @end example
21759
21760 @item
21761 A1 and its harmonics: A1, A2, (near)E3, A3:
21762 @example
21763 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),
21764                  asplit[a][out1]; [a] showcqt [out0]'
21765 @end example
21766
21767 @item
21768 Same as above, but with more accuracy in frequency domain:
21769 @example
21770 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),
21771                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
21772 @end example
21773
21774 @item
21775 Custom volume:
21776 @example
21777 bar_v=10:sono_v=bar_v*a_weighting(f)
21778 @end example
21779
21780 @item
21781 Custom gamma, now spectrum is linear to the amplitude.
21782 @example
21783 bar_g=2:sono_g=2
21784 @end example
21785
21786 @item
21787 Custom tlength equation:
21788 @example
21789 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)))'
21790 @end example
21791
21792 @item
21793 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
21794 @example
21795 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
21796 @end example
21797
21798 @item
21799 Custom font using fontconfig:
21800 @example
21801 font='Courier New,Monospace,mono|bold'
21802 @end example
21803
21804 @item
21805 Custom frequency range with custom axis using image file:
21806 @example
21807 axisfile=myaxis.png:basefreq=40:endfreq=10000
21808 @end example
21809 @end itemize
21810
21811 @section showfreqs
21812
21813 Convert input audio to video output representing the audio power spectrum.
21814 Audio amplitude is on Y-axis while frequency is on X-axis.
21815
21816 The filter accepts the following options:
21817
21818 @table @option
21819 @item size, s
21820 Specify size of video. For the syntax of this option, check the
21821 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21822 Default is @code{1024x512}.
21823
21824 @item mode
21825 Set display mode.
21826 This set how each frequency bin will be represented.
21827
21828 It accepts the following values:
21829 @table @samp
21830 @item line
21831 @item bar
21832 @item dot
21833 @end table
21834 Default is @code{bar}.
21835
21836 @item ascale
21837 Set amplitude scale.
21838
21839 It accepts the following values:
21840 @table @samp
21841 @item lin
21842 Linear scale.
21843
21844 @item sqrt
21845 Square root scale.
21846
21847 @item cbrt
21848 Cubic root scale.
21849
21850 @item log
21851 Logarithmic scale.
21852 @end table
21853 Default is @code{log}.
21854
21855 @item fscale
21856 Set frequency scale.
21857
21858 It accepts the following values:
21859 @table @samp
21860 @item lin
21861 Linear scale.
21862
21863 @item log
21864 Logarithmic scale.
21865
21866 @item rlog
21867 Reverse logarithmic scale.
21868 @end table
21869 Default is @code{lin}.
21870
21871 @item win_size
21872 Set window size.
21873
21874 It accepts the following values:
21875 @table @samp
21876 @item w16
21877 @item w32
21878 @item w64
21879 @item w128
21880 @item w256
21881 @item w512
21882 @item w1024
21883 @item w2048
21884 @item w4096
21885 @item w8192
21886 @item w16384
21887 @item w32768
21888 @item w65536
21889 @end table
21890 Default is @code{w2048}
21891
21892 @item win_func
21893 Set windowing function.
21894
21895 It accepts the following values:
21896 @table @samp
21897 @item rect
21898 @item bartlett
21899 @item hanning
21900 @item hamming
21901 @item blackman
21902 @item welch
21903 @item flattop
21904 @item bharris
21905 @item bnuttall
21906 @item bhann
21907 @item sine
21908 @item nuttall
21909 @item lanczos
21910 @item gauss
21911 @item tukey
21912 @item dolph
21913 @item cauchy
21914 @item parzen
21915 @item poisson
21916 @item bohman
21917 @end table
21918 Default is @code{hanning}.
21919
21920 @item overlap
21921 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
21922 which means optimal overlap for selected window function will be picked.
21923
21924 @item averaging
21925 Set time averaging. Setting this to 0 will display current maximal peaks.
21926 Default is @code{1}, which means time averaging is disabled.
21927
21928 @item colors
21929 Specify list of colors separated by space or by '|' which will be used to
21930 draw channel frequencies. Unrecognized or missing colors will be replaced
21931 by white color.
21932
21933 @item cmode
21934 Set channel display mode.
21935
21936 It accepts the following values:
21937 @table @samp
21938 @item combined
21939 @item separate
21940 @end table
21941 Default is @code{combined}.
21942
21943 @item minamp
21944 Set minimum amplitude used in @code{log} amplitude scaler.
21945
21946 @end table
21947
21948 @anchor{showspectrum}
21949 @section showspectrum
21950
21951 Convert input audio to a video output, representing the audio frequency
21952 spectrum.
21953
21954 The filter accepts the following options:
21955
21956 @table @option
21957 @item size, s
21958 Specify the video size for the output. For the syntax of this option, check the
21959 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21960 Default value is @code{640x512}.
21961
21962 @item slide
21963 Specify how the spectrum should slide along the window.
21964
21965 It accepts the following values:
21966 @table @samp
21967 @item replace
21968 the samples start again on the left when they reach the right
21969 @item scroll
21970 the samples scroll from right to left
21971 @item fullframe
21972 frames are only produced when the samples reach the right
21973 @item rscroll
21974 the samples scroll from left to right
21975 @end table
21976
21977 Default value is @code{replace}.
21978
21979 @item mode
21980 Specify display mode.
21981
21982 It accepts the following values:
21983 @table @samp
21984 @item combined
21985 all channels are displayed in the same row
21986 @item separate
21987 all channels are displayed in separate rows
21988 @end table
21989
21990 Default value is @samp{combined}.
21991
21992 @item color
21993 Specify display color mode.
21994
21995 It accepts the following values:
21996 @table @samp
21997 @item channel
21998 each channel is displayed in a separate color
21999 @item intensity
22000 each channel is displayed using the same color scheme
22001 @item rainbow
22002 each channel is displayed using the rainbow color scheme
22003 @item moreland
22004 each channel is displayed using the moreland color scheme
22005 @item nebulae
22006 each channel is displayed using the nebulae color scheme
22007 @item fire
22008 each channel is displayed using the fire color scheme
22009 @item fiery
22010 each channel is displayed using the fiery color scheme
22011 @item fruit
22012 each channel is displayed using the fruit color scheme
22013 @item cool
22014 each channel is displayed using the cool color scheme
22015 @item magma
22016 each channel is displayed using the magma color scheme
22017 @item green
22018 each channel is displayed using the green color scheme
22019 @item viridis
22020 each channel is displayed using the viridis color scheme
22021 @item plasma
22022 each channel is displayed using the plasma color scheme
22023 @item cividis
22024 each channel is displayed using the cividis color scheme
22025 @item terrain
22026 each channel is displayed using the terrain color scheme
22027 @end table
22028
22029 Default value is @samp{channel}.
22030
22031 @item scale
22032 Specify scale used for calculating intensity color values.
22033
22034 It accepts the following values:
22035 @table @samp
22036 @item lin
22037 linear
22038 @item sqrt
22039 square root, default
22040 @item cbrt
22041 cubic root
22042 @item log
22043 logarithmic
22044 @item 4thrt
22045 4th root
22046 @item 5thrt
22047 5th root
22048 @end table
22049
22050 Default value is @samp{sqrt}.
22051
22052 @item saturation
22053 Set saturation modifier for displayed colors. Negative values provide
22054 alternative color scheme. @code{0} is no saturation at all.
22055 Saturation must be in [-10.0, 10.0] range.
22056 Default value is @code{1}.
22057
22058 @item win_func
22059 Set window function.
22060
22061 It accepts the following values:
22062 @table @samp
22063 @item rect
22064 @item bartlett
22065 @item hann
22066 @item hanning
22067 @item hamming
22068 @item blackman
22069 @item welch
22070 @item flattop
22071 @item bharris
22072 @item bnuttall
22073 @item bhann
22074 @item sine
22075 @item nuttall
22076 @item lanczos
22077 @item gauss
22078 @item tukey
22079 @item dolph
22080 @item cauchy
22081 @item parzen
22082 @item poisson
22083 @item bohman
22084 @end table
22085
22086 Default value is @code{hann}.
22087
22088 @item orientation
22089 Set orientation of time vs frequency axis. Can be @code{vertical} or
22090 @code{horizontal}. Default is @code{vertical}.
22091
22092 @item overlap
22093 Set ratio of overlap window. Default value is @code{0}.
22094 When value is @code{1} overlap is set to recommended size for specific
22095 window function currently used.
22096
22097 @item gain
22098 Set scale gain for calculating intensity color values.
22099 Default value is @code{1}.
22100
22101 @item data
22102 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
22103
22104 @item rotation
22105 Set color rotation, must be in [-1.0, 1.0] range.
22106 Default value is @code{0}.
22107
22108 @item start
22109 Set start frequency from which to display spectrogram. Default is @code{0}.
22110
22111 @item stop
22112 Set stop frequency to which to display spectrogram. Default is @code{0}.
22113
22114 @item fps
22115 Set upper frame rate limit. Default is @code{auto}, unlimited.
22116
22117 @item legend
22118 Draw time and frequency axes and legends. Default is disabled.
22119 @end table
22120
22121 The usage is very similar to the showwaves filter; see the examples in that
22122 section.
22123
22124 @subsection Examples
22125
22126 @itemize
22127 @item
22128 Large window with logarithmic color scaling:
22129 @example
22130 showspectrum=s=1280x480:scale=log
22131 @end example
22132
22133 @item
22134 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
22135 @example
22136 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22137              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
22138 @end example
22139 @end itemize
22140
22141 @section showspectrumpic
22142
22143 Convert input audio to a single video frame, representing the audio frequency
22144 spectrum.
22145
22146 The filter accepts the following options:
22147
22148 @table @option
22149 @item size, s
22150 Specify the video size for the output. For the syntax of this option, check the
22151 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22152 Default value is @code{4096x2048}.
22153
22154 @item mode
22155 Specify display mode.
22156
22157 It accepts the following values:
22158 @table @samp
22159 @item combined
22160 all channels are displayed in the same row
22161 @item separate
22162 all channels are displayed in separate rows
22163 @end table
22164 Default value is @samp{combined}.
22165
22166 @item color
22167 Specify display color mode.
22168
22169 It accepts the following values:
22170 @table @samp
22171 @item channel
22172 each channel is displayed in a separate color
22173 @item intensity
22174 each channel is displayed using the same color scheme
22175 @item rainbow
22176 each channel is displayed using the rainbow color scheme
22177 @item moreland
22178 each channel is displayed using the moreland color scheme
22179 @item nebulae
22180 each channel is displayed using the nebulae color scheme
22181 @item fire
22182 each channel is displayed using the fire color scheme
22183 @item fiery
22184 each channel is displayed using the fiery color scheme
22185 @item fruit
22186 each channel is displayed using the fruit color scheme
22187 @item cool
22188 each channel is displayed using the cool color scheme
22189 @item magma
22190 each channel is displayed using the magma color scheme
22191 @item green
22192 each channel is displayed using the green color scheme
22193 @item viridis
22194 each channel is displayed using the viridis color scheme
22195 @item plasma
22196 each channel is displayed using the plasma color scheme
22197 @item cividis
22198 each channel is displayed using the cividis color scheme
22199 @item terrain
22200 each channel is displayed using the terrain color scheme
22201 @end table
22202 Default value is @samp{intensity}.
22203
22204 @item scale
22205 Specify scale used for calculating intensity color values.
22206
22207 It accepts the following values:
22208 @table @samp
22209 @item lin
22210 linear
22211 @item sqrt
22212 square root, default
22213 @item cbrt
22214 cubic root
22215 @item log
22216 logarithmic
22217 @item 4thrt
22218 4th root
22219 @item 5thrt
22220 5th root
22221 @end table
22222 Default value is @samp{log}.
22223
22224 @item saturation
22225 Set saturation modifier for displayed colors. Negative values provide
22226 alternative color scheme. @code{0} is no saturation at all.
22227 Saturation must be in [-10.0, 10.0] range.
22228 Default value is @code{1}.
22229
22230 @item win_func
22231 Set window function.
22232
22233 It accepts the following values:
22234 @table @samp
22235 @item rect
22236 @item bartlett
22237 @item hann
22238 @item hanning
22239 @item hamming
22240 @item blackman
22241 @item welch
22242 @item flattop
22243 @item bharris
22244 @item bnuttall
22245 @item bhann
22246 @item sine
22247 @item nuttall
22248 @item lanczos
22249 @item gauss
22250 @item tukey
22251 @item dolph
22252 @item cauchy
22253 @item parzen
22254 @item poisson
22255 @item bohman
22256 @end table
22257 Default value is @code{hann}.
22258
22259 @item orientation
22260 Set orientation of time vs frequency axis. Can be @code{vertical} or
22261 @code{horizontal}. Default is @code{vertical}.
22262
22263 @item gain
22264 Set scale gain for calculating intensity color values.
22265 Default value is @code{1}.
22266
22267 @item legend
22268 Draw time and frequency axes and legends. Default is enabled.
22269
22270 @item rotation
22271 Set color rotation, must be in [-1.0, 1.0] range.
22272 Default value is @code{0}.
22273
22274 @item start
22275 Set start frequency from which to display spectrogram. Default is @code{0}.
22276
22277 @item stop
22278 Set stop frequency to which to display spectrogram. Default is @code{0}.
22279 @end table
22280
22281 @subsection Examples
22282
22283 @itemize
22284 @item
22285 Extract an audio spectrogram of a whole audio track
22286 in a 1024x1024 picture using @command{ffmpeg}:
22287 @example
22288 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
22289 @end example
22290 @end itemize
22291
22292 @section showvolume
22293
22294 Convert input audio volume to a video output.
22295
22296 The filter accepts the following options:
22297
22298 @table @option
22299 @item rate, r
22300 Set video rate.
22301
22302 @item b
22303 Set border width, allowed range is [0, 5]. Default is 1.
22304
22305 @item w
22306 Set channel width, allowed range is [80, 8192]. Default is 400.
22307
22308 @item h
22309 Set channel height, allowed range is [1, 900]. Default is 20.
22310
22311 @item f
22312 Set fade, allowed range is [0, 1]. Default is 0.95.
22313
22314 @item c
22315 Set volume color expression.
22316
22317 The expression can use the following variables:
22318
22319 @table @option
22320 @item VOLUME
22321 Current max volume of channel in dB.
22322
22323 @item PEAK
22324 Current peak.
22325
22326 @item CHANNEL
22327 Current channel number, starting from 0.
22328 @end table
22329
22330 @item t
22331 If set, displays channel names. Default is enabled.
22332
22333 @item v
22334 If set, displays volume values. Default is enabled.
22335
22336 @item o
22337 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
22338 default is @code{h}.
22339
22340 @item s
22341 Set step size, allowed range is [0, 5]. Default is 0, which means
22342 step is disabled.
22343
22344 @item p
22345 Set background opacity, allowed range is [0, 1]. Default is 0.
22346
22347 @item m
22348 Set metering mode, can be peak: @code{p} or rms: @code{r},
22349 default is @code{p}.
22350
22351 @item ds
22352 Set display scale, can be linear: @code{lin} or log: @code{log},
22353 default is @code{lin}.
22354
22355 @item dm
22356 In second.
22357 If set to > 0., display a line for the max level
22358 in the previous seconds.
22359 default is disabled: @code{0.}
22360
22361 @item dmc
22362 The color of the max line. Use when @code{dm} option is set to > 0.
22363 default is: @code{orange}
22364 @end table
22365
22366 @section showwaves
22367
22368 Convert input audio to a video output, representing the samples waves.
22369
22370 The filter accepts the following options:
22371
22372 @table @option
22373 @item size, s
22374 Specify the video size for the output. For the syntax of this option, check the
22375 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22376 Default value is @code{600x240}.
22377
22378 @item mode
22379 Set display mode.
22380
22381 Available values are:
22382 @table @samp
22383 @item point
22384 Draw a point for each sample.
22385
22386 @item line
22387 Draw a vertical line for each sample.
22388
22389 @item p2p
22390 Draw a point for each sample and a line between them.
22391
22392 @item cline
22393 Draw a centered vertical line for each sample.
22394 @end table
22395
22396 Default value is @code{point}.
22397
22398 @item n
22399 Set the number of samples which are printed on the same column. A
22400 larger value will decrease the frame rate. Must be a positive
22401 integer. This option can be set only if the value for @var{rate}
22402 is not explicitly specified.
22403
22404 @item rate, r
22405 Set the (approximate) output frame rate. This is done by setting the
22406 option @var{n}. Default value is "25".
22407
22408 @item split_channels
22409 Set if channels should be drawn separately or overlap. Default value is 0.
22410
22411 @item colors
22412 Set colors separated by '|' which are going to be used for drawing of each channel.
22413
22414 @item scale
22415 Set amplitude scale.
22416
22417 Available values are:
22418 @table @samp
22419 @item lin
22420 Linear.
22421
22422 @item log
22423 Logarithmic.
22424
22425 @item sqrt
22426 Square root.
22427
22428 @item cbrt
22429 Cubic root.
22430 @end table
22431
22432 Default is linear.
22433
22434 @item draw
22435 Set the draw mode. This is mostly useful to set for high @var{n}.
22436
22437 Available values are:
22438 @table @samp
22439 @item scale
22440 Scale pixel values for each drawn sample.
22441
22442 @item full
22443 Draw every sample directly.
22444 @end table
22445
22446 Default value is @code{scale}.
22447 @end table
22448
22449 @subsection Examples
22450
22451 @itemize
22452 @item
22453 Output the input file audio and the corresponding video representation
22454 at the same time:
22455 @example
22456 amovie=a.mp3,asplit[out0],showwaves[out1]
22457 @end example
22458
22459 @item
22460 Create a synthetic signal and show it with showwaves, forcing a
22461 frame rate of 30 frames per second:
22462 @example
22463 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
22464 @end example
22465 @end itemize
22466
22467 @section showwavespic
22468
22469 Convert input audio to a single video frame, representing the samples waves.
22470
22471 The filter accepts the following options:
22472
22473 @table @option
22474 @item size, s
22475 Specify the video size for the output. For the syntax of this option, check the
22476 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22477 Default value is @code{600x240}.
22478
22479 @item split_channels
22480 Set if channels should be drawn separately or overlap. Default value is 0.
22481
22482 @item colors
22483 Set colors separated by '|' which are going to be used for drawing of each channel.
22484
22485 @item scale
22486 Set amplitude scale.
22487
22488 Available values are:
22489 @table @samp
22490 @item lin
22491 Linear.
22492
22493 @item log
22494 Logarithmic.
22495
22496 @item sqrt
22497 Square root.
22498
22499 @item cbrt
22500 Cubic root.
22501 @end table
22502
22503 Default is linear.
22504 @end table
22505
22506 @subsection Examples
22507
22508 @itemize
22509 @item
22510 Extract a channel split representation of the wave form of a whole audio track
22511 in a 1024x800 picture using @command{ffmpeg}:
22512 @example
22513 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
22514 @end example
22515 @end itemize
22516
22517 @section sidedata, asidedata
22518
22519 Delete frame side data, or select frames based on it.
22520
22521 This filter accepts the following options:
22522
22523 @table @option
22524 @item mode
22525 Set mode of operation of the filter.
22526
22527 Can be one of the following:
22528
22529 @table @samp
22530 @item select
22531 Select every frame with side data of @code{type}.
22532
22533 @item delete
22534 Delete side data of @code{type}. If @code{type} is not set, delete all side
22535 data in the frame.
22536
22537 @end table
22538
22539 @item type
22540 Set side data type used with all modes. Must be set for @code{select} mode. For
22541 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
22542 in @file{libavutil/frame.h}. For example, to choose
22543 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
22544
22545 @end table
22546
22547 @section spectrumsynth
22548
22549 Sythesize audio from 2 input video spectrums, first input stream represents
22550 magnitude across time and second represents phase across time.
22551 The filter will transform from frequency domain as displayed in videos back
22552 to time domain as presented in audio output.
22553
22554 This filter is primarily created for reversing processed @ref{showspectrum}
22555 filter outputs, but can synthesize sound from other spectrograms too.
22556 But in such case results are going to be poor if the phase data is not
22557 available, because in such cases phase data need to be recreated, usually
22558 it's just recreated from random noise.
22559 For best results use gray only output (@code{channel} color mode in
22560 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
22561 @code{lin} scale for phase video. To produce phase, for 2nd video, use
22562 @code{data} option. Inputs videos should generally use @code{fullframe}
22563 slide mode as that saves resources needed for decoding video.
22564
22565 The filter accepts the following options:
22566
22567 @table @option
22568 @item sample_rate
22569 Specify sample rate of output audio, the sample rate of audio from which
22570 spectrum was generated may differ.
22571
22572 @item channels
22573 Set number of channels represented in input video spectrums.
22574
22575 @item scale
22576 Set scale which was used when generating magnitude input spectrum.
22577 Can be @code{lin} or @code{log}. Default is @code{log}.
22578
22579 @item slide
22580 Set slide which was used when generating inputs spectrums.
22581 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
22582 Default is @code{fullframe}.
22583
22584 @item win_func
22585 Set window function used for resynthesis.
22586
22587 @item overlap
22588 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
22589 which means optimal overlap for selected window function will be picked.
22590
22591 @item orientation
22592 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
22593 Default is @code{vertical}.
22594 @end table
22595
22596 @subsection Examples
22597
22598 @itemize
22599 @item
22600 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
22601 then resynthesize videos back to audio with spectrumsynth:
22602 @example
22603 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
22604 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
22605 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
22606 @end example
22607 @end itemize
22608
22609 @section split, asplit
22610
22611 Split input into several identical outputs.
22612
22613 @code{asplit} works with audio input, @code{split} with video.
22614
22615 The filter accepts a single parameter which specifies the number of outputs. If
22616 unspecified, it defaults to 2.
22617
22618 @subsection Examples
22619
22620 @itemize
22621 @item
22622 Create two separate outputs from the same input:
22623 @example
22624 [in] split [out0][out1]
22625 @end example
22626
22627 @item
22628 To create 3 or more outputs, you need to specify the number of
22629 outputs, like in:
22630 @example
22631 [in] asplit=3 [out0][out1][out2]
22632 @end example
22633
22634 @item
22635 Create two separate outputs from the same input, one cropped and
22636 one padded:
22637 @example
22638 [in] split [splitout1][splitout2];
22639 [splitout1] crop=100:100:0:0    [cropout];
22640 [splitout2] pad=200:200:100:100 [padout];
22641 @end example
22642
22643 @item
22644 Create 5 copies of the input audio with @command{ffmpeg}:
22645 @example
22646 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
22647 @end example
22648 @end itemize
22649
22650 @section zmq, azmq
22651
22652 Receive commands sent through a libzmq client, and forward them to
22653 filters in the filtergraph.
22654
22655 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
22656 must be inserted between two video filters, @code{azmq} between two
22657 audio filters. Both are capable to send messages to any filter type.
22658
22659 To enable these filters you need to install the libzmq library and
22660 headers and configure FFmpeg with @code{--enable-libzmq}.
22661
22662 For more information about libzmq see:
22663 @url{http://www.zeromq.org/}
22664
22665 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
22666 receives messages sent through a network interface defined by the
22667 @option{bind_address} (or the abbreviation "@option{b}") option.
22668 Default value of this option is @file{tcp://localhost:5555}. You may
22669 want to alter this value to your needs, but do not forget to escape any
22670 ':' signs (see @ref{filtergraph escaping}).
22671
22672 The received message must be in the form:
22673 @example
22674 @var{TARGET} @var{COMMAND} [@var{ARG}]
22675 @end example
22676
22677 @var{TARGET} specifies the target of the command, usually the name of
22678 the filter class or a specific filter instance name. The default
22679 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
22680 but you can override this by using the @samp{filter_name@@id} syntax
22681 (see @ref{Filtergraph syntax}).
22682
22683 @var{COMMAND} specifies the name of the command for the target filter.
22684
22685 @var{ARG} is optional and specifies the optional argument list for the
22686 given @var{COMMAND}.
22687
22688 Upon reception, the message is processed and the corresponding command
22689 is injected into the filtergraph. Depending on the result, the filter
22690 will send a reply to the client, adopting the format:
22691 @example
22692 @var{ERROR_CODE} @var{ERROR_REASON}
22693 @var{MESSAGE}
22694 @end example
22695
22696 @var{MESSAGE} is optional.
22697
22698 @subsection Examples
22699
22700 Look at @file{tools/zmqsend} for an example of a zmq client which can
22701 be used to send commands processed by these filters.
22702
22703 Consider the following filtergraph generated by @command{ffplay}.
22704 In this example the last overlay filter has an instance name. All other
22705 filters will have default instance names.
22706
22707 @example
22708 ffplay -dumpgraph 1 -f lavfi "
22709 color=s=100x100:c=red  [l];
22710 color=s=100x100:c=blue [r];
22711 nullsrc=s=200x100, zmq [bg];
22712 [bg][l]   overlay     [bg+l];
22713 [bg+l][r] overlay@@my=x=100 "
22714 @end example
22715
22716 To change the color of the left side of the video, the following
22717 command can be used:
22718 @example
22719 echo Parsed_color_0 c yellow | tools/zmqsend
22720 @end example
22721
22722 To change the right side:
22723 @example
22724 echo Parsed_color_1 c pink | tools/zmqsend
22725 @end example
22726
22727 To change the position of the right side:
22728 @example
22729 echo overlay@@my x 150 | tools/zmqsend
22730 @end example
22731
22732
22733 @c man end MULTIMEDIA FILTERS
22734
22735 @chapter Multimedia Sources
22736 @c man begin MULTIMEDIA SOURCES
22737
22738 Below is a description of the currently available multimedia sources.
22739
22740 @section amovie
22741
22742 This is the same as @ref{movie} source, except it selects an audio
22743 stream by default.
22744
22745 @anchor{movie}
22746 @section movie
22747
22748 Read audio and/or video stream(s) from a movie container.
22749
22750 It accepts the following parameters:
22751
22752 @table @option
22753 @item filename
22754 The name of the resource to read (not necessarily a file; it can also be a
22755 device or a stream accessed through some protocol).
22756
22757 @item format_name, f
22758 Specifies the format assumed for the movie to read, and can be either
22759 the name of a container or an input device. If not specified, the
22760 format is guessed from @var{movie_name} or by probing.
22761
22762 @item seek_point, sp
22763 Specifies the seek point in seconds. The frames will be output
22764 starting from this seek point. The parameter is evaluated with
22765 @code{av_strtod}, so the numerical value may be suffixed by an IS
22766 postfix. The default value is "0".
22767
22768 @item streams, s
22769 Specifies the streams to read. Several streams can be specified,
22770 separated by "+". The source will then have as many outputs, in the
22771 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
22772 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
22773 respectively the default (best suited) video and audio stream. Default
22774 is "dv", or "da" if the filter is called as "amovie".
22775
22776 @item stream_index, si
22777 Specifies the index of the video stream to read. If the value is -1,
22778 the most suitable video stream will be automatically selected. The default
22779 value is "-1". Deprecated. If the filter is called "amovie", it will select
22780 audio instead of video.
22781
22782 @item loop
22783 Specifies how many times to read the stream in sequence.
22784 If the value is 0, the stream will be looped infinitely.
22785 Default value is "1".
22786
22787 Note that when the movie is looped the source timestamps are not
22788 changed, so it will generate non monotonically increasing timestamps.
22789
22790 @item discontinuity
22791 Specifies the time difference between frames above which the point is
22792 considered a timestamp discontinuity which is removed by adjusting the later
22793 timestamps.
22794 @end table
22795
22796 It allows overlaying a second video on top of the main input of
22797 a filtergraph, as shown in this graph:
22798 @example
22799 input -----------> deltapts0 --> overlay --> output
22800                                     ^
22801                                     |
22802 movie --> scale--> deltapts1 -------+
22803 @end example
22804 @subsection Examples
22805
22806 @itemize
22807 @item
22808 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
22809 on top of the input labelled "in":
22810 @example
22811 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
22812 [in] setpts=PTS-STARTPTS [main];
22813 [main][over] overlay=16:16 [out]
22814 @end example
22815
22816 @item
22817 Read from a video4linux2 device, and overlay it on top of the input
22818 labelled "in":
22819 @example
22820 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
22821 [in] setpts=PTS-STARTPTS [main];
22822 [main][over] overlay=16:16 [out]
22823 @end example
22824
22825 @item
22826 Read the first video stream and the audio stream with id 0x81 from
22827 dvd.vob; the video is connected to the pad named "video" and the audio is
22828 connected to the pad named "audio":
22829 @example
22830 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
22831 @end example
22832 @end itemize
22833
22834 @subsection Commands
22835
22836 Both movie and amovie support the following commands:
22837 @table @option
22838 @item seek
22839 Perform seek using "av_seek_frame".
22840 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
22841 @itemize
22842 @item
22843 @var{stream_index}: If stream_index is -1, a default
22844 stream is selected, and @var{timestamp} is automatically converted
22845 from AV_TIME_BASE units to the stream specific time_base.
22846 @item
22847 @var{timestamp}: Timestamp in AVStream.time_base units
22848 or, if no stream is specified, in AV_TIME_BASE units.
22849 @item
22850 @var{flags}: Flags which select direction and seeking mode.
22851 @end itemize
22852
22853 @item get_duration
22854 Get movie duration in AV_TIME_BASE units.
22855
22856 @end table
22857
22858 @c man end MULTIMEDIA SOURCES