]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
libavfilter: add photosensitivity filter
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{framesync}
316 @chapter Options for filters with several inputs (framesync)
317 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
318
319 Some filters with several inputs support a common set of options.
320 These options can only be set by name, not with the short notation.
321
322 @table @option
323 @item eof_action
324 The action to take when EOF is encountered on the secondary input; it accepts
325 one of the following values:
326
327 @table @option
328 @item repeat
329 Repeat the last frame (the default).
330 @item endall
331 End both streams.
332 @item pass
333 Pass the main input through.
334 @end table
335
336 @item shortest
337 If set to 1, force the output to terminate when the shortest input
338 terminates. Default value is 0.
339
340 @item repeatlast
341 If set to 1, force the filter to extend the last frame of secondary streams
342 until the end of the primary stream. A value of 0 disables this behavior.
343 Default value is 1.
344 @end table
345
346 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
347
348 @chapter Audio Filters
349 @c man begin AUDIO FILTERS
350
351 When you configure your FFmpeg build, you can disable any of the
352 existing filters using @code{--disable-filters}.
353 The configure output will show the audio filters included in your
354 build.
355
356 Below is a description of the currently available audio filters.
357
358 @section acompressor
359
360 A compressor is mainly used to reduce the dynamic range of a signal.
361 Especially modern music is mostly compressed at a high ratio to
362 improve the overall loudness. It's done to get the highest attention
363 of a listener, "fatten" the sound and bring more "power" to the track.
364 If a signal is compressed too much it may sound dull or "dead"
365 afterwards or it may start to "pump" (which could be a powerful effect
366 but can also destroy a track completely).
367 The right compression is the key to reach a professional sound and is
368 the high art of mixing and mastering. Because of its complex settings
369 it may take a long time to get the right feeling for this kind of effect.
370
371 Compression is done by detecting the volume above a chosen level
372 @code{threshold} and dividing it by the factor set with @code{ratio}.
373 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
374 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
375 the signal would cause distortion of the waveform the reduction can be
376 levelled over the time. This is done by setting "Attack" and "Release".
377 @code{attack} determines how long the signal has to rise above the threshold
378 before any reduction will occur and @code{release} sets the time the signal
379 has to fall below the threshold to reduce the reduction again. Shorter signals
380 than the chosen attack time will be left untouched.
381 The overall reduction of the signal can be made up afterwards with the
382 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
383 raising the makeup to this level results in a signal twice as loud than the
384 source. To gain a softer entry in the compression the @code{knee} flattens the
385 hard edge at the threshold in the range of the chosen decibels.
386
387 The filter accepts the following options:
388
389 @table @option
390 @item level_in
391 Set input gain. Default is 1. Range is between 0.015625 and 64.
392
393 @item mode
394 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
395 Default is @code{downward}.
396
397 @item threshold
398 If a signal of stream rises above this level it will affect the gain
399 reduction.
400 By default it is 0.125. Range is between 0.00097563 and 1.
401
402 @item ratio
403 Set a ratio by which the signal is reduced. 1:2 means that if the level
404 rose 4dB above the threshold, it will be only 2dB above after the reduction.
405 Default is 2. Range is between 1 and 20.
406
407 @item attack
408 Amount of milliseconds the signal has to rise above the threshold before gain
409 reduction starts. Default is 20. Range is between 0.01 and 2000.
410
411 @item release
412 Amount of milliseconds the signal has to fall below the threshold before
413 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
414
415 @item makeup
416 Set the amount by how much signal will be amplified after processing.
417 Default is 1. Range is from 1 to 64.
418
419 @item knee
420 Curve the sharp knee around the threshold to enter gain reduction more softly.
421 Default is 2.82843. Range is between 1 and 8.
422
423 @item link
424 Choose if the @code{average} level between all channels of input stream
425 or the louder(@code{maximum}) channel of input stream affects the
426 reduction. Default is @code{average}.
427
428 @item detection
429 Should the exact signal be taken in case of @code{peak} or an RMS one in case
430 of @code{rms}. Default is @code{rms} which is mostly smoother.
431
432 @item mix
433 How much to use compressed signal in output. Default is 1.
434 Range is between 0 and 1.
435 @end table
436
437 @section acontrast
438 Simple audio dynamic range compression/expansion filter.
439
440 The filter accepts the following options:
441
442 @table @option
443 @item contrast
444 Set contrast. Default is 33. Allowed range is between 0 and 100.
445 @end table
446
447 @section acopy
448
449 Copy the input audio source unchanged to the output. This is mainly useful for
450 testing purposes.
451
452 @section acrossfade
453
454 Apply cross fade from one input audio stream to another input audio stream.
455 The cross fade is applied for specified duration near the end of first stream.
456
457 The filter accepts the following options:
458
459 @table @option
460 @item nb_samples, ns
461 Specify the number of samples for which the cross fade effect has to last.
462 At the end of the cross fade effect the first input audio will be completely
463 silent. Default is 44100.
464
465 @item duration, d
466 Specify the duration of the cross fade effect. See
467 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
468 for the accepted syntax.
469 By default the duration is determined by @var{nb_samples}.
470 If set this option is used instead of @var{nb_samples}.
471
472 @item overlap, o
473 Should first stream end overlap with second stream start. Default is enabled.
474
475 @item curve1
476 Set curve for cross fade transition for first stream.
477
478 @item curve2
479 Set curve for cross fade transition for second stream.
480
481 For description of available curve types see @ref{afade} filter description.
482 @end table
483
484 @subsection Examples
485
486 @itemize
487 @item
488 Cross fade from one input to another:
489 @example
490 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
491 @end example
492
493 @item
494 Cross fade from one input to another but without overlapping:
495 @example
496 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
497 @end example
498 @end itemize
499
500 @section acrossover
501 Split audio stream into several bands.
502
503 This filter splits audio stream into two or more frequency ranges.
504 Summing all streams back will give flat output.
505
506 The filter accepts the following options:
507
508 @table @option
509 @item split
510 Set split frequencies. Those must be positive and increasing.
511
512 @item order
513 Set filter order, can be @var{2nd}, @var{4th} or @var{8th}.
514 Default is @var{4th}.
515 @end table
516
517 @section acrusher
518
519 Reduce audio bit resolution.
520
521 This filter is bit crusher with enhanced functionality. A bit crusher
522 is used to audibly reduce number of bits an audio signal is sampled
523 with. This doesn't change the bit depth at all, it just produces the
524 effect. Material reduced in bit depth sounds more harsh and "digital".
525 This filter is able to even round to continuous values instead of discrete
526 bit depths.
527 Additionally it has a D/C offset which results in different crushing of
528 the lower and the upper half of the signal.
529 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
530
531 Another feature of this filter is the logarithmic mode.
532 This setting switches from linear distances between bits to logarithmic ones.
533 The result is a much more "natural" sounding crusher which doesn't gate low
534 signals for example. The human ear has a logarithmic perception,
535 so this kind of crushing is much more pleasant.
536 Logarithmic crushing is also able to get anti-aliased.
537
538 The filter accepts the following options:
539
540 @table @option
541 @item level_in
542 Set level in.
543
544 @item level_out
545 Set level out.
546
547 @item bits
548 Set bit reduction.
549
550 @item mix
551 Set mixing amount.
552
553 @item mode
554 Can be linear: @code{lin} or logarithmic: @code{log}.
555
556 @item dc
557 Set DC.
558
559 @item aa
560 Set anti-aliasing.
561
562 @item samples
563 Set sample reduction.
564
565 @item lfo
566 Enable LFO. By default disabled.
567
568 @item lforange
569 Set LFO range.
570
571 @item lforate
572 Set LFO rate.
573 @end table
574
575 @section acue
576
577 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
578 filter.
579
580 @section adeclick
581 Remove impulsive noise from input audio.
582
583 Samples detected as impulsive noise are replaced by interpolated samples using
584 autoregressive modelling.
585
586 @table @option
587 @item w
588 Set window size, in milliseconds. Allowed range is from @code{10} to
589 @code{100}. Default value is @code{55} milliseconds.
590 This sets size of window which will be processed at once.
591
592 @item o
593 Set window overlap, in percentage of window size. Allowed range is from
594 @code{50} to @code{95}. Default value is @code{75} percent.
595 Setting this to a very high value increases impulsive noise removal but makes
596 whole process much slower.
597
598 @item a
599 Set autoregression order, in percentage of window size. Allowed range is from
600 @code{0} to @code{25}. Default value is @code{2} percent. This option also
601 controls quality of interpolated samples using neighbour good samples.
602
603 @item t
604 Set threshold value. Allowed range is from @code{1} to @code{100}.
605 Default value is @code{2}.
606 This controls the strength of impulsive noise which is going to be removed.
607 The lower value, the more samples will be detected as impulsive noise.
608
609 @item b
610 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
611 @code{10}. Default value is @code{2}.
612 If any two samples detected as noise are spaced less than this value then any
613 sample between those two samples will be also detected as noise.
614
615 @item m
616 Set overlap method.
617
618 It accepts the following values:
619 @table @option
620 @item a
621 Select overlap-add method. Even not interpolated samples are slightly
622 changed with this method.
623
624 @item s
625 Select overlap-save method. Not interpolated samples remain unchanged.
626 @end table
627
628 Default value is @code{a}.
629 @end table
630
631 @section adeclip
632 Remove clipped samples from input audio.
633
634 Samples detected as clipped are replaced by interpolated samples using
635 autoregressive modelling.
636
637 @table @option
638 @item w
639 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
640 Default value is @code{55} milliseconds.
641 This sets size of window which will be processed at once.
642
643 @item o
644 Set window overlap, in percentage of window size. Allowed range is from @code{50}
645 to @code{95}. Default value is @code{75} percent.
646
647 @item a
648 Set autoregression order, in percentage of window size. Allowed range is from
649 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
650 quality of interpolated samples using neighbour good samples.
651
652 @item t
653 Set threshold value. Allowed range is from @code{1} to @code{100}.
654 Default value is @code{10}. Higher values make clip detection less aggressive.
655
656 @item n
657 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
658 Default value is @code{1000}. Higher values make clip detection less aggressive.
659
660 @item m
661 Set overlap method.
662
663 It accepts the following values:
664 @table @option
665 @item a
666 Select overlap-add method. Even not interpolated samples are slightly changed
667 with this method.
668
669 @item s
670 Select overlap-save method. Not interpolated samples remain unchanged.
671 @end table
672
673 Default value is @code{a}.
674 @end table
675
676 @section adelay
677
678 Delay one or more audio channels.
679
680 Samples in delayed channel are filled with silence.
681
682 The filter accepts the following option:
683
684 @table @option
685 @item delays
686 Set list of delays in milliseconds for each channel separated by '|'.
687 Unused delays will be silently ignored. If number of given delays is
688 smaller than number of channels all remaining channels will not be delayed.
689 If you want to delay exact number of samples, append 'S' to number.
690 If you want instead to delay in seconds, append 's' to number.
691 @end table
692
693 @subsection Examples
694
695 @itemize
696 @item
697 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
698 the second channel (and any other channels that may be present) unchanged.
699 @example
700 adelay=1500|0|500
701 @end example
702
703 @item
704 Delay second channel by 500 samples, the third channel by 700 samples and leave
705 the first channel (and any other channels that may be present) unchanged.
706 @example
707 adelay=0|500S|700S
708 @end example
709 @end itemize
710
711 @section aderivative, aintegral
712
713 Compute derivative/integral of audio stream.
714
715 Applying both filters one after another produces original audio.
716
717 @section aecho
718
719 Apply echoing to the input audio.
720
721 Echoes are reflected sound and can occur naturally amongst mountains
722 (and sometimes large buildings) when talking or shouting; digital echo
723 effects emulate this behaviour and are often used to help fill out the
724 sound of a single instrument or vocal. The time difference between the
725 original signal and the reflection is the @code{delay}, and the
726 loudness of the reflected signal is the @code{decay}.
727 Multiple echoes can have different delays and decays.
728
729 A description of the accepted parameters follows.
730
731 @table @option
732 @item in_gain
733 Set input gain of reflected signal. Default is @code{0.6}.
734
735 @item out_gain
736 Set output gain of reflected signal. Default is @code{0.3}.
737
738 @item delays
739 Set list of time intervals in milliseconds between original signal and reflections
740 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
741 Default is @code{1000}.
742
743 @item decays
744 Set list of loudness of reflected signals separated by '|'.
745 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
746 Default is @code{0.5}.
747 @end table
748
749 @subsection Examples
750
751 @itemize
752 @item
753 Make it sound as if there are twice as many instruments as are actually playing:
754 @example
755 aecho=0.8:0.88:60:0.4
756 @end example
757
758 @item
759 If delay is very short, then it sounds like a (metallic) robot playing music:
760 @example
761 aecho=0.8:0.88:6:0.4
762 @end example
763
764 @item
765 A longer delay will sound like an open air concert in the mountains:
766 @example
767 aecho=0.8:0.9:1000:0.3
768 @end example
769
770 @item
771 Same as above but with one more mountain:
772 @example
773 aecho=0.8:0.9:1000|1800:0.3|0.25
774 @end example
775 @end itemize
776
777 @section aemphasis
778 Audio emphasis filter creates or restores material directly taken from LPs or
779 emphased CDs with different filter curves. E.g. to store music on vinyl the
780 signal has to be altered by a filter first to even out the disadvantages of
781 this recording medium.
782 Once the material is played back the inverse filter has to be applied to
783 restore the distortion of the frequency response.
784
785 The filter accepts the following options:
786
787 @table @option
788 @item level_in
789 Set input gain.
790
791 @item level_out
792 Set output gain.
793
794 @item mode
795 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
796 use @code{production} mode. Default is @code{reproduction} mode.
797
798 @item type
799 Set filter type. Selects medium. Can be one of the following:
800
801 @table @option
802 @item col
803 select Columbia.
804 @item emi
805 select EMI.
806 @item bsi
807 select BSI (78RPM).
808 @item riaa
809 select RIAA.
810 @item cd
811 select Compact Disc (CD).
812 @item 50fm
813 select 50µs (FM).
814 @item 75fm
815 select 75µs (FM).
816 @item 50kf
817 select 50µs (FM-KF).
818 @item 75kf
819 select 75µs (FM-KF).
820 @end table
821 @end table
822
823 @section aeval
824
825 Modify an audio signal according to the specified expressions.
826
827 This filter accepts one or more expressions (one for each channel),
828 which are evaluated and used to modify a corresponding audio signal.
829
830 It accepts the following parameters:
831
832 @table @option
833 @item exprs
834 Set the '|'-separated expressions list for each separate channel. If
835 the number of input channels is greater than the number of
836 expressions, the last specified expression is used for the remaining
837 output channels.
838
839 @item channel_layout, c
840 Set output channel layout. If not specified, the channel layout is
841 specified by the number of expressions. If set to @samp{same}, it will
842 use by default the same input channel layout.
843 @end table
844
845 Each expression in @var{exprs} can contain the following constants and functions:
846
847 @table @option
848 @item ch
849 channel number of the current expression
850
851 @item n
852 number of the evaluated sample, starting from 0
853
854 @item s
855 sample rate
856
857 @item t
858 time of the evaluated sample expressed in seconds
859
860 @item nb_in_channels
861 @item nb_out_channels
862 input and output number of channels
863
864 @item val(CH)
865 the value of input channel with number @var{CH}
866 @end table
867
868 Note: this filter is slow. For faster processing you should use a
869 dedicated filter.
870
871 @subsection Examples
872
873 @itemize
874 @item
875 Half volume:
876 @example
877 aeval=val(ch)/2:c=same
878 @end example
879
880 @item
881 Invert phase of the second channel:
882 @example
883 aeval=val(0)|-val(1)
884 @end example
885 @end itemize
886
887 @anchor{afade}
888 @section afade
889
890 Apply fade-in/out effect to input audio.
891
892 A description of the accepted parameters follows.
893
894 @table @option
895 @item type, t
896 Specify the effect type, can be either @code{in} for fade-in, or
897 @code{out} for a fade-out effect. Default is @code{in}.
898
899 @item start_sample, ss
900 Specify the number of the start sample for starting to apply the fade
901 effect. Default is 0.
902
903 @item nb_samples, ns
904 Specify the number of samples for which the fade effect has to last. At
905 the end of the fade-in effect the output audio will have the same
906 volume as the input audio, at the end of the fade-out transition
907 the output audio will be silence. Default is 44100.
908
909 @item start_time, st
910 Specify the start time of the fade effect. Default is 0.
911 The value must be specified as a time duration; see
912 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
913 for the accepted syntax.
914 If set this option is used instead of @var{start_sample}.
915
916 @item duration, d
917 Specify the duration of the fade effect. See
918 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
919 for the accepted syntax.
920 At the end of the fade-in effect the output audio will have the same
921 volume as the input audio, at the end of the fade-out transition
922 the output audio will be silence.
923 By default the duration is determined by @var{nb_samples}.
924 If set this option is used instead of @var{nb_samples}.
925
926 @item curve
927 Set curve for fade transition.
928
929 It accepts the following values:
930 @table @option
931 @item tri
932 select triangular, linear slope (default)
933 @item qsin
934 select quarter of sine wave
935 @item hsin
936 select half of sine wave
937 @item esin
938 select exponential sine wave
939 @item log
940 select logarithmic
941 @item ipar
942 select inverted parabola
943 @item qua
944 select quadratic
945 @item cub
946 select cubic
947 @item squ
948 select square root
949 @item cbr
950 select cubic root
951 @item par
952 select parabola
953 @item exp
954 select exponential
955 @item iqsin
956 select inverted quarter of sine wave
957 @item ihsin
958 select inverted half of sine wave
959 @item dese
960 select double-exponential seat
961 @item desi
962 select double-exponential sigmoid
963 @item losi
964 select logistic sigmoid
965 @item nofade
966 no fade applied
967 @end table
968 @end table
969
970 @subsection Examples
971
972 @itemize
973 @item
974 Fade in first 15 seconds of audio:
975 @example
976 afade=t=in:ss=0:d=15
977 @end example
978
979 @item
980 Fade out last 25 seconds of a 900 seconds audio:
981 @example
982 afade=t=out:st=875:d=25
983 @end example
984 @end itemize
985
986 @section afftdn
987 Denoise audio samples with FFT.
988
989 A description of the accepted parameters follows.
990
991 @table @option
992 @item nr
993 Set the noise reduction in dB, allowed range is 0.01 to 97.
994 Default value is 12 dB.
995
996 @item nf
997 Set the noise floor in dB, allowed range is -80 to -20.
998 Default value is -50 dB.
999
1000 @item nt
1001 Set the noise type.
1002
1003 It accepts the following values:
1004 @table @option
1005 @item w
1006 Select white noise.
1007
1008 @item v
1009 Select vinyl noise.
1010
1011 @item s
1012 Select shellac noise.
1013
1014 @item c
1015 Select custom noise, defined in @code{bn} option.
1016
1017 Default value is white noise.
1018 @end table
1019
1020 @item bn
1021 Set custom band noise for every one of 15 bands.
1022 Bands are separated by ' ' or '|'.
1023
1024 @item rf
1025 Set the residual floor in dB, allowed range is -80 to -20.
1026 Default value is -38 dB.
1027
1028 @item tn
1029 Enable noise tracking. By default is disabled.
1030 With this enabled, noise floor is automatically adjusted.
1031
1032 @item tr
1033 Enable residual tracking. By default is disabled.
1034
1035 @item om
1036 Set the output mode.
1037
1038 It accepts the following values:
1039 @table @option
1040 @item i
1041 Pass input unchanged.
1042
1043 @item o
1044 Pass noise filtered out.
1045
1046 @item n
1047 Pass only noise.
1048
1049 Default value is @var{o}.
1050 @end table
1051 @end table
1052
1053 @subsection Commands
1054
1055 This filter supports the following commands:
1056 @table @option
1057 @item sample_noise, sn
1058 Start or stop measuring noise profile.
1059 Syntax for the command is : "start" or "stop" string.
1060 After measuring noise profile is stopped it will be
1061 automatically applied in filtering.
1062
1063 @item noise_reduction, nr
1064 Change noise reduction. Argument is single float number.
1065 Syntax for the command is : "@var{noise_reduction}"
1066
1067 @item noise_floor, nf
1068 Change noise floor. Argument is single float number.
1069 Syntax for the command is : "@var{noise_floor}"
1070
1071 @item output_mode, om
1072 Change output mode operation.
1073 Syntax for the command is : "i", "o" or "n" string.
1074 @end table
1075
1076 @section afftfilt
1077 Apply arbitrary expressions to samples in frequency domain.
1078
1079 @table @option
1080 @item real
1081 Set frequency domain real expression for each separate channel separated
1082 by '|'. Default is "re".
1083 If the number of input channels is greater than the number of
1084 expressions, the last specified expression is used for the remaining
1085 output channels.
1086
1087 @item imag
1088 Set frequency domain imaginary expression for each separate channel
1089 separated by '|'. Default is "im".
1090
1091 Each expression in @var{real} and @var{imag} can contain the following
1092 constants and functions:
1093
1094 @table @option
1095 @item sr
1096 sample rate
1097
1098 @item b
1099 current frequency bin number
1100
1101 @item nb
1102 number of available bins
1103
1104 @item ch
1105 channel number of the current expression
1106
1107 @item chs
1108 number of channels
1109
1110 @item pts
1111 current frame pts
1112
1113 @item re
1114 current real part of frequency bin of current channel
1115
1116 @item im
1117 current imaginary part of frequency bin of current channel
1118
1119 @item real(b, ch)
1120 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1121
1122 @item imag(b, ch)
1123 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1124 @end table
1125
1126 @item win_size
1127 Set window size. Allowed range is from 16 to 131072.
1128 Default is @code{4096}
1129
1130 @item win_func
1131 Set window function. Default is @code{hann}.
1132
1133 @item overlap
1134 Set window overlap. If set to 1, the recommended overlap for selected
1135 window function will be picked. Default is @code{0.75}.
1136 @end table
1137
1138 @subsection Examples
1139
1140 @itemize
1141 @item
1142 Leave almost only low frequencies in audio:
1143 @example
1144 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1145 @end example
1146 @end itemize
1147
1148 @anchor{afir}
1149 @section afir
1150
1151 Apply an arbitrary Frequency Impulse Response filter.
1152
1153 This filter is designed for applying long FIR filters,
1154 up to 60 seconds long.
1155
1156 It can be used as component for digital crossover filters,
1157 room equalization, cross talk cancellation, wavefield synthesis,
1158 auralization, ambiophonics, ambisonics and spatialization.
1159
1160 This filter uses the second stream as FIR coefficients.
1161 If the second stream holds a single channel, it will be used
1162 for all input channels in the first stream, otherwise
1163 the number of channels in the second stream must be same as
1164 the number of channels in the first stream.
1165
1166 It accepts the following parameters:
1167
1168 @table @option
1169 @item dry
1170 Set dry gain. This sets input gain.
1171
1172 @item wet
1173 Set wet gain. This sets final output gain.
1174
1175 @item length
1176 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1177
1178 @item gtype
1179 Enable applying gain measured from power of IR.
1180
1181 Set which approach to use for auto gain measurement.
1182
1183 @table @option
1184 @item none
1185 Do not apply any gain.
1186
1187 @item peak
1188 select peak gain, very conservative approach. This is default value.
1189
1190 @item dc
1191 select DC gain, limited application.
1192
1193 @item gn
1194 select gain to noise approach, this is most popular one.
1195 @end table
1196
1197 @item irgain
1198 Set gain to be applied to IR coefficients before filtering.
1199 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1200
1201 @item irfmt
1202 Set format of IR stream. Can be @code{mono} or @code{input}.
1203 Default is @code{input}.
1204
1205 @item maxir
1206 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1207 Allowed range is 0.1 to 60 seconds.
1208
1209 @item response
1210 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1211 By default it is disabled.
1212
1213 @item channel
1214 Set for which IR channel to display frequency response. By default is first channel
1215 displayed. This option is used only when @var{response} is enabled.
1216
1217 @item size
1218 Set video stream size. This option is used only when @var{response} is enabled.
1219
1220 @item rate
1221 Set video stream frame rate. This option is used only when @var{response} is enabled.
1222
1223 @item minp
1224 Set minimal partition size used for convolution. Default is @var{8192}.
1225 Allowed range is from @var{8} to @var{32768}.
1226 Lower values decreases latency at cost of higher CPU usage.
1227
1228 @item maxp
1229 Set maximal partition size used for convolution. Default is @var{8192}.
1230 Allowed range is from @var{8} to @var{32768}.
1231 Lower values may increase CPU usage.
1232 @end table
1233
1234 @subsection Examples
1235
1236 @itemize
1237 @item
1238 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1239 @example
1240 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1241 @end example
1242 @end itemize
1243
1244 @anchor{aformat}
1245 @section aformat
1246
1247 Set output format constraints for the input audio. The framework will
1248 negotiate the most appropriate format to minimize conversions.
1249
1250 It accepts the following parameters:
1251 @table @option
1252
1253 @item sample_fmts
1254 A '|'-separated list of requested sample formats.
1255
1256 @item sample_rates
1257 A '|'-separated list of requested sample rates.
1258
1259 @item channel_layouts
1260 A '|'-separated list of requested channel layouts.
1261
1262 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1263 for the required syntax.
1264 @end table
1265
1266 If a parameter is omitted, all values are allowed.
1267
1268 Force the output to either unsigned 8-bit or signed 16-bit stereo
1269 @example
1270 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1271 @end example
1272
1273 @section agate
1274
1275 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1276 processing reduces disturbing noise between useful signals.
1277
1278 Gating is done by detecting the volume below a chosen level @var{threshold}
1279 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1280 floor is set via @var{range}. Because an exact manipulation of the signal
1281 would cause distortion of the waveform the reduction can be levelled over
1282 time. This is done by setting @var{attack} and @var{release}.
1283
1284 @var{attack} determines how long the signal has to fall below the threshold
1285 before any reduction will occur and @var{release} sets the time the signal
1286 has to rise above the threshold to reduce the reduction again.
1287 Shorter signals than the chosen attack time will be left untouched.
1288
1289 @table @option
1290 @item level_in
1291 Set input level before filtering.
1292 Default is 1. Allowed range is from 0.015625 to 64.
1293
1294 @item mode
1295 Set the mode of operation. Can be @code{upward} or @code{downward}.
1296 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1297 will be amplified, expanding dynamic range in upward direction.
1298 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1299
1300 @item range
1301 Set the level of gain reduction when the signal is below the threshold.
1302 Default is 0.06125. Allowed range is from 0 to 1.
1303 Setting this to 0 disables reduction and then filter behaves like expander.
1304
1305 @item threshold
1306 If a signal rises above this level the gain reduction is released.
1307 Default is 0.125. Allowed range is from 0 to 1.
1308
1309 @item ratio
1310 Set a ratio by which the signal is reduced.
1311 Default is 2. Allowed range is from 1 to 9000.
1312
1313 @item attack
1314 Amount of milliseconds the signal has to rise above the threshold before gain
1315 reduction stops.
1316 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1317
1318 @item release
1319 Amount of milliseconds the signal has to fall below the threshold before the
1320 reduction is increased again. Default is 250 milliseconds.
1321 Allowed range is from 0.01 to 9000.
1322
1323 @item makeup
1324 Set amount of amplification of signal after processing.
1325 Default is 1. Allowed range is from 1 to 64.
1326
1327 @item knee
1328 Curve the sharp knee around the threshold to enter gain reduction more softly.
1329 Default is 2.828427125. Allowed range is from 1 to 8.
1330
1331 @item detection
1332 Choose if exact signal should be taken for detection or an RMS like one.
1333 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1334
1335 @item link
1336 Choose if the average level between all channels or the louder channel affects
1337 the reduction.
1338 Default is @code{average}. Can be @code{average} or @code{maximum}.
1339 @end table
1340
1341 @section aiir
1342
1343 Apply an arbitrary Infinite Impulse Response filter.
1344
1345 It accepts the following parameters:
1346
1347 @table @option
1348 @item z
1349 Set numerator/zeros coefficients.
1350
1351 @item p
1352 Set denominator/poles coefficients.
1353
1354 @item k
1355 Set channels gains.
1356
1357 @item dry_gain
1358 Set input gain.
1359
1360 @item wet_gain
1361 Set output gain.
1362
1363 @item f
1364 Set coefficients format.
1365
1366 @table @samp
1367 @item tf
1368 transfer function
1369 @item zp
1370 Z-plane zeros/poles, cartesian (default)
1371 @item pr
1372 Z-plane zeros/poles, polar radians
1373 @item pd
1374 Z-plane zeros/poles, polar degrees
1375 @end table
1376
1377 @item r
1378 Set kind of processing.
1379 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1380
1381 @item e
1382 Set filtering precision.
1383
1384 @table @samp
1385 @item dbl
1386 double-precision floating-point (default)
1387 @item flt
1388 single-precision floating-point
1389 @item i32
1390 32-bit integers
1391 @item i16
1392 16-bit integers
1393 @end table
1394
1395 @item mix
1396 How much to use filtered signal in output. Default is 1.
1397 Range is between 0 and 1.
1398
1399 @item response
1400 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1401 By default it is disabled.
1402
1403 @item channel
1404 Set for which IR channel to display frequency response. By default is first channel
1405 displayed. This option is used only when @var{response} is enabled.
1406
1407 @item size
1408 Set video stream size. This option is used only when @var{response} is enabled.
1409 @end table
1410
1411 Coefficients in @code{tf} format are separated by spaces and are in ascending
1412 order.
1413
1414 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1415 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1416 imaginary unit.
1417
1418 Different coefficients and gains can be provided for every channel, in such case
1419 use '|' to separate coefficients or gains. Last provided coefficients will be
1420 used for all remaining channels.
1421
1422 @subsection Examples
1423
1424 @itemize
1425 @item
1426 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1427 @example
1428 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1429 @end example
1430
1431 @item
1432 Same as above but in @code{zp} format:
1433 @example
1434 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1435 @end example
1436 @end itemize
1437
1438 @section alimiter
1439
1440 The limiter prevents an input signal from rising over a desired threshold.
1441 This limiter uses lookahead technology to prevent your signal from distorting.
1442 It means that there is a small delay after the signal is processed. Keep in mind
1443 that the delay it produces is the attack time you set.
1444
1445 The filter accepts the following options:
1446
1447 @table @option
1448 @item level_in
1449 Set input gain. Default is 1.
1450
1451 @item level_out
1452 Set output gain. Default is 1.
1453
1454 @item limit
1455 Don't let signals above this level pass the limiter. Default is 1.
1456
1457 @item attack
1458 The limiter will reach its attenuation level in this amount of time in
1459 milliseconds. Default is 5 milliseconds.
1460
1461 @item release
1462 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1463 Default is 50 milliseconds.
1464
1465 @item asc
1466 When gain reduction is always needed ASC takes care of releasing to an
1467 average reduction level rather than reaching a reduction of 0 in the release
1468 time.
1469
1470 @item asc_level
1471 Select how much the release time is affected by ASC, 0 means nearly no changes
1472 in release time while 1 produces higher release times.
1473
1474 @item level
1475 Auto level output signal. Default is enabled.
1476 This normalizes audio back to 0dB if enabled.
1477 @end table
1478
1479 Depending on picked setting it is recommended to upsample input 2x or 4x times
1480 with @ref{aresample} before applying this filter.
1481
1482 @section allpass
1483
1484 Apply a two-pole all-pass filter with central frequency (in Hz)
1485 @var{frequency}, and filter-width @var{width}.
1486 An all-pass filter changes the audio's frequency to phase relationship
1487 without changing its frequency to amplitude relationship.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item frequency, f
1493 Set frequency in Hz.
1494
1495 @item width_type, t
1496 Set method to specify band-width of filter.
1497 @table @option
1498 @item h
1499 Hz
1500 @item q
1501 Q-Factor
1502 @item o
1503 octave
1504 @item s
1505 slope
1506 @item k
1507 kHz
1508 @end table
1509
1510 @item width, w
1511 Specify the band-width of a filter in width_type units.
1512
1513 @item mix, m
1514 How much to use filtered signal in output. Default is 1.
1515 Range is between 0 and 1.
1516
1517 @item channels, c
1518 Specify which channels to filter, by default all available are filtered.
1519 @end table
1520
1521 @subsection Commands
1522
1523 This filter supports the following commands:
1524 @table @option
1525 @item frequency, f
1526 Change allpass frequency.
1527 Syntax for the command is : "@var{frequency}"
1528
1529 @item width_type, t
1530 Change allpass width_type.
1531 Syntax for the command is : "@var{width_type}"
1532
1533 @item width, w
1534 Change allpass width.
1535 Syntax for the command is : "@var{width}"
1536
1537 @item mix, m
1538 Change allpass mix.
1539 Syntax for the command is : "@var{mix}"
1540 @end table
1541
1542 @section aloop
1543
1544 Loop audio samples.
1545
1546 The filter accepts the following options:
1547
1548 @table @option
1549 @item loop
1550 Set the number of loops. Setting this value to -1 will result in infinite loops.
1551 Default is 0.
1552
1553 @item size
1554 Set maximal number of samples. Default is 0.
1555
1556 @item start
1557 Set first sample of loop. Default is 0.
1558 @end table
1559
1560 @anchor{amerge}
1561 @section amerge
1562
1563 Merge two or more audio streams into a single multi-channel stream.
1564
1565 The filter accepts the following options:
1566
1567 @table @option
1568
1569 @item inputs
1570 Set the number of inputs. Default is 2.
1571
1572 @end table
1573
1574 If the channel layouts of the inputs are disjoint, and therefore compatible,
1575 the channel layout of the output will be set accordingly and the channels
1576 will be reordered as necessary. If the channel layouts of the inputs are not
1577 disjoint, the output will have all the channels of the first input then all
1578 the channels of the second input, in that order, and the channel layout of
1579 the output will be the default value corresponding to the total number of
1580 channels.
1581
1582 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1583 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1584 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1585 first input, b1 is the first channel of the second input).
1586
1587 On the other hand, if both input are in stereo, the output channels will be
1588 in the default order: a1, a2, b1, b2, and the channel layout will be
1589 arbitrarily set to 4.0, which may or may not be the expected value.
1590
1591 All inputs must have the same sample rate, and format.
1592
1593 If inputs do not have the same duration, the output will stop with the
1594 shortest.
1595
1596 @subsection Examples
1597
1598 @itemize
1599 @item
1600 Merge two mono files into a stereo stream:
1601 @example
1602 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1603 @end example
1604
1605 @item
1606 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1607 @example
1608 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1609 @end example
1610 @end itemize
1611
1612 @section amix
1613
1614 Mixes multiple audio inputs into a single output.
1615
1616 Note that this filter only supports float samples (the @var{amerge}
1617 and @var{pan} audio filters support many formats). If the @var{amix}
1618 input has integer samples then @ref{aresample} will be automatically
1619 inserted to perform the conversion to float samples.
1620
1621 For example
1622 @example
1623 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1624 @end example
1625 will mix 3 input audio streams to a single output with the same duration as the
1626 first input and a dropout transition time of 3 seconds.
1627
1628 It accepts the following parameters:
1629 @table @option
1630
1631 @item inputs
1632 The number of inputs. If unspecified, it defaults to 2.
1633
1634 @item duration
1635 How to determine the end-of-stream.
1636 @table @option
1637
1638 @item longest
1639 The duration of the longest input. (default)
1640
1641 @item shortest
1642 The duration of the shortest input.
1643
1644 @item first
1645 The duration of the first input.
1646
1647 @end table
1648
1649 @item dropout_transition
1650 The transition time, in seconds, for volume renormalization when an input
1651 stream ends. The default value is 2 seconds.
1652
1653 @item weights
1654 Specify weight of each input audio stream as sequence.
1655 Each weight is separated by space. By default all inputs have same weight.
1656 @end table
1657
1658 @section amultiply
1659
1660 Multiply first audio stream with second audio stream and store result
1661 in output audio stream. Multiplication is done by multiplying each
1662 sample from first stream with sample at same position from second stream.
1663
1664 With this element-wise multiplication one can create amplitude fades and
1665 amplitude modulations.
1666
1667 @section anequalizer
1668
1669 High-order parametric multiband equalizer for each channel.
1670
1671 It accepts the following parameters:
1672 @table @option
1673 @item params
1674
1675 This option string is in format:
1676 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1677 Each equalizer band is separated by '|'.
1678
1679 @table @option
1680 @item chn
1681 Set channel number to which equalization will be applied.
1682 If input doesn't have that channel the entry is ignored.
1683
1684 @item f
1685 Set central frequency for band.
1686 If input doesn't have that frequency the entry is ignored.
1687
1688 @item w
1689 Set band width in hertz.
1690
1691 @item g
1692 Set band gain in dB.
1693
1694 @item t
1695 Set filter type for band, optional, can be:
1696
1697 @table @samp
1698 @item 0
1699 Butterworth, this is default.
1700
1701 @item 1
1702 Chebyshev type 1.
1703
1704 @item 2
1705 Chebyshev type 2.
1706 @end table
1707 @end table
1708
1709 @item curves
1710 With this option activated frequency response of anequalizer is displayed
1711 in video stream.
1712
1713 @item size
1714 Set video stream size. Only useful if curves option is activated.
1715
1716 @item mgain
1717 Set max gain that will be displayed. Only useful if curves option is activated.
1718 Setting this to a reasonable value makes it possible to display gain which is derived from
1719 neighbour bands which are too close to each other and thus produce higher gain
1720 when both are activated.
1721
1722 @item fscale
1723 Set frequency scale used to draw frequency response in video output.
1724 Can be linear or logarithmic. Default is logarithmic.
1725
1726 @item colors
1727 Set color for each channel curve which is going to be displayed in video stream.
1728 This is list of color names separated by space or by '|'.
1729 Unrecognised or missing colors will be replaced by white color.
1730 @end table
1731
1732 @subsection Examples
1733
1734 @itemize
1735 @item
1736 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1737 for first 2 channels using Chebyshev type 1 filter:
1738 @example
1739 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1740 @end example
1741 @end itemize
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item change
1748 Alter existing filter parameters.
1749 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1750
1751 @var{fN} is existing filter number, starting from 0, if no such filter is available
1752 error is returned.
1753 @var{freq} set new frequency parameter.
1754 @var{width} set new width parameter in herz.
1755 @var{gain} set new gain parameter in dB.
1756
1757 Full filter invocation with asendcmd may look like this:
1758 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1759 @end table
1760
1761 @section anlmdn
1762
1763 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1764
1765 Each sample is adjusted by looking for other samples with similar contexts. This
1766 context similarity is defined by comparing their surrounding patches of size
1767 @option{p}. Patches are searched in an area of @option{r} around the sample.
1768
1769 The filter accepts the following options:
1770
1771 @table @option
1772 @item s
1773 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1774
1775 @item p
1776 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1777 Default value is 2 milliseconds.
1778
1779 @item r
1780 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1781 Default value is 6 milliseconds.
1782
1783 @item o
1784 Set the output mode.
1785
1786 It accepts the following values:
1787 @table @option
1788 @item i
1789 Pass input unchanged.
1790
1791 @item o
1792 Pass noise filtered out.
1793
1794 @item n
1795 Pass only noise.
1796
1797 Default value is @var{o}.
1798 @end table
1799
1800 @item m
1801 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1802 @end table
1803
1804 @subsection Commands
1805
1806 This filter supports the following commands:
1807 @table @option
1808 @item s
1809 Change denoise strength. Argument is single float number.
1810 Syntax for the command is : "@var{s}"
1811
1812 @item o
1813 Change output mode.
1814 Syntax for the command is : "i", "o" or "n" string.
1815 @end table
1816
1817 @section anull
1818
1819 Pass the audio source unchanged to the output.
1820
1821 @section apad
1822
1823 Pad the end of an audio stream with silence.
1824
1825 This can be used together with @command{ffmpeg} @option{-shortest} to
1826 extend audio streams to the same length as the video stream.
1827
1828 A description of the accepted options follows.
1829
1830 @table @option
1831 @item packet_size
1832 Set silence packet size. Default value is 4096.
1833
1834 @item pad_len
1835 Set the number of samples of silence to add to the end. After the
1836 value is reached, the stream is terminated. This option is mutually
1837 exclusive with @option{whole_len}.
1838
1839 @item whole_len
1840 Set the minimum total number of samples in the output audio stream. If
1841 the value is longer than the input audio length, silence is added to
1842 the end, until the value is reached. This option is mutually exclusive
1843 with @option{pad_len}.
1844
1845 @item pad_dur
1846 Specify the duration of samples of silence to add. See
1847 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1848 for the accepted syntax. Used only if set to non-zero value.
1849
1850 @item whole_dur
1851 Specify the minimum total duration in the output audio stream. See
1852 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1853 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1854 the input audio length, silence is added to the end, until the value is reached.
1855 This option is mutually exclusive with @option{pad_dur}
1856 @end table
1857
1858 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1859 nor @option{whole_dur} option is set, the filter will add silence to the end of
1860 the input stream indefinitely.
1861
1862 @subsection Examples
1863
1864 @itemize
1865 @item
1866 Add 1024 samples of silence to the end of the input:
1867 @example
1868 apad=pad_len=1024
1869 @end example
1870
1871 @item
1872 Make sure the audio output will contain at least 10000 samples, pad
1873 the input with silence if required:
1874 @example
1875 apad=whole_len=10000
1876 @end example
1877
1878 @item
1879 Use @command{ffmpeg} to pad the audio input with silence, so that the
1880 video stream will always result the shortest and will be converted
1881 until the end in the output file when using the @option{shortest}
1882 option:
1883 @example
1884 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1885 @end example
1886 @end itemize
1887
1888 @section aphaser
1889 Add a phasing effect to the input audio.
1890
1891 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1892 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1893
1894 A description of the accepted parameters follows.
1895
1896 @table @option
1897 @item in_gain
1898 Set input gain. Default is 0.4.
1899
1900 @item out_gain
1901 Set output gain. Default is 0.74
1902
1903 @item delay
1904 Set delay in milliseconds. Default is 3.0.
1905
1906 @item decay
1907 Set decay. Default is 0.4.
1908
1909 @item speed
1910 Set modulation speed in Hz. Default is 0.5.
1911
1912 @item type
1913 Set modulation type. Default is triangular.
1914
1915 It accepts the following values:
1916 @table @samp
1917 @item triangular, t
1918 @item sinusoidal, s
1919 @end table
1920 @end table
1921
1922 @section apulsator
1923
1924 Audio pulsator is something between an autopanner and a tremolo.
1925 But it can produce funny stereo effects as well. Pulsator changes the volume
1926 of the left and right channel based on a LFO (low frequency oscillator) with
1927 different waveforms and shifted phases.
1928 This filter have the ability to define an offset between left and right
1929 channel. An offset of 0 means that both LFO shapes match each other.
1930 The left and right channel are altered equally - a conventional tremolo.
1931 An offset of 50% means that the shape of the right channel is exactly shifted
1932 in phase (or moved backwards about half of the frequency) - pulsator acts as
1933 an autopanner. At 1 both curves match again. Every setting in between moves the
1934 phase shift gapless between all stages and produces some "bypassing" sounds with
1935 sine and triangle waveforms. The more you set the offset near 1 (starting from
1936 the 0.5) the faster the signal passes from the left to the right speaker.
1937
1938 The filter accepts the following options:
1939
1940 @table @option
1941 @item level_in
1942 Set input gain. By default it is 1. Range is [0.015625 - 64].
1943
1944 @item level_out
1945 Set output gain. By default it is 1. Range is [0.015625 - 64].
1946
1947 @item mode
1948 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1949 sawup or sawdown. Default is sine.
1950
1951 @item amount
1952 Set modulation. Define how much of original signal is affected by the LFO.
1953
1954 @item offset_l
1955 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1956
1957 @item offset_r
1958 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1959
1960 @item width
1961 Set pulse width. Default is 1. Allowed range is [0 - 2].
1962
1963 @item timing
1964 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1965
1966 @item bpm
1967 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1968 is set to bpm.
1969
1970 @item ms
1971 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1972 is set to ms.
1973
1974 @item hz
1975 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1976 if timing is set to hz.
1977 @end table
1978
1979 @anchor{aresample}
1980 @section aresample
1981
1982 Resample the input audio to the specified parameters, using the
1983 libswresample library. If none are specified then the filter will
1984 automatically convert between its input and output.
1985
1986 This filter is also able to stretch/squeeze the audio data to make it match
1987 the timestamps or to inject silence / cut out audio to make it match the
1988 timestamps, do a combination of both or do neither.
1989
1990 The filter accepts the syntax
1991 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1992 expresses a sample rate and @var{resampler_options} is a list of
1993 @var{key}=@var{value} pairs, separated by ":". See the
1994 @ref{Resampler Options,,"Resampler Options" section in the
1995 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1996 for the complete list of supported options.
1997
1998 @subsection Examples
1999
2000 @itemize
2001 @item
2002 Resample the input audio to 44100Hz:
2003 @example
2004 aresample=44100
2005 @end example
2006
2007 @item
2008 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2009 samples per second compensation:
2010 @example
2011 aresample=async=1000
2012 @end example
2013 @end itemize
2014
2015 @section areverse
2016
2017 Reverse an audio clip.
2018
2019 Warning: This filter requires memory to buffer the entire clip, so trimming
2020 is suggested.
2021
2022 @subsection Examples
2023
2024 @itemize
2025 @item
2026 Take the first 5 seconds of a clip, and reverse it.
2027 @example
2028 atrim=end=5,areverse
2029 @end example
2030 @end itemize
2031
2032 @section asetnsamples
2033
2034 Set the number of samples per each output audio frame.
2035
2036 The last output packet may contain a different number of samples, as
2037 the filter will flush all the remaining samples when the input audio
2038 signals its end.
2039
2040 The filter accepts the following options:
2041
2042 @table @option
2043
2044 @item nb_out_samples, n
2045 Set the number of frames per each output audio frame. The number is
2046 intended as the number of samples @emph{per each channel}.
2047 Default value is 1024.
2048
2049 @item pad, p
2050 If set to 1, the filter will pad the last audio frame with zeroes, so
2051 that the last frame will contain the same number of samples as the
2052 previous ones. Default value is 1.
2053 @end table
2054
2055 For example, to set the number of per-frame samples to 1234 and
2056 disable padding for the last frame, use:
2057 @example
2058 asetnsamples=n=1234:p=0
2059 @end example
2060
2061 @section asetrate
2062
2063 Set the sample rate without altering the PCM data.
2064 This will result in a change of speed and pitch.
2065
2066 The filter accepts the following options:
2067
2068 @table @option
2069 @item sample_rate, r
2070 Set the output sample rate. Default is 44100 Hz.
2071 @end table
2072
2073 @section ashowinfo
2074
2075 Show a line containing various information for each input audio frame.
2076 The input audio is not modified.
2077
2078 The shown line contains a sequence of key/value pairs of the form
2079 @var{key}:@var{value}.
2080
2081 The following values are shown in the output:
2082
2083 @table @option
2084 @item n
2085 The (sequential) number of the input frame, starting from 0.
2086
2087 @item pts
2088 The presentation timestamp of the input frame, in time base units; the time base
2089 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2090
2091 @item pts_time
2092 The presentation timestamp of the input frame in seconds.
2093
2094 @item pos
2095 position of the frame in the input stream, -1 if this information in
2096 unavailable and/or meaningless (for example in case of synthetic audio)
2097
2098 @item fmt
2099 The sample format.
2100
2101 @item chlayout
2102 The channel layout.
2103
2104 @item rate
2105 The sample rate for the audio frame.
2106
2107 @item nb_samples
2108 The number of samples (per channel) in the frame.
2109
2110 @item checksum
2111 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2112 audio, the data is treated as if all the planes were concatenated.
2113
2114 @item plane_checksums
2115 A list of Adler-32 checksums for each data plane.
2116 @end table
2117
2118 @section asoftclip
2119 Apply audio soft clipping.
2120
2121 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2122 along a smooth curve, rather than the abrupt shape of hard-clipping.
2123
2124 This filter accepts the following options:
2125
2126 @table @option
2127 @item type
2128 Set type of soft-clipping.
2129
2130 It accepts the following values:
2131 @table @option
2132 @item tanh
2133 @item atan
2134 @item cubic
2135 @item exp
2136 @item alg
2137 @item quintic
2138 @item sin
2139 @end table
2140
2141 @item param
2142 Set additional parameter which controls sigmoid function.
2143 @end table
2144
2145 @section asr
2146 Automatic Speech Recognition
2147
2148 This filter uses PocketSphinx for speech recognition. To enable
2149 compilation of this filter, you need to configure FFmpeg with
2150 @code{--enable-pocketsphinx}.
2151
2152 It accepts the following options:
2153
2154 @table @option
2155 @item rate
2156 Set sampling rate of input audio. Defaults is @code{16000}.
2157 This need to match speech models, otherwise one will get poor results.
2158
2159 @item hmm
2160 Set dictionary containing acoustic model files.
2161
2162 @item dict
2163 Set pronunciation dictionary.
2164
2165 @item lm
2166 Set language model file.
2167
2168 @item lmctl
2169 Set language model set.
2170
2171 @item lmname
2172 Set which language model to use.
2173
2174 @item logfn
2175 Set output for log messages.
2176 @end table
2177
2178 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2179
2180 @anchor{astats}
2181 @section astats
2182
2183 Display time domain statistical information about the audio channels.
2184 Statistics are calculated and displayed for each audio channel and,
2185 where applicable, an overall figure is also given.
2186
2187 It accepts the following option:
2188 @table @option
2189 @item length
2190 Short window length in seconds, used for peak and trough RMS measurement.
2191 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2192
2193 @item metadata
2194
2195 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2196 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2197 disabled.
2198
2199 Available keys for each channel are:
2200 DC_offset
2201 Min_level
2202 Max_level
2203 Min_difference
2204 Max_difference
2205 Mean_difference
2206 RMS_difference
2207 Peak_level
2208 RMS_peak
2209 RMS_trough
2210 Crest_factor
2211 Flat_factor
2212 Peak_count
2213 Bit_depth
2214 Dynamic_range
2215 Zero_crossings
2216 Zero_crossings_rate
2217 Number_of_NaNs
2218 Number_of_Infs
2219 Number_of_denormals
2220
2221 and for Overall:
2222 DC_offset
2223 Min_level
2224 Max_level
2225 Min_difference
2226 Max_difference
2227 Mean_difference
2228 RMS_difference
2229 Peak_level
2230 RMS_level
2231 RMS_peak
2232 RMS_trough
2233 Flat_factor
2234 Peak_count
2235 Bit_depth
2236 Number_of_samples
2237 Number_of_NaNs
2238 Number_of_Infs
2239 Number_of_denormals
2240
2241 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2242 this @code{lavfi.astats.Overall.Peak_count}.
2243
2244 For description what each key means read below.
2245
2246 @item reset
2247 Set number of frame after which stats are going to be recalculated.
2248 Default is disabled.
2249
2250 @item measure_perchannel
2251 Select the entries which need to be measured per channel. The metadata keys can
2252 be used as flags, default is @option{all} which measures everything.
2253 @option{none} disables all per channel measurement.
2254
2255 @item measure_overall
2256 Select the entries which need to be measured overall. The metadata keys can
2257 be used as flags, default is @option{all} which measures everything.
2258 @option{none} disables all overall measurement.
2259
2260 @end table
2261
2262 A description of each shown parameter follows:
2263
2264 @table @option
2265 @item DC offset
2266 Mean amplitude displacement from zero.
2267
2268 @item Min level
2269 Minimal sample level.
2270
2271 @item Max level
2272 Maximal sample level.
2273
2274 @item Min difference
2275 Minimal difference between two consecutive samples.
2276
2277 @item Max difference
2278 Maximal difference between two consecutive samples.
2279
2280 @item Mean difference
2281 Mean difference between two consecutive samples.
2282 The average of each difference between two consecutive samples.
2283
2284 @item RMS difference
2285 Root Mean Square difference between two consecutive samples.
2286
2287 @item Peak level dB
2288 @item RMS level dB
2289 Standard peak and RMS level measured in dBFS.
2290
2291 @item RMS peak dB
2292 @item RMS trough dB
2293 Peak and trough values for RMS level measured over a short window.
2294
2295 @item Crest factor
2296 Standard ratio of peak to RMS level (note: not in dB).
2297
2298 @item Flat factor
2299 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2300 (i.e. either @var{Min level} or @var{Max level}).
2301
2302 @item Peak count
2303 Number of occasions (not the number of samples) that the signal attained either
2304 @var{Min level} or @var{Max level}.
2305
2306 @item Bit depth
2307 Overall bit depth of audio. Number of bits used for each sample.
2308
2309 @item Dynamic range
2310 Measured dynamic range of audio in dB.
2311
2312 @item Zero crossings
2313 Number of points where the waveform crosses the zero level axis.
2314
2315 @item Zero crossings rate
2316 Rate of Zero crossings and number of audio samples.
2317 @end table
2318
2319 @section atempo
2320
2321 Adjust audio tempo.
2322
2323 The filter accepts exactly one parameter, the audio tempo. If not
2324 specified then the filter will assume nominal 1.0 tempo. Tempo must
2325 be in the [0.5, 100.0] range.
2326
2327 Note that tempo greater than 2 will skip some samples rather than
2328 blend them in.  If for any reason this is a concern it is always
2329 possible to daisy-chain several instances of atempo to achieve the
2330 desired product tempo.
2331
2332 @subsection Examples
2333
2334 @itemize
2335 @item
2336 Slow down audio to 80% tempo:
2337 @example
2338 atempo=0.8
2339 @end example
2340
2341 @item
2342 To speed up audio to 300% tempo:
2343 @example
2344 atempo=3
2345 @end example
2346
2347 @item
2348 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2349 @example
2350 atempo=sqrt(3),atempo=sqrt(3)
2351 @end example
2352 @end itemize
2353
2354 @section atrim
2355
2356 Trim the input so that the output contains one continuous subpart of the input.
2357
2358 It accepts the following parameters:
2359 @table @option
2360 @item start
2361 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2362 sample with the timestamp @var{start} will be the first sample in the output.
2363
2364 @item end
2365 Specify time of the first audio sample that will be dropped, i.e. the
2366 audio sample immediately preceding the one with the timestamp @var{end} will be
2367 the last sample in the output.
2368
2369 @item start_pts
2370 Same as @var{start}, except this option sets the start timestamp in samples
2371 instead of seconds.
2372
2373 @item end_pts
2374 Same as @var{end}, except this option sets the end timestamp in samples instead
2375 of seconds.
2376
2377 @item duration
2378 The maximum duration of the output in seconds.
2379
2380 @item start_sample
2381 The number of the first sample that should be output.
2382
2383 @item end_sample
2384 The number of the first sample that should be dropped.
2385 @end table
2386
2387 @option{start}, @option{end}, and @option{duration} are expressed as time
2388 duration specifications; see
2389 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2390
2391 Note that the first two sets of the start/end options and the @option{duration}
2392 option look at the frame timestamp, while the _sample options simply count the
2393 samples that pass through the filter. So start/end_pts and start/end_sample will
2394 give different results when the timestamps are wrong, inexact or do not start at
2395 zero. Also note that this filter does not modify the timestamps. If you wish
2396 to have the output timestamps start at zero, insert the asetpts filter after the
2397 atrim filter.
2398
2399 If multiple start or end options are set, this filter tries to be greedy and
2400 keep all samples that match at least one of the specified constraints. To keep
2401 only the part that matches all the constraints at once, chain multiple atrim
2402 filters.
2403
2404 The defaults are such that all the input is kept. So it is possible to set e.g.
2405 just the end values to keep everything before the specified time.
2406
2407 Examples:
2408 @itemize
2409 @item
2410 Drop everything except the second minute of input:
2411 @example
2412 ffmpeg -i INPUT -af atrim=60:120
2413 @end example
2414
2415 @item
2416 Keep only the first 1000 samples:
2417 @example
2418 ffmpeg -i INPUT -af atrim=end_sample=1000
2419 @end example
2420
2421 @end itemize
2422
2423 @section bandpass
2424
2425 Apply a two-pole Butterworth band-pass filter with central
2426 frequency @var{frequency}, and (3dB-point) band-width width.
2427 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2428 instead of the default: constant 0dB peak gain.
2429 The filter roll off at 6dB per octave (20dB per decade).
2430
2431 The filter accepts the following options:
2432
2433 @table @option
2434 @item frequency, f
2435 Set the filter's central frequency. Default is @code{3000}.
2436
2437 @item csg
2438 Constant skirt gain if set to 1. Defaults to 0.
2439
2440 @item width_type, t
2441 Set method to specify band-width of filter.
2442 @table @option
2443 @item h
2444 Hz
2445 @item q
2446 Q-Factor
2447 @item o
2448 octave
2449 @item s
2450 slope
2451 @item k
2452 kHz
2453 @end table
2454
2455 @item width, w
2456 Specify the band-width of a filter in width_type units.
2457
2458 @item mix, m
2459 How much to use filtered signal in output. Default is 1.
2460 Range is between 0 and 1.
2461
2462 @item channels, c
2463 Specify which channels to filter, by default all available are filtered.
2464 @end table
2465
2466 @subsection Commands
2467
2468 This filter supports the following commands:
2469 @table @option
2470 @item frequency, f
2471 Change bandpass frequency.
2472 Syntax for the command is : "@var{frequency}"
2473
2474 @item width_type, t
2475 Change bandpass width_type.
2476 Syntax for the command is : "@var{width_type}"
2477
2478 @item width, w
2479 Change bandpass width.
2480 Syntax for the command is : "@var{width}"
2481
2482 @item mix, m
2483 Change bandpass mix.
2484 Syntax for the command is : "@var{mix}"
2485 @end table
2486
2487 @section bandreject
2488
2489 Apply a two-pole Butterworth band-reject filter with central
2490 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2491 The filter roll off at 6dB per octave (20dB per decade).
2492
2493 The filter accepts the following options:
2494
2495 @table @option
2496 @item frequency, f
2497 Set the filter's central frequency. Default is @code{3000}.
2498
2499 @item width_type, t
2500 Set method to specify band-width of filter.
2501 @table @option
2502 @item h
2503 Hz
2504 @item q
2505 Q-Factor
2506 @item o
2507 octave
2508 @item s
2509 slope
2510 @item k
2511 kHz
2512 @end table
2513
2514 @item width, w
2515 Specify the band-width of a filter in width_type units.
2516
2517 @item mix, m
2518 How much to use filtered signal in output. Default is 1.
2519 Range is between 0 and 1.
2520
2521 @item channels, c
2522 Specify which channels to filter, by default all available are filtered.
2523 @end table
2524
2525 @subsection Commands
2526
2527 This filter supports the following commands:
2528 @table @option
2529 @item frequency, f
2530 Change bandreject frequency.
2531 Syntax for the command is : "@var{frequency}"
2532
2533 @item width_type, t
2534 Change bandreject width_type.
2535 Syntax for the command is : "@var{width_type}"
2536
2537 @item width, w
2538 Change bandreject width.
2539 Syntax for the command is : "@var{width}"
2540
2541 @item mix, m
2542 Change bandreject mix.
2543 Syntax for the command is : "@var{mix}"
2544 @end table
2545
2546 @section bass, lowshelf
2547
2548 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2549 shelving filter with a response similar to that of a standard
2550 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2551
2552 The filter accepts the following options:
2553
2554 @table @option
2555 @item gain, g
2556 Give the gain at 0 Hz. Its useful range is about -20
2557 (for a large cut) to +20 (for a large boost).
2558 Beware of clipping when using a positive gain.
2559
2560 @item frequency, f
2561 Set the filter's central frequency and so can be used
2562 to extend or reduce the frequency range to be boosted or cut.
2563 The default value is @code{100} Hz.
2564
2565 @item width_type, t
2566 Set method to specify band-width of filter.
2567 @table @option
2568 @item h
2569 Hz
2570 @item q
2571 Q-Factor
2572 @item o
2573 octave
2574 @item s
2575 slope
2576 @item k
2577 kHz
2578 @end table
2579
2580 @item width, w
2581 Determine how steep is the filter's shelf transition.
2582
2583 @item mix, m
2584 How much to use filtered signal in output. Default is 1.
2585 Range is between 0 and 1.
2586
2587 @item channels, c
2588 Specify which channels to filter, by default all available are filtered.
2589 @end table
2590
2591 @subsection Commands
2592
2593 This filter supports the following commands:
2594 @table @option
2595 @item frequency, f
2596 Change bass frequency.
2597 Syntax for the command is : "@var{frequency}"
2598
2599 @item width_type, t
2600 Change bass width_type.
2601 Syntax for the command is : "@var{width_type}"
2602
2603 @item width, w
2604 Change bass width.
2605 Syntax for the command is : "@var{width}"
2606
2607 @item gain, g
2608 Change bass gain.
2609 Syntax for the command is : "@var{gain}"
2610
2611 @item mix, m
2612 Change bass mix.
2613 Syntax for the command is : "@var{mix}"
2614 @end table
2615
2616 @section biquad
2617
2618 Apply a biquad IIR filter with the given coefficients.
2619 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2620 are the numerator and denominator coefficients respectively.
2621 and @var{channels}, @var{c} specify which channels to filter, by default all
2622 available are filtered.
2623
2624 @subsection Commands
2625
2626 This filter supports the following commands:
2627 @table @option
2628 @item a0
2629 @item a1
2630 @item a2
2631 @item b0
2632 @item b1
2633 @item b2
2634 Change biquad parameter.
2635 Syntax for the command is : "@var{value}"
2636
2637 @item mix, m
2638 How much to use filtered signal in output. Default is 1.
2639 Range is between 0 and 1.
2640 @end table
2641
2642 @section bs2b
2643 Bauer stereo to binaural transformation, which improves headphone listening of
2644 stereo audio records.
2645
2646 To enable compilation of this filter you need to configure FFmpeg with
2647 @code{--enable-libbs2b}.
2648
2649 It accepts the following parameters:
2650 @table @option
2651
2652 @item profile
2653 Pre-defined crossfeed level.
2654 @table @option
2655
2656 @item default
2657 Default level (fcut=700, feed=50).
2658
2659 @item cmoy
2660 Chu Moy circuit (fcut=700, feed=60).
2661
2662 @item jmeier
2663 Jan Meier circuit (fcut=650, feed=95).
2664
2665 @end table
2666
2667 @item fcut
2668 Cut frequency (in Hz).
2669
2670 @item feed
2671 Feed level (in Hz).
2672
2673 @end table
2674
2675 @section channelmap
2676
2677 Remap input channels to new locations.
2678
2679 It accepts the following parameters:
2680 @table @option
2681 @item map
2682 Map channels from input to output. The argument is a '|'-separated list of
2683 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2684 @var{in_channel} form. @var{in_channel} can be either the name of the input
2685 channel (e.g. FL for front left) or its index in the input channel layout.
2686 @var{out_channel} is the name of the output channel or its index in the output
2687 channel layout. If @var{out_channel} is not given then it is implicitly an
2688 index, starting with zero and increasing by one for each mapping.
2689
2690 @item channel_layout
2691 The channel layout of the output stream.
2692 @end table
2693
2694 If no mapping is present, the filter will implicitly map input channels to
2695 output channels, preserving indices.
2696
2697 @subsection Examples
2698
2699 @itemize
2700 @item
2701 For example, assuming a 5.1+downmix input MOV file,
2702 @example
2703 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2704 @end example
2705 will create an output WAV file tagged as stereo from the downmix channels of
2706 the input.
2707
2708 @item
2709 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2710 @example
2711 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2712 @end example
2713 @end itemize
2714
2715 @section channelsplit
2716
2717 Split each channel from an input audio stream into a separate output stream.
2718
2719 It accepts the following parameters:
2720 @table @option
2721 @item channel_layout
2722 The channel layout of the input stream. The default is "stereo".
2723 @item channels
2724 A channel layout describing the channels to be extracted as separate output streams
2725 or "all" to extract each input channel as a separate stream. The default is "all".
2726
2727 Choosing channels not present in channel layout in the input will result in an error.
2728 @end table
2729
2730 @subsection Examples
2731
2732 @itemize
2733 @item
2734 For example, assuming a stereo input MP3 file,
2735 @example
2736 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2737 @end example
2738 will create an output Matroska file with two audio streams, one containing only
2739 the left channel and the other the right channel.
2740
2741 @item
2742 Split a 5.1 WAV file into per-channel files:
2743 @example
2744 ffmpeg -i in.wav -filter_complex
2745 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2746 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2747 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2748 side_right.wav
2749 @end example
2750
2751 @item
2752 Extract only LFE from a 5.1 WAV file:
2753 @example
2754 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2755 -map '[LFE]' lfe.wav
2756 @end example
2757 @end itemize
2758
2759 @section chorus
2760 Add a chorus effect to the audio.
2761
2762 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2763
2764 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2765 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2766 The modulation depth defines the range the modulated delay is played before or after
2767 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2768 sound tuned around the original one, like in a chorus where some vocals are slightly
2769 off key.
2770
2771 It accepts the following parameters:
2772 @table @option
2773 @item in_gain
2774 Set input gain. Default is 0.4.
2775
2776 @item out_gain
2777 Set output gain. Default is 0.4.
2778
2779 @item delays
2780 Set delays. A typical delay is around 40ms to 60ms.
2781
2782 @item decays
2783 Set decays.
2784
2785 @item speeds
2786 Set speeds.
2787
2788 @item depths
2789 Set depths.
2790 @end table
2791
2792 @subsection Examples
2793
2794 @itemize
2795 @item
2796 A single delay:
2797 @example
2798 chorus=0.7:0.9:55:0.4:0.25:2
2799 @end example
2800
2801 @item
2802 Two delays:
2803 @example
2804 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2805 @end example
2806
2807 @item
2808 Fuller sounding chorus with three delays:
2809 @example
2810 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
2811 @end example
2812 @end itemize
2813
2814 @section compand
2815 Compress or expand the audio's dynamic range.
2816
2817 It accepts the following parameters:
2818
2819 @table @option
2820
2821 @item attacks
2822 @item decays
2823 A list of times in seconds for each channel over which the instantaneous level
2824 of the input signal is averaged to determine its volume. @var{attacks} refers to
2825 increase of volume and @var{decays} refers to decrease of volume. For most
2826 situations, the attack time (response to the audio getting louder) should be
2827 shorter than the decay time, because the human ear is more sensitive to sudden
2828 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2829 a typical value for decay is 0.8 seconds.
2830 If specified number of attacks & decays is lower than number of channels, the last
2831 set attack/decay will be used for all remaining channels.
2832
2833 @item points
2834 A list of points for the transfer function, specified in dB relative to the
2835 maximum possible signal amplitude. Each key points list must be defined using
2836 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2837 @code{x0/y0 x1/y1 x2/y2 ....}
2838
2839 The input values must be in strictly increasing order but the transfer function
2840 does not have to be monotonically rising. The point @code{0/0} is assumed but
2841 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2842 function are @code{-70/-70|-60/-20|1/0}.
2843
2844 @item soft-knee
2845 Set the curve radius in dB for all joints. It defaults to 0.01.
2846
2847 @item gain
2848 Set the additional gain in dB to be applied at all points on the transfer
2849 function. This allows for easy adjustment of the overall gain.
2850 It defaults to 0.
2851
2852 @item volume
2853 Set an initial volume, in dB, to be assumed for each channel when filtering
2854 starts. This permits the user to supply a nominal level initially, so that, for
2855 example, a very large gain is not applied to initial signal levels before the
2856 companding has begun to operate. A typical value for audio which is initially
2857 quiet is -90 dB. It defaults to 0.
2858
2859 @item delay
2860 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2861 delayed before being fed to the volume adjuster. Specifying a delay
2862 approximately equal to the attack/decay times allows the filter to effectively
2863 operate in predictive rather than reactive mode. It defaults to 0.
2864
2865 @end table
2866
2867 @subsection Examples
2868
2869 @itemize
2870 @item
2871 Make music with both quiet and loud passages suitable for listening to in a
2872 noisy environment:
2873 @example
2874 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2875 @end example
2876
2877 Another example for audio with whisper and explosion parts:
2878 @example
2879 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2880 @end example
2881
2882 @item
2883 A noise gate for when the noise is at a lower level than the signal:
2884 @example
2885 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2886 @end example
2887
2888 @item
2889 Here is another noise gate, this time for when the noise is at a higher level
2890 than the signal (making it, in some ways, similar to squelch):
2891 @example
2892 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2893 @end example
2894
2895 @item
2896 2:1 compression starting at -6dB:
2897 @example
2898 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2899 @end example
2900
2901 @item
2902 2:1 compression starting at -9dB:
2903 @example
2904 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2905 @end example
2906
2907 @item
2908 2:1 compression starting at -12dB:
2909 @example
2910 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2911 @end example
2912
2913 @item
2914 2:1 compression starting at -18dB:
2915 @example
2916 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2917 @end example
2918
2919 @item
2920 3:1 compression starting at -15dB:
2921 @example
2922 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2923 @end example
2924
2925 @item
2926 Compressor/Gate:
2927 @example
2928 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2929 @end example
2930
2931 @item
2932 Expander:
2933 @example
2934 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2935 @end example
2936
2937 @item
2938 Hard limiter at -6dB:
2939 @example
2940 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2941 @end example
2942
2943 @item
2944 Hard limiter at -12dB:
2945 @example
2946 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2947 @end example
2948
2949 @item
2950 Hard noise gate at -35 dB:
2951 @example
2952 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2953 @end example
2954
2955 @item
2956 Soft limiter:
2957 @example
2958 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2959 @end example
2960 @end itemize
2961
2962 @section compensationdelay
2963
2964 Compensation Delay Line is a metric based delay to compensate differing
2965 positions of microphones or speakers.
2966
2967 For example, you have recorded guitar with two microphones placed in
2968 different locations. Because the front of sound wave has fixed speed in
2969 normal conditions, the phasing of microphones can vary and depends on
2970 their location and interposition. The best sound mix can be achieved when
2971 these microphones are in phase (synchronized). Note that a distance of
2972 ~30 cm between microphones makes one microphone capture the signal in
2973 antiphase to the other microphone. That makes the final mix sound moody.
2974 This filter helps to solve phasing problems by adding different delays
2975 to each microphone track and make them synchronized.
2976
2977 The best result can be reached when you take one track as base and
2978 synchronize other tracks one by one with it.
2979 Remember that synchronization/delay tolerance depends on sample rate, too.
2980 Higher sample rates will give more tolerance.
2981
2982 The filter accepts the following parameters:
2983
2984 @table @option
2985 @item mm
2986 Set millimeters distance. This is compensation distance for fine tuning.
2987 Default is 0.
2988
2989 @item cm
2990 Set cm distance. This is compensation distance for tightening distance setup.
2991 Default is 0.
2992
2993 @item m
2994 Set meters distance. This is compensation distance for hard distance setup.
2995 Default is 0.
2996
2997 @item dry
2998 Set dry amount. Amount of unprocessed (dry) signal.
2999 Default is 0.
3000
3001 @item wet
3002 Set wet amount. Amount of processed (wet) signal.
3003 Default is 1.
3004
3005 @item temp
3006 Set temperature in degrees Celsius. This is the temperature of the environment.
3007 Default is 20.
3008 @end table
3009
3010 @section crossfeed
3011 Apply headphone crossfeed filter.
3012
3013 Crossfeed is the process of blending the left and right channels of stereo
3014 audio recording.
3015 It is mainly used to reduce extreme stereo separation of low frequencies.
3016
3017 The intent is to produce more speaker like sound to the listener.
3018
3019 The filter accepts the following options:
3020
3021 @table @option
3022 @item strength
3023 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3024 This sets gain of low shelf filter for side part of stereo image.
3025 Default is -6dB. Max allowed is -30db when strength is set to 1.
3026
3027 @item range
3028 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3029 This sets cut off frequency of low shelf filter. Default is cut off near
3030 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3031
3032 @item level_in
3033 Set input gain. Default is 0.9.
3034
3035 @item level_out
3036 Set output gain. Default is 1.
3037 @end table
3038
3039 @section crystalizer
3040 Simple algorithm to expand audio dynamic range.
3041
3042 The filter accepts the following options:
3043
3044 @table @option
3045 @item i
3046 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3047 (unchanged sound) to 10.0 (maximum effect).
3048
3049 @item c
3050 Enable clipping. By default is enabled.
3051 @end table
3052
3053 @section dcshift
3054 Apply a DC shift to the audio.
3055
3056 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3057 in the recording chain) from the audio. The effect of a DC offset is reduced
3058 headroom and hence volume. The @ref{astats} filter can be used to determine if
3059 a signal has a DC offset.
3060
3061 @table @option
3062 @item shift
3063 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3064 the audio.
3065
3066 @item limitergain
3067 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3068 used to prevent clipping.
3069 @end table
3070
3071 @section deesser
3072
3073 Apply de-essing to the audio samples.
3074
3075 @table @option
3076 @item i
3077 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3078 Default is 0.
3079
3080 @item m
3081 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3082 Default is 0.5.
3083
3084 @item f
3085 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3086 Default is 0.5.
3087
3088 @item s
3089 Set the output mode.
3090
3091 It accepts the following values:
3092 @table @option
3093 @item i
3094 Pass input unchanged.
3095
3096 @item o
3097 Pass ess filtered out.
3098
3099 @item e
3100 Pass only ess.
3101
3102 Default value is @var{o}.
3103 @end table
3104
3105 @end table
3106
3107 @section drmeter
3108 Measure audio dynamic range.
3109
3110 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3111 is found in transition material. And anything less that 8 have very poor dynamics
3112 and is very compressed.
3113
3114 The filter accepts the following options:
3115
3116 @table @option
3117 @item length
3118 Set window length in seconds used to split audio into segments of equal length.
3119 Default is 3 seconds.
3120 @end table
3121
3122 @section dynaudnorm
3123 Dynamic Audio Normalizer.
3124
3125 This filter applies a certain amount of gain to the input audio in order
3126 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3127 contrast to more "simple" normalization algorithms, the Dynamic Audio
3128 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3129 This allows for applying extra gain to the "quiet" sections of the audio
3130 while avoiding distortions or clipping the "loud" sections. In other words:
3131 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3132 sections, in the sense that the volume of each section is brought to the
3133 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3134 this goal *without* applying "dynamic range compressing". It will retain 100%
3135 of the dynamic range *within* each section of the audio file.
3136
3137 @table @option
3138 @item framelen, f
3139 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3140 Default is 500 milliseconds.
3141 The Dynamic Audio Normalizer processes the input audio in small chunks,
3142 referred to as frames. This is required, because a peak magnitude has no
3143 meaning for just a single sample value. Instead, we need to determine the
3144 peak magnitude for a contiguous sequence of sample values. While a "standard"
3145 normalizer would simply use the peak magnitude of the complete file, the
3146 Dynamic Audio Normalizer determines the peak magnitude individually for each
3147 frame. The length of a frame is specified in milliseconds. By default, the
3148 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3149 been found to give good results with most files.
3150 Note that the exact frame length, in number of samples, will be determined
3151 automatically, based on the sampling rate of the individual input audio file.
3152
3153 @item gausssize, g
3154 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3155 number. Default is 31.
3156 Probably the most important parameter of the Dynamic Audio Normalizer is the
3157 @code{window size} of the Gaussian smoothing filter. The filter's window size
3158 is specified in frames, centered around the current frame. For the sake of
3159 simplicity, this must be an odd number. Consequently, the default value of 31
3160 takes into account the current frame, as well as the 15 preceding frames and
3161 the 15 subsequent frames. Using a larger window results in a stronger
3162 smoothing effect and thus in less gain variation, i.e. slower gain
3163 adaptation. Conversely, using a smaller window results in a weaker smoothing
3164 effect and thus in more gain variation, i.e. faster gain adaptation.
3165 In other words, the more you increase this value, the more the Dynamic Audio
3166 Normalizer will behave like a "traditional" normalization filter. On the
3167 contrary, the more you decrease this value, the more the Dynamic Audio
3168 Normalizer will behave like a dynamic range compressor.
3169
3170 @item peak, p
3171 Set the target peak value. This specifies the highest permissible magnitude
3172 level for the normalized audio input. This filter will try to approach the
3173 target peak magnitude as closely as possible, but at the same time it also
3174 makes sure that the normalized signal will never exceed the peak magnitude.
3175 A frame's maximum local gain factor is imposed directly by the target peak
3176 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3177 It is not recommended to go above this value.
3178
3179 @item maxgain, m
3180 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3181 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3182 factor for each input frame, i.e. the maximum gain factor that does not
3183 result in clipping or distortion. The maximum gain factor is determined by
3184 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3185 additionally bounds the frame's maximum gain factor by a predetermined
3186 (global) maximum gain factor. This is done in order to avoid excessive gain
3187 factors in "silent" or almost silent frames. By default, the maximum gain
3188 factor is 10.0, For most inputs the default value should be sufficient and
3189 it usually is not recommended to increase this value. Though, for input
3190 with an extremely low overall volume level, it may be necessary to allow even
3191 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3192 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3193 Instead, a "sigmoid" threshold function will be applied. This way, the
3194 gain factors will smoothly approach the threshold value, but never exceed that
3195 value.
3196
3197 @item targetrms, r
3198 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3199 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3200 This means that the maximum local gain factor for each frame is defined
3201 (only) by the frame's highest magnitude sample. This way, the samples can
3202 be amplified as much as possible without exceeding the maximum signal
3203 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3204 Normalizer can also take into account the frame's root mean square,
3205 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3206 determine the power of a time-varying signal. It is therefore considered
3207 that the RMS is a better approximation of the "perceived loudness" than
3208 just looking at the signal's peak magnitude. Consequently, by adjusting all
3209 frames to a constant RMS value, a uniform "perceived loudness" can be
3210 established. If a target RMS value has been specified, a frame's local gain
3211 factor is defined as the factor that would result in exactly that RMS value.
3212 Note, however, that the maximum local gain factor is still restricted by the
3213 frame's highest magnitude sample, in order to prevent clipping.
3214
3215 @item coupling, n
3216 Enable channels coupling. By default is enabled.
3217 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3218 amount. This means the same gain factor will be applied to all channels, i.e.
3219 the maximum possible gain factor is determined by the "loudest" channel.
3220 However, in some recordings, it may happen that the volume of the different
3221 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3222 In this case, this option can be used to disable the channel coupling. This way,
3223 the gain factor will be determined independently for each channel, depending
3224 only on the individual channel's highest magnitude sample. This allows for
3225 harmonizing the volume of the different channels.
3226
3227 @item correctdc, c
3228 Enable DC bias correction. By default is disabled.
3229 An audio signal (in the time domain) is a sequence of sample values.
3230 In the Dynamic Audio Normalizer these sample values are represented in the
3231 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3232 audio signal, or "waveform", should be centered around the zero point.
3233 That means if we calculate the mean value of all samples in a file, or in a
3234 single frame, then the result should be 0.0 or at least very close to that
3235 value. If, however, there is a significant deviation of the mean value from
3236 0.0, in either positive or negative direction, this is referred to as a
3237 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3238 Audio Normalizer provides optional DC bias correction.
3239 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3240 the mean value, or "DC correction" offset, of each input frame and subtract
3241 that value from all of the frame's sample values which ensures those samples
3242 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3243 boundaries, the DC correction offset values will be interpolated smoothly
3244 between neighbouring frames.
3245
3246 @item altboundary, b
3247 Enable alternative boundary mode. By default is disabled.
3248 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3249 around each frame. This includes the preceding frames as well as the
3250 subsequent frames. However, for the "boundary" frames, located at the very
3251 beginning and at the very end of the audio file, not all neighbouring
3252 frames are available. In particular, for the first few frames in the audio
3253 file, the preceding frames are not known. And, similarly, for the last few
3254 frames in the audio file, the subsequent frames are not known. Thus, the
3255 question arises which gain factors should be assumed for the missing frames
3256 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3257 to deal with this situation. The default boundary mode assumes a gain factor
3258 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3259 "fade out" at the beginning and at the end of the input, respectively.
3260
3261 @item compress, s
3262 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3263 By default, the Dynamic Audio Normalizer does not apply "traditional"
3264 compression. This means that signal peaks will not be pruned and thus the
3265 full dynamic range will be retained within each local neighbourhood. However,
3266 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3267 normalization algorithm with a more "traditional" compression.
3268 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3269 (thresholding) function. If (and only if) the compression feature is enabled,
3270 all input frames will be processed by a soft knee thresholding function prior
3271 to the actual normalization process. Put simply, the thresholding function is
3272 going to prune all samples whose magnitude exceeds a certain threshold value.
3273 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3274 value. Instead, the threshold value will be adjusted for each individual
3275 frame.
3276 In general, smaller parameters result in stronger compression, and vice versa.
3277 Values below 3.0 are not recommended, because audible distortion may appear.
3278 @end table
3279
3280 @section earwax
3281
3282 Make audio easier to listen to on headphones.
3283
3284 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3285 so that when listened to on headphones the stereo image is moved from
3286 inside your head (standard for headphones) to outside and in front of
3287 the listener (standard for speakers).
3288
3289 Ported from SoX.
3290
3291 @section equalizer
3292
3293 Apply a two-pole peaking equalisation (EQ) filter. With this
3294 filter, the signal-level at and around a selected frequency can
3295 be increased or decreased, whilst (unlike bandpass and bandreject
3296 filters) that at all other frequencies is unchanged.
3297
3298 In order to produce complex equalisation curves, this filter can
3299 be given several times, each with a different central frequency.
3300
3301 The filter accepts the following options:
3302
3303 @table @option
3304 @item frequency, f
3305 Set the filter's central frequency in Hz.
3306
3307 @item width_type, t
3308 Set method to specify band-width of filter.
3309 @table @option
3310 @item h
3311 Hz
3312 @item q
3313 Q-Factor
3314 @item o
3315 octave
3316 @item s
3317 slope
3318 @item k
3319 kHz
3320 @end table
3321
3322 @item width, w
3323 Specify the band-width of a filter in width_type units.
3324
3325 @item gain, g
3326 Set the required gain or attenuation in dB.
3327 Beware of clipping when using a positive gain.
3328
3329 @item mix, m
3330 How much to use filtered signal in output. Default is 1.
3331 Range is between 0 and 1.
3332
3333 @item channels, c
3334 Specify which channels to filter, by default all available are filtered.
3335 @end table
3336
3337 @subsection Examples
3338 @itemize
3339 @item
3340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3341 @example
3342 equalizer=f=1000:t=h:width=200:g=-10
3343 @end example
3344
3345 @item
3346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3347 @example
3348 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3349 @end example
3350 @end itemize
3351
3352 @subsection Commands
3353
3354 This filter supports the following commands:
3355 @table @option
3356 @item frequency, f
3357 Change equalizer frequency.
3358 Syntax for the command is : "@var{frequency}"
3359
3360 @item width_type, t
3361 Change equalizer width_type.
3362 Syntax for the command is : "@var{width_type}"
3363
3364 @item width, w
3365 Change equalizer width.
3366 Syntax for the command is : "@var{width}"
3367
3368 @item gain, g
3369 Change equalizer gain.
3370 Syntax for the command is : "@var{gain}"
3371
3372 @item mix, m
3373 Change equalizer mix.
3374 Syntax for the command is : "@var{mix}"
3375 @end table
3376
3377 @section extrastereo
3378
3379 Linearly increases the difference between left and right channels which
3380 adds some sort of "live" effect to playback.
3381
3382 The filter accepts the following options:
3383
3384 @table @option
3385 @item m
3386 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3387 (average of both channels), with 1.0 sound will be unchanged, with
3388 -1.0 left and right channels will be swapped.
3389
3390 @item c
3391 Enable clipping. By default is enabled.
3392 @end table
3393
3394 @section firequalizer
3395 Apply FIR Equalization using arbitrary frequency response.
3396
3397 The filter accepts the following option:
3398
3399 @table @option
3400 @item gain
3401 Set gain curve equation (in dB). The expression can contain variables:
3402 @table @option
3403 @item f
3404 the evaluated frequency
3405 @item sr
3406 sample rate
3407 @item ch
3408 channel number, set to 0 when multichannels evaluation is disabled
3409 @item chid
3410 channel id, see libavutil/channel_layout.h, set to the first channel id when
3411 multichannels evaluation is disabled
3412 @item chs
3413 number of channels
3414 @item chlayout
3415 channel_layout, see libavutil/channel_layout.h
3416
3417 @end table
3418 and functions:
3419 @table @option
3420 @item gain_interpolate(f)
3421 interpolate gain on frequency f based on gain_entry
3422 @item cubic_interpolate(f)
3423 same as gain_interpolate, but smoother
3424 @end table
3425 This option is also available as command. Default is @code{gain_interpolate(f)}.
3426
3427 @item gain_entry
3428 Set gain entry for gain_interpolate function. The expression can
3429 contain functions:
3430 @table @option
3431 @item entry(f, g)
3432 store gain entry at frequency f with value g
3433 @end table
3434 This option is also available as command.
3435
3436 @item delay
3437 Set filter delay in seconds. Higher value means more accurate.
3438 Default is @code{0.01}.
3439
3440 @item accuracy
3441 Set filter accuracy in Hz. Lower value means more accurate.
3442 Default is @code{5}.
3443
3444 @item wfunc
3445 Set window function. Acceptable values are:
3446 @table @option
3447 @item rectangular
3448 rectangular window, useful when gain curve is already smooth
3449 @item hann
3450 hann window (default)
3451 @item hamming
3452 hamming window
3453 @item blackman
3454 blackman window
3455 @item nuttall3
3456 3-terms continuous 1st derivative nuttall window
3457 @item mnuttall3
3458 minimum 3-terms discontinuous nuttall window
3459 @item nuttall
3460 4-terms continuous 1st derivative nuttall window
3461 @item bnuttall
3462 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3463 @item bharris
3464 blackman-harris window
3465 @item tukey
3466 tukey window
3467 @end table
3468
3469 @item fixed
3470 If enabled, use fixed number of audio samples. This improves speed when
3471 filtering with large delay. Default is disabled.
3472
3473 @item multi
3474 Enable multichannels evaluation on gain. Default is disabled.
3475
3476 @item zero_phase
3477 Enable zero phase mode by subtracting timestamp to compensate delay.
3478 Default is disabled.
3479
3480 @item scale
3481 Set scale used by gain. Acceptable values are:
3482 @table @option
3483 @item linlin
3484 linear frequency, linear gain
3485 @item linlog
3486 linear frequency, logarithmic (in dB) gain (default)
3487 @item loglin
3488 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3489 @item loglog
3490 logarithmic frequency, logarithmic gain
3491 @end table
3492
3493 @item dumpfile
3494 Set file for dumping, suitable for gnuplot.
3495
3496 @item dumpscale
3497 Set scale for dumpfile. Acceptable values are same with scale option.
3498 Default is linlog.
3499
3500 @item fft2
3501 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3502 Default is disabled.
3503
3504 @item min_phase
3505 Enable minimum phase impulse response. Default is disabled.
3506 @end table
3507
3508 @subsection Examples
3509 @itemize
3510 @item
3511 lowpass at 1000 Hz:
3512 @example
3513 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3514 @end example
3515 @item
3516 lowpass at 1000 Hz with gain_entry:
3517 @example
3518 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3519 @end example
3520 @item
3521 custom equalization:
3522 @example
3523 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3524 @end example
3525 @item
3526 higher delay with zero phase to compensate delay:
3527 @example
3528 firequalizer=delay=0.1:fixed=on:zero_phase=on
3529 @end example
3530 @item
3531 lowpass on left channel, highpass on right channel:
3532 @example
3533 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3534 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3535 @end example
3536 @end itemize
3537
3538 @section flanger
3539 Apply a flanging effect to the audio.
3540
3541 The filter accepts the following options:
3542
3543 @table @option
3544 @item delay
3545 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3546
3547 @item depth
3548 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3549
3550 @item regen
3551 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3552 Default value is 0.
3553
3554 @item width
3555 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3556 Default value is 71.
3557
3558 @item speed
3559 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3560
3561 @item shape
3562 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3563 Default value is @var{sinusoidal}.
3564
3565 @item phase
3566 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3567 Default value is 25.
3568
3569 @item interp
3570 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3571 Default is @var{linear}.
3572 @end table
3573
3574 @section haas
3575 Apply Haas effect to audio.
3576
3577 Note that this makes most sense to apply on mono signals.
3578 With this filter applied to mono signals it give some directionality and
3579 stretches its stereo image.
3580
3581 The filter accepts the following options:
3582
3583 @table @option
3584 @item level_in
3585 Set input level. By default is @var{1}, or 0dB
3586
3587 @item level_out
3588 Set output level. By default is @var{1}, or 0dB.
3589
3590 @item side_gain
3591 Set gain applied to side part of signal. By default is @var{1}.
3592
3593 @item middle_source
3594 Set kind of middle source. Can be one of the following:
3595
3596 @table @samp
3597 @item left
3598 Pick left channel.
3599
3600 @item right
3601 Pick right channel.
3602
3603 @item mid
3604 Pick middle part signal of stereo image.
3605
3606 @item side
3607 Pick side part signal of stereo image.
3608 @end table
3609
3610 @item middle_phase
3611 Change middle phase. By default is disabled.
3612
3613 @item left_delay
3614 Set left channel delay. By default is @var{2.05} milliseconds.
3615
3616 @item left_balance
3617 Set left channel balance. By default is @var{-1}.
3618
3619 @item left_gain
3620 Set left channel gain. By default is @var{1}.
3621
3622 @item left_phase
3623 Change left phase. By default is disabled.
3624
3625 @item right_delay
3626 Set right channel delay. By defaults is @var{2.12} milliseconds.
3627
3628 @item right_balance
3629 Set right channel balance. By default is @var{1}.
3630
3631 @item right_gain
3632 Set right channel gain. By default is @var{1}.
3633
3634 @item right_phase
3635 Change right phase. By default is enabled.
3636 @end table
3637
3638 @section hdcd
3639
3640 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3641 embedded HDCD codes is expanded into a 20-bit PCM stream.
3642
3643 The filter supports the Peak Extend and Low-level Gain Adjustment features
3644 of HDCD, and detects the Transient Filter flag.
3645
3646 @example
3647 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3648 @end example
3649
3650 When using the filter with wav, note the default encoding for wav is 16-bit,
3651 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3652 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3653 @example
3654 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3655 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3656 @end example
3657
3658 The filter accepts the following options:
3659
3660 @table @option
3661 @item disable_autoconvert
3662 Disable any automatic format conversion or resampling in the filter graph.
3663
3664 @item process_stereo
3665 Process the stereo channels together. If target_gain does not match between
3666 channels, consider it invalid and use the last valid target_gain.
3667
3668 @item cdt_ms
3669 Set the code detect timer period in ms.
3670
3671 @item force_pe
3672 Always extend peaks above -3dBFS even if PE isn't signaled.
3673
3674 @item analyze_mode
3675 Replace audio with a solid tone and adjust the amplitude to signal some
3676 specific aspect of the decoding process. The output file can be loaded in
3677 an audio editor alongside the original to aid analysis.
3678
3679 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3680
3681 Modes are:
3682 @table @samp
3683 @item 0, off
3684 Disabled
3685 @item 1, lle
3686 Gain adjustment level at each sample
3687 @item 2, pe
3688 Samples where peak extend occurs
3689 @item 3, cdt
3690 Samples where the code detect timer is active
3691 @item 4, tgm
3692 Samples where the target gain does not match between channels
3693 @end table
3694 @end table
3695
3696 @section headphone
3697
3698 Apply head-related transfer functions (HRTFs) to create virtual
3699 loudspeakers around the user for binaural listening via headphones.
3700 The HRIRs are provided via additional streams, for each channel
3701 one stereo input stream is needed.
3702
3703 The filter accepts the following options:
3704
3705 @table @option
3706 @item map
3707 Set mapping of input streams for convolution.
3708 The argument is a '|'-separated list of channel names in order as they
3709 are given as additional stream inputs for filter.
3710 This also specify number of input streams. Number of input streams
3711 must be not less than number of channels in first stream plus one.
3712
3713 @item gain
3714 Set gain applied to audio. Value is in dB. Default is 0.
3715
3716 @item type
3717 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3718 processing audio in time domain which is slow.
3719 @var{freq} is processing audio in frequency domain which is fast.
3720 Default is @var{freq}.
3721
3722 @item lfe
3723 Set custom gain for LFE channels. Value is in dB. Default is 0.
3724
3725 @item size
3726 Set size of frame in number of samples which will be processed at once.
3727 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3728
3729 @item hrir
3730 Set format of hrir stream.
3731 Default value is @var{stereo}. Alternative value is @var{multich}.
3732 If value is set to @var{stereo}, number of additional streams should
3733 be greater or equal to number of input channels in first input stream.
3734 Also each additional stream should have stereo number of channels.
3735 If value is set to @var{multich}, number of additional streams should
3736 be exactly one. Also number of input channels of additional stream
3737 should be equal or greater than twice number of channels of first input
3738 stream.
3739 @end table
3740
3741 @subsection Examples
3742
3743 @itemize
3744 @item
3745 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3746 each amovie filter use stereo file with IR coefficients as input.
3747 The files give coefficients for each position of virtual loudspeaker:
3748 @example
3749 ffmpeg -i input.wav
3750 -filter_complex "amovie=azi_270_ele_0_DFC.wav[sr];amovie=azi_90_ele_0_DFC.wav[sl];amovie=azi_225_ele_0_DFC.wav[br];amovie=azi_135_ele_0_DFC.wav[bl];amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe];amovie=azi_35_ele_0_DFC.wav[fl];amovie=azi_325_ele_0_DFC.wav[fr];[0:a][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
3751 output.wav
3752 @end example
3753
3754 @item
3755 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3756 but now in @var{multich} @var{hrir} format.
3757 @example
3758 ffmpeg -i input.wav -filter_complex "amovie=minp.wav[hrirs];[0:a][hrirs]headphone=map=FL|FR|FC|LFE|BL|BR|SL|SR:hrir=multich"
3759 output.wav
3760 @end example
3761 @end itemize
3762
3763 @section highpass
3764
3765 Apply a high-pass filter with 3dB point frequency.
3766 The filter can be either single-pole, or double-pole (the default).
3767 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3768
3769 The filter accepts the following options:
3770
3771 @table @option
3772 @item frequency, f
3773 Set frequency in Hz. Default is 3000.
3774
3775 @item poles, p
3776 Set number of poles. Default is 2.
3777
3778 @item width_type, t
3779 Set method to specify band-width of filter.
3780 @table @option
3781 @item h
3782 Hz
3783 @item q
3784 Q-Factor
3785 @item o
3786 octave
3787 @item s
3788 slope
3789 @item k
3790 kHz
3791 @end table
3792
3793 @item width, w
3794 Specify the band-width of a filter in width_type units.
3795 Applies only to double-pole filter.
3796 The default is 0.707q and gives a Butterworth response.
3797
3798 @item mix, m
3799 How much to use filtered signal in output. Default is 1.
3800 Range is between 0 and 1.
3801
3802 @item channels, c
3803 Specify which channels to filter, by default all available are filtered.
3804 @end table
3805
3806 @subsection Commands
3807
3808 This filter supports the following commands:
3809 @table @option
3810 @item frequency, f
3811 Change highpass frequency.
3812 Syntax for the command is : "@var{frequency}"
3813
3814 @item width_type, t
3815 Change highpass width_type.
3816 Syntax for the command is : "@var{width_type}"
3817
3818 @item width, w
3819 Change highpass width.
3820 Syntax for the command is : "@var{width}"
3821
3822 @item mix, m
3823 Change highpass mix.
3824 Syntax for the command is : "@var{mix}"
3825 @end table
3826
3827 @section join
3828
3829 Join multiple input streams into one multi-channel stream.
3830
3831 It accepts the following parameters:
3832 @table @option
3833
3834 @item inputs
3835 The number of input streams. It defaults to 2.
3836
3837 @item channel_layout
3838 The desired output channel layout. It defaults to stereo.
3839
3840 @item map
3841 Map channels from inputs to output. The argument is a '|'-separated list of
3842 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3843 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3844 can be either the name of the input channel (e.g. FL for front left) or its
3845 index in the specified input stream. @var{out_channel} is the name of the output
3846 channel.
3847 @end table
3848
3849 The filter will attempt to guess the mappings when they are not specified
3850 explicitly. It does so by first trying to find an unused matching input channel
3851 and if that fails it picks the first unused input channel.
3852
3853 Join 3 inputs (with properly set channel layouts):
3854 @example
3855 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3856 @end example
3857
3858 Build a 5.1 output from 6 single-channel streams:
3859 @example
3860 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3861 'join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-SL|4.0-SR|5.0-LFE'
3862 out
3863 @end example
3864
3865 @section ladspa
3866
3867 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3868
3869 To enable compilation of this filter you need to configure FFmpeg with
3870 @code{--enable-ladspa}.
3871
3872 @table @option
3873 @item file, f
3874 Specifies the name of LADSPA plugin library to load. If the environment
3875 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3876 each one of the directories specified by the colon separated list in
3877 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3878 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3879 @file{/usr/lib/ladspa/}.
3880
3881 @item plugin, p
3882 Specifies the plugin within the library. Some libraries contain only
3883 one plugin, but others contain many of them. If this is not set filter
3884 will list all available plugins within the specified library.
3885
3886 @item controls, c
3887 Set the '|' separated list of controls which are zero or more floating point
3888 values that determine the behavior of the loaded plugin (for example delay,
3889 threshold or gain).
3890 Controls need to be defined using the following syntax:
3891 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3892 @var{valuei} is the value set on the @var{i}-th control.
3893 Alternatively they can be also defined using the following syntax:
3894 @var{value0}|@var{value1}|@var{value2}|..., where
3895 @var{valuei} is the value set on the @var{i}-th control.
3896 If @option{controls} is set to @code{help}, all available controls and
3897 their valid ranges are printed.
3898
3899 @item sample_rate, s
3900 Specify the sample rate, default to 44100. Only used if plugin have
3901 zero inputs.
3902
3903 @item nb_samples, n
3904 Set the number of samples per channel per each output frame, default
3905 is 1024. Only used if plugin have zero inputs.
3906
3907 @item duration, d
3908 Set the minimum duration of the sourced audio. See
3909 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3910 for the accepted syntax.
3911 Note that the resulting duration may be greater than the specified duration,
3912 as the generated audio is always cut at the end of a complete frame.
3913 If not specified, or the expressed duration is negative, the audio is
3914 supposed to be generated forever.
3915 Only used if plugin have zero inputs.
3916
3917 @end table
3918
3919 @subsection Examples
3920
3921 @itemize
3922 @item
3923 List all available plugins within amp (LADSPA example plugin) library:
3924 @example
3925 ladspa=file=amp
3926 @end example
3927
3928 @item
3929 List all available controls and their valid ranges for @code{vcf_notch}
3930 plugin from @code{VCF} library:
3931 @example
3932 ladspa=f=vcf:p=vcf_notch:c=help
3933 @end example
3934
3935 @item
3936 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3937 plugin library:
3938 @example
3939 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3940 @end example
3941
3942 @item
3943 Add reverberation to the audio using TAP-plugins
3944 (Tom's Audio Processing plugins):
3945 @example
3946 ladspa=file=tap_reverb:tap_reverb
3947 @end example
3948
3949 @item
3950 Generate white noise, with 0.2 amplitude:
3951 @example
3952 ladspa=file=cmt:noise_source_white:c=c0=.2
3953 @end example
3954
3955 @item
3956 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3957 @code{C* Audio Plugin Suite} (CAPS) library:
3958 @example
3959 ladspa=file=caps:Click:c=c1=20'
3960 @end example
3961
3962 @item
3963 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3964 @example
3965 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3966 @end example
3967
3968 @item
3969 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3970 @code{SWH Plugins} collection:
3971 @example
3972 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3973 @end example
3974
3975 @item
3976 Attenuate low frequencies using Multiband EQ from Steve Harris
3977 @code{SWH Plugins} collection:
3978 @example
3979 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3980 @end example
3981
3982 @item
3983 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3984 (CAPS) library:
3985 @example
3986 ladspa=caps:Narrower
3987 @end example
3988
3989 @item
3990 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3991 @example
3992 ladspa=caps:White:.2
3993 @end example
3994
3995 @item
3996 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3997 @example
3998 ladspa=caps:Fractal:c=c1=1
3999 @end example
4000
4001 @item
4002 Dynamic volume normalization using @code{VLevel} plugin:
4003 @example
4004 ladspa=vlevel-ladspa:vlevel_mono
4005 @end example
4006 @end itemize
4007
4008 @subsection Commands
4009
4010 This filter supports the following commands:
4011 @table @option
4012 @item cN
4013 Modify the @var{N}-th control value.
4014
4015 If the specified value is not valid, it is ignored and prior one is kept.
4016 @end table
4017
4018 @section loudnorm
4019
4020 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4021 Support for both single pass (livestreams, files) and double pass (files) modes.
4022 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
4023 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
4024 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4025
4026 The filter accepts the following options:
4027
4028 @table @option
4029 @item I, i
4030 Set integrated loudness target.
4031 Range is -70.0 - -5.0. Default value is -24.0.
4032
4033 @item LRA, lra
4034 Set loudness range target.
4035 Range is 1.0 - 20.0. Default value is 7.0.
4036
4037 @item TP, tp
4038 Set maximum true peak.
4039 Range is -9.0 - +0.0. Default value is -2.0.
4040
4041 @item measured_I, measured_i
4042 Measured IL of input file.
4043 Range is -99.0 - +0.0.
4044
4045 @item measured_LRA, measured_lra
4046 Measured LRA of input file.
4047 Range is  0.0 - 99.0.
4048
4049 @item measured_TP, measured_tp
4050 Measured true peak of input file.
4051 Range is  -99.0 - +99.0.
4052
4053 @item measured_thresh
4054 Measured threshold of input file.
4055 Range is -99.0 - +0.0.
4056
4057 @item offset
4058 Set offset gain. Gain is applied before the true-peak limiter.
4059 Range is  -99.0 - +99.0. Default is +0.0.
4060
4061 @item linear
4062 Normalize linearly if possible.
4063 measured_I, measured_LRA, measured_TP, and measured_thresh must also
4064 to be specified in order to use this mode.
4065 Options are true or false. Default is true.
4066
4067 @item dual_mono
4068 Treat mono input files as "dual-mono". If a mono file is intended for playback
4069 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4070 If set to @code{true}, this option will compensate for this effect.
4071 Multi-channel input files are not affected by this option.
4072 Options are true or false. Default is false.
4073
4074 @item print_format
4075 Set print format for stats. Options are summary, json, or none.
4076 Default value is none.
4077 @end table
4078
4079 @section lowpass
4080
4081 Apply a low-pass filter with 3dB point frequency.
4082 The filter can be either single-pole or double-pole (the default).
4083 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4084
4085 The filter accepts the following options:
4086
4087 @table @option
4088 @item frequency, f
4089 Set frequency in Hz. Default is 500.
4090
4091 @item poles, p
4092 Set number of poles. Default is 2.
4093
4094 @item width_type, t
4095 Set method to specify band-width of filter.
4096 @table @option
4097 @item h
4098 Hz
4099 @item q
4100 Q-Factor
4101 @item o
4102 octave
4103 @item s
4104 slope
4105 @item k
4106 kHz
4107 @end table
4108
4109 @item width, w
4110 Specify the band-width of a filter in width_type units.
4111 Applies only to double-pole filter.
4112 The default is 0.707q and gives a Butterworth response.
4113
4114 @item mix, m
4115 How much to use filtered signal in output. Default is 1.
4116 Range is between 0 and 1.
4117
4118 @item channels, c
4119 Specify which channels to filter, by default all available are filtered.
4120 @end table
4121
4122 @subsection Examples
4123 @itemize
4124 @item
4125 Lowpass only LFE channel, it LFE is not present it does nothing:
4126 @example
4127 lowpass=c=LFE
4128 @end example
4129 @end itemize
4130
4131 @subsection Commands
4132
4133 This filter supports the following commands:
4134 @table @option
4135 @item frequency, f
4136 Change lowpass frequency.
4137 Syntax for the command is : "@var{frequency}"
4138
4139 @item width_type, t
4140 Change lowpass width_type.
4141 Syntax for the command is : "@var{width_type}"
4142
4143 @item width, w
4144 Change lowpass width.
4145 Syntax for the command is : "@var{width}"
4146
4147 @item mix, m
4148 Change lowpass mix.
4149 Syntax for the command is : "@var{mix}"
4150 @end table
4151
4152 @section lv2
4153
4154 Load a LV2 (LADSPA Version 2) plugin.
4155
4156 To enable compilation of this filter you need to configure FFmpeg with
4157 @code{--enable-lv2}.
4158
4159 @table @option
4160 @item plugin, p
4161 Specifies the plugin URI. You may need to escape ':'.
4162
4163 @item controls, c
4164 Set the '|' separated list of controls which are zero or more floating point
4165 values that determine the behavior of the loaded plugin (for example delay,
4166 threshold or gain).
4167 If @option{controls} is set to @code{help}, all available controls and
4168 their valid ranges are printed.
4169
4170 @item sample_rate, s
4171 Specify the sample rate, default to 44100. Only used if plugin have
4172 zero inputs.
4173
4174 @item nb_samples, n
4175 Set the number of samples per channel per each output frame, default
4176 is 1024. Only used if plugin have zero inputs.
4177
4178 @item duration, d
4179 Set the minimum duration of the sourced audio. See
4180 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4181 for the accepted syntax.
4182 Note that the resulting duration may be greater than the specified duration,
4183 as the generated audio is always cut at the end of a complete frame.
4184 If not specified, or the expressed duration is negative, the audio is
4185 supposed to be generated forever.
4186 Only used if plugin have zero inputs.
4187 @end table
4188
4189 @subsection Examples
4190
4191 @itemize
4192 @item
4193 Apply bass enhancer plugin from Calf:
4194 @example
4195 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4196 @end example
4197
4198 @item
4199 Apply vinyl plugin from Calf:
4200 @example
4201 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4202 @end example
4203
4204 @item
4205 Apply bit crusher plugin from ArtyFX:
4206 @example
4207 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4208 @end example
4209 @end itemize
4210
4211 @section mcompand
4212 Multiband Compress or expand the audio's dynamic range.
4213
4214 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4215 This is akin to the crossover of a loudspeaker, and results in flat frequency
4216 response when absent compander action.
4217
4218 It accepts the following parameters:
4219
4220 @table @option
4221 @item args
4222 This option syntax is:
4223 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4224 For explanation of each item refer to compand filter documentation.
4225 @end table
4226
4227 @anchor{pan}
4228 @section pan
4229
4230 Mix channels with specific gain levels. The filter accepts the output
4231 channel layout followed by a set of channels definitions.
4232
4233 This filter is also designed to efficiently remap the channels of an audio
4234 stream.
4235
4236 The filter accepts parameters of the form:
4237 "@var{l}|@var{outdef}|@var{outdef}|..."
4238
4239 @table @option
4240 @item l
4241 output channel layout or number of channels
4242
4243 @item outdef
4244 output channel specification, of the form:
4245 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4246
4247 @item out_name
4248 output channel to define, either a channel name (FL, FR, etc.) or a channel
4249 number (c0, c1, etc.)
4250
4251 @item gain
4252 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4253
4254 @item in_name
4255 input channel to use, see out_name for details; it is not possible to mix
4256 named and numbered input channels
4257 @end table
4258
4259 If the `=' in a channel specification is replaced by `<', then the gains for
4260 that specification will be renormalized so that the total is 1, thus
4261 avoiding clipping noise.
4262
4263 @subsection Mixing examples
4264
4265 For example, if you want to down-mix from stereo to mono, but with a bigger
4266 factor for the left channel:
4267 @example
4268 pan=1c|c0=0.9*c0+0.1*c1
4269 @end example
4270
4271 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4272 7-channels surround:
4273 @example
4274 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4275 @end example
4276
4277 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4278 that should be preferred (see "-ac" option) unless you have very specific
4279 needs.
4280
4281 @subsection Remapping examples
4282
4283 The channel remapping will be effective if, and only if:
4284
4285 @itemize
4286 @item gain coefficients are zeroes or ones,
4287 @item only one input per channel output,
4288 @end itemize
4289
4290 If all these conditions are satisfied, the filter will notify the user ("Pure
4291 channel mapping detected"), and use an optimized and lossless method to do the
4292 remapping.
4293
4294 For example, if you have a 5.1 source and want a stereo audio stream by
4295 dropping the extra channels:
4296 @example
4297 pan="stereo| c0=FL | c1=FR"
4298 @end example
4299
4300 Given the same source, you can also switch front left and front right channels
4301 and keep the input channel layout:
4302 @example
4303 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4304 @end example
4305
4306 If the input is a stereo audio stream, you can mute the front left channel (and
4307 still keep the stereo channel layout) with:
4308 @example
4309 pan="stereo|c1=c1"
4310 @end example
4311
4312 Still with a stereo audio stream input, you can copy the right channel in both
4313 front left and right:
4314 @example
4315 pan="stereo| c0=FR | c1=FR"
4316 @end example
4317
4318 @section replaygain
4319
4320 ReplayGain scanner filter. This filter takes an audio stream as an input and
4321 outputs it unchanged.
4322 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4323
4324 @section resample
4325
4326 Convert the audio sample format, sample rate and channel layout. It is
4327 not meant to be used directly.
4328
4329 @section rubberband
4330 Apply time-stretching and pitch-shifting with librubberband.
4331
4332 To enable compilation of this filter, you need to configure FFmpeg with
4333 @code{--enable-librubberband}.
4334
4335 The filter accepts the following options:
4336
4337 @table @option
4338 @item tempo
4339 Set tempo scale factor.
4340
4341 @item pitch
4342 Set pitch scale factor.
4343
4344 @item transients
4345 Set transients detector.
4346 Possible values are:
4347 @table @var
4348 @item crisp
4349 @item mixed
4350 @item smooth
4351 @end table
4352
4353 @item detector
4354 Set detector.
4355 Possible values are:
4356 @table @var
4357 @item compound
4358 @item percussive
4359 @item soft
4360 @end table
4361
4362 @item phase
4363 Set phase.
4364 Possible values are:
4365 @table @var
4366 @item laminar
4367 @item independent
4368 @end table
4369
4370 @item window
4371 Set processing window size.
4372 Possible values are:
4373 @table @var
4374 @item standard
4375 @item short
4376 @item long
4377 @end table
4378
4379 @item smoothing
4380 Set smoothing.
4381 Possible values are:
4382 @table @var
4383 @item off
4384 @item on
4385 @end table
4386
4387 @item formant
4388 Enable formant preservation when shift pitching.
4389 Possible values are:
4390 @table @var
4391 @item shifted
4392 @item preserved
4393 @end table
4394
4395 @item pitchq
4396 Set pitch quality.
4397 Possible values are:
4398 @table @var
4399 @item quality
4400 @item speed
4401 @item consistency
4402 @end table
4403
4404 @item channels
4405 Set channels.
4406 Possible values are:
4407 @table @var
4408 @item apart
4409 @item together
4410 @end table
4411 @end table
4412
4413 @section sidechaincompress
4414
4415 This filter acts like normal compressor but has the ability to compress
4416 detected signal using second input signal.
4417 It needs two input streams and returns one output stream.
4418 First input stream will be processed depending on second stream signal.
4419 The filtered signal then can be filtered with other filters in later stages of
4420 processing. See @ref{pan} and @ref{amerge} filter.
4421
4422 The filter accepts the following options:
4423
4424 @table @option
4425 @item level_in
4426 Set input gain. Default is 1. Range is between 0.015625 and 64.
4427
4428 @item mode
4429 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4430 Default is @code{downward}.
4431
4432 @item threshold
4433 If a signal of second stream raises above this level it will affect the gain
4434 reduction of first stream.
4435 By default is 0.125. Range is between 0.00097563 and 1.
4436
4437 @item ratio
4438 Set a ratio about which the signal is reduced. 1:2 means that if the level
4439 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4440 Default is 2. Range is between 1 and 20.
4441
4442 @item attack
4443 Amount of milliseconds the signal has to rise above the threshold before gain
4444 reduction starts. Default is 20. Range is between 0.01 and 2000.
4445
4446 @item release
4447 Amount of milliseconds the signal has to fall below the threshold before
4448 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4449
4450 @item makeup
4451 Set the amount by how much signal will be amplified after processing.
4452 Default is 1. Range is from 1 to 64.
4453
4454 @item knee
4455 Curve the sharp knee around the threshold to enter gain reduction more softly.
4456 Default is 2.82843. Range is between 1 and 8.
4457
4458 @item link
4459 Choose if the @code{average} level between all channels of side-chain stream
4460 or the louder(@code{maximum}) channel of side-chain stream affects the
4461 reduction. Default is @code{average}.
4462
4463 @item detection
4464 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4465 of @code{rms}. Default is @code{rms} which is mainly smoother.
4466
4467 @item level_sc
4468 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4469
4470 @item mix
4471 How much to use compressed signal in output. Default is 1.
4472 Range is between 0 and 1.
4473 @end table
4474
4475 @subsection Examples
4476
4477 @itemize
4478 @item
4479 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4480 depending on the signal of 2nd input and later compressed signal to be
4481 merged with 2nd input:
4482 @example
4483 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4484 @end example
4485 @end itemize
4486
4487 @section sidechaingate
4488
4489 A sidechain gate acts like a normal (wideband) gate but has the ability to
4490 filter the detected signal before sending it to the gain reduction stage.
4491 Normally a gate uses the full range signal to detect a level above the
4492 threshold.
4493 For example: If you cut all lower frequencies from your sidechain signal
4494 the gate will decrease the volume of your track only if not enough highs
4495 appear. With this technique you are able to reduce the resonation of a
4496 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4497 guitar.
4498 It needs two input streams and returns one output stream.
4499 First input stream will be processed depending on second stream signal.
4500
4501 The filter accepts the following options:
4502
4503 @table @option
4504 @item level_in
4505 Set input level before filtering.
4506 Default is 1. Allowed range is from 0.015625 to 64.
4507
4508 @item mode
4509 Set the mode of operation. Can be @code{upward} or @code{downward}.
4510 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4511 will be amplified, expanding dynamic range in upward direction.
4512 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4513
4514 @item range
4515 Set the level of gain reduction when the signal is below the threshold.
4516 Default is 0.06125. Allowed range is from 0 to 1.
4517 Setting this to 0 disables reduction and then filter behaves like expander.
4518
4519 @item threshold
4520 If a signal rises above this level the gain reduction is released.
4521 Default is 0.125. Allowed range is from 0 to 1.
4522
4523 @item ratio
4524 Set a ratio about which the signal is reduced.
4525 Default is 2. Allowed range is from 1 to 9000.
4526
4527 @item attack
4528 Amount of milliseconds the signal has to rise above the threshold before gain
4529 reduction stops.
4530 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4531
4532 @item release
4533 Amount of milliseconds the signal has to fall below the threshold before the
4534 reduction is increased again. Default is 250 milliseconds.
4535 Allowed range is from 0.01 to 9000.
4536
4537 @item makeup
4538 Set amount of amplification of signal after processing.
4539 Default is 1. Allowed range is from 1 to 64.
4540
4541 @item knee
4542 Curve the sharp knee around the threshold to enter gain reduction more softly.
4543 Default is 2.828427125. Allowed range is from 1 to 8.
4544
4545 @item detection
4546 Choose if exact signal should be taken for detection or an RMS like one.
4547 Default is rms. Can be peak or rms.
4548
4549 @item link
4550 Choose if the average level between all channels or the louder channel affects
4551 the reduction.
4552 Default is average. Can be average or maximum.
4553
4554 @item level_sc
4555 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4556 @end table
4557
4558 @section silencedetect
4559
4560 Detect silence in an audio stream.
4561
4562 This filter logs a message when it detects that the input audio volume is less
4563 or equal to a noise tolerance value for a duration greater or equal to the
4564 minimum detected noise duration.
4565
4566 The printed times and duration are expressed in seconds.
4567
4568 The filter accepts the following options:
4569
4570 @table @option
4571 @item noise, n
4572 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4573 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4574
4575 @item duration, d
4576 Set silence duration until notification (default is 2 seconds).
4577
4578 @item mono, m
4579 Process each channel separately, instead of combined. By default is disabled.
4580 @end table
4581
4582 @subsection Examples
4583
4584 @itemize
4585 @item
4586 Detect 5 seconds of silence with -50dB noise tolerance:
4587 @example
4588 silencedetect=n=-50dB:d=5
4589 @end example
4590
4591 @item
4592 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4593 tolerance in @file{silence.mp3}:
4594 @example
4595 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4596 @end example
4597 @end itemize
4598
4599 @section silenceremove
4600
4601 Remove silence from the beginning, middle or end of the audio.
4602
4603 The filter accepts the following options:
4604
4605 @table @option
4606 @item start_periods
4607 This value is used to indicate if audio should be trimmed at beginning of
4608 the audio. A value of zero indicates no silence should be trimmed from the
4609 beginning. When specifying a non-zero value, it trims audio up until it
4610 finds non-silence. Normally, when trimming silence from beginning of audio
4611 the @var{start_periods} will be @code{1} but it can be increased to higher
4612 values to trim all audio up to specific count of non-silence periods.
4613 Default value is @code{0}.
4614
4615 @item start_duration
4616 Specify the amount of time that non-silence must be detected before it stops
4617 trimming audio. By increasing the duration, bursts of noises can be treated
4618 as silence and trimmed off. Default value is @code{0}.
4619
4620 @item start_threshold
4621 This indicates what sample value should be treated as silence. For digital
4622 audio, a value of @code{0} may be fine but for audio recorded from analog,
4623 you may wish to increase the value to account for background noise.
4624 Can be specified in dB (in case "dB" is appended to the specified value)
4625 or amplitude ratio. Default value is @code{0}.
4626
4627 @item start_silence
4628 Specify max duration of silence at beginning that will be kept after
4629 trimming. Default is 0, which is equal to trimming all samples detected
4630 as silence.
4631
4632 @item start_mode
4633 Specify mode of detection of silence end in start of multi-channel audio.
4634 Can be @var{any} or @var{all}. Default is @var{any}.
4635 With @var{any}, any sample that is detected as non-silence will cause
4636 stopped trimming of silence.
4637 With @var{all}, only if all channels are detected as non-silence will cause
4638 stopped trimming of silence.
4639
4640 @item stop_periods
4641 Set the count for trimming silence from the end of audio.
4642 To remove silence from the middle of a file, specify a @var{stop_periods}
4643 that is negative. This value is then treated as a positive value and is
4644 used to indicate the effect should restart processing as specified by
4645 @var{start_periods}, making it suitable for removing periods of silence
4646 in the middle of the audio.
4647 Default value is @code{0}.
4648
4649 @item stop_duration
4650 Specify a duration of silence that must exist before audio is not copied any
4651 more. By specifying a higher duration, silence that is wanted can be left in
4652 the audio.
4653 Default value is @code{0}.
4654
4655 @item stop_threshold
4656 This is the same as @option{start_threshold} but for trimming silence from
4657 the end of audio.
4658 Can be specified in dB (in case "dB" is appended to the specified value)
4659 or amplitude ratio. Default value is @code{0}.
4660
4661 @item stop_silence
4662 Specify max duration of silence at end that will be kept after
4663 trimming. Default is 0, which is equal to trimming all samples detected
4664 as silence.
4665
4666 @item stop_mode
4667 Specify mode of detection of silence start in end of multi-channel audio.
4668 Can be @var{any} or @var{all}. Default is @var{any}.
4669 With @var{any}, any sample that is detected as non-silence will cause
4670 stopped trimming of silence.
4671 With @var{all}, only if all channels are detected as non-silence will cause
4672 stopped trimming of silence.
4673
4674 @item detection
4675 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4676 and works better with digital silence which is exactly 0.
4677 Default value is @code{rms}.
4678
4679 @item window
4680 Set duration in number of seconds used to calculate size of window in number
4681 of samples for detecting silence.
4682 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4683 @end table
4684
4685 @subsection Examples
4686
4687 @itemize
4688 @item
4689 The following example shows how this filter can be used to start a recording
4690 that does not contain the delay at the start which usually occurs between
4691 pressing the record button and the start of the performance:
4692 @example
4693 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4694 @end example
4695
4696 @item
4697 Trim all silence encountered from beginning to end where there is more than 1
4698 second of silence in audio:
4699 @example
4700 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4701 @end example
4702
4703 @item
4704 Trim all digital silence samples, using peak detection, from beginning to end
4705 where there is more than 0 samples of digital silence in audio and digital
4706 silence is detected in all channels at same positions in stream:
4707 @example
4708 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4709 @end example
4710 @end itemize
4711
4712 @section sofalizer
4713
4714 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4715 loudspeakers around the user for binaural listening via headphones (audio
4716 formats up to 9 channels supported).
4717 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4718 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4719 Austrian Academy of Sciences.
4720
4721 To enable compilation of this filter you need to configure FFmpeg with
4722 @code{--enable-libmysofa}.
4723
4724 The filter accepts the following options:
4725
4726 @table @option
4727 @item sofa
4728 Set the SOFA file used for rendering.
4729
4730 @item gain
4731 Set gain applied to audio. Value is in dB. Default is 0.
4732
4733 @item rotation
4734 Set rotation of virtual loudspeakers in deg. Default is 0.
4735
4736 @item elevation
4737 Set elevation of virtual speakers in deg. Default is 0.
4738
4739 @item radius
4740 Set distance in meters between loudspeakers and the listener with near-field
4741 HRTFs. Default is 1.
4742
4743 @item type
4744 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4745 processing audio in time domain which is slow.
4746 @var{freq} is processing audio in frequency domain which is fast.
4747 Default is @var{freq}.
4748
4749 @item speakers
4750 Set custom positions of virtual loudspeakers. Syntax for this option is:
4751 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4752 Each virtual loudspeaker is described with short channel name following with
4753 azimuth and elevation in degrees.
4754 Each virtual loudspeaker description is separated by '|'.
4755 For example to override front left and front right channel positions use:
4756 'speakers=FL 45 15|FR 345 15'.
4757 Descriptions with unrecognised channel names are ignored.
4758
4759 @item lfegain
4760 Set custom gain for LFE channels. Value is in dB. Default is 0.
4761
4762 @item framesize
4763 Set custom frame size in number of samples. Default is 1024.
4764 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4765 is set to @var{freq}.
4766
4767 @item normalize
4768 Should all IRs be normalized upon importing SOFA file.
4769 By default is enabled.
4770
4771 @item interpolate
4772 Should nearest IRs be interpolated with neighbor IRs if exact position
4773 does not match. By default is disabled.
4774
4775 @item minphase
4776 Minphase all IRs upon loading of SOFA file. By default is disabled.
4777
4778 @item anglestep
4779 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4780
4781 @item radstep
4782 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4783 @end table
4784
4785 @subsection Examples
4786
4787 @itemize
4788 @item
4789 Using ClubFritz6 sofa file:
4790 @example
4791 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4792 @end example
4793
4794 @item
4795 Using ClubFritz12 sofa file and bigger radius with small rotation:
4796 @example
4797 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4798 @end example
4799
4800 @item
4801 Similar as above but with custom speaker positions for front left, front right, back left and back right
4802 and also with custom gain:
4803 @example
4804 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4805 @end example
4806 @end itemize
4807
4808 @section stereotools
4809
4810 This filter has some handy utilities to manage stereo signals, for converting
4811 M/S stereo recordings to L/R signal while having control over the parameters
4812 or spreading the stereo image of master track.
4813
4814 The filter accepts the following options:
4815
4816 @table @option
4817 @item level_in
4818 Set input level before filtering for both channels. Defaults is 1.
4819 Allowed range is from 0.015625 to 64.
4820
4821 @item level_out
4822 Set output level after filtering for both channels. Defaults is 1.
4823 Allowed range is from 0.015625 to 64.
4824
4825 @item balance_in
4826 Set input balance between both channels. Default is 0.
4827 Allowed range is from -1 to 1.
4828
4829 @item balance_out
4830 Set output balance between both channels. Default is 0.
4831 Allowed range is from -1 to 1.
4832
4833 @item softclip
4834 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4835 clipping. Disabled by default.
4836
4837 @item mutel
4838 Mute the left channel. Disabled by default.
4839
4840 @item muter
4841 Mute the right channel. Disabled by default.
4842
4843 @item phasel
4844 Change the phase of the left channel. Disabled by default.
4845
4846 @item phaser
4847 Change the phase of the right channel. Disabled by default.
4848
4849 @item mode
4850 Set stereo mode. Available values are:
4851
4852 @table @samp
4853 @item lr>lr
4854 Left/Right to Left/Right, this is default.
4855
4856 @item lr>ms
4857 Left/Right to Mid/Side.
4858
4859 @item ms>lr
4860 Mid/Side to Left/Right.
4861
4862 @item lr>ll
4863 Left/Right to Left/Left.
4864
4865 @item lr>rr
4866 Left/Right to Right/Right.
4867
4868 @item lr>l+r
4869 Left/Right to Left + Right.
4870
4871 @item lr>rl
4872 Left/Right to Right/Left.
4873
4874 @item ms>ll
4875 Mid/Side to Left/Left.
4876
4877 @item ms>rr
4878 Mid/Side to Right/Right.
4879 @end table
4880
4881 @item slev
4882 Set level of side signal. Default is 1.
4883 Allowed range is from 0.015625 to 64.
4884
4885 @item sbal
4886 Set balance of side signal. Default is 0.
4887 Allowed range is from -1 to 1.
4888
4889 @item mlev
4890 Set level of the middle signal. Default is 1.
4891 Allowed range is from 0.015625 to 64.
4892
4893 @item mpan
4894 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4895
4896 @item base
4897 Set stereo base between mono and inversed channels. Default is 0.
4898 Allowed range is from -1 to 1.
4899
4900 @item delay
4901 Set delay in milliseconds how much to delay left from right channel and
4902 vice versa. Default is 0. Allowed range is from -20 to 20.
4903
4904 @item sclevel
4905 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4906
4907 @item phase
4908 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4909
4910 @item bmode_in, bmode_out
4911 Set balance mode for balance_in/balance_out option.
4912
4913 Can be one of the following:
4914
4915 @table @samp
4916 @item balance
4917 Classic balance mode. Attenuate one channel at time.
4918 Gain is raised up to 1.
4919
4920 @item amplitude
4921 Similar as classic mode above but gain is raised up to 2.
4922
4923 @item power
4924 Equal power distribution, from -6dB to +6dB range.
4925 @end table
4926 @end table
4927
4928 @subsection Examples
4929
4930 @itemize
4931 @item
4932 Apply karaoke like effect:
4933 @example
4934 stereotools=mlev=0.015625
4935 @end example
4936
4937 @item
4938 Convert M/S signal to L/R:
4939 @example
4940 "stereotools=mode=ms>lr"
4941 @end example
4942 @end itemize
4943
4944 @section stereowiden
4945
4946 This filter enhance the stereo effect by suppressing signal common to both
4947 channels and by delaying the signal of left into right and vice versa,
4948 thereby widening the stereo effect.
4949
4950 The filter accepts the following options:
4951
4952 @table @option
4953 @item delay
4954 Time in milliseconds of the delay of left signal into right and vice versa.
4955 Default is 20 milliseconds.
4956
4957 @item feedback
4958 Amount of gain in delayed signal into right and vice versa. Gives a delay
4959 effect of left signal in right output and vice versa which gives widening
4960 effect. Default is 0.3.
4961
4962 @item crossfeed
4963 Cross feed of left into right with inverted phase. This helps in suppressing
4964 the mono. If the value is 1 it will cancel all the signal common to both
4965 channels. Default is 0.3.
4966
4967 @item drymix
4968 Set level of input signal of original channel. Default is 0.8.
4969 @end table
4970
4971 @section superequalizer
4972 Apply 18 band equalizer.
4973
4974 The filter accepts the following options:
4975 @table @option
4976 @item 1b
4977 Set 65Hz band gain.
4978 @item 2b
4979 Set 92Hz band gain.
4980 @item 3b
4981 Set 131Hz band gain.
4982 @item 4b
4983 Set 185Hz band gain.
4984 @item 5b
4985 Set 262Hz band gain.
4986 @item 6b
4987 Set 370Hz band gain.
4988 @item 7b
4989 Set 523Hz band gain.
4990 @item 8b
4991 Set 740Hz band gain.
4992 @item 9b
4993 Set 1047Hz band gain.
4994 @item 10b
4995 Set 1480Hz band gain.
4996 @item 11b
4997 Set 2093Hz band gain.
4998 @item 12b
4999 Set 2960Hz band gain.
5000 @item 13b
5001 Set 4186Hz band gain.
5002 @item 14b
5003 Set 5920Hz band gain.
5004 @item 15b
5005 Set 8372Hz band gain.
5006 @item 16b
5007 Set 11840Hz band gain.
5008 @item 17b
5009 Set 16744Hz band gain.
5010 @item 18b
5011 Set 20000Hz band gain.
5012 @end table
5013
5014 @section surround
5015 Apply audio surround upmix filter.
5016
5017 This filter allows to produce multichannel output from audio stream.
5018
5019 The filter accepts the following options:
5020
5021 @table @option
5022 @item chl_out
5023 Set output channel layout. By default, this is @var{5.1}.
5024
5025 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5026 for the required syntax.
5027
5028 @item chl_in
5029 Set input channel layout. By default, this is @var{stereo}.
5030
5031 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5032 for the required syntax.
5033
5034 @item level_in
5035 Set input volume level. By default, this is @var{1}.
5036
5037 @item level_out
5038 Set output volume level. By default, this is @var{1}.
5039
5040 @item lfe
5041 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5042
5043 @item lfe_low
5044 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5045
5046 @item lfe_high
5047 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5048
5049 @item lfe_mode
5050 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5051 In @var{add} mode, LFE channel is created from input audio and added to output.
5052 In @var{sub} mode, LFE channel is created from input audio and added to output but
5053 also all non-LFE output channels are subtracted with output LFE channel.
5054
5055 @item angle
5056 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5057 Default is @var{90}.
5058
5059 @item fc_in
5060 Set front center input volume. By default, this is @var{1}.
5061
5062 @item fc_out
5063 Set front center output volume. By default, this is @var{1}.
5064
5065 @item fl_in
5066 Set front left input volume. By default, this is @var{1}.
5067
5068 @item fl_out
5069 Set front left output volume. By default, this is @var{1}.
5070
5071 @item fr_in
5072 Set front right input volume. By default, this is @var{1}.
5073
5074 @item fr_out
5075 Set front right output volume. By default, this is @var{1}.
5076
5077 @item sl_in
5078 Set side left input volume. By default, this is @var{1}.
5079
5080 @item sl_out
5081 Set side left output volume. By default, this is @var{1}.
5082
5083 @item sr_in
5084 Set side right input volume. By default, this is @var{1}.
5085
5086 @item sr_out
5087 Set side right output volume. By default, this is @var{1}.
5088
5089 @item bl_in
5090 Set back left input volume. By default, this is @var{1}.
5091
5092 @item bl_out
5093 Set back left output volume. By default, this is @var{1}.
5094
5095 @item br_in
5096 Set back right input volume. By default, this is @var{1}.
5097
5098 @item br_out
5099 Set back right output volume. By default, this is @var{1}.
5100
5101 @item bc_in
5102 Set back center input volume. By default, this is @var{1}.
5103
5104 @item bc_out
5105 Set back center output volume. By default, this is @var{1}.
5106
5107 @item lfe_in
5108 Set LFE input volume. By default, this is @var{1}.
5109
5110 @item lfe_out
5111 Set LFE output volume. By default, this is @var{1}.
5112
5113 @item allx
5114 Set spread usage of stereo image across X axis for all channels.
5115
5116 @item ally
5117 Set spread usage of stereo image across Y axis for all channels.
5118
5119 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5120 Set spread usage of stereo image across X axis for each channel.
5121
5122 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5123 Set spread usage of stereo image across Y axis for each channel.
5124
5125 @item win_size
5126 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5127
5128 @item win_func
5129 Set window function.
5130
5131 It accepts the following values:
5132 @table @samp
5133 @item rect
5134 @item bartlett
5135 @item hann, hanning
5136 @item hamming
5137 @item blackman
5138 @item welch
5139 @item flattop
5140 @item bharris
5141 @item bnuttall
5142 @item bhann
5143 @item sine
5144 @item nuttall
5145 @item lanczos
5146 @item gauss
5147 @item tukey
5148 @item dolph
5149 @item cauchy
5150 @item parzen
5151 @item poisson
5152 @item bohman
5153 @end table
5154 Default is @code{hann}.
5155
5156 @item overlap
5157 Set window overlap. If set to 1, the recommended overlap for selected
5158 window function will be picked. Default is @code{0.5}.
5159 @end table
5160
5161 @section treble, highshelf
5162
5163 Boost or cut treble (upper) frequencies of the audio using a two-pole
5164 shelving filter with a response similar to that of a standard
5165 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5166
5167 The filter accepts the following options:
5168
5169 @table @option
5170 @item gain, g
5171 Give the gain at whichever is the lower of ~22 kHz and the
5172 Nyquist frequency. Its useful range is about -20 (for a large cut)
5173 to +20 (for a large boost). Beware of clipping when using a positive gain.
5174
5175 @item frequency, f
5176 Set the filter's central frequency and so can be used
5177 to extend or reduce the frequency range to be boosted or cut.
5178 The default value is @code{3000} Hz.
5179
5180 @item width_type, t
5181 Set method to specify band-width of filter.
5182 @table @option
5183 @item h
5184 Hz
5185 @item q
5186 Q-Factor
5187 @item o
5188 octave
5189 @item s
5190 slope
5191 @item k
5192 kHz
5193 @end table
5194
5195 @item width, w
5196 Determine how steep is the filter's shelf transition.
5197
5198 @item mix, m
5199 How much to use filtered signal in output. Default is 1.
5200 Range is between 0 and 1.
5201
5202 @item channels, c
5203 Specify which channels to filter, by default all available are filtered.
5204 @end table
5205
5206 @subsection Commands
5207
5208 This filter supports the following commands:
5209 @table @option
5210 @item frequency, f
5211 Change treble frequency.
5212 Syntax for the command is : "@var{frequency}"
5213
5214 @item width_type, t
5215 Change treble width_type.
5216 Syntax for the command is : "@var{width_type}"
5217
5218 @item width, w
5219 Change treble width.
5220 Syntax for the command is : "@var{width}"
5221
5222 @item gain, g
5223 Change treble gain.
5224 Syntax for the command is : "@var{gain}"
5225
5226 @item mix, m
5227 Change treble mix.
5228 Syntax for the command is : "@var{mix}"
5229 @end table
5230
5231 @section tremolo
5232
5233 Sinusoidal amplitude modulation.
5234
5235 The filter accepts the following options:
5236
5237 @table @option
5238 @item f
5239 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5240 (20 Hz or lower) will result in a tremolo effect.
5241 This filter may also be used as a ring modulator by specifying
5242 a modulation frequency higher than 20 Hz.
5243 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5244
5245 @item d
5246 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5247 Default value is 0.5.
5248 @end table
5249
5250 @section vibrato
5251
5252 Sinusoidal phase modulation.
5253
5254 The filter accepts the following options:
5255
5256 @table @option
5257 @item f
5258 Modulation frequency in Hertz.
5259 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5260
5261 @item d
5262 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5263 Default value is 0.5.
5264 @end table
5265
5266 @section volume
5267
5268 Adjust the input audio volume.
5269
5270 It accepts the following parameters:
5271 @table @option
5272
5273 @item volume
5274 Set audio volume expression.
5275
5276 Output values are clipped to the maximum value.
5277
5278 The output audio volume is given by the relation:
5279 @example
5280 @var{output_volume} = @var{volume} * @var{input_volume}
5281 @end example
5282
5283 The default value for @var{volume} is "1.0".
5284
5285 @item precision
5286 This parameter represents the mathematical precision.
5287
5288 It determines which input sample formats will be allowed, which affects the
5289 precision of the volume scaling.
5290
5291 @table @option
5292 @item fixed
5293 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5294 @item float
5295 32-bit floating-point; this limits input sample format to FLT. (default)
5296 @item double
5297 64-bit floating-point; this limits input sample format to DBL.
5298 @end table
5299
5300 @item replaygain
5301 Choose the behaviour on encountering ReplayGain side data in input frames.
5302
5303 @table @option
5304 @item drop
5305 Remove ReplayGain side data, ignoring its contents (the default).
5306
5307 @item ignore
5308 Ignore ReplayGain side data, but leave it in the frame.
5309
5310 @item track
5311 Prefer the track gain, if present.
5312
5313 @item album
5314 Prefer the album gain, if present.
5315 @end table
5316
5317 @item replaygain_preamp
5318 Pre-amplification gain in dB to apply to the selected replaygain gain.
5319
5320 Default value for @var{replaygain_preamp} is 0.0.
5321
5322 @item eval
5323 Set when the volume expression is evaluated.
5324
5325 It accepts the following values:
5326 @table @samp
5327 @item once
5328 only evaluate expression once during the filter initialization, or
5329 when the @samp{volume} command is sent
5330
5331 @item frame
5332 evaluate expression for each incoming frame
5333 @end table
5334
5335 Default value is @samp{once}.
5336 @end table
5337
5338 The volume expression can contain the following parameters.
5339
5340 @table @option
5341 @item n
5342 frame number (starting at zero)
5343 @item nb_channels
5344 number of channels
5345 @item nb_consumed_samples
5346 number of samples consumed by the filter
5347 @item nb_samples
5348 number of samples in the current frame
5349 @item pos
5350 original frame position in the file
5351 @item pts
5352 frame PTS
5353 @item sample_rate
5354 sample rate
5355 @item startpts
5356 PTS at start of stream
5357 @item startt
5358 time at start of stream
5359 @item t
5360 frame time
5361 @item tb
5362 timestamp timebase
5363 @item volume
5364 last set volume value
5365 @end table
5366
5367 Note that when @option{eval} is set to @samp{once} only the
5368 @var{sample_rate} and @var{tb} variables are available, all other
5369 variables will evaluate to NAN.
5370
5371 @subsection Commands
5372
5373 This filter supports the following commands:
5374 @table @option
5375 @item volume
5376 Modify the volume expression.
5377 The command accepts the same syntax of the corresponding option.
5378
5379 If the specified expression is not valid, it is kept at its current
5380 value.
5381 @item replaygain_noclip
5382 Prevent clipping by limiting the gain applied.
5383
5384 Default value for @var{replaygain_noclip} is 1.
5385
5386 @end table
5387
5388 @subsection Examples
5389
5390 @itemize
5391 @item
5392 Halve the input audio volume:
5393 @example
5394 volume=volume=0.5
5395 volume=volume=1/2
5396 volume=volume=-6.0206dB
5397 @end example
5398
5399 In all the above example the named key for @option{volume} can be
5400 omitted, for example like in:
5401 @example
5402 volume=0.5
5403 @end example
5404
5405 @item
5406 Increase input audio power by 6 decibels using fixed-point precision:
5407 @example
5408 volume=volume=6dB:precision=fixed
5409 @end example
5410
5411 @item
5412 Fade volume after time 10 with an annihilation period of 5 seconds:
5413 @example
5414 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5415 @end example
5416 @end itemize
5417
5418 @section volumedetect
5419
5420 Detect the volume of the input video.
5421
5422 The filter has no parameters. The input is not modified. Statistics about
5423 the volume will be printed in the log when the input stream end is reached.
5424
5425 In particular it will show the mean volume (root mean square), maximum
5426 volume (on a per-sample basis), and the beginning of a histogram of the
5427 registered volume values (from the maximum value to a cumulated 1/1000 of
5428 the samples).
5429
5430 All volumes are in decibels relative to the maximum PCM value.
5431
5432 @subsection Examples
5433
5434 Here is an excerpt of the output:
5435 @example
5436 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5437 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5438 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5439 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5440 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5441 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5442 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5443 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5444 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5445 @end example
5446
5447 It means that:
5448 @itemize
5449 @item
5450 The mean square energy is approximately -27 dB, or 10^-2.7.
5451 @item
5452 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5453 @item
5454 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5455 @end itemize
5456
5457 In other words, raising the volume by +4 dB does not cause any clipping,
5458 raising it by +5 dB causes clipping for 6 samples, etc.
5459
5460 @c man end AUDIO FILTERS
5461
5462 @chapter Audio Sources
5463 @c man begin AUDIO SOURCES
5464
5465 Below is a description of the currently available audio sources.
5466
5467 @section abuffer
5468
5469 Buffer audio frames, and make them available to the filter chain.
5470
5471 This source is mainly intended for a programmatic use, in particular
5472 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5473
5474 It accepts the following parameters:
5475 @table @option
5476
5477 @item time_base
5478 The timebase which will be used for timestamps of submitted frames. It must be
5479 either a floating-point number or in @var{numerator}/@var{denominator} form.
5480
5481 @item sample_rate
5482 The sample rate of the incoming audio buffers.
5483
5484 @item sample_fmt
5485 The sample format of the incoming audio buffers.
5486 Either a sample format name or its corresponding integer representation from
5487 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5488
5489 @item channel_layout
5490 The channel layout of the incoming audio buffers.
5491 Either a channel layout name from channel_layout_map in
5492 @file{libavutil/channel_layout.c} or its corresponding integer representation
5493 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5494
5495 @item channels
5496 The number of channels of the incoming audio buffers.
5497 If both @var{channels} and @var{channel_layout} are specified, then they
5498 must be consistent.
5499
5500 @end table
5501
5502 @subsection Examples
5503
5504 @example
5505 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5506 @end example
5507
5508 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5509 Since the sample format with name "s16p" corresponds to the number
5510 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5511 equivalent to:
5512 @example
5513 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5514 @end example
5515
5516 @section aevalsrc
5517
5518 Generate an audio signal specified by an expression.
5519
5520 This source accepts in input one or more expressions (one for each
5521 channel), which are evaluated and used to generate a corresponding
5522 audio signal.
5523
5524 This source accepts the following options:
5525
5526 @table @option
5527 @item exprs
5528 Set the '|'-separated expressions list for each separate channel. In case the
5529 @option{channel_layout} option is not specified, the selected channel layout
5530 depends on the number of provided expressions. Otherwise the last
5531 specified expression is applied to the remaining output channels.
5532
5533 @item channel_layout, c
5534 Set the channel layout. The number of channels in the specified layout
5535 must be equal to the number of specified expressions.
5536
5537 @item duration, d
5538 Set the minimum duration of the sourced audio. See
5539 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5540 for the accepted syntax.
5541 Note that the resulting duration may be greater than the specified
5542 duration, as the generated audio is always cut at the end of a
5543 complete frame.
5544
5545 If not specified, or the expressed duration is negative, the audio is
5546 supposed to be generated forever.
5547
5548 @item nb_samples, n
5549 Set the number of samples per channel per each output frame,
5550 default to 1024.
5551
5552 @item sample_rate, s
5553 Specify the sample rate, default to 44100.
5554 @end table
5555
5556 Each expression in @var{exprs} can contain the following constants:
5557
5558 @table @option
5559 @item n
5560 number of the evaluated sample, starting from 0
5561
5562 @item t
5563 time of the evaluated sample expressed in seconds, starting from 0
5564
5565 @item s
5566 sample rate
5567
5568 @end table
5569
5570 @subsection Examples
5571
5572 @itemize
5573 @item
5574 Generate silence:
5575 @example
5576 aevalsrc=0
5577 @end example
5578
5579 @item
5580 Generate a sin signal with frequency of 440 Hz, set sample rate to
5581 8000 Hz:
5582 @example
5583 aevalsrc="sin(440*2*PI*t):s=8000"
5584 @end example
5585
5586 @item
5587 Generate a two channels signal, specify the channel layout (Front
5588 Center + Back Center) explicitly:
5589 @example
5590 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5591 @end example
5592
5593 @item
5594 Generate white noise:
5595 @example
5596 aevalsrc="-2+random(0)"
5597 @end example
5598
5599 @item
5600 Generate an amplitude modulated signal:
5601 @example
5602 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5603 @end example
5604
5605 @item
5606 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5607 @example
5608 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5609 @end example
5610
5611 @end itemize
5612
5613 @section anullsrc
5614
5615 The null audio source, return unprocessed audio frames. It is mainly useful
5616 as a template and to be employed in analysis / debugging tools, or as
5617 the source for filters which ignore the input data (for example the sox
5618 synth filter).
5619
5620 This source accepts the following options:
5621
5622 @table @option
5623
5624 @item channel_layout, cl
5625
5626 Specifies the channel layout, and can be either an integer or a string
5627 representing a channel layout. The default value of @var{channel_layout}
5628 is "stereo".
5629
5630 Check the channel_layout_map definition in
5631 @file{libavutil/channel_layout.c} for the mapping between strings and
5632 channel layout values.
5633
5634 @item sample_rate, r
5635 Specifies the sample rate, and defaults to 44100.
5636
5637 @item nb_samples, n
5638 Set the number of samples per requested frames.
5639
5640 @end table
5641
5642 @subsection Examples
5643
5644 @itemize
5645 @item
5646 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5647 @example
5648 anullsrc=r=48000:cl=4
5649 @end example
5650
5651 @item
5652 Do the same operation with a more obvious syntax:
5653 @example
5654 anullsrc=r=48000:cl=mono
5655 @end example
5656 @end itemize
5657
5658 All the parameters need to be explicitly defined.
5659
5660 @section flite
5661
5662 Synthesize a voice utterance using the libflite library.
5663
5664 To enable compilation of this filter you need to configure FFmpeg with
5665 @code{--enable-libflite}.
5666
5667 Note that versions of the flite library prior to 2.0 are not thread-safe.
5668
5669 The filter accepts the following options:
5670
5671 @table @option
5672
5673 @item list_voices
5674 If set to 1, list the names of the available voices and exit
5675 immediately. Default value is 0.
5676
5677 @item nb_samples, n
5678 Set the maximum number of samples per frame. Default value is 512.
5679
5680 @item textfile
5681 Set the filename containing the text to speak.
5682
5683 @item text
5684 Set the text to speak.
5685
5686 @item voice, v
5687 Set the voice to use for the speech synthesis. Default value is
5688 @code{kal}. See also the @var{list_voices} option.
5689 @end table
5690
5691 @subsection Examples
5692
5693 @itemize
5694 @item
5695 Read from file @file{speech.txt}, and synthesize the text using the
5696 standard flite voice:
5697 @example
5698 flite=textfile=speech.txt
5699 @end example
5700
5701 @item
5702 Read the specified text selecting the @code{slt} voice:
5703 @example
5704 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5705 @end example
5706
5707 @item
5708 Input text to ffmpeg:
5709 @example
5710 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5711 @end example
5712
5713 @item
5714 Make @file{ffplay} speak the specified text, using @code{flite} and
5715 the @code{lavfi} device:
5716 @example
5717 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5718 @end example
5719 @end itemize
5720
5721 For more information about libflite, check:
5722 @url{http://www.festvox.org/flite/}
5723
5724 @section anoisesrc
5725
5726 Generate a noise audio signal.
5727
5728 The filter accepts the following options:
5729
5730 @table @option
5731 @item sample_rate, r
5732 Specify the sample rate. Default value is 48000 Hz.
5733
5734 @item amplitude, a
5735 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5736 is 1.0.
5737
5738 @item duration, d
5739 Specify the duration of the generated audio stream. Not specifying this option
5740 results in noise with an infinite length.
5741
5742 @item color, colour, c
5743 Specify the color of noise. Available noise colors are white, pink, brown,
5744 blue and violet. Default color is white.
5745
5746 @item seed, s
5747 Specify a value used to seed the PRNG.
5748
5749 @item nb_samples, n
5750 Set the number of samples per each output frame, default is 1024.
5751 @end table
5752
5753 @subsection Examples
5754
5755 @itemize
5756
5757 @item
5758 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5759 @example
5760 anoisesrc=d=60:c=pink:r=44100:a=0.5
5761 @end example
5762 @end itemize
5763
5764 @section hilbert
5765
5766 Generate odd-tap Hilbert transform FIR coefficients.
5767
5768 The resulting stream can be used with @ref{afir} filter for phase-shifting
5769 the signal by 90 degrees.
5770
5771 This is used in many matrix coding schemes and for analytic signal generation.
5772 The process is often written as a multiplication by i (or j), the imaginary unit.
5773
5774 The filter accepts the following options:
5775
5776 @table @option
5777
5778 @item sample_rate, s
5779 Set sample rate, default is 44100.
5780
5781 @item taps, t
5782 Set length of FIR filter, default is 22051.
5783
5784 @item nb_samples, n
5785 Set number of samples per each frame.
5786
5787 @item win_func, w
5788 Set window function to be used when generating FIR coefficients.
5789 @end table
5790
5791 @section sinc
5792
5793 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5794
5795 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5796
5797 The filter accepts the following options:
5798
5799 @table @option
5800 @item sample_rate, r
5801 Set sample rate, default is 44100.
5802
5803 @item nb_samples, n
5804 Set number of samples per each frame. Default is 1024.
5805
5806 @item hp
5807 Set high-pass frequency. Default is 0.
5808
5809 @item lp
5810 Set low-pass frequency. Default is 0.
5811 If high-pass frequency is lower than low-pass frequency and low-pass frequency
5812 is higher than 0 then filter will create band-pass filter coefficients,
5813 otherwise band-reject filter coefficients.
5814
5815 @item phase
5816 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
5817
5818 @item beta
5819 Set Kaiser window beta.
5820
5821 @item att
5822 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
5823
5824 @item round
5825 Enable rounding, by default is disabled.
5826
5827 @item hptaps
5828 Set number of taps for high-pass filter.
5829
5830 @item lptaps
5831 Set number of taps for low-pass filter.
5832 @end table
5833
5834 @section sine
5835
5836 Generate an audio signal made of a sine wave with amplitude 1/8.
5837
5838 The audio signal is bit-exact.
5839
5840 The filter accepts the following options:
5841
5842 @table @option
5843
5844 @item frequency, f
5845 Set the carrier frequency. Default is 440 Hz.
5846
5847 @item beep_factor, b
5848 Enable a periodic beep every second with frequency @var{beep_factor} times
5849 the carrier frequency. Default is 0, meaning the beep is disabled.
5850
5851 @item sample_rate, r
5852 Specify the sample rate, default is 44100.
5853
5854 @item duration, d
5855 Specify the duration of the generated audio stream.
5856
5857 @item samples_per_frame
5858 Set the number of samples per output frame.
5859
5860 The expression can contain the following constants:
5861
5862 @table @option
5863 @item n
5864 The (sequential) number of the output audio frame, starting from 0.
5865
5866 @item pts
5867 The PTS (Presentation TimeStamp) of the output audio frame,
5868 expressed in @var{TB} units.
5869
5870 @item t
5871 The PTS of the output audio frame, expressed in seconds.
5872
5873 @item TB
5874 The timebase of the output audio frames.
5875 @end table
5876
5877 Default is @code{1024}.
5878 @end table
5879
5880 @subsection Examples
5881
5882 @itemize
5883
5884 @item
5885 Generate a simple 440 Hz sine wave:
5886 @example
5887 sine
5888 @end example
5889
5890 @item
5891 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5892 @example
5893 sine=220:4:d=5
5894 sine=f=220:b=4:d=5
5895 sine=frequency=220:beep_factor=4:duration=5
5896 @end example
5897
5898 @item
5899 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5900 pattern:
5901 @example
5902 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5903 @end example
5904 @end itemize
5905
5906 @c man end AUDIO SOURCES
5907
5908 @chapter Audio Sinks
5909 @c man begin AUDIO SINKS
5910
5911 Below is a description of the currently available audio sinks.
5912
5913 @section abuffersink
5914
5915 Buffer audio frames, and make them available to the end of filter chain.
5916
5917 This sink is mainly intended for programmatic use, in particular
5918 through the interface defined in @file{libavfilter/buffersink.h}
5919 or the options system.
5920
5921 It accepts a pointer to an AVABufferSinkContext structure, which
5922 defines the incoming buffers' formats, to be passed as the opaque
5923 parameter to @code{avfilter_init_filter} for initialization.
5924 @section anullsink
5925
5926 Null audio sink; do absolutely nothing with the input audio. It is
5927 mainly useful as a template and for use in analysis / debugging
5928 tools.
5929
5930 @c man end AUDIO SINKS
5931
5932 @chapter Video Filters
5933 @c man begin VIDEO FILTERS
5934
5935 When you configure your FFmpeg build, you can disable any of the
5936 existing filters using @code{--disable-filters}.
5937 The configure output will show the video filters included in your
5938 build.
5939
5940 Below is a description of the currently available video filters.
5941
5942 @section addroi
5943
5944 Mark a region of interest in a video frame.
5945
5946 The frame data is passed through unchanged, but metadata is attached
5947 to the frame indicating regions of interest which can affect the
5948 behaviour of later encoding.  Multiple regions can be marked by
5949 applying the filter multiple times.
5950
5951 @table @option
5952 @item x
5953 Region distance in pixels from the left edge of the frame.
5954 @item y
5955 Region distance in pixels from the top edge of the frame.
5956 @item w
5957 Region width in pixels.
5958 @item h
5959 Region height in pixels.
5960
5961 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
5962 and may contain the following variables:
5963 @table @option
5964 @item iw
5965 Width of the input frame.
5966 @item ih
5967 Height of the input frame.
5968 @end table
5969
5970 @item qoffset
5971 Quantisation offset to apply within the region.
5972
5973 This must be a real value in the range -1 to +1.  A value of zero
5974 indicates no quality change.  A negative value asks for better quality
5975 (less quantisation), while a positive value asks for worse quality
5976 (greater quantisation).
5977
5978 The range is calibrated so that the extreme values indicate the
5979 largest possible offset - if the rest of the frame is encoded with the
5980 worst possible quality, an offset of -1 indicates that this region
5981 should be encoded with the best possible quality anyway.  Intermediate
5982 values are then interpolated in some codec-dependent way.
5983
5984 For example, in 10-bit H.264 the quantisation parameter varies between
5985 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
5986 this region should be encoded with a QP around one-tenth of the full
5987 range better than the rest of the frame.  So, if most of the frame
5988 were to be encoded with a QP of around 30, this region would get a QP
5989 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
5990 An extreme value of -1 would indicate that this region should be
5991 encoded with the best possible quality regardless of the treatment of
5992 the rest of the frame - that is, should be encoded at a QP of -12.
5993 @item clear
5994 If set to true, remove any existing regions of interest marked on the
5995 frame before adding the new one.
5996 @end table
5997
5998 @subsection Examples
5999
6000 @itemize
6001 @item
6002 Mark the centre quarter of the frame as interesting.
6003 @example
6004 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6005 @end example
6006 @item
6007 Mark the 100-pixel-wide region on the left edge of the frame as very
6008 uninteresting (to be encoded at much lower quality than the rest of
6009 the frame).
6010 @example
6011 addroi=0:0:100:ih:+1/5
6012 @end example
6013 @end itemize
6014
6015 @section alphaextract
6016
6017 Extract the alpha component from the input as a grayscale video. This
6018 is especially useful with the @var{alphamerge} filter.
6019
6020 @section alphamerge
6021
6022 Add or replace the alpha component of the primary input with the
6023 grayscale value of a second input. This is intended for use with
6024 @var{alphaextract} to allow the transmission or storage of frame
6025 sequences that have alpha in a format that doesn't support an alpha
6026 channel.
6027
6028 For example, to reconstruct full frames from a normal YUV-encoded video
6029 and a separate video created with @var{alphaextract}, you might use:
6030 @example
6031 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6032 @end example
6033
6034 Since this filter is designed for reconstruction, it operates on frame
6035 sequences without considering timestamps, and terminates when either
6036 input reaches end of stream. This will cause problems if your encoding
6037 pipeline drops frames. If you're trying to apply an image as an
6038 overlay to a video stream, consider the @var{overlay} filter instead.
6039
6040 @section amplify
6041
6042 Amplify differences between current pixel and pixels of adjacent frames in
6043 same pixel location.
6044
6045 This filter accepts the following options:
6046
6047 @table @option
6048 @item radius
6049 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6050 For example radius of 3 will instruct filter to calculate average of 7 frames.
6051
6052 @item factor
6053 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6054
6055 @item threshold
6056 Set threshold for difference amplification. Any difference greater or equal to
6057 this value will not alter source pixel. Default is 10.
6058 Allowed range is from 0 to 65535.
6059
6060 @item tolerance
6061 Set tolerance for difference amplification. Any difference lower to
6062 this value will not alter source pixel. Default is 0.
6063 Allowed range is from 0 to 65535.
6064
6065 @item low
6066 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6067 This option controls maximum possible value that will decrease source pixel value.
6068
6069 @item high
6070 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6071 This option controls maximum possible value that will increase source pixel value.
6072
6073 @item planes
6074 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6075 @end table
6076
6077 @section ass
6078
6079 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6080 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6081 Substation Alpha) subtitles files.
6082
6083 This filter accepts the following option in addition to the common options from
6084 the @ref{subtitles} filter:
6085
6086 @table @option
6087 @item shaping
6088 Set the shaping engine
6089
6090 Available values are:
6091 @table @samp
6092 @item auto
6093 The default libass shaping engine, which is the best available.
6094 @item simple
6095 Fast, font-agnostic shaper that can do only substitutions
6096 @item complex
6097 Slower shaper using OpenType for substitutions and positioning
6098 @end table
6099
6100 The default is @code{auto}.
6101 @end table
6102
6103 @section atadenoise
6104 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6105
6106 The filter accepts the following options:
6107
6108 @table @option
6109 @item 0a
6110 Set threshold A for 1st plane. Default is 0.02.
6111 Valid range is 0 to 0.3.
6112
6113 @item 0b
6114 Set threshold B for 1st plane. Default is 0.04.
6115 Valid range is 0 to 5.
6116
6117 @item 1a
6118 Set threshold A for 2nd plane. Default is 0.02.
6119 Valid range is 0 to 0.3.
6120
6121 @item 1b
6122 Set threshold B for 2nd plane. Default is 0.04.
6123 Valid range is 0 to 5.
6124
6125 @item 2a
6126 Set threshold A for 3rd plane. Default is 0.02.
6127 Valid range is 0 to 0.3.
6128
6129 @item 2b
6130 Set threshold B for 3rd plane. Default is 0.04.
6131 Valid range is 0 to 5.
6132
6133 Threshold A is designed to react on abrupt changes in the input signal and
6134 threshold B is designed to react on continuous changes in the input signal.
6135
6136 @item s
6137 Set number of frames filter will use for averaging. Default is 9. Must be odd
6138 number in range [5, 129].
6139
6140 @item p
6141 Set what planes of frame filter will use for averaging. Default is all.
6142 @end table
6143
6144 @section avgblur
6145
6146 Apply average blur filter.
6147
6148 The filter accepts the following options:
6149
6150 @table @option
6151 @item sizeX
6152 Set horizontal radius size.
6153
6154 @item planes
6155 Set which planes to filter. By default all planes are filtered.
6156
6157 @item sizeY
6158 Set vertical radius size, if zero it will be same as @code{sizeX}.
6159 Default is @code{0}.
6160 @end table
6161
6162 @section bbox
6163
6164 Compute the bounding box for the non-black pixels in the input frame
6165 luminance plane.
6166
6167 This filter computes the bounding box containing all the pixels with a
6168 luminance value greater than the minimum allowed value.
6169 The parameters describing the bounding box are printed on the filter
6170 log.
6171
6172 The filter accepts the following option:
6173
6174 @table @option
6175 @item min_val
6176 Set the minimal luminance value. Default is @code{16}.
6177 @end table
6178
6179 @section bitplanenoise
6180
6181 Show and measure bit plane noise.
6182
6183 The filter accepts the following options:
6184
6185 @table @option
6186 @item bitplane
6187 Set which plane to analyze. Default is @code{1}.
6188
6189 @item filter
6190 Filter out noisy pixels from @code{bitplane} set above.
6191 Default is disabled.
6192 @end table
6193
6194 @section blackdetect
6195
6196 Detect video intervals that are (almost) completely black. Can be
6197 useful to detect chapter transitions, commercials, or invalid
6198 recordings. Output lines contains the time for the start, end and
6199 duration of the detected black interval expressed in seconds.
6200
6201 In order to display the output lines, you need to set the loglevel at
6202 least to the AV_LOG_INFO value.
6203
6204 The filter accepts the following options:
6205
6206 @table @option
6207 @item black_min_duration, d
6208 Set the minimum detected black duration expressed in seconds. It must
6209 be a non-negative floating point number.
6210
6211 Default value is 2.0.
6212
6213 @item picture_black_ratio_th, pic_th
6214 Set the threshold for considering a picture "black".
6215 Express the minimum value for the ratio:
6216 @example
6217 @var{nb_black_pixels} / @var{nb_pixels}
6218 @end example
6219
6220 for which a picture is considered black.
6221 Default value is 0.98.
6222
6223 @item pixel_black_th, pix_th
6224 Set the threshold for considering a pixel "black".
6225
6226 The threshold expresses the maximum pixel luminance value for which a
6227 pixel is considered "black". The provided value is scaled according to
6228 the following equation:
6229 @example
6230 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6231 @end example
6232
6233 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6234 the input video format, the range is [0-255] for YUV full-range
6235 formats and [16-235] for YUV non full-range formats.
6236
6237 Default value is 0.10.
6238 @end table
6239
6240 The following example sets the maximum pixel threshold to the minimum
6241 value, and detects only black intervals of 2 or more seconds:
6242 @example
6243 blackdetect=d=2:pix_th=0.00
6244 @end example
6245
6246 @section blackframe
6247
6248 Detect frames that are (almost) completely black. Can be useful to
6249 detect chapter transitions or commercials. Output lines consist of
6250 the frame number of the detected frame, the percentage of blackness,
6251 the position in the file if known or -1 and the timestamp in seconds.
6252
6253 In order to display the output lines, you need to set the loglevel at
6254 least to the AV_LOG_INFO value.
6255
6256 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6257 The value represents the percentage of pixels in the picture that
6258 are below the threshold value.
6259
6260 It accepts the following parameters:
6261
6262 @table @option
6263
6264 @item amount
6265 The percentage of the pixels that have to be below the threshold; it defaults to
6266 @code{98}.
6267
6268 @item threshold, thresh
6269 The threshold below which a pixel value is considered black; it defaults to
6270 @code{32}.
6271
6272 @end table
6273
6274 @section blend, tblend
6275
6276 Blend two video frames into each other.
6277
6278 The @code{blend} filter takes two input streams and outputs one
6279 stream, the first input is the "top" layer and second input is
6280 "bottom" layer.  By default, the output terminates when the longest input terminates.
6281
6282 The @code{tblend} (time blend) filter takes two consecutive frames
6283 from one single stream, and outputs the result obtained by blending
6284 the new frame on top of the old frame.
6285
6286 A description of the accepted options follows.
6287
6288 @table @option
6289 @item c0_mode
6290 @item c1_mode
6291 @item c2_mode
6292 @item c3_mode
6293 @item all_mode
6294 Set blend mode for specific pixel component or all pixel components in case
6295 of @var{all_mode}. Default value is @code{normal}.
6296
6297 Available values for component modes are:
6298 @table @samp
6299 @item addition
6300 @item grainmerge
6301 @item and
6302 @item average
6303 @item burn
6304 @item darken
6305 @item difference
6306 @item grainextract
6307 @item divide
6308 @item dodge
6309 @item freeze
6310 @item exclusion
6311 @item extremity
6312 @item glow
6313 @item hardlight
6314 @item hardmix
6315 @item heat
6316 @item lighten
6317 @item linearlight
6318 @item multiply
6319 @item multiply128
6320 @item negation
6321 @item normal
6322 @item or
6323 @item overlay
6324 @item phoenix
6325 @item pinlight
6326 @item reflect
6327 @item screen
6328 @item softlight
6329 @item subtract
6330 @item vividlight
6331 @item xor
6332 @end table
6333
6334 @item c0_opacity
6335 @item c1_opacity
6336 @item c2_opacity
6337 @item c3_opacity
6338 @item all_opacity
6339 Set blend opacity for specific pixel component or all pixel components in case
6340 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6341
6342 @item c0_expr
6343 @item c1_expr
6344 @item c2_expr
6345 @item c3_expr
6346 @item all_expr
6347 Set blend expression for specific pixel component or all pixel components in case
6348 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6349
6350 The expressions can use the following variables:
6351
6352 @table @option
6353 @item N
6354 The sequential number of the filtered frame, starting from @code{0}.
6355
6356 @item X
6357 @item Y
6358 the coordinates of the current sample
6359
6360 @item W
6361 @item H
6362 the width and height of currently filtered plane
6363
6364 @item SW
6365 @item SH
6366 Width and height scale for the plane being filtered. It is the
6367 ratio between the dimensions of the current plane to the luma plane,
6368 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6369 the luma plane and @code{0.5,0.5} for the chroma planes.
6370
6371 @item T
6372 Time of the current frame, expressed in seconds.
6373
6374 @item TOP, A
6375 Value of pixel component at current location for first video frame (top layer).
6376
6377 @item BOTTOM, B
6378 Value of pixel component at current location for second video frame (bottom layer).
6379 @end table
6380 @end table
6381
6382 The @code{blend} filter also supports the @ref{framesync} options.
6383
6384 @subsection Examples
6385
6386 @itemize
6387 @item
6388 Apply transition from bottom layer to top layer in first 10 seconds:
6389 @example
6390 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6391 @end example
6392
6393 @item
6394 Apply linear horizontal transition from top layer to bottom layer:
6395 @example
6396 blend=all_expr='A*(X/W)+B*(1-X/W)'
6397 @end example
6398
6399 @item
6400 Apply 1x1 checkerboard effect:
6401 @example
6402 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6403 @end example
6404
6405 @item
6406 Apply uncover left effect:
6407 @example
6408 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6409 @end example
6410
6411 @item
6412 Apply uncover down effect:
6413 @example
6414 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6415 @end example
6416
6417 @item
6418 Apply uncover up-left effect:
6419 @example
6420 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6421 @end example
6422
6423 @item
6424 Split diagonally video and shows top and bottom layer on each side:
6425 @example
6426 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6427 @end example
6428
6429 @item
6430 Display differences between the current and the previous frame:
6431 @example
6432 tblend=all_mode=grainextract
6433 @end example
6434 @end itemize
6435
6436 @section bm3d
6437
6438 Denoise frames using Block-Matching 3D algorithm.
6439
6440 The filter accepts the following options.
6441
6442 @table @option
6443 @item sigma
6444 Set denoising strength. Default value is 1.
6445 Allowed range is from 0 to 999.9.
6446 The denoising algorithm is very sensitive to sigma, so adjust it
6447 according to the source.
6448
6449 @item block
6450 Set local patch size. This sets dimensions in 2D.
6451
6452 @item bstep
6453 Set sliding step for processing blocks. Default value is 4.
6454 Allowed range is from 1 to 64.
6455 Smaller values allows processing more reference blocks and is slower.
6456
6457 @item group
6458 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6459 When set to 1, no block matching is done. Larger values allows more blocks
6460 in single group.
6461 Allowed range is from 1 to 256.
6462
6463 @item range
6464 Set radius for search block matching. Default is 9.
6465 Allowed range is from 1 to INT32_MAX.
6466
6467 @item mstep
6468 Set step between two search locations for block matching. Default is 1.
6469 Allowed range is from 1 to 64. Smaller is slower.
6470
6471 @item thmse
6472 Set threshold of mean square error for block matching. Valid range is 0 to
6473 INT32_MAX.
6474
6475 @item hdthr
6476 Set thresholding parameter for hard thresholding in 3D transformed domain.
6477 Larger values results in stronger hard-thresholding filtering in frequency
6478 domain.
6479
6480 @item estim
6481 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6482 Default is @code{basic}.
6483
6484 @item ref
6485 If enabled, filter will use 2nd stream for block matching.
6486 Default is disabled for @code{basic} value of @var{estim} option,
6487 and always enabled if value of @var{estim} is @code{final}.
6488
6489 @item planes
6490 Set planes to filter. Default is all available except alpha.
6491 @end table
6492
6493 @subsection Examples
6494
6495 @itemize
6496 @item
6497 Basic filtering with bm3d:
6498 @example
6499 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6500 @end example
6501
6502 @item
6503 Same as above, but filtering only luma:
6504 @example
6505 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6506 @end example
6507
6508 @item
6509 Same as above, but with both estimation modes:
6510 @example
6511 split[a][b],[a]bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic[a],[b][a]bm3d=sigma=3:block=4:bstep=2:group=16:estim=final:ref=1
6512 @end example
6513
6514 @item
6515 Same as above, but prefilter with @ref{nlmeans} filter instead:
6516 @example
6517 split[a][b],[a]nlmeans=s=3:r=7:p=3[a],[b][a]bm3d=sigma=3:block=4:bstep=2:group=16:estim=final:ref=1
6518 @end example
6519 @end itemize
6520
6521 @section boxblur
6522
6523 Apply a boxblur algorithm to the input video.
6524
6525 It accepts the following parameters:
6526
6527 @table @option
6528
6529 @item luma_radius, lr
6530 @item luma_power, lp
6531 @item chroma_radius, cr
6532 @item chroma_power, cp
6533 @item alpha_radius, ar
6534 @item alpha_power, ap
6535
6536 @end table
6537
6538 A description of the accepted options follows.
6539
6540 @table @option
6541 @item luma_radius, lr
6542 @item chroma_radius, cr
6543 @item alpha_radius, ar
6544 Set an expression for the box radius in pixels used for blurring the
6545 corresponding input plane.
6546
6547 The radius value must be a non-negative number, and must not be
6548 greater than the value of the expression @code{min(w,h)/2} for the
6549 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6550 planes.
6551
6552 Default value for @option{luma_radius} is "2". If not specified,
6553 @option{chroma_radius} and @option{alpha_radius} default to the
6554 corresponding value set for @option{luma_radius}.
6555
6556 The expressions can contain the following constants:
6557 @table @option
6558 @item w
6559 @item h
6560 The input width and height in pixels.
6561
6562 @item cw
6563 @item ch
6564 The input chroma image width and height in pixels.
6565
6566 @item hsub
6567 @item vsub
6568 The horizontal and vertical chroma subsample values. For example, for the
6569 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6570 @end table
6571
6572 @item luma_power, lp
6573 @item chroma_power, cp
6574 @item alpha_power, ap
6575 Specify how many times the boxblur filter is applied to the
6576 corresponding plane.
6577
6578 Default value for @option{luma_power} is 2. If not specified,
6579 @option{chroma_power} and @option{alpha_power} default to the
6580 corresponding value set for @option{luma_power}.
6581
6582 A value of 0 will disable the effect.
6583 @end table
6584
6585 @subsection Examples
6586
6587 @itemize
6588 @item
6589 Apply a boxblur filter with the luma, chroma, and alpha radii
6590 set to 2:
6591 @example
6592 boxblur=luma_radius=2:luma_power=1
6593 boxblur=2:1
6594 @end example
6595
6596 @item
6597 Set the luma radius to 2, and alpha and chroma radius to 0:
6598 @example
6599 boxblur=2:1:cr=0:ar=0
6600 @end example
6601
6602 @item
6603 Set the luma and chroma radii to a fraction of the video dimension:
6604 @example
6605 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6606 @end example
6607 @end itemize
6608
6609 @section bwdif
6610
6611 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6612 Deinterlacing Filter").
6613
6614 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6615 interpolation algorithms.
6616 It accepts the following parameters:
6617
6618 @table @option
6619 @item mode
6620 The interlacing mode to adopt. It accepts one of the following values:
6621
6622 @table @option
6623 @item 0, send_frame
6624 Output one frame for each frame.
6625 @item 1, send_field
6626 Output one frame for each field.
6627 @end table
6628
6629 The default value is @code{send_field}.
6630
6631 @item parity
6632 The picture field parity assumed for the input interlaced video. It accepts one
6633 of the following values:
6634
6635 @table @option
6636 @item 0, tff
6637 Assume the top field is first.
6638 @item 1, bff
6639 Assume the bottom field is first.
6640 @item -1, auto
6641 Enable automatic detection of field parity.
6642 @end table
6643
6644 The default value is @code{auto}.
6645 If the interlacing is unknown or the decoder does not export this information,
6646 top field first will be assumed.
6647
6648 @item deint
6649 Specify which frames to deinterlace. Accepts one of the following
6650 values:
6651
6652 @table @option
6653 @item 0, all
6654 Deinterlace all frames.
6655 @item 1, interlaced
6656 Only deinterlace frames marked as interlaced.
6657 @end table
6658
6659 The default value is @code{all}.
6660 @end table
6661
6662 @section chromahold
6663 Remove all color information for all colors except for certain one.
6664
6665 The filter accepts the following options:
6666
6667 @table @option
6668 @item color
6669 The color which will not be replaced with neutral chroma.
6670
6671 @item similarity
6672 Similarity percentage with the above color.
6673 0.01 matches only the exact key color, while 1.0 matches everything.
6674
6675 @item blend
6676 Blend percentage.
6677 0.0 makes pixels either fully gray, or not gray at all.
6678 Higher values result in more preserved color.
6679
6680 @item yuv
6681 Signals that the color passed is already in YUV instead of RGB.
6682
6683 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6684 This can be used to pass exact YUV values as hexadecimal numbers.
6685 @end table
6686
6687 @section chromakey
6688 YUV colorspace color/chroma keying.
6689
6690 The filter accepts the following options:
6691
6692 @table @option
6693 @item color
6694 The color which will be replaced with transparency.
6695
6696 @item similarity
6697 Similarity percentage with the key color.
6698
6699 0.01 matches only the exact key color, while 1.0 matches everything.
6700
6701 @item blend
6702 Blend percentage.
6703
6704 0.0 makes pixels either fully transparent, or not transparent at all.
6705
6706 Higher values result in semi-transparent pixels, with a higher transparency
6707 the more similar the pixels color is to the key color.
6708
6709 @item yuv
6710 Signals that the color passed is already in YUV instead of RGB.
6711
6712 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6713 This can be used to pass exact YUV values as hexadecimal numbers.
6714 @end table
6715
6716 @subsection Examples
6717
6718 @itemize
6719 @item
6720 Make every green pixel in the input image transparent:
6721 @example
6722 ffmpeg -i input.png -vf chromakey=green out.png
6723 @end example
6724
6725 @item
6726 Overlay a greenscreen-video on top of a static black background.
6727 @example
6728 ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
6729 @end example
6730 @end itemize
6731
6732 @section chromashift
6733 Shift chroma pixels horizontally and/or vertically.
6734
6735 The filter accepts the following options:
6736 @table @option
6737 @item cbh
6738 Set amount to shift chroma-blue horizontally.
6739 @item cbv
6740 Set amount to shift chroma-blue vertically.
6741 @item crh
6742 Set amount to shift chroma-red horizontally.
6743 @item crv
6744 Set amount to shift chroma-red vertically.
6745 @item edge
6746 Set edge mode, can be @var{smear}, default, or @var{warp}.
6747 @end table
6748
6749 @section ciescope
6750
6751 Display CIE color diagram with pixels overlaid onto it.
6752
6753 The filter accepts the following options:
6754
6755 @table @option
6756 @item system
6757 Set color system.
6758
6759 @table @samp
6760 @item ntsc, 470m
6761 @item ebu, 470bg
6762 @item smpte
6763 @item 240m
6764 @item apple
6765 @item widergb
6766 @item cie1931
6767 @item rec709, hdtv
6768 @item uhdtv, rec2020
6769 @item dcip3
6770 @end table
6771
6772 @item cie
6773 Set CIE system.
6774
6775 @table @samp
6776 @item xyy
6777 @item ucs
6778 @item luv
6779 @end table
6780
6781 @item gamuts
6782 Set what gamuts to draw.
6783
6784 See @code{system} option for available values.
6785
6786 @item size, s
6787 Set ciescope size, by default set to 512.
6788
6789 @item intensity, i
6790 Set intensity used to map input pixel values to CIE diagram.
6791
6792 @item contrast
6793 Set contrast used to draw tongue colors that are out of active color system gamut.
6794
6795 @item corrgamma
6796 Correct gamma displayed on scope, by default enabled.
6797
6798 @item showwhite
6799 Show white point on CIE diagram, by default disabled.
6800
6801 @item gamma
6802 Set input gamma. Used only with XYZ input color space.
6803 @end table
6804
6805 @section codecview
6806
6807 Visualize information exported by some codecs.
6808
6809 Some codecs can export information through frames using side-data or other
6810 means. For example, some MPEG based codecs export motion vectors through the
6811 @var{export_mvs} flag in the codec @option{flags2} option.
6812
6813 The filter accepts the following option:
6814
6815 @table @option
6816 @item mv
6817 Set motion vectors to visualize.
6818
6819 Available flags for @var{mv} are:
6820
6821 @table @samp
6822 @item pf
6823 forward predicted MVs of P-frames
6824 @item bf
6825 forward predicted MVs of B-frames
6826 @item bb
6827 backward predicted MVs of B-frames
6828 @end table
6829
6830 @item qp
6831 Display quantization parameters using the chroma planes.
6832
6833 @item mv_type, mvt
6834 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
6835
6836 Available flags for @var{mv_type} are:
6837
6838 @table @samp
6839 @item fp
6840 forward predicted MVs
6841 @item bp
6842 backward predicted MVs
6843 @end table
6844
6845 @item frame_type, ft
6846 Set frame type to visualize motion vectors of.
6847
6848 Available flags for @var{frame_type} are:
6849
6850 @table @samp
6851 @item if
6852 intra-coded frames (I-frames)
6853 @item pf
6854 predicted frames (P-frames)
6855 @item bf
6856 bi-directionally predicted frames (B-frames)
6857 @end table
6858 @end table
6859
6860 @subsection Examples
6861
6862 @itemize
6863 @item
6864 Visualize forward predicted MVs of all frames using @command{ffplay}:
6865 @example
6866 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
6867 @end example
6868
6869 @item
6870 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
6871 @example
6872 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
6873 @end example
6874 @end itemize
6875
6876 @section colorbalance
6877 Modify intensity of primary colors (red, green and blue) of input frames.
6878
6879 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
6880 regions for the red-cyan, green-magenta or blue-yellow balance.
6881
6882 A positive adjustment value shifts the balance towards the primary color, a negative
6883 value towards the complementary color.
6884
6885 The filter accepts the following options:
6886
6887 @table @option
6888 @item rs
6889 @item gs
6890 @item bs
6891 Adjust red, green and blue shadows (darkest pixels).
6892
6893 @item rm
6894 @item gm
6895 @item bm
6896 Adjust red, green and blue midtones (medium pixels).
6897
6898 @item rh
6899 @item gh
6900 @item bh
6901 Adjust red, green and blue highlights (brightest pixels).
6902
6903 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6904 @end table
6905
6906 @subsection Examples
6907
6908 @itemize
6909 @item
6910 Add red color cast to shadows:
6911 @example
6912 colorbalance=rs=.3
6913 @end example
6914 @end itemize
6915
6916 @section colorchannelmixer
6917
6918 Adjust video input frames by re-mixing color channels.
6919
6920 This filter modifies a color channel by adding the values associated to
6921 the other channels of the same pixels. For example if the value to
6922 modify is red, the output value will be:
6923 @example
6924 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
6925 @end example
6926
6927 The filter accepts the following options:
6928
6929 @table @option
6930 @item rr
6931 @item rg
6932 @item rb
6933 @item ra
6934 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6935 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6936
6937 @item gr
6938 @item gg
6939 @item gb
6940 @item ga
6941 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6942 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6943
6944 @item br
6945 @item bg
6946 @item bb
6947 @item ba
6948 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6949 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6950
6951 @item ar
6952 @item ag
6953 @item ab
6954 @item aa
6955 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
6956 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
6957
6958 Allowed ranges for options are @code{[-2.0, 2.0]}.
6959 @end table
6960
6961 @subsection Examples
6962
6963 @itemize
6964 @item
6965 Convert source to grayscale:
6966 @example
6967 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
6968 @end example
6969 @item
6970 Simulate sepia tones:
6971 @example
6972 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
6973 @end example
6974 @end itemize
6975
6976 @section colorkey
6977 RGB colorspace color keying.
6978
6979 The filter accepts the following options:
6980
6981 @table @option
6982 @item color
6983 The color which will be replaced with transparency.
6984
6985 @item similarity
6986 Similarity percentage with the key color.
6987
6988 0.01 matches only the exact key color, while 1.0 matches everything.
6989
6990 @item blend
6991 Blend percentage.
6992
6993 0.0 makes pixels either fully transparent, or not transparent at all.
6994
6995 Higher values result in semi-transparent pixels, with a higher transparency
6996 the more similar the pixels color is to the key color.
6997 @end table
6998
6999 @subsection Examples
7000
7001 @itemize
7002 @item
7003 Make every green pixel in the input image transparent:
7004 @example
7005 ffmpeg -i input.png -vf colorkey=green out.png
7006 @end example
7007
7008 @item
7009 Overlay a greenscreen-video on top of a static background image.
7010 @example
7011 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
7012 @end example
7013 @end itemize
7014
7015 @section colorhold
7016 Remove all color information for all RGB colors except for certain one.
7017
7018 The filter accepts the following options:
7019
7020 @table @option
7021 @item color
7022 The color which will not be replaced with neutral gray.
7023
7024 @item similarity
7025 Similarity percentage with the above color.
7026 0.01 matches only the exact key color, while 1.0 matches everything.
7027
7028 @item blend
7029 Blend percentage. 0.0 makes pixels fully gray.
7030 Higher values result in more preserved color.
7031 @end table
7032
7033 @section colorlevels
7034
7035 Adjust video input frames using levels.
7036
7037 The filter accepts the following options:
7038
7039 @table @option
7040 @item rimin
7041 @item gimin
7042 @item bimin
7043 @item aimin
7044 Adjust red, green, blue and alpha input black point.
7045 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7046
7047 @item rimax
7048 @item gimax
7049 @item bimax
7050 @item aimax
7051 Adjust red, green, blue and alpha input white point.
7052 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7053
7054 Input levels are used to lighten highlights (bright tones), darken shadows
7055 (dark tones), change the balance of bright and dark tones.
7056
7057 @item romin
7058 @item gomin
7059 @item bomin
7060 @item aomin
7061 Adjust red, green, blue and alpha output black point.
7062 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7063
7064 @item romax
7065 @item gomax
7066 @item bomax
7067 @item aomax
7068 Adjust red, green, blue and alpha output white point.
7069 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7070
7071 Output levels allows manual selection of a constrained output level range.
7072 @end table
7073
7074 @subsection Examples
7075
7076 @itemize
7077 @item
7078 Make video output darker:
7079 @example
7080 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7081 @end example
7082
7083 @item
7084 Increase contrast:
7085 @example
7086 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7087 @end example
7088
7089 @item
7090 Make video output lighter:
7091 @example
7092 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7093 @end example
7094
7095 @item
7096 Increase brightness:
7097 @example
7098 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7099 @end example
7100 @end itemize
7101
7102 @section colormatrix
7103
7104 Convert color matrix.
7105
7106 The filter accepts the following options:
7107
7108 @table @option
7109 @item src
7110 @item dst
7111 Specify the source and destination color matrix. Both values must be
7112 specified.
7113
7114 The accepted values are:
7115 @table @samp
7116 @item bt709
7117 BT.709
7118
7119 @item fcc
7120 FCC
7121
7122 @item bt601
7123 BT.601
7124
7125 @item bt470
7126 BT.470
7127
7128 @item bt470bg
7129 BT.470BG
7130
7131 @item smpte170m
7132 SMPTE-170M
7133
7134 @item smpte240m
7135 SMPTE-240M
7136
7137 @item bt2020
7138 BT.2020
7139 @end table
7140 @end table
7141
7142 For example to convert from BT.601 to SMPTE-240M, use the command:
7143 @example
7144 colormatrix=bt601:smpte240m
7145 @end example
7146
7147 @section colorspace
7148
7149 Convert colorspace, transfer characteristics or color primaries.
7150 Input video needs to have an even size.
7151
7152 The filter accepts the following options:
7153
7154 @table @option
7155 @anchor{all}
7156 @item all
7157 Specify all color properties at once.
7158
7159 The accepted values are:
7160 @table @samp
7161 @item bt470m
7162 BT.470M
7163
7164 @item bt470bg
7165 BT.470BG
7166
7167 @item bt601-6-525
7168 BT.601-6 525
7169
7170 @item bt601-6-625
7171 BT.601-6 625
7172
7173 @item bt709
7174 BT.709
7175
7176 @item smpte170m
7177 SMPTE-170M
7178
7179 @item smpte240m
7180 SMPTE-240M
7181
7182 @item bt2020
7183 BT.2020
7184
7185 @end table
7186
7187 @anchor{space}
7188 @item space
7189 Specify output colorspace.
7190
7191 The accepted values are:
7192 @table @samp
7193 @item bt709
7194 BT.709
7195
7196 @item fcc
7197 FCC
7198
7199 @item bt470bg
7200 BT.470BG or BT.601-6 625
7201
7202 @item smpte170m
7203 SMPTE-170M or BT.601-6 525
7204
7205 @item smpte240m
7206 SMPTE-240M
7207
7208 @item ycgco
7209 YCgCo
7210
7211 @item bt2020ncl
7212 BT.2020 with non-constant luminance
7213
7214 @end table
7215
7216 @anchor{trc}
7217 @item trc
7218 Specify output transfer characteristics.
7219
7220 The accepted values are:
7221 @table @samp
7222 @item bt709
7223 BT.709
7224
7225 @item bt470m
7226 BT.470M
7227
7228 @item bt470bg
7229 BT.470BG
7230
7231 @item gamma22
7232 Constant gamma of 2.2
7233
7234 @item gamma28
7235 Constant gamma of 2.8
7236
7237 @item smpte170m
7238 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7239
7240 @item smpte240m
7241 SMPTE-240M
7242
7243 @item srgb
7244 SRGB
7245
7246 @item iec61966-2-1
7247 iec61966-2-1
7248
7249 @item iec61966-2-4
7250 iec61966-2-4
7251
7252 @item xvycc
7253 xvycc
7254
7255 @item bt2020-10
7256 BT.2020 for 10-bits content
7257
7258 @item bt2020-12
7259 BT.2020 for 12-bits content
7260
7261 @end table
7262
7263 @anchor{primaries}
7264 @item primaries
7265 Specify output color primaries.
7266
7267 The accepted values are:
7268 @table @samp
7269 @item bt709
7270 BT.709
7271
7272 @item bt470m
7273 BT.470M
7274
7275 @item bt470bg
7276 BT.470BG or BT.601-6 625
7277
7278 @item smpte170m
7279 SMPTE-170M or BT.601-6 525
7280
7281 @item smpte240m
7282 SMPTE-240M
7283
7284 @item film
7285 film
7286
7287 @item smpte431
7288 SMPTE-431
7289
7290 @item smpte432
7291 SMPTE-432
7292
7293 @item bt2020
7294 BT.2020
7295
7296 @item jedec-p22
7297 JEDEC P22 phosphors
7298
7299 @end table
7300
7301 @anchor{range}
7302 @item range
7303 Specify output color range.
7304
7305 The accepted values are:
7306 @table @samp
7307 @item tv
7308 TV (restricted) range
7309
7310 @item mpeg
7311 MPEG (restricted) range
7312
7313 @item pc
7314 PC (full) range
7315
7316 @item jpeg
7317 JPEG (full) range
7318
7319 @end table
7320
7321 @item format
7322 Specify output color format.
7323
7324 The accepted values are:
7325 @table @samp
7326 @item yuv420p
7327 YUV 4:2:0 planar 8-bits
7328
7329 @item yuv420p10
7330 YUV 4:2:0 planar 10-bits
7331
7332 @item yuv420p12
7333 YUV 4:2:0 planar 12-bits
7334
7335 @item yuv422p
7336 YUV 4:2:2 planar 8-bits
7337
7338 @item yuv422p10
7339 YUV 4:2:2 planar 10-bits
7340
7341 @item yuv422p12
7342 YUV 4:2:2 planar 12-bits
7343
7344 @item yuv444p
7345 YUV 4:4:4 planar 8-bits
7346
7347 @item yuv444p10
7348 YUV 4:4:4 planar 10-bits
7349
7350 @item yuv444p12
7351 YUV 4:4:4 planar 12-bits
7352
7353 @end table
7354
7355 @item fast
7356 Do a fast conversion, which skips gamma/primary correction. This will take
7357 significantly less CPU, but will be mathematically incorrect. To get output
7358 compatible with that produced by the colormatrix filter, use fast=1.
7359
7360 @item dither
7361 Specify dithering mode.
7362
7363 The accepted values are:
7364 @table @samp
7365 @item none
7366 No dithering
7367
7368 @item fsb
7369 Floyd-Steinberg dithering
7370 @end table
7371
7372 @item wpadapt
7373 Whitepoint adaptation mode.
7374
7375 The accepted values are:
7376 @table @samp
7377 @item bradford
7378 Bradford whitepoint adaptation
7379
7380 @item vonkries
7381 von Kries whitepoint adaptation
7382
7383 @item identity
7384 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7385 @end table
7386
7387 @item iall
7388 Override all input properties at once. Same accepted values as @ref{all}.
7389
7390 @item ispace
7391 Override input colorspace. Same accepted values as @ref{space}.
7392
7393 @item iprimaries
7394 Override input color primaries. Same accepted values as @ref{primaries}.
7395
7396 @item itrc
7397 Override input transfer characteristics. Same accepted values as @ref{trc}.
7398
7399 @item irange
7400 Override input color range. Same accepted values as @ref{range}.
7401
7402 @end table
7403
7404 The filter converts the transfer characteristics, color space and color
7405 primaries to the specified user values. The output value, if not specified,
7406 is set to a default value based on the "all" property. If that property is
7407 also not specified, the filter will log an error. The output color range and
7408 format default to the same value as the input color range and format. The
7409 input transfer characteristics, color space, color primaries and color range
7410 should be set on the input data. If any of these are missing, the filter will
7411 log an error and no conversion will take place.
7412
7413 For example to convert the input to SMPTE-240M, use the command:
7414 @example
7415 colorspace=smpte240m
7416 @end example
7417
7418 @section convolution
7419
7420 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7421
7422 The filter accepts the following options:
7423
7424 @table @option
7425 @item 0m
7426 @item 1m
7427 @item 2m
7428 @item 3m
7429 Set matrix for each plane.
7430 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7431 and from 1 to 49 odd number of signed integers in @var{row} mode.
7432
7433 @item 0rdiv
7434 @item 1rdiv
7435 @item 2rdiv
7436 @item 3rdiv
7437 Set multiplier for calculated value for each plane.
7438 If unset or 0, it will be sum of all matrix elements.
7439
7440 @item 0bias
7441 @item 1bias
7442 @item 2bias
7443 @item 3bias
7444 Set bias for each plane. This value is added to the result of the multiplication.
7445 Useful for making the overall image brighter or darker. Default is 0.0.
7446
7447 @item 0mode
7448 @item 1mode
7449 @item 2mode
7450 @item 3mode
7451 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7452 Default is @var{square}.
7453 @end table
7454
7455 @subsection Examples
7456
7457 @itemize
7458 @item
7459 Apply sharpen:
7460 @example
7461 convolution="0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0"
7462 @end example
7463
7464 @item
7465 Apply blur:
7466 @example
7467 convolution="1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1/9:1/9:1/9:1/9"
7468 @end example
7469
7470 @item
7471 Apply edge enhance:
7472 @example
7473 convolution="0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:5:1:1:1:0:128:128:128"
7474 @end example
7475
7476 @item
7477 Apply edge detect:
7478 @example
7479 convolution="0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:5:5:5:1:0:128:128:128"
7480 @end example
7481
7482 @item
7483 Apply laplacian edge detector which includes diagonals:
7484 @example
7485 convolution="1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:5:5:5:1:0:128:128:0"
7486 @end example
7487
7488 @item
7489 Apply emboss:
7490 @example
7491 convolution="-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2"
7492 @end example
7493 @end itemize
7494
7495 @section convolve
7496
7497 Apply 2D convolution of video stream in frequency domain using second stream
7498 as impulse.
7499
7500 The filter accepts the following options:
7501
7502 @table @option
7503 @item planes
7504 Set which planes to process.
7505
7506 @item impulse
7507 Set which impulse video frames will be processed, can be @var{first}
7508 or @var{all}. Default is @var{all}.
7509 @end table
7510
7511 The @code{convolve} filter also supports the @ref{framesync} options.
7512
7513 @section copy
7514
7515 Copy the input video source unchanged to the output. This is mainly useful for
7516 testing purposes.
7517
7518 @anchor{coreimage}
7519 @section coreimage
7520 Video filtering on GPU using Apple's CoreImage API on OSX.
7521
7522 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7523 processed by video hardware. However, software-based OpenGL implementations
7524 exist which means there is no guarantee for hardware processing. It depends on
7525 the respective OSX.
7526
7527 There are many filters and image generators provided by Apple that come with a
7528 large variety of options. The filter has to be referenced by its name along
7529 with its options.
7530
7531 The coreimage filter accepts the following options:
7532 @table @option
7533 @item list_filters
7534 List all available filters and generators along with all their respective
7535 options as well as possible minimum and maximum values along with the default
7536 values.
7537 @example
7538 list_filters=true
7539 @end example
7540
7541 @item filter
7542 Specify all filters by their respective name and options.
7543 Use @var{list_filters} to determine all valid filter names and options.
7544 Numerical options are specified by a float value and are automatically clamped
7545 to their respective value range.  Vector and color options have to be specified
7546 by a list of space separated float values. Character escaping has to be done.
7547 A special option name @code{default} is available to use default options for a
7548 filter.
7549
7550 It is required to specify either @code{default} or at least one of the filter options.
7551 All omitted options are used with their default values.
7552 The syntax of the filter string is as follows:
7553 @example
7554 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7555 @end example
7556
7557 @item output_rect
7558 Specify a rectangle where the output of the filter chain is copied into the
7559 input image. It is given by a list of space separated float values:
7560 @example
7561 output_rect=x\ y\ width\ height
7562 @end example
7563 If not given, the output rectangle equals the dimensions of the input image.
7564 The output rectangle is automatically cropped at the borders of the input
7565 image. Negative values are valid for each component.
7566 @example
7567 output_rect=25\ 25\ 100\ 100
7568 @end example
7569 @end table
7570
7571 Several filters can be chained for successive processing without GPU-HOST
7572 transfers allowing for fast processing of complex filter chains.
7573 Currently, only filters with zero (generators) or exactly one (filters) input
7574 image and one output image are supported. Also, transition filters are not yet
7575 usable as intended.
7576
7577 Some filters generate output images with additional padding depending on the
7578 respective filter kernel. The padding is automatically removed to ensure the
7579 filter output has the same size as the input image.
7580
7581 For image generators, the size of the output image is determined by the
7582 previous output image of the filter chain or the input image of the whole
7583 filterchain, respectively. The generators do not use the pixel information of
7584 this image to generate their output. However, the generated output is
7585 blended onto this image, resulting in partial or complete coverage of the
7586 output image.
7587
7588 The @ref{coreimagesrc} video source can be used for generating input images
7589 which are directly fed into the filter chain. By using it, providing input
7590 images by another video source or an input video is not required.
7591
7592 @subsection Examples
7593
7594 @itemize
7595
7596 @item
7597 List all filters available:
7598 @example
7599 coreimage=list_filters=true
7600 @end example
7601
7602 @item
7603 Use the CIBoxBlur filter with default options to blur an image:
7604 @example
7605 coreimage=filter=CIBoxBlur@@default
7606 @end example
7607
7608 @item
7609 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7610 its center at 100x100 and a radius of 50 pixels:
7611 @example
7612 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7613 @end example
7614
7615 @item
7616 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7617 given as complete and escaped command-line for Apple's standard bash shell:
7618 @example
7619 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7620 @end example
7621 @end itemize
7622
7623 @section cover_rect
7624
7625 Cover a rectangular object
7626
7627 It accepts the following options:
7628
7629 @table @option
7630 @item cover
7631 Filepath of the optional cover image, needs to be in yuv420.
7632
7633 @item mode
7634 Set covering mode.
7635
7636 It accepts the following values:
7637 @table @samp
7638 @item cover
7639 cover it by the supplied image
7640 @item blur
7641 cover it by interpolating the surrounding pixels
7642 @end table
7643
7644 Default value is @var{blur}.
7645 @end table
7646
7647 @subsection Examples
7648
7649 @itemize
7650 @item
7651 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
7652 @example
7653 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
7654 @end example
7655 @end itemize
7656
7657 @section crop
7658
7659 Crop the input video to given dimensions.
7660
7661 It accepts the following parameters:
7662
7663 @table @option
7664 @item w, out_w
7665 The width of the output video. It defaults to @code{iw}.
7666 This expression is evaluated only once during the filter
7667 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7668
7669 @item h, out_h
7670 The height of the output video. It defaults to @code{ih}.
7671 This expression is evaluated only once during the filter
7672 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7673
7674 @item x
7675 The horizontal position, in the input video, of the left edge of the output
7676 video. It defaults to @code{(in_w-out_w)/2}.
7677 This expression is evaluated per-frame.
7678
7679 @item y
7680 The vertical position, in the input video, of the top edge of the output video.
7681 It defaults to @code{(in_h-out_h)/2}.
7682 This expression is evaluated per-frame.
7683
7684 @item keep_aspect
7685 If set to 1 will force the output display aspect ratio
7686 to be the same of the input, by changing the output sample aspect
7687 ratio. It defaults to 0.
7688
7689 @item exact
7690 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7691 width/height/x/y as specified and will not be rounded to nearest smaller value.
7692 It defaults to 0.
7693 @end table
7694
7695 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7696 expressions containing the following constants:
7697
7698 @table @option
7699 @item x
7700 @item y
7701 The computed values for @var{x} and @var{y}. They are evaluated for
7702 each new frame.
7703
7704 @item in_w
7705 @item in_h
7706 The input width and height.
7707
7708 @item iw
7709 @item ih
7710 These are the same as @var{in_w} and @var{in_h}.
7711
7712 @item out_w
7713 @item out_h
7714 The output (cropped) width and height.
7715
7716 @item ow
7717 @item oh
7718 These are the same as @var{out_w} and @var{out_h}.
7719
7720 @item a
7721 same as @var{iw} / @var{ih}
7722
7723 @item sar
7724 input sample aspect ratio
7725
7726 @item dar
7727 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7728
7729 @item hsub
7730 @item vsub
7731 horizontal and vertical chroma subsample values. For example for the
7732 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7733
7734 @item n
7735 The number of the input frame, starting from 0.
7736
7737 @item pos
7738 the position in the file of the input frame, NAN if unknown
7739
7740 @item t
7741 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
7742
7743 @end table
7744
7745 The expression for @var{out_w} may depend on the value of @var{out_h},
7746 and the expression for @var{out_h} may depend on @var{out_w}, but they
7747 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
7748 evaluated after @var{out_w} and @var{out_h}.
7749
7750 The @var{x} and @var{y} parameters specify the expressions for the
7751 position of the top-left corner of the output (non-cropped) area. They
7752 are evaluated for each frame. If the evaluated value is not valid, it
7753 is approximated to the nearest valid value.
7754
7755 The expression for @var{x} may depend on @var{y}, and the expression
7756 for @var{y} may depend on @var{x}.
7757
7758 @subsection Examples
7759
7760 @itemize
7761 @item
7762 Crop area with size 100x100 at position (12,34).
7763 @example
7764 crop=100:100:12:34
7765 @end example
7766
7767 Using named options, the example above becomes:
7768 @example
7769 crop=w=100:h=100:x=12:y=34
7770 @end example
7771
7772 @item
7773 Crop the central input area with size 100x100:
7774 @example
7775 crop=100:100
7776 @end example
7777
7778 @item
7779 Crop the central input area with size 2/3 of the input video:
7780 @example
7781 crop=2/3*in_w:2/3*in_h
7782 @end example
7783
7784 @item
7785 Crop the input video central square:
7786 @example
7787 crop=out_w=in_h
7788 crop=in_h
7789 @end example
7790
7791 @item
7792 Delimit the rectangle with the top-left corner placed at position
7793 100:100 and the right-bottom corner corresponding to the right-bottom
7794 corner of the input image.
7795 @example
7796 crop=in_w-100:in_h-100:100:100
7797 @end example
7798
7799 @item
7800 Crop 10 pixels from the left and right borders, and 20 pixels from
7801 the top and bottom borders
7802 @example
7803 crop=in_w-2*10:in_h-2*20
7804 @end example
7805
7806 @item
7807 Keep only the bottom right quarter of the input image:
7808 @example
7809 crop=in_w/2:in_h/2:in_w/2:in_h/2
7810 @end example
7811
7812 @item
7813 Crop height for getting Greek harmony:
7814 @example
7815 crop=in_w:1/PHI*in_w
7816 @end example
7817
7818 @item
7819 Apply trembling effect:
7820 @example
7821 crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(n/10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(n/7)
7822 @end example
7823
7824 @item
7825 Apply erratic camera effect depending on timestamp:
7826 @example
7827 crop=in_w/2:in_h/2:(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*10):(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*13)"
7828 @end example
7829
7830 @item
7831 Set x depending on the value of y:
7832 @example
7833 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
7834 @end example
7835 @end itemize
7836
7837 @subsection Commands
7838
7839 This filter supports the following commands:
7840 @table @option
7841 @item w, out_w
7842 @item h, out_h
7843 @item x
7844 @item y
7845 Set width/height of the output video and the horizontal/vertical position
7846 in the input video.
7847 The command accepts the same syntax of the corresponding option.
7848
7849 If the specified expression is not valid, it is kept at its current
7850 value.
7851 @end table
7852
7853 @section cropdetect
7854
7855 Auto-detect the crop size.
7856
7857 It calculates the necessary cropping parameters and prints the
7858 recommended parameters via the logging system. The detected dimensions
7859 correspond to the non-black area of the input video.
7860
7861 It accepts the following parameters:
7862
7863 @table @option
7864
7865 @item limit
7866 Set higher black value threshold, which can be optionally specified
7867 from nothing (0) to everything (255 for 8-bit based formats). An intensity
7868 value greater to the set value is considered non-black. It defaults to 24.
7869 You can also specify a value between 0.0 and 1.0 which will be scaled depending
7870 on the bitdepth of the pixel format.
7871
7872 @item round
7873 The value which the width/height should be divisible by. It defaults to
7874 16. The offset is automatically adjusted to center the video. Use 2 to
7875 get only even dimensions (needed for 4:2:2 video). 16 is best when
7876 encoding to most video codecs.
7877
7878 @item reset_count, reset
7879 Set the counter that determines after how many frames cropdetect will
7880 reset the previously detected largest video area and start over to
7881 detect the current optimal crop area. Default value is 0.
7882
7883 This can be useful when channel logos distort the video area. 0
7884 indicates 'never reset', and returns the largest area encountered during
7885 playback.
7886 @end table
7887
7888 @anchor{cue}
7889 @section cue
7890
7891 Delay video filtering until a given wallclock timestamp. The filter first
7892 passes on @option{preroll} amount of frames, then it buffers at most
7893 @option{buffer} amount of frames and waits for the cue. After reaching the cue
7894 it forwards the buffered frames and also any subsequent frames coming in its
7895 input.
7896
7897 The filter can be used synchronize the output of multiple ffmpeg processes for
7898 realtime output devices like decklink. By putting the delay in the filtering
7899 chain and pre-buffering frames the process can pass on data to output almost
7900 immediately after the target wallclock timestamp is reached.
7901
7902 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
7903 some use cases.
7904
7905 @table @option
7906
7907 @item cue
7908 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
7909
7910 @item preroll
7911 The duration of content to pass on as preroll expressed in seconds. Default is 0.
7912
7913 @item buffer
7914 The maximum duration of content to buffer before waiting for the cue expressed
7915 in seconds. Default is 0.
7916
7917 @end table
7918
7919 @anchor{curves}
7920 @section curves
7921
7922 Apply color adjustments using curves.
7923
7924 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
7925 component (red, green and blue) has its values defined by @var{N} key points
7926 tied from each other using a smooth curve. The x-axis represents the pixel
7927 values from the input frame, and the y-axis the new pixel values to be set for
7928 the output frame.
7929
7930 By default, a component curve is defined by the two points @var{(0;0)} and
7931 @var{(1;1)}. This creates a straight line where each original pixel value is
7932 "adjusted" to its own value, which means no change to the image.
7933
7934 The filter allows you to redefine these two points and add some more. A new
7935 curve (using a natural cubic spline interpolation) will be define to pass
7936 smoothly through all these new coordinates. The new defined points needs to be
7937 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
7938 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
7939 the vector spaces, the values will be clipped accordingly.
7940
7941 The filter accepts the following options:
7942
7943 @table @option
7944 @item preset
7945 Select one of the available color presets. This option can be used in addition
7946 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
7947 options takes priority on the preset values.
7948 Available presets are:
7949 @table @samp
7950 @item none
7951 @item color_negative
7952 @item cross_process
7953 @item darker
7954 @item increase_contrast
7955 @item lighter
7956 @item linear_contrast
7957 @item medium_contrast
7958 @item negative
7959 @item strong_contrast
7960 @item vintage
7961 @end table
7962 Default is @code{none}.
7963 @item master, m
7964 Set the master key points. These points will define a second pass mapping. It
7965 is sometimes called a "luminance" or "value" mapping. It can be used with
7966 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
7967 post-processing LUT.
7968 @item red, r
7969 Set the key points for the red component.
7970 @item green, g
7971 Set the key points for the green component.
7972 @item blue, b
7973 Set the key points for the blue component.
7974 @item all
7975 Set the key points for all components (not including master).
7976 Can be used in addition to the other key points component
7977 options. In this case, the unset component(s) will fallback on this
7978 @option{all} setting.
7979 @item psfile
7980 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
7981 @item plot
7982 Save Gnuplot script of the curves in specified file.
7983 @end table
7984
7985 To avoid some filtergraph syntax conflicts, each key points list need to be
7986 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
7987
7988 @subsection Examples
7989
7990 @itemize
7991 @item
7992 Increase slightly the middle level of blue:
7993 @example
7994 curves=blue='0/0 0.5/0.58 1/1'
7995 @end example
7996
7997 @item
7998 Vintage effect:
7999 @example
8000 curves=r='0/0.11 .42/.51 1/0.95':g='0/0 0.50/0.48 1/1':b='0/0.22 .49/.44 1/0.8'
8001 @end example
8002 Here we obtain the following coordinates for each components:
8003 @table @var
8004 @item red
8005 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8006 @item green
8007 @code{(0;0) (0.50;0.48) (1;1)}
8008 @item blue
8009 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8010 @end table
8011
8012 @item
8013 The previous example can also be achieved with the associated built-in preset:
8014 @example
8015 curves=preset=vintage
8016 @end example
8017
8018 @item
8019 Or simply:
8020 @example
8021 curves=vintage
8022 @end example
8023
8024 @item
8025 Use a Photoshop preset and redefine the points of the green component:
8026 @example
8027 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8028 @end example
8029
8030 @item
8031 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8032 and @command{gnuplot}:
8033 @example
8034 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8035 gnuplot -p /tmp/curves.plt
8036 @end example
8037 @end itemize
8038
8039 @section datascope
8040
8041 Video data analysis filter.
8042
8043 This filter shows hexadecimal pixel values of part of video.
8044
8045 The filter accepts the following options:
8046
8047 @table @option
8048 @item size, s
8049 Set output video size.
8050
8051 @item x
8052 Set x offset from where to pick pixels.
8053
8054 @item y
8055 Set y offset from where to pick pixels.
8056
8057 @item mode
8058 Set scope mode, can be one of the following:
8059 @table @samp
8060 @item mono
8061 Draw hexadecimal pixel values with white color on black background.
8062
8063 @item color
8064 Draw hexadecimal pixel values with input video pixel color on black
8065 background.
8066
8067 @item color2
8068 Draw hexadecimal pixel values on color background picked from input video,
8069 the text color is picked in such way so its always visible.
8070 @end table
8071
8072 @item axis
8073 Draw rows and columns numbers on left and top of video.
8074
8075 @item opacity
8076 Set background opacity.
8077 @end table
8078
8079 @section dctdnoiz
8080
8081 Denoise frames using 2D DCT (frequency domain filtering).
8082
8083 This filter is not designed for real time.
8084
8085 The filter accepts the following options:
8086
8087 @table @option
8088 @item sigma, s
8089 Set the noise sigma constant.
8090
8091 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8092 coefficient (absolute value) below this threshold with be dropped.
8093
8094 If you need a more advanced filtering, see @option{expr}.
8095
8096 Default is @code{0}.
8097
8098 @item overlap
8099 Set number overlapping pixels for each block. Since the filter can be slow, you
8100 may want to reduce this value, at the cost of a less effective filter and the
8101 risk of various artefacts.
8102
8103 If the overlapping value doesn't permit processing the whole input width or
8104 height, a warning will be displayed and according borders won't be denoised.
8105
8106 Default value is @var{blocksize}-1, which is the best possible setting.
8107
8108 @item expr, e
8109 Set the coefficient factor expression.
8110
8111 For each coefficient of a DCT block, this expression will be evaluated as a
8112 multiplier value for the coefficient.
8113
8114 If this is option is set, the @option{sigma} option will be ignored.
8115
8116 The absolute value of the coefficient can be accessed through the @var{c}
8117 variable.
8118
8119 @item n
8120 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8121 @var{blocksize}, which is the width and height of the processed blocks.
8122
8123 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8124 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8125 on the speed processing. Also, a larger block size does not necessarily means a
8126 better de-noising.
8127 @end table
8128
8129 @subsection Examples
8130
8131 Apply a denoise with a @option{sigma} of @code{4.5}:
8132 @example
8133 dctdnoiz=4.5
8134 @end example
8135
8136 The same operation can be achieved using the expression system:
8137 @example
8138 dctdnoiz=e='gte(c, 4.5*3)'
8139 @end example
8140
8141 Violent denoise using a block size of @code{16x16}:
8142 @example
8143 dctdnoiz=15:n=4
8144 @end example
8145
8146 @section deband
8147
8148 Remove banding artifacts from input video.
8149 It works by replacing banded pixels with average value of referenced pixels.
8150
8151 The filter accepts the following options:
8152
8153 @table @option
8154 @item 1thr
8155 @item 2thr
8156 @item 3thr
8157 @item 4thr
8158 Set banding detection threshold for each plane. Default is 0.02.
8159 Valid range is 0.00003 to 0.5.
8160 If difference between current pixel and reference pixel is less than threshold,
8161 it will be considered as banded.
8162
8163 @item range, r
8164 Banding detection range in pixels. Default is 16. If positive, random number
8165 in range 0 to set value will be used. If negative, exact absolute value
8166 will be used.
8167 The range defines square of four pixels around current pixel.
8168
8169 @item direction, d
8170 Set direction in radians from which four pixel will be compared. If positive,
8171 random direction from 0 to set direction will be picked. If negative, exact of
8172 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8173 will pick only pixels on same row and -PI/2 will pick only pixels on same
8174 column.
8175
8176 @item blur, b
8177 If enabled, current pixel is compared with average value of all four
8178 surrounding pixels. The default is enabled. If disabled current pixel is
8179 compared with all four surrounding pixels. The pixel is considered banded
8180 if only all four differences with surrounding pixels are less than threshold.
8181
8182 @item coupling, c
8183 If enabled, current pixel is changed if and only if all pixel components are banded,
8184 e.g. banding detection threshold is triggered for all color components.
8185 The default is disabled.
8186 @end table
8187
8188 @section deblock
8189
8190 Remove blocking artifacts from input video.
8191
8192 The filter accepts the following options:
8193
8194 @table @option
8195 @item filter
8196 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8197 This controls what kind of deblocking is applied.
8198
8199 @item block
8200 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8201
8202 @item alpha
8203 @item beta
8204 @item gamma
8205 @item delta
8206 Set blocking detection thresholds. Allowed range is 0 to 1.
8207 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8208 Using higher threshold gives more deblocking strength.
8209 Setting @var{alpha} controls threshold detection at exact edge of block.
8210 Remaining options controls threshold detection near the edge. Each one for
8211 below/above or left/right. Setting any of those to @var{0} disables
8212 deblocking.
8213
8214 @item planes
8215 Set planes to filter. Default is to filter all available planes.
8216 @end table
8217
8218 @subsection Examples
8219
8220 @itemize
8221 @item
8222 Deblock using weak filter and block size of 4 pixels.
8223 @example
8224 deblock=filter=weak:block=4
8225 @end example
8226
8227 @item
8228 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8229 deblocking more edges.
8230 @example
8231 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8232 @end example
8233
8234 @item
8235 Similar as above, but filter only first plane.
8236 @example
8237 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8238 @end example
8239
8240 @item
8241 Similar as above, but filter only second and third plane.
8242 @example
8243 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8244 @end example
8245 @end itemize
8246
8247 @anchor{decimate}
8248 @section decimate
8249
8250 Drop duplicated frames at regular intervals.
8251
8252 The filter accepts the following options:
8253
8254 @table @option
8255 @item cycle
8256 Set the number of frames from which one will be dropped. Setting this to
8257 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8258 Default is @code{5}.
8259
8260 @item dupthresh
8261 Set the threshold for duplicate detection. If the difference metric for a frame
8262 is less than or equal to this value, then it is declared as duplicate. Default
8263 is @code{1.1}
8264
8265 @item scthresh
8266 Set scene change threshold. Default is @code{15}.
8267
8268 @item blockx
8269 @item blocky
8270 Set the size of the x and y-axis blocks used during metric calculations.
8271 Larger blocks give better noise suppression, but also give worse detection of
8272 small movements. Must be a power of two. Default is @code{32}.
8273
8274 @item ppsrc
8275 Mark main input as a pre-processed input and activate clean source input
8276 stream. This allows the input to be pre-processed with various filters to help
8277 the metrics calculation while keeping the frame selection lossless. When set to
8278 @code{1}, the first stream is for the pre-processed input, and the second
8279 stream is the clean source from where the kept frames are chosen. Default is
8280 @code{0}.
8281
8282 @item chroma
8283 Set whether or not chroma is considered in the metric calculations. Default is
8284 @code{1}.
8285 @end table
8286
8287 @section deconvolve
8288
8289 Apply 2D deconvolution of video stream in frequency domain using second stream
8290 as impulse.
8291
8292 The filter accepts the following options:
8293
8294 @table @option
8295 @item planes
8296 Set which planes to process.
8297
8298 @item impulse
8299 Set which impulse video frames will be processed, can be @var{first}
8300 or @var{all}. Default is @var{all}.
8301
8302 @item noise
8303 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8304 and height are not same and not power of 2 or if stream prior to convolving
8305 had noise.
8306 @end table
8307
8308 The @code{deconvolve} filter also supports the @ref{framesync} options.
8309
8310 @section dedot
8311
8312 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8313
8314 It accepts the following options:
8315
8316 @table @option
8317 @item m
8318 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8319 @var{rainbows} for cross-color reduction.
8320
8321 @item lt
8322 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8323
8324 @item tl
8325 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8326
8327 @item tc
8328 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8329
8330 @item ct
8331 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8332 @end table
8333
8334 @section deflate
8335
8336 Apply deflate effect to the video.
8337
8338 This filter replaces the pixel by the local(3x3) average by taking into account
8339 only values lower than the pixel.
8340
8341 It accepts the following options:
8342
8343 @table @option
8344 @item threshold0
8345 @item threshold1
8346 @item threshold2
8347 @item threshold3
8348 Limit the maximum change for each plane, default is 65535.
8349 If 0, plane will remain unchanged.
8350 @end table
8351
8352 @section deflicker
8353
8354 Remove temporal frame luminance variations.
8355
8356 It accepts the following options:
8357
8358 @table @option
8359 @item size, s
8360 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8361
8362 @item mode, m
8363 Set averaging mode to smooth temporal luminance variations.
8364
8365 Available values are:
8366 @table @samp
8367 @item am
8368 Arithmetic mean
8369
8370 @item gm
8371 Geometric mean
8372
8373 @item hm
8374 Harmonic mean
8375
8376 @item qm
8377 Quadratic mean
8378
8379 @item cm
8380 Cubic mean
8381
8382 @item pm
8383 Power mean
8384
8385 @item median
8386 Median
8387 @end table
8388
8389 @item bypass
8390 Do not actually modify frame. Useful when one only wants metadata.
8391 @end table
8392
8393 @section dejudder
8394
8395 Remove judder produced by partially interlaced telecined content.
8396
8397 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8398 source was partially telecined content then the output of @code{pullup,dejudder}
8399 will have a variable frame rate. May change the recorded frame rate of the
8400 container. Aside from that change, this filter will not affect constant frame
8401 rate video.
8402
8403 The option available in this filter is:
8404 @table @option
8405
8406 @item cycle
8407 Specify the length of the window over which the judder repeats.
8408
8409 Accepts any integer greater than 1. Useful values are:
8410 @table @samp
8411
8412 @item 4
8413 If the original was telecined from 24 to 30 fps (Film to NTSC).
8414
8415 @item 5
8416 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8417
8418 @item 20
8419 If a mixture of the two.
8420 @end table
8421
8422 The default is @samp{4}.
8423 @end table
8424
8425 @section delogo
8426
8427 Suppress a TV station logo by a simple interpolation of the surrounding
8428 pixels. Just set a rectangle covering the logo and watch it disappear
8429 (and sometimes something even uglier appear - your mileage may vary).
8430
8431 It accepts the following parameters:
8432 @table @option
8433
8434 @item x
8435 @item y
8436 Specify the top left corner coordinates of the logo. They must be
8437 specified.
8438
8439 @item w
8440 @item h
8441 Specify the width and height of the logo to clear. They must be
8442 specified.
8443
8444 @item band, t
8445 Specify the thickness of the fuzzy edge of the rectangle (added to
8446 @var{w} and @var{h}). The default value is 1. This option is
8447 deprecated, setting higher values should no longer be necessary and
8448 is not recommended.
8449
8450 @item show
8451 When set to 1, a green rectangle is drawn on the screen to simplify
8452 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8453 The default value is 0.
8454
8455 The rectangle is drawn on the outermost pixels which will be (partly)
8456 replaced with interpolated values. The values of the next pixels
8457 immediately outside this rectangle in each direction will be used to
8458 compute the interpolated pixel values inside the rectangle.
8459
8460 @end table
8461
8462 @subsection Examples
8463
8464 @itemize
8465 @item
8466 Set a rectangle covering the area with top left corner coordinates 0,0
8467 and size 100x77, and a band of size 10:
8468 @example
8469 delogo=x=0:y=0:w=100:h=77:band=10
8470 @end example
8471
8472 @end itemize
8473
8474 @section derain
8475
8476 Remove the rain in the input image/video by applying the derain methods based on
8477 convolutional neural networks. Supported models:
8478
8479 @itemize
8480 @item
8481 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8482 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8483 @end itemize
8484
8485 Training as well as model generation scripts are provided in
8486 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8487
8488 Native model files (.model) can be generated from TensorFlow model
8489 files (.pb) by using tools/python/convert.py
8490
8491 The filter accepts the following options:
8492
8493 @table @option
8494 @item filter_type
8495 Specify which filter to use. This option accepts the following values:
8496
8497 @table @samp
8498 @item derain
8499 Derain filter. To conduct derain filter, you need to use a derain model.
8500
8501 @item dehaze
8502 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8503 @end table
8504 Default value is @samp{derain}.
8505
8506 @item dnn_backend
8507 Specify which DNN backend to use for model loading and execution. This option accepts
8508 the following values:
8509
8510 @table @samp
8511 @item native
8512 Native implementation of DNN loading and execution.
8513
8514 @item tensorflow
8515 TensorFlow backend. To enable this backend you
8516 need to install the TensorFlow for C library (see
8517 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8518 @code{--enable-libtensorflow}
8519 @end table
8520 Default value is @samp{native}.
8521
8522 @item model
8523 Set path to model file specifying network architecture and its parameters.
8524 Note that different backends use different file formats. TensorFlow and native
8525 backend can load files for only its format.
8526 @end table
8527
8528 @section deshake
8529
8530 Attempt to fix small changes in horizontal and/or vertical shift. This
8531 filter helps remove camera shake from hand-holding a camera, bumping a
8532 tripod, moving on a vehicle, etc.
8533
8534 The filter accepts the following options:
8535
8536 @table @option
8537
8538 @item x
8539 @item y
8540 @item w
8541 @item h
8542 Specify a rectangular area where to limit the search for motion
8543 vectors.
8544 If desired the search for motion vectors can be limited to a
8545 rectangular area of the frame defined by its top left corner, width
8546 and height. These parameters have the same meaning as the drawbox
8547 filter which can be used to visualise the position of the bounding
8548 box.
8549
8550 This is useful when simultaneous movement of subjects within the frame
8551 might be confused for camera motion by the motion vector search.
8552
8553 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8554 then the full frame is used. This allows later options to be set
8555 without specifying the bounding box for the motion vector search.
8556
8557 Default - search the whole frame.
8558
8559 @item rx
8560 @item ry
8561 Specify the maximum extent of movement in x and y directions in the
8562 range 0-64 pixels. Default 16.
8563
8564 @item edge
8565 Specify how to generate pixels to fill blanks at the edge of the
8566 frame. Available values are:
8567 @table @samp
8568 @item blank, 0
8569 Fill zeroes at blank locations
8570 @item original, 1
8571 Original image at blank locations
8572 @item clamp, 2
8573 Extruded edge value at blank locations
8574 @item mirror, 3
8575 Mirrored edge at blank locations
8576 @end table
8577 Default value is @samp{mirror}.
8578
8579 @item blocksize
8580 Specify the blocksize to use for motion search. Range 4-128 pixels,
8581 default 8.
8582
8583 @item contrast
8584 Specify the contrast threshold for blocks. Only blocks with more than
8585 the specified contrast (difference between darkest and lightest
8586 pixels) will be considered. Range 1-255, default 125.
8587
8588 @item search
8589 Specify the search strategy. Available values are:
8590 @table @samp
8591 @item exhaustive, 0
8592 Set exhaustive search
8593 @item less, 1
8594 Set less exhaustive search.
8595 @end table
8596 Default value is @samp{exhaustive}.
8597
8598 @item filename
8599 If set then a detailed log of the motion search is written to the
8600 specified file.
8601
8602 @end table
8603
8604 @section despill
8605
8606 Remove unwanted contamination of foreground colors, caused by reflected color of
8607 greenscreen or bluescreen.
8608
8609 This filter accepts the following options:
8610
8611 @table @option
8612 @item type
8613 Set what type of despill to use.
8614
8615 @item mix
8616 Set how spillmap will be generated.
8617
8618 @item expand
8619 Set how much to get rid of still remaining spill.
8620
8621 @item red
8622 Controls amount of red in spill area.
8623
8624 @item green
8625 Controls amount of green in spill area.
8626 Should be -1 for greenscreen.
8627
8628 @item blue
8629 Controls amount of blue in spill area.
8630 Should be -1 for bluescreen.
8631
8632 @item brightness
8633 Controls brightness of spill area, preserving colors.
8634
8635 @item alpha
8636 Modify alpha from generated spillmap.
8637 @end table
8638
8639 @section detelecine
8640
8641 Apply an exact inverse of the telecine operation. It requires a predefined
8642 pattern specified using the pattern option which must be the same as that passed
8643 to the telecine filter.
8644
8645 This filter accepts the following options:
8646
8647 @table @option
8648 @item first_field
8649 @table @samp
8650 @item top, t
8651 top field first
8652 @item bottom, b
8653 bottom field first
8654 The default value is @code{top}.
8655 @end table
8656
8657 @item pattern
8658 A string of numbers representing the pulldown pattern you wish to apply.
8659 The default value is @code{23}.
8660
8661 @item start_frame
8662 A number representing position of the first frame with respect to the telecine
8663 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8664 @end table
8665
8666 @section dilation
8667
8668 Apply dilation effect to the video.
8669
8670 This filter replaces the pixel by the local(3x3) maximum.
8671
8672 It accepts the following options:
8673
8674 @table @option
8675 @item threshold0
8676 @item threshold1
8677 @item threshold2
8678 @item threshold3
8679 Limit the maximum change for each plane, default is 65535.
8680 If 0, plane will remain unchanged.
8681
8682 @item coordinates
8683 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8684 pixels are used.
8685
8686 Flags to local 3x3 coordinates maps like this:
8687
8688     1 2 3
8689     4   5
8690     6 7 8
8691 @end table
8692
8693 @section displace
8694
8695 Displace pixels as indicated by second and third input stream.
8696
8697 It takes three input streams and outputs one stream, the first input is the
8698 source, and second and third input are displacement maps.
8699
8700 The second input specifies how much to displace pixels along the
8701 x-axis, while the third input specifies how much to displace pixels
8702 along the y-axis.
8703 If one of displacement map streams terminates, last frame from that
8704 displacement map will be used.
8705
8706 Note that once generated, displacements maps can be reused over and over again.
8707
8708 A description of the accepted options follows.
8709
8710 @table @option
8711 @item edge
8712 Set displace behavior for pixels that are out of range.
8713
8714 Available values are:
8715 @table @samp
8716 @item blank
8717 Missing pixels are replaced by black pixels.
8718
8719 @item smear
8720 Adjacent pixels will spread out to replace missing pixels.
8721
8722 @item wrap
8723 Out of range pixels are wrapped so they point to pixels of other side.
8724
8725 @item mirror
8726 Out of range pixels will be replaced with mirrored pixels.
8727 @end table
8728 Default is @samp{smear}.
8729
8730 @end table
8731
8732 @subsection Examples
8733
8734 @itemize
8735 @item
8736 Add ripple effect to rgb input of video size hd720:
8737 @example
8738 ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi -i nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' -lavfi '[0][1][2]displace' OUTPUT
8739 @end example
8740
8741 @item
8742 Add wave effect to rgb input of video size hd720:
8743 @example
8744 ffmpeg -i INPUT -f lavfi -i nullsrc=hd720,geq='r=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):g=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):b=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T))' -lavfi '[1]split[x][y],[0][x][y]displace' OUTPUT
8745 @end example
8746 @end itemize
8747
8748 @section drawbox
8749
8750 Draw a colored box on the input image.
8751
8752 It accepts the following parameters:
8753
8754 @table @option
8755 @item x
8756 @item y
8757 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
8758
8759 @item width, w
8760 @item height, h
8761 The expressions which specify the width and height of the box; if 0 they are interpreted as
8762 the input width and height. It defaults to 0.
8763
8764 @item color, c
8765 Specify the color of the box to write. For the general syntax of this option,
8766 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8767 value @code{invert} is used, the box edge color is the same as the
8768 video with inverted luma.
8769
8770 @item thickness, t
8771 The expression which sets the thickness of the box edge.
8772 A value of @code{fill} will create a filled box. Default value is @code{3}.
8773
8774 See below for the list of accepted constants.
8775
8776 @item replace
8777 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
8778 will overwrite the video's color and alpha pixels.
8779 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
8780 @end table
8781
8782 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8783 following constants:
8784
8785 @table @option
8786 @item dar
8787 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8788
8789 @item hsub
8790 @item vsub
8791 horizontal and vertical chroma subsample values. For example for the
8792 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8793
8794 @item in_h, ih
8795 @item in_w, iw
8796 The input width and height.
8797
8798 @item sar
8799 The input sample aspect ratio.
8800
8801 @item x
8802 @item y
8803 The x and y offset coordinates where the box is drawn.
8804
8805 @item w
8806 @item h
8807 The width and height of the drawn box.
8808
8809 @item t
8810 The thickness of the drawn box.
8811
8812 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8813 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8814
8815 @end table
8816
8817 @subsection Examples
8818
8819 @itemize
8820 @item
8821 Draw a black box around the edge of the input image:
8822 @example
8823 drawbox
8824 @end example
8825
8826 @item
8827 Draw a box with color red and an opacity of 50%:
8828 @example
8829 drawbox=10:20:200:60:red@@0.5
8830 @end example
8831
8832 The previous example can be specified as:
8833 @example
8834 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
8835 @end example
8836
8837 @item
8838 Fill the box with pink color:
8839 @example
8840 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
8841 @end example
8842
8843 @item
8844 Draw a 2-pixel red 2.40:1 mask:
8845 @example
8846 drawbox=x=-t:y=0.5*(ih-iw/2.4)-t:w=iw+t*2:h=iw/2.4+t*2:t=2:c=red
8847 @end example
8848 @end itemize
8849
8850 @section drawgrid
8851
8852 Draw a grid on the input image.
8853
8854 It accepts the following parameters:
8855
8856 @table @option
8857 @item x
8858 @item y
8859 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
8860
8861 @item width, w
8862 @item height, h
8863 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
8864 input width and height, respectively, minus @code{thickness}, so image gets
8865 framed. Default to 0.
8866
8867 @item color, c
8868 Specify the color of the grid. For the general syntax of this option,
8869 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8870 value @code{invert} is used, the grid color is the same as the
8871 video with inverted luma.
8872
8873 @item thickness, t
8874 The expression which sets the thickness of the grid line. Default value is @code{1}.
8875
8876 See below for the list of accepted constants.
8877
8878 @item replace
8879 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
8880 will overwrite the video's color and alpha pixels.
8881 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
8882 @end table
8883
8884 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8885 following constants:
8886
8887 @table @option
8888 @item dar
8889 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8890
8891 @item hsub
8892 @item vsub
8893 horizontal and vertical chroma subsample values. For example for the
8894 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8895
8896 @item in_h, ih
8897 @item in_w, iw
8898 The input grid cell width and height.
8899
8900 @item sar
8901 The input sample aspect ratio.
8902
8903 @item x
8904 @item y
8905 The x and y coordinates of some point of grid intersection (meant to configure offset).
8906
8907 @item w
8908 @item h
8909 The width and height of the drawn cell.
8910
8911 @item t
8912 The thickness of the drawn cell.
8913
8914 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8915 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8916
8917 @end table
8918
8919 @subsection Examples
8920
8921 @itemize
8922 @item
8923 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
8924 @example
8925 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
8926 @end example
8927
8928 @item
8929 Draw a white 3x3 grid with an opacity of 50%:
8930 @example
8931 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
8932 @end example
8933 @end itemize
8934
8935 @anchor{drawtext}
8936 @section drawtext
8937
8938 Draw a text string or text from a specified file on top of a video, using the
8939 libfreetype library.
8940
8941 To enable compilation of this filter, you need to configure FFmpeg with
8942 @code{--enable-libfreetype}.
8943 To enable default font fallback and the @var{font} option you need to
8944 configure FFmpeg with @code{--enable-libfontconfig}.
8945 To enable the @var{text_shaping} option, you need to configure FFmpeg with
8946 @code{--enable-libfribidi}.
8947
8948 @subsection Syntax
8949
8950 It accepts the following parameters:
8951
8952 @table @option
8953
8954 @item box
8955 Used to draw a box around text using the background color.
8956 The value must be either 1 (enable) or 0 (disable).
8957 The default value of @var{box} is 0.
8958
8959 @item boxborderw
8960 Set the width of the border to be drawn around the box using @var{boxcolor}.
8961 The default value of @var{boxborderw} is 0.
8962
8963 @item boxcolor
8964 The color to be used for drawing box around text. For the syntax of this
8965 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8966
8967 The default value of @var{boxcolor} is "white".
8968
8969 @item line_spacing
8970 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
8971 The default value of @var{line_spacing} is 0.
8972
8973 @item borderw
8974 Set the width of the border to be drawn around the text using @var{bordercolor}.
8975 The default value of @var{borderw} is 0.
8976
8977 @item bordercolor
8978 Set the color to be used for drawing border around text. For the syntax of this
8979 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8980
8981 The default value of @var{bordercolor} is "black".
8982
8983 @item expansion
8984 Select how the @var{text} is expanded. Can be either @code{none},
8985 @code{strftime} (deprecated) or
8986 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
8987 below for details.
8988
8989 @item basetime
8990 Set a start time for the count. Value is in microseconds. Only applied
8991 in the deprecated strftime expansion mode. To emulate in normal expansion
8992 mode use the @code{pts} function, supplying the start time (in seconds)
8993 as the second argument.
8994
8995 @item fix_bounds
8996 If true, check and fix text coords to avoid clipping.
8997
8998 @item fontcolor
8999 The color to be used for drawing fonts. For the syntax of this option, check
9000 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9001
9002 The default value of @var{fontcolor} is "black".
9003
9004 @item fontcolor_expr
9005 String which is expanded the same way as @var{text} to obtain dynamic
9006 @var{fontcolor} value. By default this option has empty value and is not
9007 processed. When this option is set, it overrides @var{fontcolor} option.
9008
9009 @item font
9010 The font family to be used for drawing text. By default Sans.
9011
9012 @item fontfile
9013 The font file to be used for drawing text. The path must be included.
9014 This parameter is mandatory if the fontconfig support is disabled.
9015
9016 @item alpha
9017 Draw the text applying alpha blending. The value can
9018 be a number between 0.0 and 1.0.
9019 The expression accepts the same variables @var{x, y} as well.
9020 The default value is 1.
9021 Please see @var{fontcolor_expr}.
9022
9023 @item fontsize
9024 The font size to be used for drawing text.
9025 The default value of @var{fontsize} is 16.
9026
9027 @item text_shaping
9028 If set to 1, attempt to shape the text (for example, reverse the order of
9029 right-to-left text and join Arabic characters) before drawing it.
9030 Otherwise, just draw the text exactly as given.
9031 By default 1 (if supported).
9032
9033 @item ft_load_flags
9034 The flags to be used for loading the fonts.
9035
9036 The flags map the corresponding flags supported by libfreetype, and are
9037 a combination of the following values:
9038 @table @var
9039 @item default
9040 @item no_scale
9041 @item no_hinting
9042 @item render
9043 @item no_bitmap
9044 @item vertical_layout
9045 @item force_autohint
9046 @item crop_bitmap
9047 @item pedantic
9048 @item ignore_global_advance_width
9049 @item no_recurse
9050 @item ignore_transform
9051 @item monochrome
9052 @item linear_design
9053 @item no_autohint
9054 @end table
9055
9056 Default value is "default".
9057
9058 For more information consult the documentation for the FT_LOAD_*
9059 libfreetype flags.
9060
9061 @item shadowcolor
9062 The color to be used for drawing a shadow behind the drawn text. For the
9063 syntax of this option, check the @ref{color syntax,,"Color" section in the
9064 ffmpeg-utils manual,ffmpeg-utils}.
9065
9066 The default value of @var{shadowcolor} is "black".
9067
9068 @item shadowx
9069 @item shadowy
9070 The x and y offsets for the text shadow position with respect to the
9071 position of the text. They can be either positive or negative
9072 values. The default value for both is "0".
9073
9074 @item start_number
9075 The starting frame number for the n/frame_num variable. The default value
9076 is "0".
9077
9078 @item tabsize
9079 The size in number of spaces to use for rendering the tab.
9080 Default value is 4.
9081
9082 @item timecode
9083 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9084 format. It can be used with or without text parameter. @var{timecode_rate}
9085 option must be specified.
9086
9087 @item timecode_rate, rate, r
9088 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9089 integer. Minimum value is "1".
9090 Drop-frame timecode is supported for frame rates 30 & 60.
9091
9092 @item tc24hmax
9093 If set to 1, the output of the timecode option will wrap around at 24 hours.
9094 Default is 0 (disabled).
9095
9096 @item text
9097 The text string to be drawn. The text must be a sequence of UTF-8
9098 encoded characters.
9099 This parameter is mandatory if no file is specified with the parameter
9100 @var{textfile}.
9101
9102 @item textfile
9103 A text file containing text to be drawn. The text must be a sequence
9104 of UTF-8 encoded characters.
9105
9106 This parameter is mandatory if no text string is specified with the
9107 parameter @var{text}.
9108
9109 If both @var{text} and @var{textfile} are specified, an error is thrown.
9110
9111 @item reload
9112 If set to 1, the @var{textfile} will be reloaded before each frame.
9113 Be sure to update it atomically, or it may be read partially, or even fail.
9114
9115 @item x
9116 @item y
9117 The expressions which specify the offsets where text will be drawn
9118 within the video frame. They are relative to the top/left border of the
9119 output image.
9120
9121 The default value of @var{x} and @var{y} is "0".
9122
9123 See below for the list of accepted constants and functions.
9124 @end table
9125
9126 The parameters for @var{x} and @var{y} are expressions containing the
9127 following constants and functions:
9128
9129 @table @option
9130 @item dar
9131 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9132
9133 @item hsub
9134 @item vsub
9135 horizontal and vertical chroma subsample values. For example for the
9136 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9137
9138 @item line_h, lh
9139 the height of each text line
9140
9141 @item main_h, h, H
9142 the input height
9143
9144 @item main_w, w, W
9145 the input width
9146
9147 @item max_glyph_a, ascent
9148 the maximum distance from the baseline to the highest/upper grid
9149 coordinate used to place a glyph outline point, for all the rendered
9150 glyphs.
9151 It is a positive value, due to the grid's orientation with the Y axis
9152 upwards.
9153
9154 @item max_glyph_d, descent
9155 the maximum distance from the baseline to the lowest grid coordinate
9156 used to place a glyph outline point, for all the rendered glyphs.
9157 This is a negative value, due to the grid's orientation, with the Y axis
9158 upwards.
9159
9160 @item max_glyph_h
9161 maximum glyph height, that is the maximum height for all the glyphs
9162 contained in the rendered text, it is equivalent to @var{ascent} -
9163 @var{descent}.
9164
9165 @item max_glyph_w
9166 maximum glyph width, that is the maximum width for all the glyphs
9167 contained in the rendered text
9168
9169 @item n
9170 the number of input frame, starting from 0
9171
9172 @item rand(min, max)
9173 return a random number included between @var{min} and @var{max}
9174
9175 @item sar
9176 The input sample aspect ratio.
9177
9178 @item t
9179 timestamp expressed in seconds, NAN if the input timestamp is unknown
9180
9181 @item text_h, th
9182 the height of the rendered text
9183
9184 @item text_w, tw
9185 the width of the rendered text
9186
9187 @item x
9188 @item y
9189 the x and y offset coordinates where the text is drawn.
9190
9191 These parameters allow the @var{x} and @var{y} expressions to refer
9192 to each other, so you can for example specify @code{y=x/dar}.
9193
9194 @item pict_type
9195 A one character description of the current frame's picture type.
9196
9197 @item pkt_pos
9198 The current packet's position in the input file or stream
9199 (in bytes, from the start of the input). A value of -1 indicates
9200 this info is not available.
9201
9202 @item pkt_duration
9203 The current packet's duration, in seconds.
9204
9205 @item pkt_size
9206 The current packet's size (in bytes).
9207 @end table
9208
9209 @anchor{drawtext_expansion}
9210 @subsection Text expansion
9211
9212 If @option{expansion} is set to @code{strftime},
9213 the filter recognizes strftime() sequences in the provided text and
9214 expands them accordingly. Check the documentation of strftime(). This
9215 feature is deprecated.
9216
9217 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9218
9219 If @option{expansion} is set to @code{normal} (which is the default),
9220 the following expansion mechanism is used.
9221
9222 The backslash character @samp{\}, followed by any character, always expands to
9223 the second character.
9224
9225 Sequences of the form @code{%@{...@}} are expanded. The text between the
9226 braces is a function name, possibly followed by arguments separated by ':'.
9227 If the arguments contain special characters or delimiters (':' or '@}'),
9228 they should be escaped.
9229
9230 Note that they probably must also be escaped as the value for the
9231 @option{text} option in the filter argument string and as the filter
9232 argument in the filtergraph description, and possibly also for the shell,
9233 that makes up to four levels of escaping; using a text file avoids these
9234 problems.
9235
9236 The following functions are available:
9237
9238 @table @command
9239
9240 @item expr, e
9241 The expression evaluation result.
9242
9243 It must take one argument specifying the expression to be evaluated,
9244 which accepts the same constants and functions as the @var{x} and
9245 @var{y} values. Note that not all constants should be used, for
9246 example the text size is not known when evaluating the expression, so
9247 the constants @var{text_w} and @var{text_h} will have an undefined
9248 value.
9249
9250 @item expr_int_format, eif
9251 Evaluate the expression's value and output as formatted integer.
9252
9253 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9254 The second argument specifies the output format. Allowed values are @samp{x},
9255 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9256 @code{printf} function.
9257 The third parameter is optional and sets the number of positions taken by the output.
9258 It can be used to add padding with zeros from the left.
9259
9260 @item gmtime
9261 The time at which the filter is running, expressed in UTC.
9262 It can accept an argument: a strftime() format string.
9263
9264 @item localtime
9265 The time at which the filter is running, expressed in the local time zone.
9266 It can accept an argument: a strftime() format string.
9267
9268 @item metadata
9269 Frame metadata. Takes one or two arguments.
9270
9271 The first argument is mandatory and specifies the metadata key.
9272
9273 The second argument is optional and specifies a default value, used when the
9274 metadata key is not found or empty.
9275
9276 Available metadata can be identified by inspecting entries
9277 starting with TAG included within each frame section
9278 printed by running @code{ffprobe -show_frames}.
9279
9280 String metadata generated in filters leading to
9281 the drawtext filter are also available.
9282
9283 @item n, frame_num
9284 The frame number, starting from 0.
9285
9286 @item pict_type
9287 A one character description of the current picture type.
9288
9289 @item pts
9290 The timestamp of the current frame.
9291 It can take up to three arguments.
9292
9293 The first argument is the format of the timestamp; it defaults to @code{flt}
9294 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9295 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9296 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9297 @code{localtime} stands for the timestamp of the frame formatted as
9298 local time zone time.
9299
9300 The second argument is an offset added to the timestamp.
9301
9302 If the format is set to @code{hms}, a third argument @code{24HH} may be
9303 supplied to present the hour part of the formatted timestamp in 24h format
9304 (00-23).
9305
9306 If the format is set to @code{localtime} or @code{gmtime},
9307 a third argument may be supplied: a strftime() format string.
9308 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9309 @end table
9310
9311 @subsection Commands
9312
9313 This filter supports altering parameters via commands:
9314 @table @option
9315 @item reinit
9316 Alter existing filter parameters.
9317
9318 Syntax for the argument is the same as for filter invocation, e.g.
9319
9320 @example
9321 fontsize=56:fontcolor=green:text='Hello World'
9322 @end example
9323
9324 Full filter invocation with sendcmd would look like this:
9325
9326 @example
9327 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9328 @end example
9329 @end table
9330
9331 If the entire argument can't be parsed or applied as valid values then the filter will
9332 continue with its existing parameters.
9333
9334 @subsection Examples
9335
9336 @itemize
9337 @item
9338 Draw "Test Text" with font FreeSerif, using the default values for the
9339 optional parameters.
9340
9341 @example
9342 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9343 @end example
9344
9345 @item
9346 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9347 and y=50 (counting from the top-left corner of the screen), text is
9348 yellow with a red box around it. Both the text and the box have an
9349 opacity of 20%.
9350
9351 @example
9352 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9353           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9354 @end example
9355
9356 Note that the double quotes are not necessary if spaces are not used
9357 within the parameter list.
9358
9359 @item
9360 Show the text at the center of the video frame:
9361 @example
9362 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9363 @end example
9364
9365 @item
9366 Show the text at a random position, switching to a new position every 30 seconds:
9367 @example
9368 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=if(eq(mod(t\,30)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod(t\,30)\,0)\,rand(0\,(h-text_h))\,y)"
9369 @end example
9370
9371 @item
9372 Show a text line sliding from right to left in the last row of the video
9373 frame. The file @file{LONG_LINE} is assumed to contain a single line
9374 with no newlines.
9375 @example
9376 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9377 @end example
9378
9379 @item
9380 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9381 @example
9382 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9383 @end example
9384
9385 @item
9386 Draw a single green letter "g", at the center of the input video.
9387 The glyph baseline is placed at half screen height.
9388 @example
9389 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9390 @end example
9391
9392 @item
9393 Show text for 1 second every 3 seconds:
9394 @example
9395 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9396 @end example
9397
9398 @item
9399 Use fontconfig to set the font. Note that the colons need to be escaped.
9400 @example
9401 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
9402 @end example
9403
9404 @item
9405 Print the date of a real-time encoding (see strftime(3)):
9406 @example
9407 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
9408 @end example
9409
9410 @item
9411 Show text fading in and out (appearing/disappearing):
9412 @example
9413 #!/bin/sh
9414 DS=1.0 # display start
9415 DE=10.0 # display end
9416 FID=1.5 # fade in duration
9417 FOD=5 # fade out duration
9418 ffplay -f lavfi "color,drawtext=text=TEST:fontsize=50:fontfile=FreeSerif.ttf:fontcolor_expr=ff0000%@{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 @}"
9419 @end example
9420
9421 @item
9422 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
9423 and the @option{fontsize} value are included in the @option{y} offset.
9424 @example
9425 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
9426 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
9427 @end example
9428
9429 @end itemize
9430
9431 For more information about libfreetype, check:
9432 @url{http://www.freetype.org/}.
9433
9434 For more information about fontconfig, check:
9435 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
9436
9437 For more information about libfribidi, check:
9438 @url{http://fribidi.org/}.
9439
9440 @section edgedetect
9441
9442 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
9443
9444 The filter accepts the following options:
9445
9446 @table @option
9447 @item low
9448 @item high
9449 Set low and high threshold values used by the Canny thresholding
9450 algorithm.
9451
9452 The high threshold selects the "strong" edge pixels, which are then
9453 connected through 8-connectivity with the "weak" edge pixels selected
9454 by the low threshold.
9455
9456 @var{low} and @var{high} threshold values must be chosen in the range
9457 [0,1], and @var{low} should be lesser or equal to @var{high}.
9458
9459 Default value for @var{low} is @code{20/255}, and default value for @var{high}
9460 is @code{50/255}.
9461
9462 @item mode
9463 Define the drawing mode.
9464
9465 @table @samp
9466 @item wires
9467 Draw white/gray wires on black background.
9468
9469 @item colormix
9470 Mix the colors to create a paint/cartoon effect.
9471
9472 @item canny
9473 Apply Canny edge detector on all selected planes.
9474 @end table
9475 Default value is @var{wires}.
9476
9477 @item planes
9478 Select planes for filtering. By default all available planes are filtered.
9479 @end table
9480
9481 @subsection Examples
9482
9483 @itemize
9484 @item
9485 Standard edge detection with custom values for the hysteresis thresholding:
9486 @example
9487 edgedetect=low=0.1:high=0.4
9488 @end example
9489
9490 @item
9491 Painting effect without thresholding:
9492 @example
9493 edgedetect=mode=colormix:high=0
9494 @end example
9495 @end itemize
9496
9497 @section elbg
9498
9499 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9500
9501 For each input image, the filter will compute the optimal mapping from
9502 the input to the output given the codebook length, that is the number
9503 of distinct output colors.
9504
9505 This filter accepts the following options.
9506
9507 @table @option
9508 @item codebook_length, l
9509 Set codebook length. The value must be a positive integer, and
9510 represents the number of distinct output colors. Default value is 256.
9511
9512 @item nb_steps, n
9513 Set the maximum number of iterations to apply for computing the optimal
9514 mapping. The higher the value the better the result and the higher the
9515 computation time. Default value is 1.
9516
9517 @item seed, s
9518 Set a random seed, must be an integer included between 0 and
9519 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9520 will try to use a good random seed on a best effort basis.
9521
9522 @item pal8
9523 Set pal8 output pixel format. This option does not work with codebook
9524 length greater than 256.
9525 @end table
9526
9527 @section entropy
9528
9529 Measure graylevel entropy in histogram of color channels of video frames.
9530
9531 It accepts the following parameters:
9532
9533 @table @option
9534 @item mode
9535 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9536
9537 @var{diff} mode measures entropy of histogram delta values, absolute differences
9538 between neighbour histogram values.
9539 @end table
9540
9541 @section eq
9542 Set brightness, contrast, saturation and approximate gamma adjustment.
9543
9544 The filter accepts the following options:
9545
9546 @table @option
9547 @item contrast
9548 Set the contrast expression. The value must be a float value in range
9549 @code{-1000.0} to @code{1000.0}. The default value is "1".
9550
9551 @item brightness
9552 Set the brightness expression. The value must be a float value in
9553 range @code{-1.0} to @code{1.0}. The default value is "0".
9554
9555 @item saturation
9556 Set the saturation expression. The value must be a float in
9557 range @code{0.0} to @code{3.0}. The default value is "1".
9558
9559 @item gamma
9560 Set the gamma expression. The value must be a float in range
9561 @code{0.1} to @code{10.0}.  The default value is "1".
9562
9563 @item gamma_r
9564 Set the gamma expression for red. The value must be a float in
9565 range @code{0.1} to @code{10.0}. The default value is "1".
9566
9567 @item gamma_g
9568 Set the gamma expression for green. The value must be a float in range
9569 @code{0.1} to @code{10.0}. The default value is "1".
9570
9571 @item gamma_b
9572 Set the gamma expression for blue. The value must be a float in range
9573 @code{0.1} to @code{10.0}. The default value is "1".
9574
9575 @item gamma_weight
9576 Set the gamma weight expression. It can be used to reduce the effect
9577 of a high gamma value on bright image areas, e.g. keep them from
9578 getting overamplified and just plain white. The value must be a float
9579 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
9580 gamma correction all the way down while @code{1.0} leaves it at its
9581 full strength. Default is "1".
9582
9583 @item eval
9584 Set when the expressions for brightness, contrast, saturation and
9585 gamma expressions are evaluated.
9586
9587 It accepts the following values:
9588 @table @samp
9589 @item init
9590 only evaluate expressions once during the filter initialization or
9591 when a command is processed
9592
9593 @item frame
9594 evaluate expressions for each incoming frame
9595 @end table
9596
9597 Default value is @samp{init}.
9598 @end table
9599
9600 The expressions accept the following parameters:
9601 @table @option
9602 @item n
9603 frame count of the input frame starting from 0
9604
9605 @item pos
9606 byte position of the corresponding packet in the input file, NAN if
9607 unspecified
9608
9609 @item r
9610 frame rate of the input video, NAN if the input frame rate is unknown
9611
9612 @item t
9613 timestamp expressed in seconds, NAN if the input timestamp is unknown
9614 @end table
9615
9616 @subsection Commands
9617 The filter supports the following commands:
9618
9619 @table @option
9620 @item contrast
9621 Set the contrast expression.
9622
9623 @item brightness
9624 Set the brightness expression.
9625
9626 @item saturation
9627 Set the saturation expression.
9628
9629 @item gamma
9630 Set the gamma expression.
9631
9632 @item gamma_r
9633 Set the gamma_r expression.
9634
9635 @item gamma_g
9636 Set gamma_g expression.
9637
9638 @item gamma_b
9639 Set gamma_b expression.
9640
9641 @item gamma_weight
9642 Set gamma_weight expression.
9643
9644 The command accepts the same syntax of the corresponding option.
9645
9646 If the specified expression is not valid, it is kept at its current
9647 value.
9648
9649 @end table
9650
9651 @section erosion
9652
9653 Apply erosion effect to the video.
9654
9655 This filter replaces the pixel by the local(3x3) minimum.
9656
9657 It accepts the following options:
9658
9659 @table @option
9660 @item threshold0
9661 @item threshold1
9662 @item threshold2
9663 @item threshold3
9664 Limit the maximum change for each plane, default is 65535.
9665 If 0, plane will remain unchanged.
9666
9667 @item coordinates
9668 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9669 pixels are used.
9670
9671 Flags to local 3x3 coordinates maps like this:
9672
9673     1 2 3
9674     4   5
9675     6 7 8
9676 @end table
9677
9678 @section extractplanes
9679
9680 Extract color channel components from input video stream into
9681 separate grayscale video streams.
9682
9683 The filter accepts the following option:
9684
9685 @table @option
9686 @item planes
9687 Set plane(s) to extract.
9688
9689 Available values for planes are:
9690 @table @samp
9691 @item y
9692 @item u
9693 @item v
9694 @item a
9695 @item r
9696 @item g
9697 @item b
9698 @end table
9699
9700 Choosing planes not available in the input will result in an error.
9701 That means you cannot select @code{r}, @code{g}, @code{b} planes
9702 with @code{y}, @code{u}, @code{v} planes at same time.
9703 @end table
9704
9705 @subsection Examples
9706
9707 @itemize
9708 @item
9709 Extract luma, u and v color channel component from input video frame
9710 into 3 grayscale outputs:
9711 @example
9712 ffmpeg -i video.avi -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi
9713 @end example
9714 @end itemize
9715
9716 @section fade
9717
9718 Apply a fade-in/out effect to the input video.
9719
9720 It accepts the following parameters:
9721
9722 @table @option
9723 @item type, t
9724 The effect type can be either "in" for a fade-in, or "out" for a fade-out
9725 effect.
9726 Default is @code{in}.
9727
9728 @item start_frame, s
9729 Specify the number of the frame to start applying the fade
9730 effect at. Default is 0.
9731
9732 @item nb_frames, n
9733 The number of frames that the fade effect lasts. At the end of the
9734 fade-in effect, the output video will have the same intensity as the input video.
9735 At the end of the fade-out transition, the output video will be filled with the
9736 selected @option{color}.
9737 Default is 25.
9738
9739 @item alpha
9740 If set to 1, fade only alpha channel, if one exists on the input.
9741 Default value is 0.
9742
9743 @item start_time, st
9744 Specify the timestamp (in seconds) of the frame to start to apply the fade
9745 effect. If both start_frame and start_time are specified, the fade will start at
9746 whichever comes last.  Default is 0.
9747
9748 @item duration, d
9749 The number of seconds for which the fade effect has to last. At the end of the
9750 fade-in effect the output video will have the same intensity as the input video,
9751 at the end of the fade-out transition the output video will be filled with the
9752 selected @option{color}.
9753 If both duration and nb_frames are specified, duration is used. Default is 0
9754 (nb_frames is used by default).
9755
9756 @item color, c
9757 Specify the color of the fade. Default is "black".
9758 @end table
9759
9760 @subsection Examples
9761
9762 @itemize
9763 @item
9764 Fade in the first 30 frames of video:
9765 @example
9766 fade=in:0:30
9767 @end example
9768
9769 The command above is equivalent to:
9770 @example
9771 fade=t=in:s=0:n=30
9772 @end example
9773
9774 @item
9775 Fade out the last 45 frames of a 200-frame video:
9776 @example
9777 fade=out:155:45
9778 fade=type=out:start_frame=155:nb_frames=45
9779 @end example
9780
9781 @item
9782 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
9783 @example
9784 fade=in:0:25, fade=out:975:25
9785 @end example
9786
9787 @item
9788 Make the first 5 frames yellow, then fade in from frame 5-24:
9789 @example
9790 fade=in:5:20:color=yellow
9791 @end example
9792
9793 @item
9794 Fade in alpha over first 25 frames of video:
9795 @example
9796 fade=in:0:25:alpha=1
9797 @end example
9798
9799 @item
9800 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
9801 @example
9802 fade=t=in:st=5.5:d=0.5
9803 @end example
9804
9805 @end itemize
9806
9807 @section fftdnoiz
9808 Denoise frames using 3D FFT (frequency domain filtering).
9809
9810 The filter accepts the following options:
9811
9812 @table @option
9813 @item sigma
9814 Set the noise sigma constant. This sets denoising strength.
9815 Default value is 1. Allowed range is from 0 to 30.
9816 Using very high sigma with low overlap may give blocking artifacts.
9817
9818 @item amount
9819 Set amount of denoising. By default all detected noise is reduced.
9820 Default value is 1. Allowed range is from 0 to 1.
9821
9822 @item block
9823 Set size of block, Default is 4, can be 3, 4, 5 or 6.
9824 Actual size of block in pixels is 2 to power of @var{block}, so by default
9825 block size in pixels is 2^4 which is 16.
9826
9827 @item overlap
9828 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
9829
9830 @item prev
9831 Set number of previous frames to use for denoising. By default is set to 0.
9832
9833 @item next
9834 Set number of next frames to to use for denoising. By default is set to 0.
9835
9836 @item planes
9837 Set planes which will be filtered, by default are all available filtered
9838 except alpha.
9839 @end table
9840
9841 @section fftfilt
9842 Apply arbitrary expressions to samples in frequency domain
9843
9844 @table @option
9845 @item dc_Y
9846 Adjust the dc value (gain) of the luma plane of the image. The filter
9847 accepts an integer value in range @code{0} to @code{1000}. The default
9848 value is set to @code{0}.
9849
9850 @item dc_U
9851 Adjust the dc value (gain) of the 1st chroma plane of the image. The
9852 filter accepts an integer value in range @code{0} to @code{1000}. The
9853 default value is set to @code{0}.
9854
9855 @item dc_V
9856 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
9857 filter accepts an integer value in range @code{0} to @code{1000}. The
9858 default value is set to @code{0}.
9859
9860 @item weight_Y
9861 Set the frequency domain weight expression for the luma plane.
9862
9863 @item weight_U
9864 Set the frequency domain weight expression for the 1st chroma plane.
9865
9866 @item weight_V
9867 Set the frequency domain weight expression for the 2nd chroma plane.
9868
9869 @item eval
9870 Set when the expressions are evaluated.
9871
9872 It accepts the following values:
9873 @table @samp
9874 @item init
9875 Only evaluate expressions once during the filter initialization.
9876
9877 @item frame
9878 Evaluate expressions for each incoming frame.
9879 @end table
9880
9881 Default value is @samp{init}.
9882
9883 The filter accepts the following variables:
9884 @item X
9885 @item Y
9886 The coordinates of the current sample.
9887
9888 @item W
9889 @item H
9890 The width and height of the image.
9891
9892 @item N
9893 The number of input frame, starting from 0.
9894 @end table
9895
9896 @subsection Examples
9897
9898 @itemize
9899 @item
9900 High-pass:
9901 @example
9902 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
9903 @end example
9904
9905 @item
9906 Low-pass:
9907 @example
9908 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
9909 @end example
9910
9911 @item
9912 Sharpen:
9913 @example
9914 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
9915 @end example
9916
9917 @item
9918 Blur:
9919 @example
9920 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
9921 @end example
9922
9923 @end itemize
9924
9925 @section field
9926
9927 Extract a single field from an interlaced image using stride
9928 arithmetic to avoid wasting CPU time. The output frames are marked as
9929 non-interlaced.
9930
9931 The filter accepts the following options:
9932
9933 @table @option
9934 @item type
9935 Specify whether to extract the top (if the value is @code{0} or
9936 @code{top}) or the bottom field (if the value is @code{1} or
9937 @code{bottom}).
9938 @end table
9939
9940 @section fieldhint
9941
9942 Create new frames by copying the top and bottom fields from surrounding frames
9943 supplied as numbers by the hint file.
9944
9945 @table @option
9946 @item hint
9947 Set file containing hints: absolute/relative frame numbers.
9948
9949 There must be one line for each frame in a clip. Each line must contain two
9950 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
9951 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
9952 is current frame number for @code{absolute} mode or out of [-1, 1] range
9953 for @code{relative} mode. First number tells from which frame to pick up top
9954 field and second number tells from which frame to pick up bottom field.
9955
9956 If optionally followed by @code{+} output frame will be marked as interlaced,
9957 else if followed by @code{-} output frame will be marked as progressive, else
9958 it will be marked same as input frame.
9959 If line starts with @code{#} or @code{;} that line is skipped.
9960
9961 @item mode
9962 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
9963 @end table
9964
9965 Example of first several lines of @code{hint} file for @code{relative} mode:
9966 @example
9967 0,0 - # first frame
9968 1,0 - # second frame, use third's frame top field and second's frame bottom field
9969 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
9970 1,0 -
9971 0,0 -
9972 0,0 -
9973 1,0 -
9974 1,0 -
9975 1,0 -
9976 0,0 -
9977 0,0 -
9978 1,0 -
9979 1,0 -
9980 1,0 -
9981 0,0 -
9982 @end example
9983
9984 @section fieldmatch
9985
9986 Field matching filter for inverse telecine. It is meant to reconstruct the
9987 progressive frames from a telecined stream. The filter does not drop duplicated
9988 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
9989 followed by a decimation filter such as @ref{decimate} in the filtergraph.
9990
9991 The separation of the field matching and the decimation is notably motivated by
9992 the possibility of inserting a de-interlacing filter fallback between the two.
9993 If the source has mixed telecined and real interlaced content,
9994 @code{fieldmatch} will not be able to match fields for the interlaced parts.
9995 But these remaining combed frames will be marked as interlaced, and thus can be
9996 de-interlaced by a later filter such as @ref{yadif} before decimation.
9997
9998 In addition to the various configuration options, @code{fieldmatch} can take an
9999 optional second stream, activated through the @option{ppsrc} option. If
10000 enabled, the frames reconstruction will be based on the fields and frames from
10001 this second stream. This allows the first input to be pre-processed in order to
10002 help the various algorithms of the filter, while keeping the output lossless
10003 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10004 or brightness/contrast adjustments can help.
10005
10006 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10007 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10008 which @code{fieldmatch} is based on. While the semantic and usage are very
10009 close, some behaviour and options names can differ.
10010
10011 The @ref{decimate} filter currently only works for constant frame rate input.
10012 If your input has mixed telecined (30fps) and progressive content with a lower
10013 framerate like 24fps use the following filterchain to produce the necessary cfr
10014 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10015
10016 The filter accepts the following options:
10017
10018 @table @option
10019 @item order
10020 Specify the assumed field order of the input stream. Available values are:
10021
10022 @table @samp
10023 @item auto
10024 Auto detect parity (use FFmpeg's internal parity value).
10025 @item bff
10026 Assume bottom field first.
10027 @item tff
10028 Assume top field first.
10029 @end table
10030
10031 Note that it is sometimes recommended not to trust the parity announced by the
10032 stream.
10033
10034 Default value is @var{auto}.
10035
10036 @item mode
10037 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10038 sense that it won't risk creating jerkiness due to duplicate frames when
10039 possible, but if there are bad edits or blended fields it will end up
10040 outputting combed frames when a good match might actually exist. On the other
10041 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10042 but will almost always find a good frame if there is one. The other values are
10043 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10044 jerkiness and creating duplicate frames versus finding good matches in sections
10045 with bad edits, orphaned fields, blended fields, etc.
10046
10047 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10048
10049 Available values are:
10050
10051 @table @samp
10052 @item pc
10053 2-way matching (p/c)
10054 @item pc_n
10055 2-way matching, and trying 3rd match if still combed (p/c + n)
10056 @item pc_u
10057 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10058 @item pc_n_ub
10059 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10060 still combed (p/c + n + u/b)
10061 @item pcn
10062 3-way matching (p/c/n)
10063 @item pcn_ub
10064 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10065 detected as combed (p/c/n + u/b)
10066 @end table
10067
10068 The parenthesis at the end indicate the matches that would be used for that
10069 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10070 @var{top}).
10071
10072 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10073 the slowest.
10074
10075 Default value is @var{pc_n}.
10076
10077 @item ppsrc
10078 Mark the main input stream as a pre-processed input, and enable the secondary
10079 input stream as the clean source to pick the fields from. See the filter
10080 introduction for more details. It is similar to the @option{clip2} feature from
10081 VFM/TFM.
10082
10083 Default value is @code{0} (disabled).
10084
10085 @item field
10086 Set the field to match from. It is recommended to set this to the same value as
10087 @option{order} unless you experience matching failures with that setting. In
10088 certain circumstances changing the field that is used to match from can have a
10089 large impact on matching performance. Available values are:
10090
10091 @table @samp
10092 @item auto
10093 Automatic (same value as @option{order}).
10094 @item bottom
10095 Match from the bottom field.
10096 @item top
10097 Match from the top field.
10098 @end table
10099
10100 Default value is @var{auto}.
10101
10102 @item mchroma
10103 Set whether or not chroma is included during the match comparisons. In most
10104 cases it is recommended to leave this enabled. You should set this to @code{0}
10105 only if your clip has bad chroma problems such as heavy rainbowing or other
10106 artifacts. Setting this to @code{0} could also be used to speed things up at
10107 the cost of some accuracy.
10108
10109 Default value is @code{1}.
10110
10111 @item y0
10112 @item y1
10113 These define an exclusion band which excludes the lines between @option{y0} and
10114 @option{y1} from being included in the field matching decision. An exclusion
10115 band can be used to ignore subtitles, a logo, or other things that may
10116 interfere with the matching. @option{y0} sets the starting scan line and
10117 @option{y1} sets the ending line; all lines in between @option{y0} and
10118 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10119 @option{y0} and @option{y1} to the same value will disable the feature.
10120 @option{y0} and @option{y1} defaults to @code{0}.
10121
10122 @item scthresh
10123 Set the scene change detection threshold as a percentage of maximum change on
10124 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10125 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10126 @option{scthresh} is @code{[0.0, 100.0]}.
10127
10128 Default value is @code{12.0}.
10129
10130 @item combmatch
10131 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10132 account the combed scores of matches when deciding what match to use as the
10133 final match. Available values are:
10134
10135 @table @samp
10136 @item none
10137 No final matching based on combed scores.
10138 @item sc
10139 Combed scores are only used when a scene change is detected.
10140 @item full
10141 Use combed scores all the time.
10142 @end table
10143
10144 Default is @var{sc}.
10145
10146 @item combdbg
10147 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10148 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10149 Available values are:
10150
10151 @table @samp
10152 @item none
10153 No forced calculation.
10154 @item pcn
10155 Force p/c/n calculations.
10156 @item pcnub
10157 Force p/c/n/u/b calculations.
10158 @end table
10159
10160 Default value is @var{none}.
10161
10162 @item cthresh
10163 This is the area combing threshold used for combed frame detection. This
10164 essentially controls how "strong" or "visible" combing must be to be detected.
10165 Larger values mean combing must be more visible and smaller values mean combing
10166 can be less visible or strong and still be detected. Valid settings are from
10167 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10168 be detected as combed). This is basically a pixel difference value. A good
10169 range is @code{[8, 12]}.
10170
10171 Default value is @code{9}.
10172
10173 @item chroma
10174 Sets whether or not chroma is considered in the combed frame decision.  Only
10175 disable this if your source has chroma problems (rainbowing, etc.) that are
10176 causing problems for the combed frame detection with chroma enabled. Actually,
10177 using @option{chroma}=@var{0} is usually more reliable, except for the case
10178 where there is chroma only combing in the source.
10179
10180 Default value is @code{0}.
10181
10182 @item blockx
10183 @item blocky
10184 Respectively set the x-axis and y-axis size of the window used during combed
10185 frame detection. This has to do with the size of the area in which
10186 @option{combpel} pixels are required to be detected as combed for a frame to be
10187 declared combed. See the @option{combpel} parameter description for more info.
10188 Possible values are any number that is a power of 2 starting at 4 and going up
10189 to 512.
10190
10191 Default value is @code{16}.
10192
10193 @item combpel
10194 The number of combed pixels inside any of the @option{blocky} by
10195 @option{blockx} size blocks on the frame for the frame to be detected as
10196 combed. While @option{cthresh} controls how "visible" the combing must be, this
10197 setting controls "how much" combing there must be in any localized area (a
10198 window defined by the @option{blockx} and @option{blocky} settings) on the
10199 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10200 which point no frames will ever be detected as combed). This setting is known
10201 as @option{MI} in TFM/VFM vocabulary.
10202
10203 Default value is @code{80}.
10204 @end table
10205
10206 @anchor{p/c/n/u/b meaning}
10207 @subsection p/c/n/u/b meaning
10208
10209 @subsubsection p/c/n
10210
10211 We assume the following telecined stream:
10212
10213 @example
10214 Top fields:     1 2 2 3 4
10215 Bottom fields:  1 2 3 4 4
10216 @end example
10217
10218 The numbers correspond to the progressive frame the fields relate to. Here, the
10219 first two frames are progressive, the 3rd and 4th are combed, and so on.
10220
10221 When @code{fieldmatch} is configured to run a matching from bottom
10222 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10223
10224 @example
10225 Input stream:
10226                 T     1 2 2 3 4
10227                 B     1 2 3 4 4   <-- matching reference
10228
10229 Matches:              c c n n c
10230
10231 Output stream:
10232                 T     1 2 3 4 4
10233                 B     1 2 3 4 4
10234 @end example
10235
10236 As a result of the field matching, we can see that some frames get duplicated.
10237 To perform a complete inverse telecine, you need to rely on a decimation filter
10238 after this operation. See for instance the @ref{decimate} filter.
10239
10240 The same operation now matching from top fields (@option{field}=@var{top})
10241 looks like this:
10242
10243 @example
10244 Input stream:
10245                 T     1 2 2 3 4   <-- matching reference
10246                 B     1 2 3 4 4
10247
10248 Matches:              c c p p c
10249
10250 Output stream:
10251                 T     1 2 2 3 4
10252                 B     1 2 2 3 4
10253 @end example
10254
10255 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10256 basically, they refer to the frame and field of the opposite parity:
10257
10258 @itemize
10259 @item @var{p} matches the field of the opposite parity in the previous frame
10260 @item @var{c} matches the field of the opposite parity in the current frame
10261 @item @var{n} matches the field of the opposite parity in the next frame
10262 @end itemize
10263
10264 @subsubsection u/b
10265
10266 The @var{u} and @var{b} matching are a bit special in the sense that they match
10267 from the opposite parity flag. In the following examples, we assume that we are
10268 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10269 'x' is placed above and below each matched fields.
10270
10271 With bottom matching (@option{field}=@var{bottom}):
10272 @example
10273 Match:           c         p           n          b          u
10274
10275                  x       x               x        x          x
10276   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10277   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10278                  x         x           x        x              x
10279
10280 Output frames:
10281                  2          1          2          2          2
10282                  2          2          2          1          3
10283 @end example
10284
10285 With top matching (@option{field}=@var{top}):
10286 @example
10287 Match:           c         p           n          b          u
10288
10289                  x         x           x        x              x
10290   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10291   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10292                  x       x               x        x          x
10293
10294 Output frames:
10295                  2          2          2          1          2
10296                  2          1          3          2          2
10297 @end example
10298
10299 @subsection Examples
10300
10301 Simple IVTC of a top field first telecined stream:
10302 @example
10303 fieldmatch=order=tff:combmatch=none, decimate
10304 @end example
10305
10306 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10307 @example
10308 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10309 @end example
10310
10311 @section fieldorder
10312
10313 Transform the field order of the input video.
10314
10315 It accepts the following parameters:
10316
10317 @table @option
10318
10319 @item order
10320 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10321 for bottom field first.
10322 @end table
10323
10324 The default value is @samp{tff}.
10325
10326 The transformation is done by shifting the picture content up or down
10327 by one line, and filling the remaining line with appropriate picture content.
10328 This method is consistent with most broadcast field order converters.
10329
10330 If the input video is not flagged as being interlaced, or it is already
10331 flagged as being of the required output field order, then this filter does
10332 not alter the incoming video.
10333
10334 It is very useful when converting to or from PAL DV material,
10335 which is bottom field first.
10336
10337 For example:
10338 @example
10339 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10340 @end example
10341
10342 @section fifo, afifo
10343
10344 Buffer input images and send them when they are requested.
10345
10346 It is mainly useful when auto-inserted by the libavfilter
10347 framework.
10348
10349 It does not take parameters.
10350
10351 @section fillborders
10352
10353 Fill borders of the input video, without changing video stream dimensions.
10354 Sometimes video can have garbage at the four edges and you may not want to
10355 crop video input to keep size multiple of some number.
10356
10357 This filter accepts the following options:
10358
10359 @table @option
10360 @item left
10361 Number of pixels to fill from left border.
10362
10363 @item right
10364 Number of pixels to fill from right border.
10365
10366 @item top
10367 Number of pixels to fill from top border.
10368
10369 @item bottom
10370 Number of pixels to fill from bottom border.
10371
10372 @item mode
10373 Set fill mode.
10374
10375 It accepts the following values:
10376 @table @samp
10377 @item smear
10378 fill pixels using outermost pixels
10379
10380 @item mirror
10381 fill pixels using mirroring
10382
10383 @item fixed
10384 fill pixels with constant value
10385 @end table
10386
10387 Default is @var{smear}.
10388
10389 @item color
10390 Set color for pixels in fixed mode. Default is @var{black}.
10391 @end table
10392
10393 @section find_rect
10394
10395 Find a rectangular object
10396
10397 It accepts the following options:
10398
10399 @table @option
10400 @item object
10401 Filepath of the object image, needs to be in gray8.
10402
10403 @item threshold
10404 Detection threshold, default is 0.5.
10405
10406 @item mipmaps
10407 Number of mipmaps, default is 3.
10408
10409 @item xmin, ymin, xmax, ymax
10410 Specifies the rectangle in which to search.
10411 @end table
10412
10413 @subsection Examples
10414
10415 @itemize
10416 @item
10417 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10418 @example
10419 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10420 @end example
10421 @end itemize
10422
10423 @section floodfill
10424
10425 Flood area with values of same pixel components with another values.
10426
10427 It accepts the following options:
10428 @table @option
10429 @item x
10430 Set pixel x coordinate.
10431
10432 @item y
10433 Set pixel y coordinate.
10434
10435 @item s0
10436 Set source #0 component value.
10437
10438 @item s1
10439 Set source #1 component value.
10440
10441 @item s2
10442 Set source #2 component value.
10443
10444 @item s3
10445 Set source #3 component value.
10446
10447 @item d0
10448 Set destination #0 component value.
10449
10450 @item d1
10451 Set destination #1 component value.
10452
10453 @item d2
10454 Set destination #2 component value.
10455
10456 @item d3
10457 Set destination #3 component value.
10458 @end table
10459
10460 @anchor{format}
10461 @section format
10462
10463 Convert the input video to one of the specified pixel formats.
10464 Libavfilter will try to pick one that is suitable as input to
10465 the next filter.
10466
10467 It accepts the following parameters:
10468 @table @option
10469
10470 @item pix_fmts
10471 A '|'-separated list of pixel format names, such as
10472 "pix_fmts=yuv420p|monow|rgb24".
10473
10474 @end table
10475
10476 @subsection Examples
10477
10478 @itemize
10479 @item
10480 Convert the input video to the @var{yuv420p} format
10481 @example
10482 format=pix_fmts=yuv420p
10483 @end example
10484
10485 Convert the input video to any of the formats in the list
10486 @example
10487 format=pix_fmts=yuv420p|yuv444p|yuv410p
10488 @end example
10489 @end itemize
10490
10491 @anchor{fps}
10492 @section fps
10493
10494 Convert the video to specified constant frame rate by duplicating or dropping
10495 frames as necessary.
10496
10497 It accepts the following parameters:
10498 @table @option
10499
10500 @item fps
10501 The desired output frame rate. The default is @code{25}.
10502
10503 @item start_time
10504 Assume the first PTS should be the given value, in seconds. This allows for
10505 padding/trimming at the start of stream. By default, no assumption is made
10506 about the first frame's expected PTS, so no padding or trimming is done.
10507 For example, this could be set to 0 to pad the beginning with duplicates of
10508 the first frame if a video stream starts after the audio stream or to trim any
10509 frames with a negative PTS.
10510
10511 @item round
10512 Timestamp (PTS) rounding method.
10513
10514 Possible values are:
10515 @table @option
10516 @item zero
10517 round towards 0
10518 @item inf
10519 round away from 0
10520 @item down
10521 round towards -infinity
10522 @item up
10523 round towards +infinity
10524 @item near
10525 round to nearest
10526 @end table
10527 The default is @code{near}.
10528
10529 @item eof_action
10530 Action performed when reading the last frame.
10531
10532 Possible values are:
10533 @table @option
10534 @item round
10535 Use same timestamp rounding method as used for other frames.
10536 @item pass
10537 Pass through last frame if input duration has not been reached yet.
10538 @end table
10539 The default is @code{round}.
10540
10541 @end table
10542
10543 Alternatively, the options can be specified as a flat string:
10544 @var{fps}[:@var{start_time}[:@var{round}]].
10545
10546 See also the @ref{setpts} filter.
10547
10548 @subsection Examples
10549
10550 @itemize
10551 @item
10552 A typical usage in order to set the fps to 25:
10553 @example
10554 fps=fps=25
10555 @end example
10556
10557 @item
10558 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
10559 @example
10560 fps=fps=film:round=near
10561 @end example
10562 @end itemize
10563
10564 @section framepack
10565
10566 Pack two different video streams into a stereoscopic video, setting proper
10567 metadata on supported codecs. The two views should have the same size and
10568 framerate and processing will stop when the shorter video ends. Please note
10569 that you may conveniently adjust view properties with the @ref{scale} and
10570 @ref{fps} filters.
10571
10572 It accepts the following parameters:
10573 @table @option
10574
10575 @item format
10576 The desired packing format. Supported values are:
10577
10578 @table @option
10579
10580 @item sbs
10581 The views are next to each other (default).
10582
10583 @item tab
10584 The views are on top of each other.
10585
10586 @item lines
10587 The views are packed by line.
10588
10589 @item columns
10590 The views are packed by column.
10591
10592 @item frameseq
10593 The views are temporally interleaved.
10594
10595 @end table
10596
10597 @end table
10598
10599 Some examples:
10600
10601 @example
10602 # Convert left and right views into a frame-sequential video
10603 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
10604
10605 # Convert views into a side-by-side video with the same output resolution as the input
10606 ffmpeg -i LEFT -i RIGHT -filter_complex [0:v]scale=w=iw/2[left],[1:v]scale=w=iw/2[right],[left][right]framepack=sbs OUTPUT
10607 @end example
10608
10609 @section framerate
10610
10611 Change the frame rate by interpolating new video output frames from the source
10612 frames.
10613
10614 This filter is not designed to function correctly with interlaced media. If
10615 you wish to change the frame rate of interlaced media then you are required
10616 to deinterlace before this filter and re-interlace after this filter.
10617
10618 A description of the accepted options follows.
10619
10620 @table @option
10621 @item fps
10622 Specify the output frames per second. This option can also be specified
10623 as a value alone. The default is @code{50}.
10624
10625 @item interp_start
10626 Specify the start of a range where the output frame will be created as a
10627 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10628 the default is @code{15}.
10629
10630 @item interp_end
10631 Specify the end of a range where the output frame will be created as a
10632 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10633 the default is @code{240}.
10634
10635 @item scene
10636 Specify the level at which a scene change is detected as a value between
10637 0 and 100 to indicate a new scene; a low value reflects a low
10638 probability for the current frame to introduce a new scene, while a higher
10639 value means the current frame is more likely to be one.
10640 The default is @code{8.2}.
10641
10642 @item flags
10643 Specify flags influencing the filter process.
10644
10645 Available value for @var{flags} is:
10646
10647 @table @option
10648 @item scene_change_detect, scd
10649 Enable scene change detection using the value of the option @var{scene}.
10650 This flag is enabled by default.
10651 @end table
10652 @end table
10653
10654 @section framestep
10655
10656 Select one frame every N-th frame.
10657
10658 This filter accepts the following option:
10659 @table @option
10660 @item step
10661 Select frame after every @code{step} frames.
10662 Allowed values are positive integers higher than 0. Default value is @code{1}.
10663 @end table
10664
10665 @section freezedetect
10666
10667 Detect frozen video.
10668
10669 This filter logs a message and sets frame metadata when it detects that the
10670 input video has no significant change in content during a specified duration.
10671 Video freeze detection calculates the mean average absolute difference of all
10672 the components of video frames and compares it to a noise floor.
10673
10674 The printed times and duration are expressed in seconds. The
10675 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
10676 whose timestamp equals or exceeds the detection duration and it contains the
10677 timestamp of the first frame of the freeze. The
10678 @code{lavfi.freezedetect.freeze_duration} and
10679 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
10680 after the freeze.
10681
10682 The filter accepts the following options:
10683
10684 @table @option
10685 @item noise, n
10686 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
10687 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
10688 0.001.
10689
10690 @item duration, d
10691 Set freeze duration until notification (default is 2 seconds).
10692 @end table
10693
10694 @anchor{frei0r}
10695 @section frei0r
10696
10697 Apply a frei0r effect to the input video.
10698
10699 To enable the compilation of this filter, you need to install the frei0r
10700 header and configure FFmpeg with @code{--enable-frei0r}.
10701
10702 It accepts the following parameters:
10703
10704 @table @option
10705
10706 @item filter_name
10707 The name of the frei0r effect to load. If the environment variable
10708 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
10709 directories specified by the colon-separated list in @env{FREI0R_PATH}.
10710 Otherwise, the standard frei0r paths are searched, in this order:
10711 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
10712 @file{/usr/lib/frei0r-1/}.
10713
10714 @item filter_params
10715 A '|'-separated list of parameters to pass to the frei0r effect.
10716
10717 @end table
10718
10719 A frei0r effect parameter can be a boolean (its value is either
10720 "y" or "n"), a double, a color (specified as
10721 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
10722 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
10723 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
10724 a position (specified as @var{X}/@var{Y}, where
10725 @var{X} and @var{Y} are floating point numbers) and/or a string.
10726
10727 The number and types of parameters depend on the loaded effect. If an
10728 effect parameter is not specified, the default value is set.
10729
10730 @subsection Examples
10731
10732 @itemize
10733 @item
10734 Apply the distort0r effect, setting the first two double parameters:
10735 @example
10736 frei0r=filter_name=distort0r:filter_params=0.5|0.01
10737 @end example
10738
10739 @item
10740 Apply the colordistance effect, taking a color as the first parameter:
10741 @example
10742 frei0r=colordistance:0.2/0.3/0.4
10743 frei0r=colordistance:violet
10744 frei0r=colordistance:0x112233
10745 @end example
10746
10747 @item
10748 Apply the perspective effect, specifying the top left and top right image
10749 positions:
10750 @example
10751 frei0r=perspective:0.2/0.2|0.8/0.2
10752 @end example
10753 @end itemize
10754
10755 For more information, see
10756 @url{http://frei0r.dyne.org}
10757
10758 @section fspp
10759
10760 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
10761
10762 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
10763 processing filter, one of them is performed once per block, not per pixel.
10764 This allows for much higher speed.
10765
10766 The filter accepts the following options:
10767
10768 @table @option
10769 @item quality
10770 Set quality. This option defines the number of levels for averaging. It accepts
10771 an integer in the range 4-5. Default value is @code{4}.
10772
10773 @item qp
10774 Force a constant quantization parameter. It accepts an integer in range 0-63.
10775 If not set, the filter will use the QP from the video stream (if available).
10776
10777 @item strength
10778 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
10779 more details but also more artifacts, while higher values make the image smoother
10780 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
10781
10782 @item use_bframe_qp
10783 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10784 option may cause flicker since the B-Frames have often larger QP. Default is
10785 @code{0} (not enabled).
10786
10787 @end table
10788
10789 @section gblur
10790
10791 Apply Gaussian blur filter.
10792
10793 The filter accepts the following options:
10794
10795 @table @option
10796 @item sigma
10797 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
10798
10799 @item steps
10800 Set number of steps for Gaussian approximation. Default is @code{1}.
10801
10802 @item planes
10803 Set which planes to filter. By default all planes are filtered.
10804
10805 @item sigmaV
10806 Set vertical sigma, if negative it will be same as @code{sigma}.
10807 Default is @code{-1}.
10808 @end table
10809
10810 @section geq
10811
10812 Apply generic equation to each pixel.
10813
10814 The filter accepts the following options:
10815
10816 @table @option
10817 @item lum_expr, lum
10818 Set the luminance expression.
10819 @item cb_expr, cb
10820 Set the chrominance blue expression.
10821 @item cr_expr, cr
10822 Set the chrominance red expression.
10823 @item alpha_expr, a
10824 Set the alpha expression.
10825 @item red_expr, r
10826 Set the red expression.
10827 @item green_expr, g
10828 Set the green expression.
10829 @item blue_expr, b
10830 Set the blue expression.
10831 @end table
10832
10833 The colorspace is selected according to the specified options. If one
10834 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
10835 options is specified, the filter will automatically select a YCbCr
10836 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
10837 @option{blue_expr} options is specified, it will select an RGB
10838 colorspace.
10839
10840 If one of the chrominance expression is not defined, it falls back on the other
10841 one. If no alpha expression is specified it will evaluate to opaque value.
10842 If none of chrominance expressions are specified, they will evaluate
10843 to the luminance expression.
10844
10845 The expressions can use the following variables and functions:
10846
10847 @table @option
10848 @item N
10849 The sequential number of the filtered frame, starting from @code{0}.
10850
10851 @item X
10852 @item Y
10853 The coordinates of the current sample.
10854
10855 @item W
10856 @item H
10857 The width and height of the image.
10858
10859 @item SW
10860 @item SH
10861 Width and height scale depending on the currently filtered plane. It is the
10862 ratio between the corresponding luma plane number of pixels and the current
10863 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
10864 @code{0.5,0.5} for chroma planes.
10865
10866 @item T
10867 Time of the current frame, expressed in seconds.
10868
10869 @item p(x, y)
10870 Return the value of the pixel at location (@var{x},@var{y}) of the current
10871 plane.
10872
10873 @item lum(x, y)
10874 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
10875 plane.
10876
10877 @item cb(x, y)
10878 Return the value of the pixel at location (@var{x},@var{y}) of the
10879 blue-difference chroma plane. Return 0 if there is no such plane.
10880
10881 @item cr(x, y)
10882 Return the value of the pixel at location (@var{x},@var{y}) of the
10883 red-difference chroma plane. Return 0 if there is no such plane.
10884
10885 @item r(x, y)
10886 @item g(x, y)
10887 @item b(x, y)
10888 Return the value of the pixel at location (@var{x},@var{y}) of the
10889 red/green/blue component. Return 0 if there is no such component.
10890
10891 @item alpha(x, y)
10892 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
10893 plane. Return 0 if there is no such plane.
10894 @end table
10895
10896 For functions, if @var{x} and @var{y} are outside the area, the value will be
10897 automatically clipped to the closer edge.
10898
10899 @subsection Examples
10900
10901 @itemize
10902 @item
10903 Flip the image horizontally:
10904 @example
10905 geq=p(W-X\,Y)
10906 @end example
10907
10908 @item
10909 Generate a bidimensional sine wave, with angle @code{PI/3} and a
10910 wavelength of 100 pixels:
10911 @example
10912 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
10913 @end example
10914
10915 @item
10916 Generate a fancy enigmatic moving light:
10917 @example
10918 nullsrc=s=256x256,geq=random(1)/hypot(X-cos(N*0.07)*W/2-W/2\,Y-sin(N*0.09)*H/2-H/2)^2*1000000*sin(N*0.02):128:128
10919 @end example
10920
10921 @item
10922 Generate a quick emboss effect:
10923 @example
10924 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
10925 @end example
10926
10927 @item
10928 Modify RGB components depending on pixel position:
10929 @example
10930 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
10931 @end example
10932
10933 @item
10934 Create a radial gradient that is the same size as the input (also see
10935 the @ref{vignette} filter):
10936 @example
10937 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
10938 @end example
10939 @end itemize
10940
10941 @section gradfun
10942
10943 Fix the banding artifacts that are sometimes introduced into nearly flat
10944 regions by truncation to 8-bit color depth.
10945 Interpolate the gradients that should go where the bands are, and
10946 dither them.
10947
10948 It is designed for playback only.  Do not use it prior to
10949 lossy compression, because compression tends to lose the dither and
10950 bring back the bands.
10951
10952 It accepts the following parameters:
10953
10954 @table @option
10955
10956 @item strength
10957 The maximum amount by which the filter will change any one pixel. This is also
10958 the threshold for detecting nearly flat regions. Acceptable values range from
10959 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
10960 valid range.
10961
10962 @item radius
10963 The neighborhood to fit the gradient to. A larger radius makes for smoother
10964 gradients, but also prevents the filter from modifying the pixels near detailed
10965 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
10966 values will be clipped to the valid range.
10967
10968 @end table
10969
10970 Alternatively, the options can be specified as a flat string:
10971 @var{strength}[:@var{radius}]
10972
10973 @subsection Examples
10974
10975 @itemize
10976 @item
10977 Apply the filter with a @code{3.5} strength and radius of @code{8}:
10978 @example
10979 gradfun=3.5:8
10980 @end example
10981
10982 @item
10983 Specify radius, omitting the strength (which will fall-back to the default
10984 value):
10985 @example
10986 gradfun=radius=8
10987 @end example
10988
10989 @end itemize
10990
10991 @section graphmonitor, agraphmonitor
10992 Show various filtergraph stats.
10993
10994 With this filter one can debug complete filtergraph.
10995 Especially issues with links filling with queued frames.
10996
10997 The filter accepts the following options:
10998
10999 @table @option
11000 @item size, s
11001 Set video output size. Default is @var{hd720}.
11002
11003 @item opacity, o
11004 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11005
11006 @item mode, m
11007 Set output mode, can be @var{fulll} or @var{compact}.
11008 In @var{compact} mode only filters with some queued frames have displayed stats.
11009
11010 @item flags, f
11011 Set flags which enable which stats are shown in video.
11012
11013 Available values for flags are:
11014 @table @samp
11015 @item queue
11016 Display number of queued frames in each link.
11017
11018 @item frame_count_in
11019 Display number of frames taken from filter.
11020
11021 @item frame_count_out
11022 Display number of frames given out from filter.
11023
11024 @item pts
11025 Display current filtered frame pts.
11026
11027 @item time
11028 Display current filtered frame time.
11029
11030 @item timebase
11031 Display time base for filter link.
11032
11033 @item format
11034 Display used format for filter link.
11035
11036 @item size
11037 Display video size or number of audio channels in case of audio used by filter link.
11038
11039 @item rate
11040 Display video frame rate or sample rate in case of audio used by filter link.
11041 @end table
11042
11043 @item rate, r
11044 Set upper limit for video rate of output stream, Default value is @var{25}.
11045 This guarantee that output video frame rate will not be higher than this value.
11046 @end table
11047
11048 @section greyedge
11049 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11050 and corrects the scene colors accordingly.
11051
11052 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11053
11054 The filter accepts the following options:
11055
11056 @table @option
11057 @item difford
11058 The order of differentiation to be applied on the scene. Must be chosen in the range
11059 [0,2] and default value is 1.
11060
11061 @item minknorm
11062 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11063 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11064 max value instead of calculating Minkowski distance.
11065
11066 @item sigma
11067 The standard deviation of Gaussian blur to be applied on the scene. Must be
11068 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11069 can't be equal to 0 if @var{difford} is greater than 0.
11070 @end table
11071
11072 @subsection Examples
11073 @itemize
11074
11075 @item
11076 Grey Edge:
11077 @example
11078 greyedge=difford=1:minknorm=5:sigma=2
11079 @end example
11080
11081 @item
11082 Max Edge:
11083 @example
11084 greyedge=difford=1:minknorm=0:sigma=2
11085 @end example
11086
11087 @end itemize
11088
11089 @anchor{haldclut}
11090 @section haldclut
11091
11092 Apply a Hald CLUT to a video stream.
11093
11094 First input is the video stream to process, and second one is the Hald CLUT.
11095 The Hald CLUT input can be a simple picture or a complete video stream.
11096
11097 The filter accepts the following options:
11098
11099 @table @option
11100 @item shortest
11101 Force termination when the shortest input terminates. Default is @code{0}.
11102 @item repeatlast
11103 Continue applying the last CLUT after the end of the stream. A value of
11104 @code{0} disable the filter after the last frame of the CLUT is reached.
11105 Default is @code{1}.
11106 @end table
11107
11108 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11109 filters share the same internals).
11110
11111 This filter also supports the @ref{framesync} options.
11112
11113 More information about the Hald CLUT can be found on Eskil Steenberg's website
11114 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11115
11116 @subsection Workflow examples
11117
11118 @subsubsection Hald CLUT video stream
11119
11120 Generate an identity Hald CLUT stream altered with various effects:
11121 @example
11122 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "hue=H=2*PI*t:s=sin(2*PI*t)+1, curves=cross_process" -t 10 -c:v ffv1 clut.nut
11123 @end example
11124
11125 Note: make sure you use a lossless codec.
11126
11127 Then use it with @code{haldclut} to apply it on some random stream:
11128 @example
11129 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11130 @end example
11131
11132 The Hald CLUT will be applied to the 10 first seconds (duration of
11133 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11134 to the remaining frames of the @code{mandelbrot} stream.
11135
11136 @subsubsection Hald CLUT with preview
11137
11138 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11139 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11140 biggest possible square starting at the top left of the picture. The remaining
11141 padding pixels (bottom or right) will be ignored. This area can be used to add
11142 a preview of the Hald CLUT.
11143
11144 Typically, the following generated Hald CLUT will be supported by the
11145 @code{haldclut} filter:
11146
11147 @example
11148 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11149    pad=iw+320 [padded_clut];
11150    smptebars=s=320x256, split [a][b];
11151    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11152    [main][b] overlay=W-320" -frames:v 1 clut.png
11153 @end example
11154
11155 It contains the original and a preview of the effect of the CLUT: SMPTE color
11156 bars are displayed on the right-top, and below the same color bars processed by
11157 the color changes.
11158
11159 Then, the effect of this Hald CLUT can be visualized with:
11160 @example
11161 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11162 @end example
11163
11164 @section hflip
11165
11166 Flip the input video horizontally.
11167
11168 For example, to horizontally flip the input video with @command{ffmpeg}:
11169 @example
11170 ffmpeg -i in.avi -vf "hflip" out.avi
11171 @end example
11172
11173 @section histeq
11174 This filter applies a global color histogram equalization on a
11175 per-frame basis.
11176
11177 It can be used to correct video that has a compressed range of pixel
11178 intensities.  The filter redistributes the pixel intensities to
11179 equalize their distribution across the intensity range. It may be
11180 viewed as an "automatically adjusting contrast filter". This filter is
11181 useful only for correcting degraded or poorly captured source
11182 video.
11183
11184 The filter accepts the following options:
11185
11186 @table @option
11187 @item strength
11188 Determine the amount of equalization to be applied.  As the strength
11189 is reduced, the distribution of pixel intensities more-and-more
11190 approaches that of the input frame. The value must be a float number
11191 in the range [0,1] and defaults to 0.200.
11192
11193 @item intensity
11194 Set the maximum intensity that can generated and scale the output
11195 values appropriately.  The strength should be set as desired and then
11196 the intensity can be limited if needed to avoid washing-out. The value
11197 must be a float number in the range [0,1] and defaults to 0.210.
11198
11199 @item antibanding
11200 Set the antibanding level. If enabled the filter will randomly vary
11201 the luminance of output pixels by a small amount to avoid banding of
11202 the histogram. Possible values are @code{none}, @code{weak} or
11203 @code{strong}. It defaults to @code{none}.
11204 @end table
11205
11206 @section histogram
11207
11208 Compute and draw a color distribution histogram for the input video.
11209
11210 The computed histogram is a representation of the color component
11211 distribution in an image.
11212
11213 Standard histogram displays the color components distribution in an image.
11214 Displays color graph for each color component. Shows distribution of
11215 the Y, U, V, A or R, G, B components, depending on input format, in the
11216 current frame. Below each graph a color component scale meter is shown.
11217
11218 The filter accepts the following options:
11219
11220 @table @option
11221 @item level_height
11222 Set height of level. Default value is @code{200}.
11223 Allowed range is [50, 2048].
11224
11225 @item scale_height
11226 Set height of color scale. Default value is @code{12}.
11227 Allowed range is [0, 40].
11228
11229 @item display_mode
11230 Set display mode.
11231 It accepts the following values:
11232 @table @samp
11233 @item stack
11234 Per color component graphs are placed below each other.
11235
11236 @item parade
11237 Per color component graphs are placed side by side.
11238
11239 @item overlay
11240 Presents information identical to that in the @code{parade}, except
11241 that the graphs representing color components are superimposed directly
11242 over one another.
11243 @end table
11244 Default is @code{stack}.
11245
11246 @item levels_mode
11247 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11248 Default is @code{linear}.
11249
11250 @item components
11251 Set what color components to display.
11252 Default is @code{7}.
11253
11254 @item fgopacity
11255 Set foreground opacity. Default is @code{0.7}.
11256
11257 @item bgopacity
11258 Set background opacity. Default is @code{0.5}.
11259 @end table
11260
11261 @subsection Examples
11262
11263 @itemize
11264
11265 @item
11266 Calculate and draw histogram:
11267 @example
11268 ffplay -i input -vf histogram
11269 @end example
11270
11271 @end itemize
11272
11273 @anchor{hqdn3d}
11274 @section hqdn3d
11275
11276 This is a high precision/quality 3d denoise filter. It aims to reduce
11277 image noise, producing smooth images and making still images really
11278 still. It should enhance compressibility.
11279
11280 It accepts the following optional parameters:
11281
11282 @table @option
11283 @item luma_spatial
11284 A non-negative floating point number which specifies spatial luma strength.
11285 It defaults to 4.0.
11286
11287 @item chroma_spatial
11288 A non-negative floating point number which specifies spatial chroma strength.
11289 It defaults to 3.0*@var{luma_spatial}/4.0.
11290
11291 @item luma_tmp
11292 A floating point number which specifies luma temporal strength. It defaults to
11293 6.0*@var{luma_spatial}/4.0.
11294
11295 @item chroma_tmp
11296 A floating point number which specifies chroma temporal strength. It defaults to
11297 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11298 @end table
11299
11300 @anchor{hwdownload}
11301 @section hwdownload
11302
11303 Download hardware frames to system memory.
11304
11305 The input must be in hardware frames, and the output a non-hardware format.
11306 Not all formats will be supported on the output - it may be necessary to insert
11307 an additional @option{format} filter immediately following in the graph to get
11308 the output in a supported format.
11309
11310 @section hwmap
11311
11312 Map hardware frames to system memory or to another device.
11313
11314 This filter has several different modes of operation; which one is used depends
11315 on the input and output formats:
11316 @itemize
11317 @item
11318 Hardware frame input, normal frame output
11319
11320 Map the input frames to system memory and pass them to the output.  If the
11321 original hardware frame is later required (for example, after overlaying
11322 something else on part of it), the @option{hwmap} filter can be used again
11323 in the next mode to retrieve it.
11324 @item
11325 Normal frame input, hardware frame output
11326
11327 If the input is actually a software-mapped hardware frame, then unmap it -
11328 that is, return the original hardware frame.
11329
11330 Otherwise, a device must be provided.  Create new hardware surfaces on that
11331 device for the output, then map them back to the software format at the input
11332 and give those frames to the preceding filter.  This will then act like the
11333 @option{hwupload} filter, but may be able to avoid an additional copy when
11334 the input is already in a compatible format.
11335 @item
11336 Hardware frame input and output
11337
11338 A device must be supplied for the output, either directly or with the
11339 @option{derive_device} option.  The input and output devices must be of
11340 different types and compatible - the exact meaning of this is
11341 system-dependent, but typically it means that they must refer to the same
11342 underlying hardware context (for example, refer to the same graphics card).
11343
11344 If the input frames were originally created on the output device, then unmap
11345 to retrieve the original frames.
11346
11347 Otherwise, map the frames to the output device - create new hardware frames
11348 on the output corresponding to the frames on the input.
11349 @end itemize
11350
11351 The following additional parameters are accepted:
11352
11353 @table @option
11354 @item mode
11355 Set the frame mapping mode.  Some combination of:
11356 @table @var
11357 @item read
11358 The mapped frame should be readable.
11359 @item write
11360 The mapped frame should be writeable.
11361 @item overwrite
11362 The mapping will always overwrite the entire frame.
11363
11364 This may improve performance in some cases, as the original contents of the
11365 frame need not be loaded.
11366 @item direct
11367 The mapping must not involve any copying.
11368
11369 Indirect mappings to copies of frames are created in some cases where either
11370 direct mapping is not possible or it would have unexpected properties.
11371 Setting this flag ensures that the mapping is direct and will fail if that is
11372 not possible.
11373 @end table
11374 Defaults to @var{read+write} if not specified.
11375
11376 @item derive_device @var{type}
11377 Rather than using the device supplied at initialisation, instead derive a new
11378 device of type @var{type} from the device the input frames exist on.
11379
11380 @item reverse
11381 In a hardware to hardware mapping, map in reverse - create frames in the sink
11382 and map them back to the source.  This may be necessary in some cases where
11383 a mapping in one direction is required but only the opposite direction is
11384 supported by the devices being used.
11385
11386 This option is dangerous - it may break the preceding filter in undefined
11387 ways if there are any additional constraints on that filter's output.
11388 Do not use it without fully understanding the implications of its use.
11389 @end table
11390
11391 @anchor{hwupload}
11392 @section hwupload
11393
11394 Upload system memory frames to hardware surfaces.
11395
11396 The device to upload to must be supplied when the filter is initialised.  If
11397 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
11398 option.
11399
11400 @anchor{hwupload_cuda}
11401 @section hwupload_cuda
11402
11403 Upload system memory frames to a CUDA device.
11404
11405 It accepts the following optional parameters:
11406
11407 @table @option
11408 @item device
11409 The number of the CUDA device to use
11410 @end table
11411
11412 @section hqx
11413
11414 Apply a high-quality magnification filter designed for pixel art. This filter
11415 was originally created by Maxim Stepin.
11416
11417 It accepts the following option:
11418
11419 @table @option
11420 @item n
11421 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
11422 @code{hq3x} and @code{4} for @code{hq4x}.
11423 Default is @code{3}.
11424 @end table
11425
11426 @section hstack
11427 Stack input videos horizontally.
11428
11429 All streams must be of same pixel format and of same height.
11430
11431 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11432 to create same output.
11433
11434 The filter accepts the following option:
11435
11436 @table @option
11437 @item inputs
11438 Set number of input streams. Default is 2.
11439
11440 @item shortest
11441 If set to 1, force the output to terminate when the shortest input
11442 terminates. Default value is 0.
11443 @end table
11444
11445 @section hue
11446
11447 Modify the hue and/or the saturation of the input.
11448
11449 It accepts the following parameters:
11450
11451 @table @option
11452 @item h
11453 Specify the hue angle as a number of degrees. It accepts an expression,
11454 and defaults to "0".
11455
11456 @item s
11457 Specify the saturation in the [-10,10] range. It accepts an expression and
11458 defaults to "1".
11459
11460 @item H
11461 Specify the hue angle as a number of radians. It accepts an
11462 expression, and defaults to "0".
11463
11464 @item b
11465 Specify the brightness in the [-10,10] range. It accepts an expression and
11466 defaults to "0".
11467 @end table
11468
11469 @option{h} and @option{H} are mutually exclusive, and can't be
11470 specified at the same time.
11471
11472 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11473 expressions containing the following constants:
11474
11475 @table @option
11476 @item n
11477 frame count of the input frame starting from 0
11478
11479 @item pts
11480 presentation timestamp of the input frame expressed in time base units
11481
11482 @item r
11483 frame rate of the input video, NAN if the input frame rate is unknown
11484
11485 @item t
11486 timestamp expressed in seconds, NAN if the input timestamp is unknown
11487
11488 @item tb
11489 time base of the input video
11490 @end table
11491
11492 @subsection Examples
11493
11494 @itemize
11495 @item
11496 Set the hue to 90 degrees and the saturation to 1.0:
11497 @example
11498 hue=h=90:s=1
11499 @end example
11500
11501 @item
11502 Same command but expressing the hue in radians:
11503 @example
11504 hue=H=PI/2:s=1
11505 @end example
11506
11507 @item
11508 Rotate hue and make the saturation swing between 0
11509 and 2 over a period of 1 second:
11510 @example
11511 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11512 @end example
11513
11514 @item
11515 Apply a 3 seconds saturation fade-in effect starting at 0:
11516 @example
11517 hue="s=min(t/3\,1)"
11518 @end example
11519
11520 The general fade-in expression can be written as:
11521 @example
11522 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11523 @end example
11524
11525 @item
11526 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11527 @example
11528 hue="s=max(0\, min(1\, (8-t)/3))"
11529 @end example
11530
11531 The general fade-out expression can be written as:
11532 @example
11533 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
11534 @end example
11535
11536 @end itemize
11537
11538 @subsection Commands
11539
11540 This filter supports the following commands:
11541 @table @option
11542 @item b
11543 @item s
11544 @item h
11545 @item H
11546 Modify the hue and/or the saturation and/or brightness of the input video.
11547 The command accepts the same syntax of the corresponding option.
11548
11549 If the specified expression is not valid, it is kept at its current
11550 value.
11551 @end table
11552
11553 @section hysteresis
11554
11555 Grow first stream into second stream by connecting components.
11556 This makes it possible to build more robust edge masks.
11557
11558 This filter accepts the following options:
11559
11560 @table @option
11561 @item planes
11562 Set which planes will be processed as bitmap, unprocessed planes will be
11563 copied from first stream.
11564 By default value 0xf, all planes will be processed.
11565
11566 @item threshold
11567 Set threshold which is used in filtering. If pixel component value is higher than
11568 this value filter algorithm for connecting components is activated.
11569 By default value is 0.
11570 @end table
11571
11572 @section idet
11573
11574 Detect video interlacing type.
11575
11576 This filter tries to detect if the input frames are interlaced, progressive,
11577 top or bottom field first. It will also try to detect fields that are
11578 repeated between adjacent frames (a sign of telecine).
11579
11580 Single frame detection considers only immediately adjacent frames when classifying each frame.
11581 Multiple frame detection incorporates the classification history of previous frames.
11582
11583 The filter will log these metadata values:
11584
11585 @table @option
11586 @item single.current_frame
11587 Detected type of current frame using single-frame detection. One of:
11588 ``tff'' (top field first), ``bff'' (bottom field first),
11589 ``progressive'', or ``undetermined''
11590
11591 @item single.tff
11592 Cumulative number of frames detected as top field first using single-frame detection.
11593
11594 @item multiple.tff
11595 Cumulative number of frames detected as top field first using multiple-frame detection.
11596
11597 @item single.bff
11598 Cumulative number of frames detected as bottom field first using single-frame detection.
11599
11600 @item multiple.current_frame
11601 Detected type of current frame using multiple-frame detection. One of:
11602 ``tff'' (top field first), ``bff'' (bottom field first),
11603 ``progressive'', or ``undetermined''
11604
11605 @item multiple.bff
11606 Cumulative number of frames detected as bottom field first using multiple-frame detection.
11607
11608 @item single.progressive
11609 Cumulative number of frames detected as progressive using single-frame detection.
11610
11611 @item multiple.progressive
11612 Cumulative number of frames detected as progressive using multiple-frame detection.
11613
11614 @item single.undetermined
11615 Cumulative number of frames that could not be classified using single-frame detection.
11616
11617 @item multiple.undetermined
11618 Cumulative number of frames that could not be classified using multiple-frame detection.
11619
11620 @item repeated.current_frame
11621 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
11622
11623 @item repeated.neither
11624 Cumulative number of frames with no repeated field.
11625
11626 @item repeated.top
11627 Cumulative number of frames with the top field repeated from the previous frame's top field.
11628
11629 @item repeated.bottom
11630 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
11631 @end table
11632
11633 The filter accepts the following options:
11634
11635 @table @option
11636 @item intl_thres
11637 Set interlacing threshold.
11638 @item prog_thres
11639 Set progressive threshold.
11640 @item rep_thres
11641 Threshold for repeated field detection.
11642 @item half_life
11643 Number of frames after which a given frame's contribution to the
11644 statistics is halved (i.e., it contributes only 0.5 to its
11645 classification). The default of 0 means that all frames seen are given
11646 full weight of 1.0 forever.
11647 @item analyze_interlaced_flag
11648 When this is not 0 then idet will use the specified number of frames to determine
11649 if the interlaced flag is accurate, it will not count undetermined frames.
11650 If the flag is found to be accurate it will be used without any further
11651 computations, if it is found to be inaccurate it will be cleared without any
11652 further computations. This allows inserting the idet filter as a low computational
11653 method to clean up the interlaced flag
11654 @end table
11655
11656 @section il
11657
11658 Deinterleave or interleave fields.
11659
11660 This filter allows one to process interlaced images fields without
11661 deinterlacing them. Deinterleaving splits the input frame into 2
11662 fields (so called half pictures). Odd lines are moved to the top
11663 half of the output image, even lines to the bottom half.
11664 You can process (filter) them independently and then re-interleave them.
11665
11666 The filter accepts the following options:
11667
11668 @table @option
11669 @item luma_mode, l
11670 @item chroma_mode, c
11671 @item alpha_mode, a
11672 Available values for @var{luma_mode}, @var{chroma_mode} and
11673 @var{alpha_mode} are:
11674
11675 @table @samp
11676 @item none
11677 Do nothing.
11678
11679 @item deinterleave, d
11680 Deinterleave fields, placing one above the other.
11681
11682 @item interleave, i
11683 Interleave fields. Reverse the effect of deinterleaving.
11684 @end table
11685 Default value is @code{none}.
11686
11687 @item luma_swap, ls
11688 @item chroma_swap, cs
11689 @item alpha_swap, as
11690 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
11691 @end table
11692
11693 @section inflate
11694
11695 Apply inflate effect to the video.
11696
11697 This filter replaces the pixel by the local(3x3) average by taking into account
11698 only values higher than the pixel.
11699
11700 It accepts the following options:
11701
11702 @table @option
11703 @item threshold0
11704 @item threshold1
11705 @item threshold2
11706 @item threshold3
11707 Limit the maximum change for each plane, default is 65535.
11708 If 0, plane will remain unchanged.
11709 @end table
11710
11711 @section interlace
11712
11713 Simple interlacing filter from progressive contents. This interleaves upper (or
11714 lower) lines from odd frames with lower (or upper) lines from even frames,
11715 halving the frame rate and preserving image height.
11716
11717 @example
11718    Original        Original             New Frame
11719    Frame 'j'      Frame 'j+1'             (tff)
11720   ==========      ===========       ==================
11721     Line 0  -------------------->    Frame 'j' Line 0
11722     Line 1          Line 1  ---->   Frame 'j+1' Line 1
11723     Line 2 --------------------->    Frame 'j' Line 2
11724     Line 3          Line 3  ---->   Frame 'j+1' Line 3
11725      ...             ...                   ...
11726 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
11727 @end example
11728
11729 It accepts the following optional parameters:
11730
11731 @table @option
11732 @item scan
11733 This determines whether the interlaced frame is taken from the even
11734 (tff - default) or odd (bff) lines of the progressive frame.
11735
11736 @item lowpass
11737 Vertical lowpass filter to avoid twitter interlacing and
11738 reduce moire patterns.
11739
11740 @table @samp
11741 @item 0, off
11742 Disable vertical lowpass filter
11743
11744 @item 1, linear
11745 Enable linear filter (default)
11746
11747 @item 2, complex
11748 Enable complex filter. This will slightly less reduce twitter and moire
11749 but better retain detail and subjective sharpness impression.
11750
11751 @end table
11752 @end table
11753
11754 @section kerndeint
11755
11756 Deinterlace input video by applying Donald Graft's adaptive kernel
11757 deinterling. Work on interlaced parts of a video to produce
11758 progressive frames.
11759
11760 The description of the accepted parameters follows.
11761
11762 @table @option
11763 @item thresh
11764 Set the threshold which affects the filter's tolerance when
11765 determining if a pixel line must be processed. It must be an integer
11766 in the range [0,255] and defaults to 10. A value of 0 will result in
11767 applying the process on every pixels.
11768
11769 @item map
11770 Paint pixels exceeding the threshold value to white if set to 1.
11771 Default is 0.
11772
11773 @item order
11774 Set the fields order. Swap fields if set to 1, leave fields alone if
11775 0. Default is 0.
11776
11777 @item sharp
11778 Enable additional sharpening if set to 1. Default is 0.
11779
11780 @item twoway
11781 Enable twoway sharpening if set to 1. Default is 0.
11782 @end table
11783
11784 @subsection Examples
11785
11786 @itemize
11787 @item
11788 Apply default values:
11789 @example
11790 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
11791 @end example
11792
11793 @item
11794 Enable additional sharpening:
11795 @example
11796 kerndeint=sharp=1
11797 @end example
11798
11799 @item
11800 Paint processed pixels in white:
11801 @example
11802 kerndeint=map=1
11803 @end example
11804 @end itemize
11805
11806 @section lagfun
11807
11808 Slowly update darker pixels.
11809
11810 This filter makes short flashes of light appear longer.
11811 This filter accepts the following options:
11812
11813 @table @option
11814 @item decay
11815 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
11816
11817 @item planes
11818 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
11819 @end table
11820
11821 @section lenscorrection
11822
11823 Correct radial lens distortion
11824
11825 This filter can be used to correct for radial distortion as can result from the use
11826 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
11827 one can use tools available for example as part of opencv or simply trial-and-error.
11828 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
11829 and extract the k1 and k2 coefficients from the resulting matrix.
11830
11831 Note that effectively the same filter is available in the open-source tools Krita and
11832 Digikam from the KDE project.
11833
11834 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
11835 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
11836 brightness distribution, so you may want to use both filters together in certain
11837 cases, though you will have to take care of ordering, i.e. whether vignetting should
11838 be applied before or after lens correction.
11839
11840 @subsection Options
11841
11842 The filter accepts the following options:
11843
11844 @table @option
11845 @item cx
11846 Relative x-coordinate of the focal point of the image, and thereby the center of the
11847 distortion. This value has a range [0,1] and is expressed as fractions of the image
11848 width. Default is 0.5.
11849 @item cy
11850 Relative y-coordinate of the focal point of the image, and thereby the center of the
11851 distortion. This value has a range [0,1] and is expressed as fractions of the image
11852 height. Default is 0.5.
11853 @item k1
11854 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
11855 no correction. Default is 0.
11856 @item k2
11857 Coefficient of the double quadratic correction term. This value has a range [-1,1].
11858 0 means no correction. Default is 0.
11859 @end table
11860
11861 The formula that generates the correction is:
11862
11863 @var{r_src} = @var{r_tgt} * (1 + @var{k1} * (@var{r_tgt} / @var{r_0})^2 + @var{k2} * (@var{r_tgt} / @var{r_0})^4)
11864
11865 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
11866 distances from the focal point in the source and target images, respectively.
11867
11868 @section lensfun
11869
11870 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
11871
11872 The @code{lensfun} filter requires the camera make, camera model, and lens model
11873 to apply the lens correction. The filter will load the lensfun database and
11874 query it to find the corresponding camera and lens entries in the database. As
11875 long as these entries can be found with the given options, the filter can
11876 perform corrections on frames. Note that incomplete strings will result in the
11877 filter choosing the best match with the given options, and the filter will
11878 output the chosen camera and lens models (logged with level "info"). You must
11879 provide the make, camera model, and lens model as they are required.
11880
11881 The filter accepts the following options:
11882
11883 @table @option
11884 @item make
11885 The make of the camera (for example, "Canon"). This option is required.
11886
11887 @item model
11888 The model of the camera (for example, "Canon EOS 100D"). This option is
11889 required.
11890
11891 @item lens_model
11892 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
11893 option is required.
11894
11895 @item mode
11896 The type of correction to apply. The following values are valid options:
11897
11898 @table @samp
11899 @item vignetting
11900 Enables fixing lens vignetting.
11901
11902 @item geometry
11903 Enables fixing lens geometry. This is the default.
11904
11905 @item subpixel
11906 Enables fixing chromatic aberrations.
11907
11908 @item vig_geo
11909 Enables fixing lens vignetting and lens geometry.
11910
11911 @item vig_subpixel
11912 Enables fixing lens vignetting and chromatic aberrations.
11913
11914 @item distortion
11915 Enables fixing both lens geometry and chromatic aberrations.
11916
11917 @item all
11918 Enables all possible corrections.
11919
11920 @end table
11921 @item focal_length
11922 The focal length of the image/video (zoom; expected constant for video). For
11923 example, a 18--55mm lens has focal length range of [18--55], so a value in that
11924 range should be chosen when using that lens. Default 18.
11925
11926 @item aperture
11927 The aperture of the image/video (expected constant for video). Note that
11928 aperture is only used for vignetting correction. Default 3.5.
11929
11930 @item focus_distance
11931 The focus distance of the image/video (expected constant for video). Note that
11932 focus distance is only used for vignetting and only slightly affects the
11933 vignetting correction process. If unknown, leave it at the default value (which
11934 is 1000).
11935
11936 @item scale
11937 The scale factor which is applied after transformation. After correction the
11938 video is no longer necessarily rectangular. This parameter controls how much of
11939 the resulting image is visible. The value 0 means that a value will be chosen
11940 automatically such that there is little or no unmapped area in the output
11941 image. 1.0 means that no additional scaling is done. Lower values may result
11942 in more of the corrected image being visible, while higher values may avoid
11943 unmapped areas in the output.
11944
11945 @item target_geometry
11946 The target geometry of the output image/video. The following values are valid
11947 options:
11948
11949 @table @samp
11950 @item rectilinear (default)
11951 @item fisheye
11952 @item panoramic
11953 @item equirectangular
11954 @item fisheye_orthographic
11955 @item fisheye_stereographic
11956 @item fisheye_equisolid
11957 @item fisheye_thoby
11958 @end table
11959 @item reverse
11960 Apply the reverse of image correction (instead of correcting distortion, apply
11961 it).
11962
11963 @item interpolation
11964 The type of interpolation used when correcting distortion. The following values
11965 are valid options:
11966
11967 @table @samp
11968 @item nearest
11969 @item linear (default)
11970 @item lanczos
11971 @end table
11972 @end table
11973
11974 @subsection Examples
11975
11976 @itemize
11977 @item
11978 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
11979 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
11980 aperture of "8.0".
11981
11982 @example
11983 ffmpeg -i input.mov -vf lensfun=make=Canon:model="Canon EOS 100D":lens_model="Canon EF-S 18-55mm f/3.5-5.6 IS STM":focal_length=18:aperture=8 -c:v h264 -b:v 8000k output.mov
11984 @end example
11985
11986 @item
11987 Apply the same as before, but only for the first 5 seconds of video.
11988
11989 @example
11990 ffmpeg -i input.mov -vf lensfun=make=Canon:model="Canon EOS 100D":lens_model="Canon EF-S 18-55mm f/3.5-5.6 IS STM":focal_length=18:aperture=8:enable='lte(t\,5)' -c:v h264 -b:v 8000k output.mov
11991 @end example
11992
11993 @end itemize
11994
11995 @section libvmaf
11996
11997 Obtain the VMAF (Video Multi-Method Assessment Fusion)
11998 score between two input videos.
11999
12000 The obtained VMAF score is printed through the logging system.
12001
12002 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12003 After installing the library it can be enabled using:
12004 @code{./configure --enable-libvmaf --enable-version3}.
12005 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12006
12007 The filter has following options:
12008
12009 @table @option
12010 @item model_path
12011 Set the model path which is to be used for SVM.
12012 Default value: @code{"vmaf_v0.6.1.pkl"}
12013
12014 @item log_path
12015 Set the file path to be used to store logs.
12016
12017 @item log_fmt
12018 Set the format of the log file (xml or json).
12019
12020 @item enable_transform
12021 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12022 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12023 Default value: @code{false}
12024
12025 @item phone_model
12026 Invokes the phone model which will generate VMAF scores higher than in the
12027 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12028
12029 @item psnr
12030 Enables computing psnr along with vmaf.
12031
12032 @item ssim
12033 Enables computing ssim along with vmaf.
12034
12035 @item ms_ssim
12036 Enables computing ms_ssim along with vmaf.
12037
12038 @item pool
12039 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
12040
12041 @item n_threads
12042 Set number of threads to be used when computing vmaf.
12043
12044 @item n_subsample
12045 Set interval for frame subsampling used when computing vmaf.
12046
12047 @item enable_conf_interval
12048 Enables confidence interval.
12049 @end table
12050
12051 This filter also supports the @ref{framesync} options.
12052
12053 On the below examples the input file @file{main.mpg} being processed is
12054 compared with the reference file @file{ref.mpg}.
12055
12056 @example
12057 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12058 @end example
12059
12060 Example with options:
12061 @example
12062 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12063 @end example
12064
12065 @section limiter
12066
12067 Limits the pixel components values to the specified range [min, max].
12068
12069 The filter accepts the following options:
12070
12071 @table @option
12072 @item min
12073 Lower bound. Defaults to the lowest allowed value for the input.
12074
12075 @item max
12076 Upper bound. Defaults to the highest allowed value for the input.
12077
12078 @item planes
12079 Specify which planes will be processed. Defaults to all available.
12080 @end table
12081
12082 @section loop
12083
12084 Loop video frames.
12085
12086 The filter accepts the following options:
12087
12088 @table @option
12089 @item loop
12090 Set the number of loops. Setting this value to -1 will result in infinite loops.
12091 Default is 0.
12092
12093 @item size
12094 Set maximal size in number of frames. Default is 0.
12095
12096 @item start
12097 Set first frame of loop. Default is 0.
12098 @end table
12099
12100 @subsection Examples
12101
12102 @itemize
12103 @item
12104 Loop single first frame infinitely:
12105 @example
12106 loop=loop=-1:size=1:start=0
12107 @end example
12108
12109 @item
12110 Loop single first frame 10 times:
12111 @example
12112 loop=loop=10:size=1:start=0
12113 @end example
12114
12115 @item
12116 Loop 10 first frames 5 times:
12117 @example
12118 loop=loop=5:size=10:start=0
12119 @end example
12120 @end itemize
12121
12122 @section lut1d
12123
12124 Apply a 1D LUT to an input video.
12125
12126 The filter accepts the following options:
12127
12128 @table @option
12129 @item file
12130 Set the 1D LUT file name.
12131
12132 Currently supported formats:
12133 @table @samp
12134 @item cube
12135 Iridas
12136 @item csp
12137 cineSpace
12138 @end table
12139
12140 @item interp
12141 Select interpolation mode.
12142
12143 Available values are:
12144
12145 @table @samp
12146 @item nearest
12147 Use values from the nearest defined point.
12148 @item linear
12149 Interpolate values using the linear interpolation.
12150 @item cosine
12151 Interpolate values using the cosine interpolation.
12152 @item cubic
12153 Interpolate values using the cubic interpolation.
12154 @item spline
12155 Interpolate values using the spline interpolation.
12156 @end table
12157 @end table
12158
12159 @anchor{lut3d}
12160 @section lut3d
12161
12162 Apply a 3D LUT to an input video.
12163
12164 The filter accepts the following options:
12165
12166 @table @option
12167 @item file
12168 Set the 3D LUT file name.
12169
12170 Currently supported formats:
12171 @table @samp
12172 @item 3dl
12173 AfterEffects
12174 @item cube
12175 Iridas
12176 @item dat
12177 DaVinci
12178 @item m3d
12179 Pandora
12180 @item csp
12181 cineSpace
12182 @end table
12183 @item interp
12184 Select interpolation mode.
12185
12186 Available values are:
12187
12188 @table @samp
12189 @item nearest
12190 Use values from the nearest defined point.
12191 @item trilinear
12192 Interpolate values using the 8 points defining a cube.
12193 @item tetrahedral
12194 Interpolate values using a tetrahedron.
12195 @end table
12196 @end table
12197
12198 @section lumakey
12199
12200 Turn certain luma values into transparency.
12201
12202 The filter accepts the following options:
12203
12204 @table @option
12205 @item threshold
12206 Set the luma which will be used as base for transparency.
12207 Default value is @code{0}.
12208
12209 @item tolerance
12210 Set the range of luma values to be keyed out.
12211 Default value is @code{0}.
12212
12213 @item softness
12214 Set the range of softness. Default value is @code{0}.
12215 Use this to control gradual transition from zero to full transparency.
12216 @end table
12217
12218 @section lut, lutrgb, lutyuv
12219
12220 Compute a look-up table for binding each pixel component input value
12221 to an output value, and apply it to the input video.
12222
12223 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12224 to an RGB input video.
12225
12226 These filters accept the following parameters:
12227 @table @option
12228 @item c0
12229 set first pixel component expression
12230 @item c1
12231 set second pixel component expression
12232 @item c2
12233 set third pixel component expression
12234 @item c3
12235 set fourth pixel component expression, corresponds to the alpha component
12236
12237 @item r
12238 set red component expression
12239 @item g
12240 set green component expression
12241 @item b
12242 set blue component expression
12243 @item a
12244 alpha component expression
12245
12246 @item y
12247 set Y/luminance component expression
12248 @item u
12249 set U/Cb component expression
12250 @item v
12251 set V/Cr component expression
12252 @end table
12253
12254 Each of them specifies the expression to use for computing the lookup table for
12255 the corresponding pixel component values.
12256
12257 The exact component associated to each of the @var{c*} options depends on the
12258 format in input.
12259
12260 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12261 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12262
12263 The expressions can contain the following constants and functions:
12264
12265 @table @option
12266 @item w
12267 @item h
12268 The input width and height.
12269
12270 @item val
12271 The input value for the pixel component.
12272
12273 @item clipval
12274 The input value, clipped to the @var{minval}-@var{maxval} range.
12275
12276 @item maxval
12277 The maximum value for the pixel component.
12278
12279 @item minval
12280 The minimum value for the pixel component.
12281
12282 @item negval
12283 The negated value for the pixel component value, clipped to the
12284 @var{minval}-@var{maxval} range; it corresponds to the expression
12285 "maxval-clipval+minval".
12286
12287 @item clip(val)
12288 The computed value in @var{val}, clipped to the
12289 @var{minval}-@var{maxval} range.
12290
12291 @item gammaval(gamma)
12292 The computed gamma correction value of the pixel component value,
12293 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
12294 expression
12295 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
12296
12297 @end table
12298
12299 All expressions default to "val".
12300
12301 @subsection Examples
12302
12303 @itemize
12304 @item
12305 Negate input video:
12306 @example
12307 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
12308 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
12309 @end example
12310
12311 The above is the same as:
12312 @example
12313 lutrgb="r=negval:g=negval:b=negval"
12314 lutyuv="y=negval:u=negval:v=negval"
12315 @end example
12316
12317 @item
12318 Negate luminance:
12319 @example
12320 lutyuv=y=negval
12321 @end example
12322
12323 @item
12324 Remove chroma components, turning the video into a graytone image:
12325 @example
12326 lutyuv="u=128:v=128"
12327 @end example
12328
12329 @item
12330 Apply a luma burning effect:
12331 @example
12332 lutyuv="y=2*val"
12333 @end example
12334
12335 @item
12336 Remove green and blue components:
12337 @example
12338 lutrgb="g=0:b=0"
12339 @end example
12340
12341 @item
12342 Set a constant alpha channel value on input:
12343 @example
12344 format=rgba,lutrgb=a="maxval-minval/2"
12345 @end example
12346
12347 @item
12348 Correct luminance gamma by a factor of 0.5:
12349 @example
12350 lutyuv=y=gammaval(0.5)
12351 @end example
12352
12353 @item
12354 Discard least significant bits of luma:
12355 @example
12356 lutyuv=y='bitand(val, 128+64+32)'
12357 @end example
12358
12359 @item
12360 Technicolor like effect:
12361 @example
12362 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
12363 @end example
12364 @end itemize
12365
12366 @section lut2, tlut2
12367
12368 The @code{lut2} filter takes two input streams and outputs one
12369 stream.
12370
12371 The @code{tlut2} (time lut2) filter takes two consecutive frames
12372 from one single stream.
12373
12374 This filter accepts the following parameters:
12375 @table @option
12376 @item c0
12377 set first pixel component expression
12378 @item c1
12379 set second pixel component expression
12380 @item c2
12381 set third pixel component expression
12382 @item c3
12383 set fourth pixel component expression, corresponds to the alpha component
12384
12385 @item d
12386 set output bit depth, only available for @code{lut2} filter. By default is 0,
12387 which means bit depth is automatically picked from first input format.
12388 @end table
12389
12390 Each of them specifies the expression to use for computing the lookup table for
12391 the corresponding pixel component values.
12392
12393 The exact component associated to each of the @var{c*} options depends on the
12394 format in inputs.
12395
12396 The expressions can contain the following constants:
12397
12398 @table @option
12399 @item w
12400 @item h
12401 The input width and height.
12402
12403 @item x
12404 The first input value for the pixel component.
12405
12406 @item y
12407 The second input value for the pixel component.
12408
12409 @item bdx
12410 The first input video bit depth.
12411
12412 @item bdy
12413 The second input video bit depth.
12414 @end table
12415
12416 All expressions default to "x".
12417
12418 @subsection Examples
12419
12420 @itemize
12421 @item
12422 Highlight differences between two RGB video streams:
12423 @example
12424 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1)'
12425 @end example
12426
12427 @item
12428 Highlight differences between two YUV video streams:
12429 @example
12430 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1)'
12431 @end example
12432
12433 @item
12434 Show max difference between two video streams:
12435 @example
12436 lut2='if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1)))'
12437 @end example
12438 @end itemize
12439
12440 @section maskedclamp
12441
12442 Clamp the first input stream with the second input and third input stream.
12443
12444 Returns the value of first stream to be between second input
12445 stream - @code{undershoot} and third input stream + @code{overshoot}.
12446
12447 This filter accepts the following options:
12448 @table @option
12449 @item undershoot
12450 Default value is @code{0}.
12451
12452 @item overshoot
12453 Default value is @code{0}.
12454
12455 @item planes
12456 Set which planes will be processed as bitmap, unprocessed planes will be
12457 copied from first stream.
12458 By default value 0xf, all planes will be processed.
12459 @end table
12460
12461 @section maskedmerge
12462
12463 Merge the first input stream with the second input stream using per pixel
12464 weights in the third input stream.
12465
12466 A value of 0 in the third stream pixel component means that pixel component
12467 from first stream is returned unchanged, while maximum value (eg. 255 for
12468 8-bit videos) means that pixel component from second stream is returned
12469 unchanged. Intermediate values define the amount of merging between both
12470 input stream's pixel components.
12471
12472 This filter accepts the following options:
12473 @table @option
12474 @item planes
12475 Set which planes will be processed as bitmap, unprocessed planes will be
12476 copied from first stream.
12477 By default value 0xf, all planes will be processed.
12478 @end table
12479
12480 @section maskfun
12481 Create mask from input video.
12482
12483 For example it is useful to create motion masks after @code{tblend} filter.
12484
12485 This filter accepts the following options:
12486
12487 @table @option
12488 @item low
12489 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
12490
12491 @item high
12492 Set high threshold. Any pixel component higher than this value will be set to max value
12493 allowed for current pixel format.
12494
12495 @item planes
12496 Set planes to filter, by default all available planes are filtered.
12497
12498 @item fill
12499 Fill all frame pixels with this value.
12500
12501 @item sum
12502 Set max average pixel value for frame. If sum of all pixel components is higher that this
12503 average, output frame will be completely filled with value set by @var{fill} option.
12504 Typically useful for scene changes when used in combination with @code{tblend} filter.
12505 @end table
12506
12507 @section mcdeint
12508
12509 Apply motion-compensation deinterlacing.
12510
12511 It needs one field per frame as input and must thus be used together
12512 with yadif=1/3 or equivalent.
12513
12514 This filter accepts the following options:
12515 @table @option
12516 @item mode
12517 Set the deinterlacing mode.
12518
12519 It accepts one of the following values:
12520 @table @samp
12521 @item fast
12522 @item medium
12523 @item slow
12524 use iterative motion estimation
12525 @item extra_slow
12526 like @samp{slow}, but use multiple reference frames.
12527 @end table
12528 Default value is @samp{fast}.
12529
12530 @item parity
12531 Set the picture field parity assumed for the input video. It must be
12532 one of the following values:
12533
12534 @table @samp
12535 @item 0, tff
12536 assume top field first
12537 @item 1, bff
12538 assume bottom field first
12539 @end table
12540
12541 Default value is @samp{bff}.
12542
12543 @item qp
12544 Set per-block quantization parameter (QP) used by the internal
12545 encoder.
12546
12547 Higher values should result in a smoother motion vector field but less
12548 optimal individual vectors. Default value is 1.
12549 @end table
12550
12551 @section mergeplanes
12552
12553 Merge color channel components from several video streams.
12554
12555 The filter accepts up to 4 input streams, and merge selected input
12556 planes to the output video.
12557
12558 This filter accepts the following options:
12559 @table @option
12560 @item mapping
12561 Set input to output plane mapping. Default is @code{0}.
12562
12563 The mappings is specified as a bitmap. It should be specified as a
12564 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
12565 mapping for the first plane of the output stream. 'A' sets the number of
12566 the input stream to use (from 0 to 3), and 'a' the plane number of the
12567 corresponding input to use (from 0 to 3). The rest of the mappings is
12568 similar, 'Bb' describes the mapping for the output stream second
12569 plane, 'Cc' describes the mapping for the output stream third plane and
12570 'Dd' describes the mapping for the output stream fourth plane.
12571
12572 @item format
12573 Set output pixel format. Default is @code{yuva444p}.
12574 @end table
12575
12576 @subsection Examples
12577
12578 @itemize
12579 @item
12580 Merge three gray video streams of same width and height into single video stream:
12581 @example
12582 [a0][a1][a2]mergeplanes=0x001020:yuv444p
12583 @end example
12584
12585 @item
12586 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
12587 @example
12588 [a0][a1]mergeplanes=0x00010210:yuva444p
12589 @end example
12590
12591 @item
12592 Swap Y and A plane in yuva444p stream:
12593 @example
12594 format=yuva444p,mergeplanes=0x03010200:yuva444p
12595 @end example
12596
12597 @item
12598 Swap U and V plane in yuv420p stream:
12599 @example
12600 format=yuv420p,mergeplanes=0x000201:yuv420p
12601 @end example
12602
12603 @item
12604 Cast a rgb24 clip to yuv444p:
12605 @example
12606 format=rgb24,mergeplanes=0x000102:yuv444p
12607 @end example
12608 @end itemize
12609
12610 @section mestimate
12611
12612 Estimate and export motion vectors using block matching algorithms.
12613 Motion vectors are stored in frame side data to be used by other filters.
12614
12615 This filter accepts the following options:
12616 @table @option
12617 @item method
12618 Specify the motion estimation method. Accepts one of the following values:
12619
12620 @table @samp
12621 @item esa
12622 Exhaustive search algorithm.
12623 @item tss
12624 Three step search algorithm.
12625 @item tdls
12626 Two dimensional logarithmic search algorithm.
12627 @item ntss
12628 New three step search algorithm.
12629 @item fss
12630 Four step search algorithm.
12631 @item ds
12632 Diamond search algorithm.
12633 @item hexbs
12634 Hexagon-based search algorithm.
12635 @item epzs
12636 Enhanced predictive zonal search algorithm.
12637 @item umh
12638 Uneven multi-hexagon search algorithm.
12639 @end table
12640 Default value is @samp{esa}.
12641
12642 @item mb_size
12643 Macroblock size. Default @code{16}.
12644
12645 @item search_param
12646 Search parameter. Default @code{7}.
12647 @end table
12648
12649 @section midequalizer
12650
12651 Apply Midway Image Equalization effect using two video streams.
12652
12653 Midway Image Equalization adjusts a pair of images to have the same
12654 histogram, while maintaining their dynamics as much as possible. It's
12655 useful for e.g. matching exposures from a pair of stereo cameras.
12656
12657 This filter has two inputs and one output, which must be of same pixel format, but
12658 may be of different sizes. The output of filter is first input adjusted with
12659 midway histogram of both inputs.
12660
12661 This filter accepts the following option:
12662
12663 @table @option
12664 @item planes
12665 Set which planes to process. Default is @code{15}, which is all available planes.
12666 @end table
12667
12668 @section minterpolate
12669
12670 Convert the video to specified frame rate using motion interpolation.
12671
12672 This filter accepts the following options:
12673 @table @option
12674 @item fps
12675 Specify the output frame rate. This can be rational e.g. @code{60000/1001}. Frames are dropped if @var{fps} is lower than source fps. Default @code{60}.
12676
12677 @item mi_mode
12678 Motion interpolation mode. Following values are accepted:
12679 @table @samp
12680 @item dup
12681 Duplicate previous or next frame for interpolating new ones.
12682 @item blend
12683 Blend source frames. Interpolated frame is mean of previous and next frames.
12684 @item mci
12685 Motion compensated interpolation. Following options are effective when this mode is selected:
12686
12687 @table @samp
12688 @item mc_mode
12689 Motion compensation mode. Following values are accepted:
12690 @table @samp
12691 @item obmc
12692 Overlapped block motion compensation.
12693 @item aobmc
12694 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
12695 @end table
12696 Default mode is @samp{obmc}.
12697
12698 @item me_mode
12699 Motion estimation mode. Following values are accepted:
12700 @table @samp
12701 @item bidir
12702 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
12703 @item bilat
12704 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
12705 @end table
12706 Default mode is @samp{bilat}.
12707
12708 @item me
12709 The algorithm to be used for motion estimation. Following values are accepted:
12710 @table @samp
12711 @item esa
12712 Exhaustive search algorithm.
12713 @item tss
12714 Three step search algorithm.
12715 @item tdls
12716 Two dimensional logarithmic search algorithm.
12717 @item ntss
12718 New three step search algorithm.
12719 @item fss
12720 Four step search algorithm.
12721 @item ds
12722 Diamond search algorithm.
12723 @item hexbs
12724 Hexagon-based search algorithm.
12725 @item epzs
12726 Enhanced predictive zonal search algorithm.
12727 @item umh
12728 Uneven multi-hexagon search algorithm.
12729 @end table
12730 Default algorithm is @samp{epzs}.
12731
12732 @item mb_size
12733 Macroblock size. Default @code{16}.
12734
12735 @item search_param
12736 Motion estimation search parameter. Default @code{32}.
12737
12738 @item vsbmc
12739 Enable variable-size block motion compensation. Motion estimation is applied with smaller block sizes at object boundaries in order to make the them less blur. Default is @code{0} (disabled).
12740 @end table
12741 @end table
12742
12743 @item scd
12744 Scene change detection method. Scene change leads motion vectors to be in random direction. Scene change detection replace interpolated frames by duplicate ones. May not be needed for other modes. Following values are accepted:
12745 @table @samp
12746 @item none
12747 Disable scene change detection.
12748 @item fdiff
12749 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
12750 @end table
12751 Default method is @samp{fdiff}.
12752
12753 @item scd_threshold
12754 Scene change detection threshold. Default is @code{5.0}.
12755 @end table
12756
12757 @section mix
12758
12759 Mix several video input streams into one video stream.
12760
12761 A description of the accepted options follows.
12762
12763 @table @option
12764 @item nb_inputs
12765 The number of inputs. If unspecified, it defaults to 2.
12766
12767 @item weights
12768 Specify weight of each input video stream as sequence.
12769 Each weight is separated by space. If number of weights
12770 is smaller than number of @var{frames} last specified
12771 weight will be used for all remaining unset weights.
12772
12773 @item scale
12774 Specify scale, if it is set it will be multiplied with sum
12775 of each weight multiplied with pixel values to give final destination
12776 pixel value. By default @var{scale} is auto scaled to sum of weights.
12777
12778 @item duration
12779 Specify how end of stream is determined.
12780 @table @samp
12781 @item longest
12782 The duration of the longest input. (default)
12783
12784 @item shortest
12785 The duration of the shortest input.
12786
12787 @item first
12788 The duration of the first input.
12789 @end table
12790 @end table
12791
12792 @section mpdecimate
12793
12794 Drop frames that do not differ greatly from the previous frame in
12795 order to reduce frame rate.
12796
12797 The main use of this filter is for very-low-bitrate encoding
12798 (e.g. streaming over dialup modem), but it could in theory be used for
12799 fixing movies that were inverse-telecined incorrectly.
12800
12801 A description of the accepted options follows.
12802
12803 @table @option
12804 @item max
12805 Set the maximum number of consecutive frames which can be dropped (if
12806 positive), or the minimum interval between dropped frames (if
12807 negative). If the value is 0, the frame is dropped disregarding the
12808 number of previous sequentially dropped frames.
12809
12810 Default value is 0.
12811
12812 @item hi
12813 @item lo
12814 @item frac
12815 Set the dropping threshold values.
12816
12817 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
12818 represent actual pixel value differences, so a threshold of 64
12819 corresponds to 1 unit of difference for each pixel, or the same spread
12820 out differently over the block.
12821
12822 A frame is a candidate for dropping if no 8x8 blocks differ by more
12823 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
12824 meaning the whole image) differ by more than a threshold of @option{lo}.
12825
12826 Default value for @option{hi} is 64*12, default value for @option{lo} is
12827 64*5, and default value for @option{frac} is 0.33.
12828 @end table
12829
12830
12831 @section negate
12832
12833 Negate (invert) the input video.
12834
12835 It accepts the following option:
12836
12837 @table @option
12838
12839 @item negate_alpha
12840 With value 1, it negates the alpha component, if present. Default value is 0.
12841 @end table
12842
12843 @anchor{nlmeans}
12844 @section nlmeans
12845
12846 Denoise frames using Non-Local Means algorithm.
12847
12848 Each pixel is adjusted by looking for other pixels with similar contexts. This
12849 context similarity is defined by comparing their surrounding patches of size
12850 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
12851 around the pixel.
12852
12853 Note that the research area defines centers for patches, which means some
12854 patches will be made of pixels outside that research area.
12855
12856 The filter accepts the following options.
12857
12858 @table @option
12859 @item s
12860 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
12861
12862 @item p
12863 Set patch size. Default is 7. Must be odd number in range [0, 99].
12864
12865 @item pc
12866 Same as @option{p} but for chroma planes.
12867
12868 The default value is @var{0} and means automatic.
12869
12870 @item r
12871 Set research size. Default is 15. Must be odd number in range [0, 99].
12872
12873 @item rc
12874 Same as @option{r} but for chroma planes.
12875
12876 The default value is @var{0} and means automatic.
12877 @end table
12878
12879 @section nnedi
12880
12881 Deinterlace video using neural network edge directed interpolation.
12882
12883 This filter accepts the following options:
12884
12885 @table @option
12886 @item weights
12887 Mandatory option, without binary file filter can not work.
12888 Currently file can be found here:
12889 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
12890
12891 @item deint
12892 Set which frames to deinterlace, by default it is @code{all}.
12893 Can be @code{all} or @code{interlaced}.
12894
12895 @item field
12896 Set mode of operation.
12897
12898 Can be one of the following:
12899
12900 @table @samp
12901 @item af
12902 Use frame flags, both fields.
12903 @item a
12904 Use frame flags, single field.
12905 @item t
12906 Use top field only.
12907 @item b
12908 Use bottom field only.
12909 @item tf
12910 Use both fields, top first.
12911 @item bf
12912 Use both fields, bottom first.
12913 @end table
12914
12915 @item planes
12916 Set which planes to process, by default filter process all frames.
12917
12918 @item nsize
12919 Set size of local neighborhood around each pixel, used by the predictor neural
12920 network.
12921
12922 Can be one of the following:
12923
12924 @table @samp
12925 @item s8x6
12926 @item s16x6
12927 @item s32x6
12928 @item s48x6
12929 @item s8x4
12930 @item s16x4
12931 @item s32x4
12932 @end table
12933
12934 @item nns
12935 Set the number of neurons in predictor neural network.
12936 Can be one of the following:
12937
12938 @table @samp
12939 @item n16
12940 @item n32
12941 @item n64
12942 @item n128
12943 @item n256
12944 @end table
12945
12946 @item qual
12947 Controls the number of different neural network predictions that are blended
12948 together to compute the final output value. Can be @code{fast}, default or
12949 @code{slow}.
12950
12951 @item etype
12952 Set which set of weights to use in the predictor.
12953 Can be one of the following:
12954
12955 @table @samp
12956 @item a
12957 weights trained to minimize absolute error
12958 @item s
12959 weights trained to minimize squared error
12960 @end table
12961
12962 @item pscrn
12963 Controls whether or not the prescreener neural network is used to decide
12964 which pixels should be processed by the predictor neural network and which
12965 can be handled by simple cubic interpolation.
12966 The prescreener is trained to know whether cubic interpolation will be
12967 sufficient for a pixel or whether it should be predicted by the predictor nn.
12968 The computational complexity of the prescreener nn is much less than that of
12969 the predictor nn. Since most pixels can be handled by cubic interpolation,
12970 using the prescreener generally results in much faster processing.
12971 The prescreener is pretty accurate, so the difference between using it and not
12972 using it is almost always unnoticeable.
12973
12974 Can be one of the following:
12975
12976 @table @samp
12977 @item none
12978 @item original
12979 @item new
12980 @end table
12981
12982 Default is @code{new}.
12983
12984 @item fapprox
12985 Set various debugging flags.
12986 @end table
12987
12988 @section noformat
12989
12990 Force libavfilter not to use any of the specified pixel formats for the
12991 input to the next filter.
12992
12993 It accepts the following parameters:
12994 @table @option
12995
12996 @item pix_fmts
12997 A '|'-separated list of pixel format names, such as
12998 pix_fmts=yuv420p|monow|rgb24".
12999
13000 @end table
13001
13002 @subsection Examples
13003
13004 @itemize
13005 @item
13006 Force libavfilter to use a format different from @var{yuv420p} for the
13007 input to the vflip filter:
13008 @example
13009 noformat=pix_fmts=yuv420p,vflip
13010 @end example
13011
13012 @item
13013 Convert the input video to any of the formats not contained in the list:
13014 @example
13015 noformat=yuv420p|yuv444p|yuv410p
13016 @end example
13017 @end itemize
13018
13019 @section noise
13020
13021 Add noise on video input frame.
13022
13023 The filter accepts the following options:
13024
13025 @table @option
13026 @item all_seed
13027 @item c0_seed
13028 @item c1_seed
13029 @item c2_seed
13030 @item c3_seed
13031 Set noise seed for specific pixel component or all pixel components in case
13032 of @var{all_seed}. Default value is @code{123457}.
13033
13034 @item all_strength, alls
13035 @item c0_strength, c0s
13036 @item c1_strength, c1s
13037 @item c2_strength, c2s
13038 @item c3_strength, c3s
13039 Set noise strength for specific pixel component or all pixel components in case
13040 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13041
13042 @item all_flags, allf
13043 @item c0_flags, c0f
13044 @item c1_flags, c1f
13045 @item c2_flags, c2f
13046 @item c3_flags, c3f
13047 Set pixel component flags or set flags for all components if @var{all_flags}.
13048 Available values for component flags are:
13049 @table @samp
13050 @item a
13051 averaged temporal noise (smoother)
13052 @item p
13053 mix random noise with a (semi)regular pattern
13054 @item t
13055 temporal noise (noise pattern changes between frames)
13056 @item u
13057 uniform noise (gaussian otherwise)
13058 @end table
13059 @end table
13060
13061 @subsection Examples
13062
13063 Add temporal and uniform noise to input video:
13064 @example
13065 noise=alls=20:allf=t+u
13066 @end example
13067
13068 @section normalize
13069
13070 Normalize RGB video (aka histogram stretching, contrast stretching).
13071 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13072
13073 For each channel of each frame, the filter computes the input range and maps
13074 it linearly to the user-specified output range. The output range defaults
13075 to the full dynamic range from pure black to pure white.
13076
13077 Temporal smoothing can be used on the input range to reduce flickering (rapid
13078 changes in brightness) caused when small dark or bright objects enter or leave
13079 the scene. This is similar to the auto-exposure (automatic gain control) on a
13080 video camera, and, like a video camera, it may cause a period of over- or
13081 under-exposure of the video.
13082
13083 The R,G,B channels can be normalized independently, which may cause some
13084 color shifting, or linked together as a single channel, which prevents
13085 color shifting. Linked normalization preserves hue. Independent normalization
13086 does not, so it can be used to remove some color casts. Independent and linked
13087 normalization can be combined in any ratio.
13088
13089 The normalize filter accepts the following options:
13090
13091 @table @option
13092 @item blackpt
13093 @item whitept
13094 Colors which define the output range. The minimum input value is mapped to
13095 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13096 The defaults are black and white respectively. Specifying white for
13097 @var{blackpt} and black for @var{whitept} will give color-inverted,
13098 normalized video. Shades of grey can be used to reduce the dynamic range
13099 (contrast). Specifying saturated colors here can create some interesting
13100 effects.
13101
13102 @item smoothing
13103 The number of previous frames to use for temporal smoothing. The input range
13104 of each channel is smoothed using a rolling average over the current frame
13105 and the @var{smoothing} previous frames. The default is 0 (no temporal
13106 smoothing).
13107
13108 @item independence
13109 Controls the ratio of independent (color shifting) channel normalization to
13110 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13111 independent. Defaults to 1.0 (fully independent).
13112
13113 @item strength
13114 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13115 expensive no-op. Defaults to 1.0 (full strength).
13116
13117 @end table
13118
13119 @subsection Examples
13120
13121 Stretch video contrast to use the full dynamic range, with no temporal
13122 smoothing; may flicker depending on the source content:
13123 @example
13124 normalize=blackpt=black:whitept=white:smoothing=0
13125 @end example
13126
13127 As above, but with 50 frames of temporal smoothing; flicker should be
13128 reduced, depending on the source content:
13129 @example
13130 normalize=blackpt=black:whitept=white:smoothing=50
13131 @end example
13132
13133 As above, but with hue-preserving linked channel normalization:
13134 @example
13135 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13136 @end example
13137
13138 As above, but with half strength:
13139 @example
13140 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13141 @end example
13142
13143 Map the darkest input color to red, the brightest input color to cyan:
13144 @example
13145 normalize=blackpt=red:whitept=cyan
13146 @end example
13147
13148 @section null
13149
13150 Pass the video source unchanged to the output.
13151
13152 @section ocr
13153 Optical Character Recognition
13154
13155 This filter uses Tesseract for optical character recognition. To enable
13156 compilation of this filter, you need to configure FFmpeg with
13157 @code{--enable-libtesseract}.
13158
13159 It accepts the following options:
13160
13161 @table @option
13162 @item datapath
13163 Set datapath to tesseract data. Default is to use whatever was
13164 set at installation.
13165
13166 @item language
13167 Set language, default is "eng".
13168
13169 @item whitelist
13170 Set character whitelist.
13171
13172 @item blacklist
13173 Set character blacklist.
13174 @end table
13175
13176 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13177 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13178
13179 @section ocv
13180
13181 Apply a video transform using libopencv.
13182
13183 To enable this filter, install the libopencv library and headers and
13184 configure FFmpeg with @code{--enable-libopencv}.
13185
13186 It accepts the following parameters:
13187
13188 @table @option
13189
13190 @item filter_name
13191 The name of the libopencv filter to apply.
13192
13193 @item filter_params
13194 The parameters to pass to the libopencv filter. If not specified, the default
13195 values are assumed.
13196
13197 @end table
13198
13199 Refer to the official libopencv documentation for more precise
13200 information:
13201 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13202
13203 Several libopencv filters are supported; see the following subsections.
13204
13205 @anchor{dilate}
13206 @subsection dilate
13207
13208 Dilate an image by using a specific structuring element.
13209 It corresponds to the libopencv function @code{cvDilate}.
13210
13211 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
13212
13213 @var{struct_el} represents a structuring element, and has the syntax:
13214 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
13215
13216 @var{cols} and @var{rows} represent the number of columns and rows of
13217 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
13218 point, and @var{shape} the shape for the structuring element. @var{shape}
13219 must be "rect", "cross", "ellipse", or "custom".
13220
13221 If the value for @var{shape} is "custom", it must be followed by a
13222 string of the form "=@var{filename}". The file with name
13223 @var{filename} is assumed to represent a binary image, with each
13224 printable character corresponding to a bright pixel. When a custom
13225 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
13226 or columns and rows of the read file are assumed instead.
13227
13228 The default value for @var{struct_el} is "3x3+0x0/rect".
13229
13230 @var{nb_iterations} specifies the number of times the transform is
13231 applied to the image, and defaults to 1.
13232
13233 Some examples:
13234 @example
13235 # Use the default values
13236 ocv=dilate
13237
13238 # Dilate using a structuring element with a 5x5 cross, iterating two times
13239 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
13240
13241 # Read the shape from the file diamond.shape, iterating two times.
13242 # The file diamond.shape may contain a pattern of characters like this
13243 #   *
13244 #  ***
13245 # *****
13246 #  ***
13247 #   *
13248 # The specified columns and rows are ignored
13249 # but the anchor point coordinates are not
13250 ocv=dilate:0x0+2x2/custom=diamond.shape|2
13251 @end example
13252
13253 @subsection erode
13254
13255 Erode an image by using a specific structuring element.
13256 It corresponds to the libopencv function @code{cvErode}.
13257
13258 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
13259 with the same syntax and semantics as the @ref{dilate} filter.
13260
13261 @subsection smooth
13262
13263 Smooth the input video.
13264
13265 The filter takes the following parameters:
13266 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
13267
13268 @var{type} is the type of smooth filter to apply, and must be one of
13269 the following values: "blur", "blur_no_scale", "median", "gaussian",
13270 or "bilateral". The default value is "gaussian".
13271
13272 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
13273 depends on the smooth type. @var{param1} and
13274 @var{param2} accept integer positive values or 0. @var{param3} and
13275 @var{param4} accept floating point values.
13276
13277 The default value for @var{param1} is 3. The default value for the
13278 other parameters is 0.
13279
13280 These parameters correspond to the parameters assigned to the
13281 libopencv function @code{cvSmooth}.
13282
13283 @section oscilloscope
13284
13285 2D Video Oscilloscope.
13286
13287 Useful to measure spatial impulse, step responses, chroma delays, etc.
13288
13289 It accepts the following parameters:
13290
13291 @table @option
13292 @item x
13293 Set scope center x position.
13294
13295 @item y
13296 Set scope center y position.
13297
13298 @item s
13299 Set scope size, relative to frame diagonal.
13300
13301 @item t
13302 Set scope tilt/rotation.
13303
13304 @item o
13305 Set trace opacity.
13306
13307 @item tx
13308 Set trace center x position.
13309
13310 @item ty
13311 Set trace center y position.
13312
13313 @item tw
13314 Set trace width, relative to width of frame.
13315
13316 @item th
13317 Set trace height, relative to height of frame.
13318
13319 @item c
13320 Set which components to trace. By default it traces first three components.
13321
13322 @item g
13323 Draw trace grid. By default is enabled.
13324
13325 @item st
13326 Draw some statistics. By default is enabled.
13327
13328 @item sc
13329 Draw scope. By default is enabled.
13330 @end table
13331
13332 @subsection Examples
13333
13334 @itemize
13335 @item
13336 Inspect full first row of video frame.
13337 @example
13338 oscilloscope=x=0.5:y=0:s=1
13339 @end example
13340
13341 @item
13342 Inspect full last row of video frame.
13343 @example
13344 oscilloscope=x=0.5:y=1:s=1
13345 @end example
13346
13347 @item
13348 Inspect full 5th line of video frame of height 1080.
13349 @example
13350 oscilloscope=x=0.5:y=5/1080:s=1
13351 @end example
13352
13353 @item
13354 Inspect full last column of video frame.
13355 @example
13356 oscilloscope=x=1:y=0.5:s=1:t=1
13357 @end example
13358
13359 @end itemize
13360
13361 @anchor{overlay}
13362 @section overlay
13363
13364 Overlay one video on top of another.
13365
13366 It takes two inputs and has one output. The first input is the "main"
13367 video on which the second input is overlaid.
13368
13369 It accepts the following parameters:
13370
13371 A description of the accepted options follows.
13372
13373 @table @option
13374 @item x
13375 @item y
13376 Set the expression for the x and y coordinates of the overlaid video
13377 on the main video. Default value is "0" for both expressions. In case
13378 the expression is invalid, it is set to a huge value (meaning that the
13379 overlay will not be displayed within the output visible area).
13380
13381 @item eof_action
13382 See @ref{framesync}.
13383
13384 @item eval
13385 Set when the expressions for @option{x}, and @option{y} are evaluated.
13386
13387 It accepts the following values:
13388 @table @samp
13389 @item init
13390 only evaluate expressions once during the filter initialization or
13391 when a command is processed
13392
13393 @item frame
13394 evaluate expressions for each incoming frame
13395 @end table
13396
13397 Default value is @samp{frame}.
13398
13399 @item shortest
13400 See @ref{framesync}.
13401
13402 @item format
13403 Set the format for the output video.
13404
13405 It accepts the following values:
13406 @table @samp
13407 @item yuv420
13408 force YUV420 output
13409
13410 @item yuv422
13411 force YUV422 output
13412
13413 @item yuv444
13414 force YUV444 output
13415
13416 @item rgb
13417 force packed RGB output
13418
13419 @item gbrp
13420 force planar RGB output
13421
13422 @item auto
13423 automatically pick format
13424 @end table
13425
13426 Default value is @samp{yuv420}.
13427
13428 @item repeatlast
13429 See @ref{framesync}.
13430
13431 @item alpha
13432 Set format of alpha of the overlaid video, it can be @var{straight} or
13433 @var{premultiplied}. Default is @var{straight}.
13434 @end table
13435
13436 The @option{x}, and @option{y} expressions can contain the following
13437 parameters.
13438
13439 @table @option
13440 @item main_w, W
13441 @item main_h, H
13442 The main input width and height.
13443
13444 @item overlay_w, w
13445 @item overlay_h, h
13446 The overlay input width and height.
13447
13448 @item x
13449 @item y
13450 The computed values for @var{x} and @var{y}. They are evaluated for
13451 each new frame.
13452
13453 @item hsub
13454 @item vsub
13455 horizontal and vertical chroma subsample values of the output
13456 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
13457 @var{vsub} is 1.
13458
13459 @item n
13460 the number of input frame, starting from 0
13461
13462 @item pos
13463 the position in the file of the input frame, NAN if unknown
13464
13465 @item t
13466 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
13467
13468 @end table
13469
13470 This filter also supports the @ref{framesync} options.
13471
13472 Note that the @var{n}, @var{pos}, @var{t} variables are available only
13473 when evaluation is done @emph{per frame}, and will evaluate to NAN
13474 when @option{eval} is set to @samp{init}.
13475
13476 Be aware that frames are taken from each input video in timestamp
13477 order, hence, if their initial timestamps differ, it is a good idea
13478 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
13479 have them begin in the same zero timestamp, as the example for
13480 the @var{movie} filter does.
13481
13482 You can chain together more overlays but you should test the
13483 efficiency of such approach.
13484
13485 @subsection Commands
13486
13487 This filter supports the following commands:
13488 @table @option
13489 @item x
13490 @item y
13491 Modify the x and y of the overlay input.
13492 The command accepts the same syntax of the corresponding option.
13493
13494 If the specified expression is not valid, it is kept at its current
13495 value.
13496 @end table
13497
13498 @subsection Examples
13499
13500 @itemize
13501 @item
13502 Draw the overlay at 10 pixels from the bottom right corner of the main
13503 video:
13504 @example
13505 overlay=main_w-overlay_w-10:main_h-overlay_h-10
13506 @end example
13507
13508 Using named options the example above becomes:
13509 @example
13510 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
13511 @end example
13512
13513 @item
13514 Insert a transparent PNG logo in the bottom left corner of the input,
13515 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
13516 @example
13517 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
13518 @end example
13519
13520 @item
13521 Insert 2 different transparent PNG logos (second logo on bottom
13522 right corner) using the @command{ffmpeg} tool:
13523 @example
13524 ffmpeg -i input -i logo1 -i logo2 -filter_complex 'overlay=x=10:y=H-h-10,overlay=x=W-w-10:y=H-h-10' output
13525 @end example
13526
13527 @item
13528 Add a transparent color layer on top of the main video; @code{WxH}
13529 must specify the size of the main input to the overlay filter:
13530 @example
13531 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
13532 @end example
13533
13534 @item
13535 Play an original video and a filtered version (here with the deshake
13536 filter) side by side using the @command{ffplay} tool:
13537 @example
13538 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
13539 @end example
13540
13541 The above command is the same as:
13542 @example
13543 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
13544 @end example
13545
13546 @item
13547 Make a sliding overlay appearing from the left to the right top part of the
13548 screen starting since time 2:
13549 @example
13550 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
13551 @end example
13552
13553 @item
13554 Compose output by putting two input videos side to side:
13555 @example
13556 ffmpeg -i left.avi -i right.avi -filter_complex "
13557 nullsrc=size=200x100 [background];
13558 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
13559 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
13560 [background][left]       overlay=shortest=1       [background+left];
13561 [background+left][right] overlay=shortest=1:x=100 [left+right]
13562 "
13563 @end example
13564
13565 @item
13566 Mask 10-20 seconds of a video by applying the delogo filter to a section
13567 @example
13568 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
13569 -vf '[in]split[split_main][split_delogo];[split_delogo]trim=start=360:end=371,delogo=0:0:640:480[delogoed];[split_main][delogoed]overlay=eof_action=pass[out]'
13570 masked.avi
13571 @end example
13572
13573 @item
13574 Chain several overlays in cascade:
13575 @example
13576 nullsrc=s=200x200 [bg];
13577 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
13578 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
13579 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
13580 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
13581 [in3] null,       [mid2] overlay=100:100 [out0]
13582 @end example
13583
13584 @end itemize
13585
13586 @section owdenoise
13587
13588 Apply Overcomplete Wavelet denoiser.
13589
13590 The filter accepts the following options:
13591
13592 @table @option
13593 @item depth
13594 Set depth.
13595
13596 Larger depth values will denoise lower frequency components more, but
13597 slow down filtering.
13598
13599 Must be an int in the range 8-16, default is @code{8}.
13600
13601 @item luma_strength, ls
13602 Set luma strength.
13603
13604 Must be a double value in the range 0-1000, default is @code{1.0}.
13605
13606 @item chroma_strength, cs
13607 Set chroma strength.
13608
13609 Must be a double value in the range 0-1000, default is @code{1.0}.
13610 @end table
13611
13612 @anchor{pad}
13613 @section pad
13614
13615 Add paddings to the input image, and place the original input at the
13616 provided @var{x}, @var{y} coordinates.
13617
13618 It accepts the following parameters:
13619
13620 @table @option
13621 @item width, w
13622 @item height, h
13623 Specify an expression for the size of the output image with the
13624 paddings added. If the value for @var{width} or @var{height} is 0, the
13625 corresponding input size is used for the output.
13626
13627 The @var{width} expression can reference the value set by the
13628 @var{height} expression, and vice versa.
13629
13630 The default value of @var{width} and @var{height} is 0.
13631
13632 @item x
13633 @item y
13634 Specify the offsets to place the input image at within the padded area,
13635 with respect to the top/left border of the output image.
13636
13637 The @var{x} expression can reference the value set by the @var{y}
13638 expression, and vice versa.
13639
13640 The default value of @var{x} and @var{y} is 0.
13641
13642 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
13643 so the input image is centered on the padded area.
13644
13645 @item color
13646 Specify the color of the padded area. For the syntax of this option,
13647 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13648 manual,ffmpeg-utils}.
13649
13650 The default value of @var{color} is "black".
13651
13652 @item eval
13653 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
13654
13655 It accepts the following values:
13656
13657 @table @samp
13658 @item init
13659 Only evaluate expressions once during the filter initialization or when
13660 a command is processed.
13661
13662 @item frame
13663 Evaluate expressions for each incoming frame.
13664
13665 @end table
13666
13667 Default value is @samp{init}.
13668
13669 @item aspect
13670 Pad to aspect instead to a resolution.
13671
13672 @end table
13673
13674 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
13675 options are expressions containing the following constants:
13676
13677 @table @option
13678 @item in_w
13679 @item in_h
13680 The input video width and height.
13681
13682 @item iw
13683 @item ih
13684 These are the same as @var{in_w} and @var{in_h}.
13685
13686 @item out_w
13687 @item out_h
13688 The output width and height (the size of the padded area), as
13689 specified by the @var{width} and @var{height} expressions.
13690
13691 @item ow
13692 @item oh
13693 These are the same as @var{out_w} and @var{out_h}.
13694
13695 @item x
13696 @item y
13697 The x and y offsets as specified by the @var{x} and @var{y}
13698 expressions, or NAN if not yet specified.
13699
13700 @item a
13701 same as @var{iw} / @var{ih}
13702
13703 @item sar
13704 input sample aspect ratio
13705
13706 @item dar
13707 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
13708
13709 @item hsub
13710 @item vsub
13711 The horizontal and vertical chroma subsample values. For example for the
13712 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13713 @end table
13714
13715 @subsection Examples
13716
13717 @itemize
13718 @item
13719 Add paddings with the color "violet" to the input video. The output video
13720 size is 640x480, and the top-left corner of the input video is placed at
13721 column 0, row 40
13722 @example
13723 pad=640:480:0:40:violet
13724 @end example
13725
13726 The example above is equivalent to the following command:
13727 @example
13728 pad=width=640:height=480:x=0:y=40:color=violet
13729 @end example
13730
13731 @item
13732 Pad the input to get an output with dimensions increased by 3/2,
13733 and put the input video at the center of the padded area:
13734 @example
13735 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
13736 @end example
13737
13738 @item
13739 Pad the input to get a squared output with size equal to the maximum
13740 value between the input width and height, and put the input video at
13741 the center of the padded area:
13742 @example
13743 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
13744 @end example
13745
13746 @item
13747 Pad the input to get a final w/h ratio of 16:9:
13748 @example
13749 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
13750 @end example
13751
13752 @item
13753 In case of anamorphic video, in order to set the output display aspect
13754 correctly, it is necessary to use @var{sar} in the expression,
13755 according to the relation:
13756 @example
13757 (ih * X / ih) * sar = output_dar
13758 X = output_dar / sar
13759 @end example
13760
13761 Thus the previous example needs to be modified to:
13762 @example
13763 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
13764 @end example
13765
13766 @item
13767 Double the output size and put the input video in the bottom-right
13768 corner of the output padded area:
13769 @example
13770 pad="2*iw:2*ih:ow-iw:oh-ih"
13771 @end example
13772 @end itemize
13773
13774 @anchor{palettegen}
13775 @section palettegen
13776
13777 Generate one palette for a whole video stream.
13778
13779 It accepts the following options:
13780
13781 @table @option
13782 @item max_colors
13783 Set the maximum number of colors to quantize in the palette.
13784 Note: the palette will still contain 256 colors; the unused palette entries
13785 will be black.
13786
13787 @item reserve_transparent
13788 Create a palette of 255 colors maximum and reserve the last one for
13789 transparency. Reserving the transparency color is useful for GIF optimization.
13790 If not set, the maximum of colors in the palette will be 256. You probably want
13791 to disable this option for a standalone image.
13792 Set by default.
13793
13794 @item transparency_color
13795 Set the color that will be used as background for transparency.
13796
13797 @item stats_mode
13798 Set statistics mode.
13799
13800 It accepts the following values:
13801 @table @samp
13802 @item full
13803 Compute full frame histograms.
13804 @item diff
13805 Compute histograms only for the part that differs from previous frame. This
13806 might be relevant to give more importance to the moving part of your input if
13807 the background is static.
13808 @item single
13809 Compute new histogram for each frame.
13810 @end table
13811
13812 Default value is @var{full}.
13813 @end table
13814
13815 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
13816 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
13817 color quantization of the palette. This information is also visible at
13818 @var{info} logging level.
13819
13820 @subsection Examples
13821
13822 @itemize
13823 @item
13824 Generate a representative palette of a given video using @command{ffmpeg}:
13825 @example
13826 ffmpeg -i input.mkv -vf palettegen palette.png
13827 @end example
13828 @end itemize
13829
13830 @section paletteuse
13831
13832 Use a palette to downsample an input video stream.
13833
13834 The filter takes two inputs: one video stream and a palette. The palette must
13835 be a 256 pixels image.
13836
13837 It accepts the following options:
13838
13839 @table @option
13840 @item dither
13841 Select dithering mode. Available algorithms are:
13842 @table @samp
13843 @item bayer
13844 Ordered 8x8 bayer dithering (deterministic)
13845 @item heckbert
13846 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
13847 Note: this dithering is sometimes considered "wrong" and is included as a
13848 reference.
13849 @item floyd_steinberg
13850 Floyd and Steingberg dithering (error diffusion)
13851 @item sierra2
13852 Frankie Sierra dithering v2 (error diffusion)
13853 @item sierra2_4a
13854 Frankie Sierra dithering v2 "Lite" (error diffusion)
13855 @end table
13856
13857 Default is @var{sierra2_4a}.
13858
13859 @item bayer_scale
13860 When @var{bayer} dithering is selected, this option defines the scale of the
13861 pattern (how much the crosshatch pattern is visible). A low value means more
13862 visible pattern for less banding, and higher value means less visible pattern
13863 at the cost of more banding.
13864
13865 The option must be an integer value in the range [0,5]. Default is @var{2}.
13866
13867 @item diff_mode
13868 If set, define the zone to process
13869
13870 @table @samp
13871 @item rectangle
13872 Only the changing rectangle will be reprocessed. This is similar to GIF
13873 cropping/offsetting compression mechanism. This option can be useful for speed
13874 if only a part of the image is changing, and has use cases such as limiting the
13875 scope of the error diffusal @option{dither} to the rectangle that bounds the
13876 moving scene (it leads to more deterministic output if the scene doesn't change
13877 much, and as a result less moving noise and better GIF compression).
13878 @end table
13879
13880 Default is @var{none}.
13881
13882 @item new
13883 Take new palette for each output frame.
13884
13885 @item alpha_threshold
13886 Sets the alpha threshold for transparency. Alpha values above this threshold
13887 will be treated as completely opaque, and values below this threshold will be
13888 treated as completely transparent.
13889
13890 The option must be an integer value in the range [0,255]. Default is @var{128}.
13891 @end table
13892
13893 @subsection Examples
13894
13895 @itemize
13896 @item
13897 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
13898 using @command{ffmpeg}:
13899 @example
13900 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
13901 @end example
13902 @end itemize
13903
13904 @section perspective
13905
13906 Correct perspective of video not recorded perpendicular to the screen.
13907
13908 A description of the accepted parameters follows.
13909
13910 @table @option
13911 @item x0
13912 @item y0
13913 @item x1
13914 @item y1
13915 @item x2
13916 @item y2
13917 @item x3
13918 @item y3
13919 Set coordinates expression for top left, top right, bottom left and bottom right corners.
13920 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
13921 If the @code{sense} option is set to @code{source}, then the specified points will be sent
13922 to the corners of the destination. If the @code{sense} option is set to @code{destination},
13923 then the corners of the source will be sent to the specified coordinates.
13924
13925 The expressions can use the following variables:
13926
13927 @table @option
13928 @item W
13929 @item H
13930 the width and height of video frame.
13931 @item in
13932 Input frame count.
13933 @item on
13934 Output frame count.
13935 @end table
13936
13937 @item interpolation
13938 Set interpolation for perspective correction.
13939
13940 It accepts the following values:
13941 @table @samp
13942 @item linear
13943 @item cubic
13944 @end table
13945
13946 Default value is @samp{linear}.
13947
13948 @item sense
13949 Set interpretation of coordinate options.
13950
13951 It accepts the following values:
13952 @table @samp
13953 @item 0, source
13954
13955 Send point in the source specified by the given coordinates to
13956 the corners of the destination.
13957
13958 @item 1, destination
13959
13960 Send the corners of the source to the point in the destination specified
13961 by the given coordinates.
13962
13963 Default value is @samp{source}.
13964 @end table
13965
13966 @item eval
13967 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
13968
13969 It accepts the following values:
13970 @table @samp
13971 @item init
13972 only evaluate expressions once during the filter initialization or
13973 when a command is processed
13974
13975 @item frame
13976 evaluate expressions for each incoming frame
13977 @end table
13978
13979 Default value is @samp{init}.
13980 @end table
13981
13982 @section phase
13983
13984 Delay interlaced video by one field time so that the field order changes.
13985
13986 The intended use is to fix PAL movies that have been captured with the
13987 opposite field order to the film-to-video transfer.
13988
13989 A description of the accepted parameters follows.
13990
13991 @table @option
13992 @item mode
13993 Set phase mode.
13994
13995 It accepts the following values:
13996 @table @samp
13997 @item t
13998 Capture field order top-first, transfer bottom-first.
13999 Filter will delay the bottom field.
14000
14001 @item b
14002 Capture field order bottom-first, transfer top-first.
14003 Filter will delay the top field.
14004
14005 @item p
14006 Capture and transfer with the same field order. This mode only exists
14007 for the documentation of the other options to refer to, but if you
14008 actually select it, the filter will faithfully do nothing.
14009
14010 @item a
14011 Capture field order determined automatically by field flags, transfer
14012 opposite.
14013 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14014 basis using field flags. If no field information is available,
14015 then this works just like @samp{u}.
14016
14017 @item u
14018 Capture unknown or varying, transfer opposite.
14019 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14020 analyzing the images and selecting the alternative that produces best
14021 match between the fields.
14022
14023 @item T
14024 Capture top-first, transfer unknown or varying.
14025 Filter selects among @samp{t} and @samp{p} using image analysis.
14026
14027 @item B
14028 Capture bottom-first, transfer unknown or varying.
14029 Filter selects among @samp{b} and @samp{p} using image analysis.
14030
14031 @item A
14032 Capture determined by field flags, transfer unknown or varying.
14033 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14034 image analysis. If no field information is available, then this works just
14035 like @samp{U}. This is the default mode.
14036
14037 @item U
14038 Both capture and transfer unknown or varying.
14039 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14040 @end table
14041 @end table
14042
14043 @section photosensitivity
14044 Reduce various flashes in video, so to help users with epilepsy.
14045
14046 It accepts the following options:
14047 @table @option
14048 @item frames, f
14049 Set how many frames to use when filtering. Default is 30.
14050
14051 @item threshold, t
14052 Set detection threshold factor. Default is 1.
14053 Lower is stricter.
14054
14055 @item skip
14056 Set how many pixels to skip when sampling frames. Defalt is 1.
14057 Allowed range is from 1 to 1024.
14058
14059 @item bypass
14060 Leave frames unchanged. Default is disabled.
14061 @end table
14062
14063 @section pixdesctest
14064
14065 Pixel format descriptor test filter, mainly useful for internal
14066 testing. The output video should be equal to the input video.
14067
14068 For example:
14069 @example
14070 format=monow, pixdesctest
14071 @end example
14072
14073 can be used to test the monowhite pixel format descriptor definition.
14074
14075 @section pixscope
14076
14077 Display sample values of color channels. Mainly useful for checking color
14078 and levels. Minimum supported resolution is 640x480.
14079
14080 The filters accept the following options:
14081
14082 @table @option
14083 @item x
14084 Set scope X position, relative offset on X axis.
14085
14086 @item y
14087 Set scope Y position, relative offset on Y axis.
14088
14089 @item w
14090 Set scope width.
14091
14092 @item h
14093 Set scope height.
14094
14095 @item o
14096 Set window opacity. This window also holds statistics about pixel area.
14097
14098 @item wx
14099 Set window X position, relative offset on X axis.
14100
14101 @item wy
14102 Set window Y position, relative offset on Y axis.
14103 @end table
14104
14105 @section pp
14106
14107 Enable the specified chain of postprocessing subfilters using libpostproc. This
14108 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14109 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14110 Each subfilter and some options have a short and a long name that can be used
14111 interchangeably, i.e. dr/dering are the same.
14112
14113 The filters accept the following options:
14114
14115 @table @option
14116 @item subfilters
14117 Set postprocessing subfilters string.
14118 @end table
14119
14120 All subfilters share common options to determine their scope:
14121
14122 @table @option
14123 @item a/autoq
14124 Honor the quality commands for this subfilter.
14125
14126 @item c/chrom
14127 Do chrominance filtering, too (default).
14128
14129 @item y/nochrom
14130 Do luminance filtering only (no chrominance).
14131
14132 @item n/noluma
14133 Do chrominance filtering only (no luminance).
14134 @end table
14135
14136 These options can be appended after the subfilter name, separated by a '|'.
14137
14138 Available subfilters are:
14139
14140 @table @option
14141 @item hb/hdeblock[|difference[|flatness]]
14142 Horizontal deblocking filter
14143 @table @option
14144 @item difference
14145 Difference factor where higher values mean more deblocking (default: @code{32}).
14146 @item flatness
14147 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14148 @end table
14149
14150 @item vb/vdeblock[|difference[|flatness]]
14151 Vertical deblocking filter
14152 @table @option
14153 @item difference
14154 Difference factor where higher values mean more deblocking (default: @code{32}).
14155 @item flatness
14156 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14157 @end table
14158
14159 @item ha/hadeblock[|difference[|flatness]]
14160 Accurate horizontal deblocking filter
14161 @table @option
14162 @item difference
14163 Difference factor where higher values mean more deblocking (default: @code{32}).
14164 @item flatness
14165 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14166 @end table
14167
14168 @item va/vadeblock[|difference[|flatness]]
14169 Accurate vertical deblocking filter
14170 @table @option
14171 @item difference
14172 Difference factor where higher values mean more deblocking (default: @code{32}).
14173 @item flatness
14174 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14175 @end table
14176 @end table
14177
14178 The horizontal and vertical deblocking filters share the difference and
14179 flatness values so you cannot set different horizontal and vertical
14180 thresholds.
14181
14182 @table @option
14183 @item h1/x1hdeblock
14184 Experimental horizontal deblocking filter
14185
14186 @item v1/x1vdeblock
14187 Experimental vertical deblocking filter
14188
14189 @item dr/dering
14190 Deringing filter
14191
14192 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14193 @table @option
14194 @item threshold1
14195 larger -> stronger filtering
14196 @item threshold2
14197 larger -> stronger filtering
14198 @item threshold3
14199 larger -> stronger filtering
14200 @end table
14201
14202 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
14203 @table @option
14204 @item f/fullyrange
14205 Stretch luminance to @code{0-255}.
14206 @end table
14207
14208 @item lb/linblenddeint
14209 Linear blend deinterlacing filter that deinterlaces the given block by
14210 filtering all lines with a @code{(1 2 1)} filter.
14211
14212 @item li/linipoldeint
14213 Linear interpolating deinterlacing filter that deinterlaces the given block by
14214 linearly interpolating every second line.
14215
14216 @item ci/cubicipoldeint
14217 Cubic interpolating deinterlacing filter deinterlaces the given block by
14218 cubically interpolating every second line.
14219
14220 @item md/mediandeint
14221 Median deinterlacing filter that deinterlaces the given block by applying a
14222 median filter to every second line.
14223
14224 @item fd/ffmpegdeint
14225 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
14226 second line with a @code{(-1 4 2 4 -1)} filter.
14227
14228 @item l5/lowpass5
14229 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
14230 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
14231
14232 @item fq/forceQuant[|quantizer]
14233 Overrides the quantizer table from the input with the constant quantizer you
14234 specify.
14235 @table @option
14236 @item quantizer
14237 Quantizer to use
14238 @end table
14239
14240 @item de/default
14241 Default pp filter combination (@code{hb|a,vb|a,dr|a})
14242
14243 @item fa/fast
14244 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
14245
14246 @item ac
14247 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
14248 @end table
14249
14250 @subsection Examples
14251
14252 @itemize
14253 @item
14254 Apply horizontal and vertical deblocking, deringing and automatic
14255 brightness/contrast:
14256 @example
14257 pp=hb/vb/dr/al
14258 @end example
14259
14260 @item
14261 Apply default filters without brightness/contrast correction:
14262 @example
14263 pp=de/-al
14264 @end example
14265
14266 @item
14267 Apply default filters and temporal denoiser:
14268 @example
14269 pp=default/tmpnoise|1|2|3
14270 @end example
14271
14272 @item
14273 Apply deblocking on luminance only, and switch vertical deblocking on or off
14274 automatically depending on available CPU time:
14275 @example
14276 pp=hb|y/vb|a
14277 @end example
14278 @end itemize
14279
14280 @section pp7
14281 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
14282 similar to spp = 6 with 7 point DCT, where only the center sample is
14283 used after IDCT.
14284
14285 The filter accepts the following options:
14286
14287 @table @option
14288 @item qp
14289 Force a constant quantization parameter. It accepts an integer in range
14290 0 to 63. If not set, the filter will use the QP from the video stream
14291 (if available).
14292
14293 @item mode
14294 Set thresholding mode. Available modes are:
14295
14296 @table @samp
14297 @item hard
14298 Set hard thresholding.
14299 @item soft
14300 Set soft thresholding (better de-ringing effect, but likely blurrier).
14301 @item medium
14302 Set medium thresholding (good results, default).
14303 @end table
14304 @end table
14305
14306 @section premultiply
14307 Apply alpha premultiply effect to input video stream using first plane
14308 of second stream as alpha.
14309
14310 Both streams must have same dimensions and same pixel format.
14311
14312 The filter accepts the following option:
14313
14314 @table @option
14315 @item planes
14316 Set which planes will be processed, unprocessed planes will be copied.
14317 By default value 0xf, all planes will be processed.
14318
14319 @item inplace
14320 Do not require 2nd input for processing, instead use alpha plane from input stream.
14321 @end table
14322
14323 @section prewitt
14324 Apply prewitt operator to input video stream.
14325
14326 The filter accepts the following option:
14327
14328 @table @option
14329 @item planes
14330 Set which planes will be processed, unprocessed planes will be copied.
14331 By default value 0xf, all planes will be processed.
14332
14333 @item scale
14334 Set value which will be multiplied with filtered result.
14335
14336 @item delta
14337 Set value which will be added to filtered result.
14338 @end table
14339
14340 @anchor{program_opencl}
14341 @section program_opencl
14342
14343 Filter video using an OpenCL program.
14344
14345 @table @option
14346
14347 @item source
14348 OpenCL program source file.
14349
14350 @item kernel
14351 Kernel name in program.
14352
14353 @item inputs
14354 Number of inputs to the filter.  Defaults to 1.
14355
14356 @item size, s
14357 Size of output frames.  Defaults to the same as the first input.
14358
14359 @end table
14360
14361 The program source file must contain a kernel function with the given name,
14362 which will be run once for each plane of the output.  Each run on a plane
14363 gets enqueued as a separate 2D global NDRange with one work-item for each
14364 pixel to be generated.  The global ID offset for each work-item is therefore
14365 the coordinates of a pixel in the destination image.
14366
14367 The kernel function needs to take the following arguments:
14368 @itemize
14369 @item
14370 Destination image, @var{__write_only image2d_t}.
14371
14372 This image will become the output; the kernel should write all of it.
14373 @item
14374 Frame index, @var{unsigned int}.
14375
14376 This is a counter starting from zero and increasing by one for each frame.
14377 @item
14378 Source images, @var{__read_only image2d_t}.
14379
14380 These are the most recent images on each input.  The kernel may read from
14381 them to generate the output, but they can't be written to.
14382 @end itemize
14383
14384 Example programs:
14385
14386 @itemize
14387 @item
14388 Copy the input to the output (output must be the same size as the input).
14389 @verbatim
14390 __kernel void copy(__write_only image2d_t destination,
14391                    unsigned int index,
14392                    __read_only  image2d_t source)
14393 {
14394     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
14395
14396     int2 location = (int2)(get_global_id(0), get_global_id(1));
14397
14398     float4 value = read_imagef(source, sampler, location);
14399
14400     write_imagef(destination, location, value);
14401 }
14402 @end verbatim
14403
14404 @item
14405 Apply a simple transformation, rotating the input by an amount increasing
14406 with the index counter.  Pixel values are linearly interpolated by the
14407 sampler, and the output need not have the same dimensions as the input.
14408 @verbatim
14409 __kernel void rotate_image(__write_only image2d_t dst,
14410                            unsigned int index,
14411                            __read_only  image2d_t src)
14412 {
14413     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14414                                CLK_FILTER_LINEAR);
14415
14416     float angle = (float)index / 100.0f;
14417
14418     float2 dst_dim = convert_float2(get_image_dim(dst));
14419     float2 src_dim = convert_float2(get_image_dim(src));
14420
14421     float2 dst_cen = dst_dim / 2.0f;
14422     float2 src_cen = src_dim / 2.0f;
14423
14424     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
14425
14426     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
14427     float2 src_pos = {
14428         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
14429         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
14430     };
14431     src_pos = src_pos * src_dim / dst_dim;
14432
14433     float2 src_loc = src_pos + src_cen;
14434
14435     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
14436         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
14437         write_imagef(dst, dst_loc, 0.5f);
14438     else
14439         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
14440 }
14441 @end verbatim
14442
14443 @item
14444 Blend two inputs together, with the amount of each input used varying
14445 with the index counter.
14446 @verbatim
14447 __kernel void blend_images(__write_only image2d_t dst,
14448                            unsigned int index,
14449                            __read_only  image2d_t src1,
14450                            __read_only  image2d_t src2)
14451 {
14452     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14453                                CLK_FILTER_LINEAR);
14454
14455     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
14456
14457     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
14458     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
14459     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
14460
14461     float4 val1 = read_imagef(src1, sampler, src1_loc);
14462     float4 val2 = read_imagef(src2, sampler, src2_loc);
14463
14464     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
14465 }
14466 @end verbatim
14467
14468 @end itemize
14469
14470 @section pseudocolor
14471
14472 Alter frame colors in video with pseudocolors.
14473
14474 This filter accepts the following options:
14475
14476 @table @option
14477 @item c0
14478 set pixel first component expression
14479
14480 @item c1
14481 set pixel second component expression
14482
14483 @item c2
14484 set pixel third component expression
14485
14486 @item c3
14487 set pixel fourth component expression, corresponds to the alpha component
14488
14489 @item i
14490 set component to use as base for altering colors
14491 @end table
14492
14493 Each of them specifies the expression to use for computing the lookup table for
14494 the corresponding pixel component values.
14495
14496 The expressions can contain the following constants and functions:
14497
14498 @table @option
14499 @item w
14500 @item h
14501 The input width and height.
14502
14503 @item val
14504 The input value for the pixel component.
14505
14506 @item ymin, umin, vmin, amin
14507 The minimum allowed component value.
14508
14509 @item ymax, umax, vmax, amax
14510 The maximum allowed component value.
14511 @end table
14512
14513 All expressions default to "val".
14514
14515 @subsection Examples
14516
14517 @itemize
14518 @item
14519 Change too high luma values to gradient:
14520 @example
14521 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'"
14522 @end example
14523 @end itemize
14524
14525 @section psnr
14526
14527 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
14528 Ratio) between two input videos.
14529
14530 This filter takes in input two input videos, the first input is
14531 considered the "main" source and is passed unchanged to the
14532 output. The second input is used as a "reference" video for computing
14533 the PSNR.
14534
14535 Both video inputs must have the same resolution and pixel format for
14536 this filter to work correctly. Also it assumes that both inputs
14537 have the same number of frames, which are compared one by one.
14538
14539 The obtained average PSNR is printed through the logging system.
14540
14541 The filter stores the accumulated MSE (mean squared error) of each
14542 frame, and at the end of the processing it is averaged across all frames
14543 equally, and the following formula is applied to obtain the PSNR:
14544
14545 @example
14546 PSNR = 10*log10(MAX^2/MSE)
14547 @end example
14548
14549 Where MAX is the average of the maximum values of each component of the
14550 image.
14551
14552 The description of the accepted parameters follows.
14553
14554 @table @option
14555 @item stats_file, f
14556 If specified the filter will use the named file to save the PSNR of
14557 each individual frame. When filename equals "-" the data is sent to
14558 standard output.
14559
14560 @item stats_version
14561 Specifies which version of the stats file format to use. Details of
14562 each format are written below.
14563 Default value is 1.
14564
14565 @item stats_add_max
14566 Determines whether the max value is output to the stats log.
14567 Default value is 0.
14568 Requires stats_version >= 2. If this is set and stats_version < 2,
14569 the filter will return an error.
14570 @end table
14571
14572 This filter also supports the @ref{framesync} options.
14573
14574 The file printed if @var{stats_file} is selected, contains a sequence of
14575 key/value pairs of the form @var{key}:@var{value} for each compared
14576 couple of frames.
14577
14578 If a @var{stats_version} greater than 1 is specified, a header line precedes
14579 the list of per-frame-pair stats, with key value pairs following the frame
14580 format with the following parameters:
14581
14582 @table @option
14583 @item psnr_log_version
14584 The version of the log file format. Will match @var{stats_version}.
14585
14586 @item fields
14587 A comma separated list of the per-frame-pair parameters included in
14588 the log.
14589 @end table
14590
14591 A description of each shown per-frame-pair parameter follows:
14592
14593 @table @option
14594 @item n
14595 sequential number of the input frame, starting from 1
14596
14597 @item mse_avg
14598 Mean Square Error pixel-by-pixel average difference of the compared
14599 frames, averaged over all the image components.
14600
14601 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
14602 Mean Square Error pixel-by-pixel average difference of the compared
14603 frames for the component specified by the suffix.
14604
14605 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
14606 Peak Signal to Noise ratio of the compared frames for the component
14607 specified by the suffix.
14608
14609 @item max_avg, max_y, max_u, max_v
14610 Maximum allowed value for each channel, and average over all
14611 channels.
14612 @end table
14613
14614 For example:
14615 @example
14616 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14617 [main][ref] psnr="stats_file=stats.log" [out]
14618 @end example
14619
14620 On this example the input file being processed is compared with the
14621 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
14622 is stored in @file{stats.log}.
14623
14624 @anchor{pullup}
14625 @section pullup
14626
14627 Pulldown reversal (inverse telecine) filter, capable of handling mixed
14628 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
14629 content.
14630
14631 The pullup filter is designed to take advantage of future context in making
14632 its decisions. This filter is stateless in the sense that it does not lock
14633 onto a pattern to follow, but it instead looks forward to the following
14634 fields in order to identify matches and rebuild progressive frames.
14635
14636 To produce content with an even framerate, insert the fps filter after
14637 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
14638 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
14639
14640 The filter accepts the following options:
14641
14642 @table @option
14643 @item jl
14644 @item jr
14645 @item jt
14646 @item jb
14647 These options set the amount of "junk" to ignore at the left, right, top, and
14648 bottom of the image, respectively. Left and right are in units of 8 pixels,
14649 while top and bottom are in units of 2 lines.
14650 The default is 8 pixels on each side.
14651
14652 @item sb
14653 Set the strict breaks. Setting this option to 1 will reduce the chances of
14654 filter generating an occasional mismatched frame, but it may also cause an
14655 excessive number of frames to be dropped during high motion sequences.
14656 Conversely, setting it to -1 will make filter match fields more easily.
14657 This may help processing of video where there is slight blurring between
14658 the fields, but may also cause there to be interlaced frames in the output.
14659 Default value is @code{0}.
14660
14661 @item mp
14662 Set the metric plane to use. It accepts the following values:
14663 @table @samp
14664 @item l
14665 Use luma plane.
14666
14667 @item u
14668 Use chroma blue plane.
14669
14670 @item v
14671 Use chroma red plane.
14672 @end table
14673
14674 This option may be set to use chroma plane instead of the default luma plane
14675 for doing filter's computations. This may improve accuracy on very clean
14676 source material, but more likely will decrease accuracy, especially if there
14677 is chroma noise (rainbow effect) or any grayscale video.
14678 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
14679 load and make pullup usable in realtime on slow machines.
14680 @end table
14681
14682 For best results (without duplicated frames in the output file) it is
14683 necessary to change the output frame rate. For example, to inverse
14684 telecine NTSC input:
14685 @example
14686 ffmpeg -i input -vf pullup -r 24000/1001 ...
14687 @end example
14688
14689 @section qp
14690
14691 Change video quantization parameters (QP).
14692
14693 The filter accepts the following option:
14694
14695 @table @option
14696 @item qp
14697 Set expression for quantization parameter.
14698 @end table
14699
14700 The expression is evaluated through the eval API and can contain, among others,
14701 the following constants:
14702
14703 @table @var
14704 @item known
14705 1 if index is not 129, 0 otherwise.
14706
14707 @item qp
14708 Sequential index starting from -129 to 128.
14709 @end table
14710
14711 @subsection Examples
14712
14713 @itemize
14714 @item
14715 Some equation like:
14716 @example
14717 qp=2+2*sin(PI*qp)
14718 @end example
14719 @end itemize
14720
14721 @section random
14722
14723 Flush video frames from internal cache of frames into a random order.
14724 No frame is discarded.
14725 Inspired by @ref{frei0r} nervous filter.
14726
14727 @table @option
14728 @item frames
14729 Set size in number of frames of internal cache, in range from @code{2} to
14730 @code{512}. Default is @code{30}.
14731
14732 @item seed
14733 Set seed for random number generator, must be an integer included between
14734 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14735 less than @code{0}, the filter will try to use a good random seed on a
14736 best effort basis.
14737 @end table
14738
14739 @section readeia608
14740
14741 Read closed captioning (EIA-608) information from the top lines of a video frame.
14742
14743 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
14744 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
14745 with EIA-608 data (starting from 0). A description of each metadata value follows:
14746
14747 @table @option
14748 @item lavfi.readeia608.X.cc
14749 The two bytes stored as EIA-608 data (printed in hexadecimal).
14750
14751 @item lavfi.readeia608.X.line
14752 The number of the line on which the EIA-608 data was identified and read.
14753 @end table
14754
14755 This filter accepts the following options:
14756
14757 @table @option
14758 @item scan_min
14759 Set the line to start scanning for EIA-608 data. Default is @code{0}.
14760
14761 @item scan_max
14762 Set the line to end scanning for EIA-608 data. Default is @code{29}.
14763
14764 @item mac
14765 Set minimal acceptable amplitude change for sync codes detection.
14766 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
14767
14768 @item spw
14769 Set the ratio of width reserved for sync code detection.
14770 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
14771
14772 @item mhd
14773 Set the max peaks height difference for sync code detection.
14774 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14775
14776 @item mpd
14777 Set max peaks period difference for sync code detection.
14778 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14779
14780 @item msd
14781 Set the first two max start code bits differences.
14782 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
14783
14784 @item bhd
14785 Set the minimum ratio of bits height compared to 3rd start code bit.
14786 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
14787
14788 @item th_w
14789 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
14790
14791 @item th_b
14792 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
14793
14794 @item chp
14795 Enable checking the parity bit. In the event of a parity error, the filter will output
14796 @code{0x00} for that character. Default is false.
14797
14798 @item lp
14799 Lowpass lines prior to further processing. Default is disabled.
14800 @end table
14801
14802 @subsection Examples
14803
14804 @itemize
14805 @item
14806 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
14807 @example
14808 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
14809 @end example
14810 @end itemize
14811
14812 @section readvitc
14813
14814 Read vertical interval timecode (VITC) information from the top lines of a
14815 video frame.
14816
14817 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
14818 timecode value, if a valid timecode has been detected. Further metadata key
14819 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
14820 timecode data has been found or not.
14821
14822 This filter accepts the following options:
14823
14824 @table @option
14825 @item scan_max
14826 Set the maximum number of lines to scan for VITC data. If the value is set to
14827 @code{-1} the full video frame is scanned. Default is @code{45}.
14828
14829 @item thr_b
14830 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
14831 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
14832
14833 @item thr_w
14834 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
14835 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
14836 @end table
14837
14838 @subsection Examples
14839
14840 @itemize
14841 @item
14842 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
14843 draw @code{--:--:--:--} as a placeholder:
14844 @example
14845 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
14846 @end example
14847 @end itemize
14848
14849 @section remap
14850
14851 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
14852
14853 Destination pixel at position (X, Y) will be picked from source (x, y) position
14854 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
14855 value for pixel will be used for destination pixel.
14856
14857 Xmap and Ymap input video streams must be of same dimensions. Output video stream
14858 will have Xmap/Ymap video stream dimensions.
14859 Xmap and Ymap input video streams are 16bit depth, single channel.
14860
14861 @table @option
14862 @item format
14863 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
14864 Default is @code{color}.
14865 @end table
14866
14867 @section removegrain
14868
14869 The removegrain filter is a spatial denoiser for progressive video.
14870
14871 @table @option
14872 @item m0
14873 Set mode for the first plane.
14874
14875 @item m1
14876 Set mode for the second plane.
14877
14878 @item m2
14879 Set mode for the third plane.
14880
14881 @item m3
14882 Set mode for the fourth plane.
14883 @end table
14884
14885 Range of mode is from 0 to 24. Description of each mode follows:
14886
14887 @table @var
14888 @item 0
14889 Leave input plane unchanged. Default.
14890
14891 @item 1
14892 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
14893
14894 @item 2
14895 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
14896
14897 @item 3
14898 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
14899
14900 @item 4
14901 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
14902 This is equivalent to a median filter.
14903
14904 @item 5
14905 Line-sensitive clipping giving the minimal change.
14906
14907 @item 6
14908 Line-sensitive clipping, intermediate.
14909
14910 @item 7
14911 Line-sensitive clipping, intermediate.
14912
14913 @item 8
14914 Line-sensitive clipping, intermediate.
14915
14916 @item 9
14917 Line-sensitive clipping on a line where the neighbours pixels are the closest.
14918
14919 @item 10
14920 Replaces the target pixel with the closest neighbour.
14921
14922 @item 11
14923 [1 2 1] horizontal and vertical kernel blur.
14924
14925 @item 12
14926 Same as mode 11.
14927
14928 @item 13
14929 Bob mode, interpolates top field from the line where the neighbours
14930 pixels are the closest.
14931
14932 @item 14
14933 Bob mode, interpolates bottom field from the line where the neighbours
14934 pixels are the closest.
14935
14936 @item 15
14937 Bob mode, interpolates top field. Same as 13 but with a more complicated
14938 interpolation formula.
14939
14940 @item 16
14941 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
14942 interpolation formula.
14943
14944 @item 17
14945 Clips the pixel with the minimum and maximum of respectively the maximum and
14946 minimum of each pair of opposite neighbour pixels.
14947
14948 @item 18
14949 Line-sensitive clipping using opposite neighbours whose greatest distance from
14950 the current pixel is minimal.
14951
14952 @item 19
14953 Replaces the pixel with the average of its 8 neighbours.
14954
14955 @item 20
14956 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
14957
14958 @item 21
14959 Clips pixels using the averages of opposite neighbour.
14960
14961 @item 22
14962 Same as mode 21 but simpler and faster.
14963
14964 @item 23
14965 Small edge and halo removal, but reputed useless.
14966
14967 @item 24
14968 Similar as 23.
14969 @end table
14970
14971 @section removelogo
14972
14973 Suppress a TV station logo, using an image file to determine which
14974 pixels comprise the logo. It works by filling in the pixels that
14975 comprise the logo with neighboring pixels.
14976
14977 The filter accepts the following options:
14978
14979 @table @option
14980 @item filename, f
14981 Set the filter bitmap file, which can be any image format supported by
14982 libavformat. The width and height of the image file must match those of the
14983 video stream being processed.
14984 @end table
14985
14986 Pixels in the provided bitmap image with a value of zero are not
14987 considered part of the logo, non-zero pixels are considered part of
14988 the logo. If you use white (255) for the logo and black (0) for the
14989 rest, you will be safe. For making the filter bitmap, it is
14990 recommended to take a screen capture of a black frame with the logo
14991 visible, and then using a threshold filter followed by the erode
14992 filter once or twice.
14993
14994 If needed, little splotches can be fixed manually. Remember that if
14995 logo pixels are not covered, the filter quality will be much
14996 reduced. Marking too many pixels as part of the logo does not hurt as
14997 much, but it will increase the amount of blurring needed to cover over
14998 the image and will destroy more information than necessary, and extra
14999 pixels will slow things down on a large logo.
15000
15001 @section repeatfields
15002
15003 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15004 fields based on its value.
15005
15006 @section reverse
15007
15008 Reverse a video clip.
15009
15010 Warning: This filter requires memory to buffer the entire clip, so trimming
15011 is suggested.
15012
15013 @subsection Examples
15014
15015 @itemize
15016 @item
15017 Take the first 5 seconds of a clip, and reverse it.
15018 @example
15019 trim=end=5,reverse
15020 @end example
15021 @end itemize
15022
15023 @section rgbashift
15024 Shift R/G/B/A pixels horizontally and/or vertically.
15025
15026 The filter accepts the following options:
15027 @table @option
15028 @item rh
15029 Set amount to shift red horizontally.
15030 @item rv
15031 Set amount to shift red vertically.
15032 @item gh
15033 Set amount to shift green horizontally.
15034 @item gv
15035 Set amount to shift green vertically.
15036 @item bh
15037 Set amount to shift blue horizontally.
15038 @item bv
15039 Set amount to shift blue vertically.
15040 @item ah
15041 Set amount to shift alpha horizontally.
15042 @item av
15043 Set amount to shift alpha vertically.
15044 @item edge
15045 Set edge mode, can be @var{smear}, default, or @var{warp}.
15046 @end table
15047
15048 @section roberts
15049 Apply roberts cross operator to input video stream.
15050
15051 The filter accepts the following option:
15052
15053 @table @option
15054 @item planes
15055 Set which planes will be processed, unprocessed planes will be copied.
15056 By default value 0xf, all planes will be processed.
15057
15058 @item scale
15059 Set value which will be multiplied with filtered result.
15060
15061 @item delta
15062 Set value which will be added to filtered result.
15063 @end table
15064
15065 @section rotate
15066
15067 Rotate video by an arbitrary angle expressed in radians.
15068
15069 The filter accepts the following options:
15070
15071 A description of the optional parameters follows.
15072 @table @option
15073 @item angle, a
15074 Set an expression for the angle by which to rotate the input video
15075 clockwise, expressed as a number of radians. A negative value will
15076 result in a counter-clockwise rotation. By default it is set to "0".
15077
15078 This expression is evaluated for each frame.
15079
15080 @item out_w, ow
15081 Set the output width expression, default value is "iw".
15082 This expression is evaluated just once during configuration.
15083
15084 @item out_h, oh
15085 Set the output height expression, default value is "ih".
15086 This expression is evaluated just once during configuration.
15087
15088 @item bilinear
15089 Enable bilinear interpolation if set to 1, a value of 0 disables
15090 it. Default value is 1.
15091
15092 @item fillcolor, c
15093 Set the color used to fill the output area not covered by the rotated
15094 image. For the general syntax of this option, check the
15095 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15096 If the special value "none" is selected then no
15097 background is printed (useful for example if the background is never shown).
15098
15099 Default value is "black".
15100 @end table
15101
15102 The expressions for the angle and the output size can contain the
15103 following constants and functions:
15104
15105 @table @option
15106 @item n
15107 sequential number of the input frame, starting from 0. It is always NAN
15108 before the first frame is filtered.
15109
15110 @item t
15111 time in seconds of the input frame, it is set to 0 when the filter is
15112 configured. It is always NAN before the first frame is filtered.
15113
15114 @item hsub
15115 @item vsub
15116 horizontal and vertical chroma subsample values. For example for the
15117 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15118
15119 @item in_w, iw
15120 @item in_h, ih
15121 the input video width and height
15122
15123 @item out_w, ow
15124 @item out_h, oh
15125 the output width and height, that is the size of the padded area as
15126 specified by the @var{width} and @var{height} expressions
15127
15128 @item rotw(a)
15129 @item roth(a)
15130 the minimal width/height required for completely containing the input
15131 video rotated by @var{a} radians.
15132
15133 These are only available when computing the @option{out_w} and
15134 @option{out_h} expressions.
15135 @end table
15136
15137 @subsection Examples
15138
15139 @itemize
15140 @item
15141 Rotate the input by PI/6 radians clockwise:
15142 @example
15143 rotate=PI/6
15144 @end example
15145
15146 @item
15147 Rotate the input by PI/6 radians counter-clockwise:
15148 @example
15149 rotate=-PI/6
15150 @end example
15151
15152 @item
15153 Rotate the input by 45 degrees clockwise:
15154 @example
15155 rotate=45*PI/180
15156 @end example
15157
15158 @item
15159 Apply a constant rotation with period T, starting from an angle of PI/3:
15160 @example
15161 rotate=PI/3+2*PI*t/T
15162 @end example
15163
15164 @item
15165 Make the input video rotation oscillating with a period of T
15166 seconds and an amplitude of A radians:
15167 @example
15168 rotate=A*sin(2*PI/T*t)
15169 @end example
15170
15171 @item
15172 Rotate the video, output size is chosen so that the whole rotating
15173 input video is always completely contained in the output:
15174 @example
15175 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15176 @end example
15177
15178 @item
15179 Rotate the video, reduce the output size so that no background is ever
15180 shown:
15181 @example
15182 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15183 @end example
15184 @end itemize
15185
15186 @subsection Commands
15187
15188 The filter supports the following commands:
15189
15190 @table @option
15191 @item a, angle
15192 Set the angle expression.
15193 The command accepts the same syntax of the corresponding option.
15194
15195 If the specified expression is not valid, it is kept at its current
15196 value.
15197 @end table
15198
15199 @section sab
15200
15201 Apply Shape Adaptive Blur.
15202
15203 The filter accepts the following options:
15204
15205 @table @option
15206 @item luma_radius, lr
15207 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15208 value is 1.0. A greater value will result in a more blurred image, and
15209 in slower processing.
15210
15211 @item luma_pre_filter_radius, lpfr
15212 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15213 value is 1.0.
15214
15215 @item luma_strength, ls
15216 Set luma maximum difference between pixels to still be considered, must
15217 be a value in the 0.1-100.0 range, default value is 1.0.
15218
15219 @item chroma_radius, cr
15220 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15221 greater value will result in a more blurred image, and in slower
15222 processing.
15223
15224 @item chroma_pre_filter_radius, cpfr
15225 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15226
15227 @item chroma_strength, cs
15228 Set chroma maximum difference between pixels to still be considered,
15229 must be a value in the -0.9-100.0 range.
15230 @end table
15231
15232 Each chroma option value, if not explicitly specified, is set to the
15233 corresponding luma option value.
15234
15235 @anchor{scale}
15236 @section scale
15237
15238 Scale (resize) the input video, using the libswscale library.
15239
15240 The scale filter forces the output display aspect ratio to be the same
15241 of the input, by changing the output sample aspect ratio.
15242
15243 If the input image format is different from the format requested by
15244 the next filter, the scale filter will convert the input to the
15245 requested format.
15246
15247 @subsection Options
15248 The filter accepts the following options, or any of the options
15249 supported by the libswscale scaler.
15250
15251 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15252 the complete list of scaler options.
15253
15254 @table @option
15255 @item width, w
15256 @item height, h
15257 Set the output video dimension expression. Default value is the input
15258 dimension.
15259
15260 If the @var{width} or @var{w} value is 0, the input width is used for
15261 the output. If the @var{height} or @var{h} value is 0, the input height
15262 is used for the output.
15263
15264 If one and only one of the values is -n with n >= 1, the scale filter
15265 will use a value that maintains the aspect ratio of the input image,
15266 calculated from the other specified dimension. After that it will,
15267 however, make sure that the calculated dimension is divisible by n and
15268 adjust the value if necessary.
15269
15270 If both values are -n with n >= 1, the behavior will be identical to
15271 both values being set to 0 as previously detailed.
15272
15273 See below for the list of accepted constants for use in the dimension
15274 expression.
15275
15276 @item eval
15277 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15278
15279 @table @samp
15280 @item init
15281 Only evaluate expressions once during the filter initialization or when a command is processed.
15282
15283 @item frame
15284 Evaluate expressions for each incoming frame.
15285
15286 @end table
15287
15288 Default value is @samp{init}.
15289
15290
15291 @item interl
15292 Set the interlacing mode. It accepts the following values:
15293
15294 @table @samp
15295 @item 1
15296 Force interlaced aware scaling.
15297
15298 @item 0
15299 Do not apply interlaced scaling.
15300
15301 @item -1
15302 Select interlaced aware scaling depending on whether the source frames
15303 are flagged as interlaced or not.
15304 @end table
15305
15306 Default value is @samp{0}.
15307
15308 @item flags
15309 Set libswscale scaling flags. See
15310 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15311 complete list of values. If not explicitly specified the filter applies
15312 the default flags.
15313
15314
15315 @item param0, param1
15316 Set libswscale input parameters for scaling algorithms that need them. See
15317 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15318 complete documentation. If not explicitly specified the filter applies
15319 empty parameters.
15320
15321
15322
15323 @item size, s
15324 Set the video size. For the syntax of this option, check the
15325 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15326
15327 @item in_color_matrix
15328 @item out_color_matrix
15329 Set in/output YCbCr color space type.
15330
15331 This allows the autodetected value to be overridden as well as allows forcing
15332 a specific value used for the output and encoder.
15333
15334 If not specified, the color space type depends on the pixel format.
15335
15336 Possible values:
15337
15338 @table @samp
15339 @item auto
15340 Choose automatically.
15341
15342 @item bt709
15343 Format conforming to International Telecommunication Union (ITU)
15344 Recommendation BT.709.
15345
15346 @item fcc
15347 Set color space conforming to the United States Federal Communications
15348 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
15349
15350 @item bt601
15351 @item bt470
15352 @item smpte170m
15353 Set color space conforming to:
15354
15355 @itemize
15356 @item
15357 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
15358
15359 @item
15360 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
15361
15362 @item
15363 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
15364
15365 @end itemize
15366
15367 @item smpte240m
15368 Set color space conforming to SMPTE ST 240:1999.
15369
15370 @item bt2020
15371 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
15372 @end table
15373
15374 @item in_range
15375 @item out_range
15376 Set in/output YCbCr sample range.
15377
15378 This allows the autodetected value to be overridden as well as allows forcing
15379 a specific value used for the output and encoder. If not specified, the
15380 range depends on the pixel format. Possible values:
15381
15382 @table @samp
15383 @item auto/unknown
15384 Choose automatically.
15385
15386 @item jpeg/full/pc
15387 Set full range (0-255 in case of 8-bit luma).
15388
15389 @item mpeg/limited/tv
15390 Set "MPEG" range (16-235 in case of 8-bit luma).
15391 @end table
15392
15393 @item force_original_aspect_ratio
15394 Enable decreasing or increasing output video width or height if necessary to
15395 keep the original aspect ratio. Possible values:
15396
15397 @table @samp
15398 @item disable
15399 Scale the video as specified and disable this feature.
15400
15401 @item decrease
15402 The output video dimensions will automatically be decreased if needed.
15403
15404 @item increase
15405 The output video dimensions will automatically be increased if needed.
15406
15407 @end table
15408
15409 One useful instance of this option is that when you know a specific device's
15410 maximum allowed resolution, you can use this to limit the output video to
15411 that, while retaining the aspect ratio. For example, device A allows
15412 1280x720 playback, and your video is 1920x800. Using this option (set it to
15413 decrease) and specifying 1280x720 to the command line makes the output
15414 1280x533.
15415
15416 Please note that this is a different thing than specifying -1 for @option{w}
15417 or @option{h}, you still need to specify the output resolution for this option
15418 to work.
15419
15420 @item force_divisible_by Ensures that the output resolution is divisible by the
15421 given integer when used together with @option{force_original_aspect_ratio}. This
15422 works similar to using -n in the @option{w} and @option{h} options.
15423
15424 This option respects the value set for @option{force_original_aspect_ratio},
15425 increasing or decreasing the resolution accordingly. This may slightly modify
15426 the video's aspect ration.
15427
15428 This can be handy, for example, if you want to have a video fit within a defined
15429 resolution using the @option{force_original_aspect_ratio} option but have
15430 encoder restrictions when it comes to width or height.
15431
15432 @end table
15433
15434 The values of the @option{w} and @option{h} options are expressions
15435 containing the following constants:
15436
15437 @table @var
15438 @item in_w
15439 @item in_h
15440 The input width and height
15441
15442 @item iw
15443 @item ih
15444 These are the same as @var{in_w} and @var{in_h}.
15445
15446 @item out_w
15447 @item out_h
15448 The output (scaled) width and height
15449
15450 @item ow
15451 @item oh
15452 These are the same as @var{out_w} and @var{out_h}
15453
15454 @item a
15455 The same as @var{iw} / @var{ih}
15456
15457 @item sar
15458 input sample aspect ratio
15459
15460 @item dar
15461 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15462
15463 @item hsub
15464 @item vsub
15465 horizontal and vertical input chroma subsample values. For example for the
15466 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15467
15468 @item ohsub
15469 @item ovsub
15470 horizontal and vertical output chroma subsample values. For example for the
15471 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15472 @end table
15473
15474 @subsection Examples
15475
15476 @itemize
15477 @item
15478 Scale the input video to a size of 200x100
15479 @example
15480 scale=w=200:h=100
15481 @end example
15482
15483 This is equivalent to:
15484 @example
15485 scale=200:100
15486 @end example
15487
15488 or:
15489 @example
15490 scale=200x100
15491 @end example
15492
15493 @item
15494 Specify a size abbreviation for the output size:
15495 @example
15496 scale=qcif
15497 @end example
15498
15499 which can also be written as:
15500 @example
15501 scale=size=qcif
15502 @end example
15503
15504 @item
15505 Scale the input to 2x:
15506 @example
15507 scale=w=2*iw:h=2*ih
15508 @end example
15509
15510 @item
15511 The above is the same as:
15512 @example
15513 scale=2*in_w:2*in_h
15514 @end example
15515
15516 @item
15517 Scale the input to 2x with forced interlaced scaling:
15518 @example
15519 scale=2*iw:2*ih:interl=1
15520 @end example
15521
15522 @item
15523 Scale the input to half size:
15524 @example
15525 scale=w=iw/2:h=ih/2
15526 @end example
15527
15528 @item
15529 Increase the width, and set the height to the same size:
15530 @example
15531 scale=3/2*iw:ow
15532 @end example
15533
15534 @item
15535 Seek Greek harmony:
15536 @example
15537 scale=iw:1/PHI*iw
15538 scale=ih*PHI:ih
15539 @end example
15540
15541 @item
15542 Increase the height, and set the width to 3/2 of the height:
15543 @example
15544 scale=w=3/2*oh:h=3/5*ih
15545 @end example
15546
15547 @item
15548 Increase the size, making the size a multiple of the chroma
15549 subsample values:
15550 @example
15551 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
15552 @end example
15553
15554 @item
15555 Increase the width to a maximum of 500 pixels,
15556 keeping the same aspect ratio as the input:
15557 @example
15558 scale=w='min(500\, iw*3/2):h=-1'
15559 @end example
15560
15561 @item
15562 Make pixels square by combining scale and setsar:
15563 @example
15564 scale='trunc(ih*dar):ih',setsar=1/1
15565 @end example
15566
15567 @item
15568 Make pixels square by combining scale and setsar,
15569 making sure the resulting resolution is even (required by some codecs):
15570 @example
15571 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
15572 @end example
15573 @end itemize
15574
15575 @subsection Commands
15576
15577 This filter supports the following commands:
15578 @table @option
15579 @item width, w
15580 @item height, h
15581 Set the output video dimension expression.
15582 The command accepts the same syntax of the corresponding option.
15583
15584 If the specified expression is not valid, it is kept at its current
15585 value.
15586 @end table
15587
15588 @section scale_npp
15589
15590 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
15591 format conversion on CUDA video frames. Setting the output width and height
15592 works in the same way as for the @var{scale} filter.
15593
15594 The following additional options are accepted:
15595 @table @option
15596 @item format
15597 The pixel format of the output CUDA frames. If set to the string "same" (the
15598 default), the input format will be kept. Note that automatic format negotiation
15599 and conversion is not yet supported for hardware frames
15600
15601 @item interp_algo
15602 The interpolation algorithm used for resizing. One of the following:
15603 @table @option
15604 @item nn
15605 Nearest neighbour.
15606
15607 @item linear
15608 @item cubic
15609 @item cubic2p_bspline
15610 2-parameter cubic (B=1, C=0)
15611
15612 @item cubic2p_catmullrom
15613 2-parameter cubic (B=0, C=1/2)
15614
15615 @item cubic2p_b05c03
15616 2-parameter cubic (B=1/2, C=3/10)
15617
15618 @item super
15619 Supersampling
15620
15621 @item lanczos
15622 @end table
15623
15624 @end table
15625
15626 @section scale2ref
15627
15628 Scale (resize) the input video, based on a reference video.
15629
15630 See the scale filter for available options, scale2ref supports the same but
15631 uses the reference video instead of the main input as basis. scale2ref also
15632 supports the following additional constants for the @option{w} and
15633 @option{h} options:
15634
15635 @table @var
15636 @item main_w
15637 @item main_h
15638 The main input video's width and height
15639
15640 @item main_a
15641 The same as @var{main_w} / @var{main_h}
15642
15643 @item main_sar
15644 The main input video's sample aspect ratio
15645
15646 @item main_dar, mdar
15647 The main input video's display aspect ratio. Calculated from
15648 @code{(main_w / main_h) * main_sar}.
15649
15650 @item main_hsub
15651 @item main_vsub
15652 The main input video's horizontal and vertical chroma subsample values.
15653 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
15654 is 1.
15655 @end table
15656
15657 @subsection Examples
15658
15659 @itemize
15660 @item
15661 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
15662 @example
15663 'scale2ref[b][a];[a][b]overlay'
15664 @end example
15665
15666 @item
15667 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
15668 @example
15669 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
15670 @end example
15671 @end itemize
15672
15673 @section scroll
15674 Scroll input video horizontally and/or vertically by constant speed.
15675
15676 The filter accepts the following options:
15677 @table @option
15678 @item horizontal, h
15679 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
15680 Negative values changes scrolling direction.
15681
15682 @item vertical, v
15683 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
15684 Negative values changes scrolling direction.
15685
15686 @item hpos
15687 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
15688
15689 @item vpos
15690 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
15691 @end table
15692
15693 @anchor{selectivecolor}
15694 @section selectivecolor
15695
15696 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
15697 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
15698 by the "purity" of the color (that is, how saturated it already is).
15699
15700 This filter is similar to the Adobe Photoshop Selective Color tool.
15701
15702 The filter accepts the following options:
15703
15704 @table @option
15705 @item correction_method
15706 Select color correction method.
15707
15708 Available values are:
15709 @table @samp
15710 @item absolute
15711 Specified adjustments are applied "as-is" (added/subtracted to original pixel
15712 component value).
15713 @item relative
15714 Specified adjustments are relative to the original component value.
15715 @end table
15716 Default is @code{absolute}.
15717 @item reds
15718 Adjustments for red pixels (pixels where the red component is the maximum)
15719 @item yellows
15720 Adjustments for yellow pixels (pixels where the blue component is the minimum)
15721 @item greens
15722 Adjustments for green pixels (pixels where the green component is the maximum)
15723 @item cyans
15724 Adjustments for cyan pixels (pixels where the red component is the minimum)
15725 @item blues
15726 Adjustments for blue pixels (pixels where the blue component is the maximum)
15727 @item magentas
15728 Adjustments for magenta pixels (pixels where the green component is the minimum)
15729 @item whites
15730 Adjustments for white pixels (pixels where all components are greater than 128)
15731 @item neutrals
15732 Adjustments for all pixels except pure black and pure white
15733 @item blacks
15734 Adjustments for black pixels (pixels where all components are lesser than 128)
15735 @item psfile
15736 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
15737 @end table
15738
15739 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
15740 4 space separated floating point adjustment values in the [-1,1] range,
15741 respectively to adjust the amount of cyan, magenta, yellow and black for the
15742 pixels of its range.
15743
15744 @subsection Examples
15745
15746 @itemize
15747 @item
15748 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
15749 increase magenta by 27% in blue areas:
15750 @example
15751 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
15752 @end example
15753
15754 @item
15755 Use a Photoshop selective color preset:
15756 @example
15757 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
15758 @end example
15759 @end itemize
15760
15761 @anchor{separatefields}
15762 @section separatefields
15763
15764 The @code{separatefields} takes a frame-based video input and splits
15765 each frame into its components fields, producing a new half height clip
15766 with twice the frame rate and twice the frame count.
15767
15768 This filter use field-dominance information in frame to decide which
15769 of each pair of fields to place first in the output.
15770 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
15771
15772 @section setdar, setsar
15773
15774 The @code{setdar} filter sets the Display Aspect Ratio for the filter
15775 output video.
15776
15777 This is done by changing the specified Sample (aka Pixel) Aspect
15778 Ratio, according to the following equation:
15779 @example
15780 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
15781 @end example
15782
15783 Keep in mind that the @code{setdar} filter does not modify the pixel
15784 dimensions of the video frame. Also, the display aspect ratio set by
15785 this filter may be changed by later filters in the filterchain,
15786 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
15787 applied.
15788
15789 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
15790 the filter output video.
15791
15792 Note that as a consequence of the application of this filter, the
15793 output display aspect ratio will change according to the equation
15794 above.
15795
15796 Keep in mind that the sample aspect ratio set by the @code{setsar}
15797 filter may be changed by later filters in the filterchain, e.g. if
15798 another "setsar" or a "setdar" filter is applied.
15799
15800 It accepts the following parameters:
15801
15802 @table @option
15803 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
15804 Set the aspect ratio used by the filter.
15805
15806 The parameter can be a floating point number string, an expression, or
15807 a string of the form @var{num}:@var{den}, where @var{num} and
15808 @var{den} are the numerator and denominator of the aspect ratio. If
15809 the parameter is not specified, it is assumed the value "0".
15810 In case the form "@var{num}:@var{den}" is used, the @code{:} character
15811 should be escaped.
15812
15813 @item max
15814 Set the maximum integer value to use for expressing numerator and
15815 denominator when reducing the expressed aspect ratio to a rational.
15816 Default value is @code{100}.
15817
15818 @end table
15819
15820 The parameter @var{sar} is an expression containing
15821 the following constants:
15822
15823 @table @option
15824 @item E, PI, PHI
15825 These are approximated values for the mathematical constants e
15826 (Euler's number), pi (Greek pi), and phi (the golden ratio).
15827
15828 @item w, h
15829 The input width and height.
15830
15831 @item a
15832 These are the same as @var{w} / @var{h}.
15833
15834 @item sar
15835 The input sample aspect ratio.
15836
15837 @item dar
15838 The input display aspect ratio. It is the same as
15839 (@var{w} / @var{h}) * @var{sar}.
15840
15841 @item hsub, vsub
15842 Horizontal and vertical chroma subsample values. For example, for the
15843 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15844 @end table
15845
15846 @subsection Examples
15847
15848 @itemize
15849
15850 @item
15851 To change the display aspect ratio to 16:9, specify one of the following:
15852 @example
15853 setdar=dar=1.77777
15854 setdar=dar=16/9
15855 @end example
15856
15857 @item
15858 To change the sample aspect ratio to 10:11, specify:
15859 @example
15860 setsar=sar=10/11
15861 @end example
15862
15863 @item
15864 To set a display aspect ratio of 16:9, and specify a maximum integer value of
15865 1000 in the aspect ratio reduction, use the command:
15866 @example
15867 setdar=ratio=16/9:max=1000
15868 @end example
15869
15870 @end itemize
15871
15872 @anchor{setfield}
15873 @section setfield
15874
15875 Force field for the output video frame.
15876
15877 The @code{setfield} filter marks the interlace type field for the
15878 output frames. It does not change the input frame, but only sets the
15879 corresponding property, which affects how the frame is treated by
15880 following filters (e.g. @code{fieldorder} or @code{yadif}).
15881
15882 The filter accepts the following options:
15883
15884 @table @option
15885
15886 @item mode
15887 Available values are:
15888
15889 @table @samp
15890 @item auto
15891 Keep the same field property.
15892
15893 @item bff
15894 Mark the frame as bottom-field-first.
15895
15896 @item tff
15897 Mark the frame as top-field-first.
15898
15899 @item prog
15900 Mark the frame as progressive.
15901 @end table
15902 @end table
15903
15904 @anchor{setparams}
15905 @section setparams
15906
15907 Force frame parameter for the output video frame.
15908
15909 The @code{setparams} filter marks interlace and color range for the
15910 output frames. It does not change the input frame, but only sets the
15911 corresponding property, which affects how the frame is treated by
15912 filters/encoders.
15913
15914 @table @option
15915 @item field_mode
15916 Available values are:
15917
15918 @table @samp
15919 @item auto
15920 Keep the same field property (default).
15921
15922 @item bff
15923 Mark the frame as bottom-field-first.
15924
15925 @item tff
15926 Mark the frame as top-field-first.
15927
15928 @item prog
15929 Mark the frame as progressive.
15930 @end table
15931
15932 @item range
15933 Available values are:
15934
15935 @table @samp
15936 @item auto
15937 Keep the same color range property (default).
15938
15939 @item unspecified, unknown
15940 Mark the frame as unspecified color range.
15941
15942 @item limited, tv, mpeg
15943 Mark the frame as limited range.
15944
15945 @item full, pc, jpeg
15946 Mark the frame as full range.
15947 @end table
15948
15949 @item color_primaries
15950 Set the color primaries.
15951 Available values are:
15952
15953 @table @samp
15954 @item auto
15955 Keep the same color primaries property (default).
15956
15957 @item bt709
15958 @item unknown
15959 @item bt470m
15960 @item bt470bg
15961 @item smpte170m
15962 @item smpte240m
15963 @item film
15964 @item bt2020
15965 @item smpte428
15966 @item smpte431
15967 @item smpte432
15968 @item jedec-p22
15969 @end table
15970
15971 @item color_trc
15972 Set the color transfer.
15973 Available values are:
15974
15975 @table @samp
15976 @item auto
15977 Keep the same color trc property (default).
15978
15979 @item bt709
15980 @item unknown
15981 @item bt470m
15982 @item bt470bg
15983 @item smpte170m
15984 @item smpte240m
15985 @item linear
15986 @item log100
15987 @item log316
15988 @item iec61966-2-4
15989 @item bt1361e
15990 @item iec61966-2-1
15991 @item bt2020-10
15992 @item bt2020-12
15993 @item smpte2084
15994 @item smpte428
15995 @item arib-std-b67
15996 @end table
15997
15998 @item colorspace
15999 Set the colorspace.
16000 Available values are:
16001
16002 @table @samp
16003 @item auto
16004 Keep the same colorspace property (default).
16005
16006 @item gbr
16007 @item bt709
16008 @item unknown
16009 @item fcc
16010 @item bt470bg
16011 @item smpte170m
16012 @item smpte240m
16013 @item ycgco
16014 @item bt2020nc
16015 @item bt2020c
16016 @item smpte2085
16017 @item chroma-derived-nc
16018 @item chroma-derived-c
16019 @item ictcp
16020 @end table
16021 @end table
16022
16023 @section showinfo
16024
16025 Show a line containing various information for each input video frame.
16026 The input video is not modified.
16027
16028 This filter supports the following options:
16029
16030 @table @option
16031 @item checksum
16032 Calculate checksums of each plane. By default enabled.
16033 @end table
16034
16035 The shown line contains a sequence of key/value pairs of the form
16036 @var{key}:@var{value}.
16037
16038 The following values are shown in the output:
16039
16040 @table @option
16041 @item n
16042 The (sequential) number of the input frame, starting from 0.
16043
16044 @item pts
16045 The Presentation TimeStamp of the input frame, expressed as a number of
16046 time base units. The time base unit depends on the filter input pad.
16047
16048 @item pts_time
16049 The Presentation TimeStamp of the input frame, expressed as a number of
16050 seconds.
16051
16052 @item pos
16053 The position of the frame in the input stream, or -1 if this information is
16054 unavailable and/or meaningless (for example in case of synthetic video).
16055
16056 @item fmt
16057 The pixel format name.
16058
16059 @item sar
16060 The sample aspect ratio of the input frame, expressed in the form
16061 @var{num}/@var{den}.
16062
16063 @item s
16064 The size of the input frame. For the syntax of this option, check the
16065 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16066
16067 @item i
16068 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16069 for bottom field first).
16070
16071 @item iskey
16072 This is 1 if the frame is a key frame, 0 otherwise.
16073
16074 @item type
16075 The picture type of the input frame ("I" for an I-frame, "P" for a
16076 P-frame, "B" for a B-frame, or "?" for an unknown type).
16077 Also refer to the documentation of the @code{AVPictureType} enum and of
16078 the @code{av_get_picture_type_char} function defined in
16079 @file{libavutil/avutil.h}.
16080
16081 @item checksum
16082 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16083
16084 @item plane_checksum
16085 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16086 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16087 @end table
16088
16089 @section showpalette
16090
16091 Displays the 256 colors palette of each frame. This filter is only relevant for
16092 @var{pal8} pixel format frames.
16093
16094 It accepts the following option:
16095
16096 @table @option
16097 @item s
16098 Set the size of the box used to represent one palette color entry. Default is
16099 @code{30} (for a @code{30x30} pixel box).
16100 @end table
16101
16102 @section shuffleframes
16103
16104 Reorder and/or duplicate and/or drop video frames.
16105
16106 It accepts the following parameters:
16107
16108 @table @option
16109 @item mapping
16110 Set the destination indexes of input frames.
16111 This is space or '|' separated list of indexes that maps input frames to output
16112 frames. Number of indexes also sets maximal value that each index may have.
16113 '-1' index have special meaning and that is to drop frame.
16114 @end table
16115
16116 The first frame has the index 0. The default is to keep the input unchanged.
16117
16118 @subsection Examples
16119
16120 @itemize
16121 @item
16122 Swap second and third frame of every three frames of the input:
16123 @example
16124 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16125 @end example
16126
16127 @item
16128 Swap 10th and 1st frame of every ten frames of the input:
16129 @example
16130 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16131 @end example
16132 @end itemize
16133
16134 @section shuffleplanes
16135
16136 Reorder and/or duplicate video planes.
16137
16138 It accepts the following parameters:
16139
16140 @table @option
16141
16142 @item map0
16143 The index of the input plane to be used as the first output plane.
16144
16145 @item map1
16146 The index of the input plane to be used as the second output plane.
16147
16148 @item map2
16149 The index of the input plane to be used as the third output plane.
16150
16151 @item map3
16152 The index of the input plane to be used as the fourth output plane.
16153
16154 @end table
16155
16156 The first plane has the index 0. The default is to keep the input unchanged.
16157
16158 @subsection Examples
16159
16160 @itemize
16161 @item
16162 Swap the second and third planes of the input:
16163 @example
16164 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16165 @end example
16166 @end itemize
16167
16168 @anchor{signalstats}
16169 @section signalstats
16170 Evaluate various visual metrics that assist in determining issues associated
16171 with the digitization of analog video media.
16172
16173 By default the filter will log these metadata values:
16174
16175 @table @option
16176 @item YMIN
16177 Display the minimal Y value contained within the input frame. Expressed in
16178 range of [0-255].
16179
16180 @item YLOW
16181 Display the Y value at the 10% percentile within the input frame. Expressed in
16182 range of [0-255].
16183
16184 @item YAVG
16185 Display the average Y value within the input frame. Expressed in range of
16186 [0-255].
16187
16188 @item YHIGH
16189 Display the Y value at the 90% percentile within the input frame. Expressed in
16190 range of [0-255].
16191
16192 @item YMAX
16193 Display the maximum Y value contained within the input frame. Expressed in
16194 range of [0-255].
16195
16196 @item UMIN
16197 Display the minimal U value contained within the input frame. Expressed in
16198 range of [0-255].
16199
16200 @item ULOW
16201 Display the U value at the 10% percentile within the input frame. Expressed in
16202 range of [0-255].
16203
16204 @item UAVG
16205 Display the average U value within the input frame. Expressed in range of
16206 [0-255].
16207
16208 @item UHIGH
16209 Display the U value at the 90% percentile within the input frame. Expressed in
16210 range of [0-255].
16211
16212 @item UMAX
16213 Display the maximum U value contained within the input frame. Expressed in
16214 range of [0-255].
16215
16216 @item VMIN
16217 Display the minimal V value contained within the input frame. Expressed in
16218 range of [0-255].
16219
16220 @item VLOW
16221 Display the V value at the 10% percentile within the input frame. Expressed in
16222 range of [0-255].
16223
16224 @item VAVG
16225 Display the average V value within the input frame. Expressed in range of
16226 [0-255].
16227
16228 @item VHIGH
16229 Display the V value at the 90% percentile within the input frame. Expressed in
16230 range of [0-255].
16231
16232 @item VMAX
16233 Display the maximum V value contained within the input frame. Expressed in
16234 range of [0-255].
16235
16236 @item SATMIN
16237 Display the minimal saturation value contained within the input frame.
16238 Expressed in range of [0-~181.02].
16239
16240 @item SATLOW
16241 Display the saturation value at the 10% percentile within the input frame.
16242 Expressed in range of [0-~181.02].
16243
16244 @item SATAVG
16245 Display the average saturation value within the input frame. Expressed in range
16246 of [0-~181.02].
16247
16248 @item SATHIGH
16249 Display the saturation value at the 90% percentile within the input frame.
16250 Expressed in range of [0-~181.02].
16251
16252 @item SATMAX
16253 Display the maximum saturation value contained within the input frame.
16254 Expressed in range of [0-~181.02].
16255
16256 @item HUEMED
16257 Display the median value for hue within the input frame. Expressed in range of
16258 [0-360].
16259
16260 @item HUEAVG
16261 Display the average value for hue within the input frame. Expressed in range of
16262 [0-360].
16263
16264 @item YDIF
16265 Display the average of sample value difference between all values of the Y
16266 plane in the current frame and corresponding values of the previous input frame.
16267 Expressed in range of [0-255].
16268
16269 @item UDIF
16270 Display the average of sample value difference between all values of the U
16271 plane in the current frame and corresponding values of the previous input frame.
16272 Expressed in range of [0-255].
16273
16274 @item VDIF
16275 Display the average of sample value difference between all values of the V
16276 plane in the current frame and corresponding values of the previous input frame.
16277 Expressed in range of [0-255].
16278
16279 @item YBITDEPTH
16280 Display bit depth of Y plane in current frame.
16281 Expressed in range of [0-16].
16282
16283 @item UBITDEPTH
16284 Display bit depth of U plane in current frame.
16285 Expressed in range of [0-16].
16286
16287 @item VBITDEPTH
16288 Display bit depth of V plane in current frame.
16289 Expressed in range of [0-16].
16290 @end table
16291
16292 The filter accepts the following options:
16293
16294 @table @option
16295 @item stat
16296 @item out
16297
16298 @option{stat} specify an additional form of image analysis.
16299 @option{out} output video with the specified type of pixel highlighted.
16300
16301 Both options accept the following values:
16302
16303 @table @samp
16304 @item tout
16305 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
16306 unlike the neighboring pixels of the same field. Examples of temporal outliers
16307 include the results of video dropouts, head clogs, or tape tracking issues.
16308
16309 @item vrep
16310 Identify @var{vertical line repetition}. Vertical line repetition includes
16311 similar rows of pixels within a frame. In born-digital video vertical line
16312 repetition is common, but this pattern is uncommon in video digitized from an
16313 analog source. When it occurs in video that results from the digitization of an
16314 analog source it can indicate concealment from a dropout compensator.
16315
16316 @item brng
16317 Identify pixels that fall outside of legal broadcast range.
16318 @end table
16319
16320 @item color, c
16321 Set the highlight color for the @option{out} option. The default color is
16322 yellow.
16323 @end table
16324
16325 @subsection Examples
16326
16327 @itemize
16328 @item
16329 Output data of various video metrics:
16330 @example
16331 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
16332 @end example
16333
16334 @item
16335 Output specific data about the minimum and maximum values of the Y plane per frame:
16336 @example
16337 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
16338 @end example
16339
16340 @item
16341 Playback video while highlighting pixels that are outside of broadcast range in red.
16342 @example
16343 ffplay example.mov -vf signalstats="out=brng:color=red"
16344 @end example
16345
16346 @item
16347 Playback video with signalstats metadata drawn over the frame.
16348 @example
16349 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
16350 @end example
16351
16352 The contents of signalstat_drawtext.txt used in the command are:
16353 @example
16354 time %@{pts:hms@}
16355 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
16356 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
16357 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
16358 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
16359
16360 @end example
16361 @end itemize
16362
16363 @anchor{signature}
16364 @section signature
16365
16366 Calculates the MPEG-7 Video Signature. The filter can handle more than one
16367 input. In this case the matching between the inputs can be calculated additionally.
16368 The filter always passes through the first input. The signature of each stream can
16369 be written into a file.
16370
16371 It accepts the following options:
16372
16373 @table @option
16374 @item detectmode
16375 Enable or disable the matching process.
16376
16377 Available values are:
16378
16379 @table @samp
16380 @item off
16381 Disable the calculation of a matching (default).
16382 @item full
16383 Calculate the matching for the whole video and output whether the whole video
16384 matches or only parts.
16385 @item fast
16386 Calculate only until a matching is found or the video ends. Should be faster in
16387 some cases.
16388 @end table
16389
16390 @item nb_inputs
16391 Set the number of inputs. The option value must be a non negative integer.
16392 Default value is 1.
16393
16394 @item filename
16395 Set the path to which the output is written. If there is more than one input,
16396 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
16397 integer), that will be replaced with the input number. If no filename is
16398 specified, no output will be written. This is the default.
16399
16400 @item format
16401 Choose the output format.
16402
16403 Available values are:
16404
16405 @table @samp
16406 @item binary
16407 Use the specified binary representation (default).
16408 @item xml
16409 Use the specified xml representation.
16410 @end table
16411
16412 @item th_d
16413 Set threshold to detect one word as similar. The option value must be an integer
16414 greater than zero. The default value is 9000.
16415
16416 @item th_dc
16417 Set threshold to detect all words as similar. The option value must be an integer
16418 greater than zero. The default value is 60000.
16419
16420 @item th_xh
16421 Set threshold to detect frames as similar. The option value must be an integer
16422 greater than zero. The default value is 116.
16423
16424 @item th_di
16425 Set the minimum length of a sequence in frames to recognize it as matching
16426 sequence. The option value must be a non negative integer value.
16427 The default value is 0.
16428
16429 @item th_it
16430 Set the minimum relation, that matching frames to all frames must have.
16431 The option value must be a double value between 0 and 1. The default value is 0.5.
16432 @end table
16433
16434 @subsection Examples
16435
16436 @itemize
16437 @item
16438 To calculate the signature of an input video and store it in signature.bin:
16439 @example
16440 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
16441 @end example
16442
16443 @item
16444 To detect whether two videos match and store the signatures in XML format in
16445 signature0.xml and signature1.xml:
16446 @example
16447 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 -
16448 @end example
16449
16450 @end itemize
16451
16452 @anchor{smartblur}
16453 @section smartblur
16454
16455 Blur the input video without impacting the outlines.
16456
16457 It accepts the following options:
16458
16459 @table @option
16460 @item luma_radius, lr
16461 Set the luma radius. The option value must be a float number in
16462 the range [0.1,5.0] that specifies the variance of the gaussian filter
16463 used to blur the image (slower if larger). Default value is 1.0.
16464
16465 @item luma_strength, ls
16466 Set the luma strength. The option value must be a float number
16467 in the range [-1.0,1.0] that configures the blurring. A value included
16468 in [0.0,1.0] will blur the image whereas a value included in
16469 [-1.0,0.0] will sharpen the image. Default value is 1.0.
16470
16471 @item luma_threshold, lt
16472 Set the luma threshold used as a coefficient to determine
16473 whether a pixel should be blurred or not. The option value must be an
16474 integer in the range [-30,30]. A value of 0 will filter all the image,
16475 a value included in [0,30] will filter flat areas and a value included
16476 in [-30,0] will filter edges. Default value is 0.
16477
16478 @item chroma_radius, cr
16479 Set the chroma radius. The option value must be a float number in
16480 the range [0.1,5.0] that specifies the variance of the gaussian filter
16481 used to blur the image (slower if larger). Default value is @option{luma_radius}.
16482
16483 @item chroma_strength, cs
16484 Set the chroma strength. The option value must be a float number
16485 in the range [-1.0,1.0] that configures the blurring. A value included
16486 in [0.0,1.0] will blur the image whereas a value included in
16487 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
16488
16489 @item chroma_threshold, ct
16490 Set the chroma threshold used as a coefficient to determine
16491 whether a pixel should be blurred or not. The option value must be an
16492 integer in the range [-30,30]. A value of 0 will filter all the image,
16493 a value included in [0,30] will filter flat areas and a value included
16494 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
16495 @end table
16496
16497 If a chroma option is not explicitly set, the corresponding luma value
16498 is set.
16499
16500 @section sobel
16501 Apply sobel operator to input video stream.
16502
16503 The filter accepts the following option:
16504
16505 @table @option
16506 @item planes
16507 Set which planes will be processed, unprocessed planes will be copied.
16508 By default value 0xf, all planes will be processed.
16509
16510 @item scale
16511 Set value which will be multiplied with filtered result.
16512
16513 @item delta
16514 Set value which will be added to filtered result.
16515 @end table
16516
16517 @anchor{spp}
16518 @section spp
16519
16520 Apply a simple postprocessing filter that compresses and decompresses the image
16521 at several (or - in the case of @option{quality} level @code{6} - all) shifts
16522 and average the results.
16523
16524 The filter accepts the following options:
16525
16526 @table @option
16527 @item quality
16528 Set quality. This option defines the number of levels for averaging. It accepts
16529 an integer in the range 0-6. If set to @code{0}, the filter will have no
16530 effect. A value of @code{6} means the higher quality. For each increment of
16531 that value the speed drops by a factor of approximately 2.  Default value is
16532 @code{3}.
16533
16534 @item qp
16535 Force a constant quantization parameter. If not set, the filter will use the QP
16536 from the video stream (if available).
16537
16538 @item mode
16539 Set thresholding mode. Available modes are:
16540
16541 @table @samp
16542 @item hard
16543 Set hard thresholding (default).
16544 @item soft
16545 Set soft thresholding (better de-ringing effect, but likely blurrier).
16546 @end table
16547
16548 @item use_bframe_qp
16549 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
16550 option may cause flicker since the B-Frames have often larger QP. Default is
16551 @code{0} (not enabled).
16552 @end table
16553
16554 @section sr
16555
16556 Scale the input by applying one of the super-resolution methods based on
16557 convolutional neural networks. Supported models:
16558
16559 @itemize
16560 @item
16561 Super-Resolution Convolutional Neural Network model (SRCNN).
16562 See @url{https://arxiv.org/abs/1501.00092}.
16563
16564 @item
16565 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
16566 See @url{https://arxiv.org/abs/1609.05158}.
16567 @end itemize
16568
16569 Training scripts as well as scripts for model file (.pb) saving can be found at
16570 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
16571 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
16572
16573 Native model files (.model) can be generated from TensorFlow model
16574 files (.pb) by using tools/python/convert.py
16575
16576 The filter accepts the following options:
16577
16578 @table @option
16579 @item dnn_backend
16580 Specify which DNN backend to use for model loading and execution. This option accepts
16581 the following values:
16582
16583 @table @samp
16584 @item native
16585 Native implementation of DNN loading and execution.
16586
16587 @item tensorflow
16588 TensorFlow backend. To enable this backend you
16589 need to install the TensorFlow for C library (see
16590 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
16591 @code{--enable-libtensorflow}
16592 @end table
16593
16594 Default value is @samp{native}.
16595
16596 @item model
16597 Set path to model file specifying network architecture and its parameters.
16598 Note that different backends use different file formats. TensorFlow backend
16599 can load files for both formats, while native backend can load files for only
16600 its format.
16601
16602 @item scale_factor
16603 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
16604 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
16605 input upscaled using bicubic upscaling with proper scale factor.
16606 @end table
16607
16608 @section ssim
16609
16610 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
16611
16612 This filter takes in input two input videos, the first input is
16613 considered the "main" source and is passed unchanged to the
16614 output. The second input is used as a "reference" video for computing
16615 the SSIM.
16616
16617 Both video inputs must have the same resolution and pixel format for
16618 this filter to work correctly. Also it assumes that both inputs
16619 have the same number of frames, which are compared one by one.
16620
16621 The filter stores the calculated SSIM of each frame.
16622
16623 The description of the accepted parameters follows.
16624
16625 @table @option
16626 @item stats_file, f
16627 If specified the filter will use the named file to save the SSIM of
16628 each individual frame. When filename equals "-" the data is sent to
16629 standard output.
16630 @end table
16631
16632 The file printed if @var{stats_file} is selected, contains a sequence of
16633 key/value pairs of the form @var{key}:@var{value} for each compared
16634 couple of frames.
16635
16636 A description of each shown parameter follows:
16637
16638 @table @option
16639 @item n
16640 sequential number of the input frame, starting from 1
16641
16642 @item Y, U, V, R, G, B
16643 SSIM of the compared frames for the component specified by the suffix.
16644
16645 @item All
16646 SSIM of the compared frames for the whole frame.
16647
16648 @item dB
16649 Same as above but in dB representation.
16650 @end table
16651
16652 This filter also supports the @ref{framesync} options.
16653
16654 For example:
16655 @example
16656 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16657 [main][ref] ssim="stats_file=stats.log" [out]
16658 @end example
16659
16660 On this example the input file being processed is compared with the
16661 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
16662 is stored in @file{stats.log}.
16663
16664 Another example with both psnr and ssim at same time:
16665 @example
16666 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
16667 @end example
16668
16669 @section stereo3d
16670
16671 Convert between different stereoscopic image formats.
16672
16673 The filters accept the following options:
16674
16675 @table @option
16676 @item in
16677 Set stereoscopic image format of input.
16678
16679 Available values for input image formats are:
16680 @table @samp
16681 @item sbsl
16682 side by side parallel (left eye left, right eye right)
16683
16684 @item sbsr
16685 side by side crosseye (right eye left, left eye right)
16686
16687 @item sbs2l
16688 side by side parallel with half width resolution
16689 (left eye left, right eye right)
16690
16691 @item sbs2r
16692 side by side crosseye with half width resolution
16693 (right eye left, left eye right)
16694
16695 @item abl
16696 @item tbl
16697 above-below (left eye above, right eye below)
16698
16699 @item abr
16700 @item tbr
16701 above-below (right eye above, left eye below)
16702
16703 @item ab2l
16704 @item tb2l
16705 above-below with half height resolution
16706 (left eye above, right eye below)
16707
16708 @item ab2r
16709 @item tb2r
16710 above-below with half height resolution
16711 (right eye above, left eye below)
16712
16713 @item al
16714 alternating frames (left eye first, right eye second)
16715
16716 @item ar
16717 alternating frames (right eye first, left eye second)
16718
16719 @item irl
16720 interleaved rows (left eye has top row, right eye starts on next row)
16721
16722 @item irr
16723 interleaved rows (right eye has top row, left eye starts on next row)
16724
16725 @item icl
16726 interleaved columns, left eye first
16727
16728 @item icr
16729 interleaved columns, right eye first
16730
16731 Default value is @samp{sbsl}.
16732 @end table
16733
16734 @item out
16735 Set stereoscopic image format of output.
16736
16737 @table @samp
16738 @item sbsl
16739 side by side parallel (left eye left, right eye right)
16740
16741 @item sbsr
16742 side by side crosseye (right eye left, left eye right)
16743
16744 @item sbs2l
16745 side by side parallel with half width resolution
16746 (left eye left, right eye right)
16747
16748 @item sbs2r
16749 side by side crosseye with half width resolution
16750 (right eye left, left eye right)
16751
16752 @item abl
16753 @item tbl
16754 above-below (left eye above, right eye below)
16755
16756 @item abr
16757 @item tbr
16758 above-below (right eye above, left eye below)
16759
16760 @item ab2l
16761 @item tb2l
16762 above-below with half height resolution
16763 (left eye above, right eye below)
16764
16765 @item ab2r
16766 @item tb2r
16767 above-below with half height resolution
16768 (right eye above, left eye below)
16769
16770 @item al
16771 alternating frames (left eye first, right eye second)
16772
16773 @item ar
16774 alternating frames (right eye first, left eye second)
16775
16776 @item irl
16777 interleaved rows (left eye has top row, right eye starts on next row)
16778
16779 @item irr
16780 interleaved rows (right eye has top row, left eye starts on next row)
16781
16782 @item arbg
16783 anaglyph red/blue gray
16784 (red filter on left eye, blue filter on right eye)
16785
16786 @item argg
16787 anaglyph red/green gray
16788 (red filter on left eye, green filter on right eye)
16789
16790 @item arcg
16791 anaglyph red/cyan gray
16792 (red filter on left eye, cyan filter on right eye)
16793
16794 @item arch
16795 anaglyph red/cyan half colored
16796 (red filter on left eye, cyan filter on right eye)
16797
16798 @item arcc
16799 anaglyph red/cyan color
16800 (red filter on left eye, cyan filter on right eye)
16801
16802 @item arcd
16803 anaglyph red/cyan color optimized with the least squares projection of dubois
16804 (red filter on left eye, cyan filter on right eye)
16805
16806 @item agmg
16807 anaglyph green/magenta gray
16808 (green filter on left eye, magenta filter on right eye)
16809
16810 @item agmh
16811 anaglyph green/magenta half colored
16812 (green filter on left eye, magenta filter on right eye)
16813
16814 @item agmc
16815 anaglyph green/magenta colored
16816 (green filter on left eye, magenta filter on right eye)
16817
16818 @item agmd
16819 anaglyph green/magenta color optimized with the least squares projection of dubois
16820 (green filter on left eye, magenta filter on right eye)
16821
16822 @item aybg
16823 anaglyph yellow/blue gray
16824 (yellow filter on left eye, blue filter on right eye)
16825
16826 @item aybh
16827 anaglyph yellow/blue half colored
16828 (yellow filter on left eye, blue filter on right eye)
16829
16830 @item aybc
16831 anaglyph yellow/blue colored
16832 (yellow filter on left eye, blue filter on right eye)
16833
16834 @item aybd
16835 anaglyph yellow/blue color optimized with the least squares projection of dubois
16836 (yellow filter on left eye, blue filter on right eye)
16837
16838 @item ml
16839 mono output (left eye only)
16840
16841 @item mr
16842 mono output (right eye only)
16843
16844 @item chl
16845 checkerboard, left eye first
16846
16847 @item chr
16848 checkerboard, right eye first
16849
16850 @item icl
16851 interleaved columns, left eye first
16852
16853 @item icr
16854 interleaved columns, right eye first
16855
16856 @item hdmi
16857 HDMI frame pack
16858 @end table
16859
16860 Default value is @samp{arcd}.
16861 @end table
16862
16863 @subsection Examples
16864
16865 @itemize
16866 @item
16867 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
16868 @example
16869 stereo3d=sbsl:aybd
16870 @end example
16871
16872 @item
16873 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
16874 @example
16875 stereo3d=abl:sbsr
16876 @end example
16877 @end itemize
16878
16879 @section streamselect, astreamselect
16880 Select video or audio streams.
16881
16882 The filter accepts the following options:
16883
16884 @table @option
16885 @item inputs
16886 Set number of inputs. Default is 2.
16887
16888 @item map
16889 Set input indexes to remap to outputs.
16890 @end table
16891
16892 @subsection Commands
16893
16894 The @code{streamselect} and @code{astreamselect} filter supports the following
16895 commands:
16896
16897 @table @option
16898 @item map
16899 Set input indexes to remap to outputs.
16900 @end table
16901
16902 @subsection Examples
16903
16904 @itemize
16905 @item
16906 Select first 5 seconds 1st stream and rest of time 2nd stream:
16907 @example
16908 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
16909 @end example
16910
16911 @item
16912 Same as above, but for audio:
16913 @example
16914 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
16915 @end example
16916 @end itemize
16917
16918 @anchor{subtitles}
16919 @section subtitles
16920
16921 Draw subtitles on top of input video using the libass library.
16922
16923 To enable compilation of this filter you need to configure FFmpeg with
16924 @code{--enable-libass}. This filter also requires a build with libavcodec and
16925 libavformat to convert the passed subtitles file to ASS (Advanced Substation
16926 Alpha) subtitles format.
16927
16928 The filter accepts the following options:
16929
16930 @table @option
16931 @item filename, f
16932 Set the filename of the subtitle file to read. It must be specified.
16933
16934 @item original_size
16935 Specify the size of the original video, the video for which the ASS file
16936 was composed. For the syntax of this option, check the
16937 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16938 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
16939 correctly scale the fonts if the aspect ratio has been changed.
16940
16941 @item fontsdir
16942 Set a directory path containing fonts that can be used by the filter.
16943 These fonts will be used in addition to whatever the font provider uses.
16944
16945 @item alpha
16946 Process alpha channel, by default alpha channel is untouched.
16947
16948 @item charenc
16949 Set subtitles input character encoding. @code{subtitles} filter only. Only
16950 useful if not UTF-8.
16951
16952 @item stream_index, si
16953 Set subtitles stream index. @code{subtitles} filter only.
16954
16955 @item force_style
16956 Override default style or script info parameters of the subtitles. It accepts a
16957 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
16958 @end table
16959
16960 If the first key is not specified, it is assumed that the first value
16961 specifies the @option{filename}.
16962
16963 For example, to render the file @file{sub.srt} on top of the input
16964 video, use the command:
16965 @example
16966 subtitles=sub.srt
16967 @end example
16968
16969 which is equivalent to:
16970 @example
16971 subtitles=filename=sub.srt
16972 @end example
16973
16974 To render the default subtitles stream from file @file{video.mkv}, use:
16975 @example
16976 subtitles=video.mkv
16977 @end example
16978
16979 To render the second subtitles stream from that file, use:
16980 @example
16981 subtitles=video.mkv:si=1
16982 @end example
16983
16984 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
16985 @code{DejaVu Serif}, use:
16986 @example
16987 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
16988 @end example
16989
16990 @section super2xsai
16991
16992 Scale the input by 2x and smooth using the Super2xSaI (Scale and
16993 Interpolate) pixel art scaling algorithm.
16994
16995 Useful for enlarging pixel art images without reducing sharpness.
16996
16997 @section swaprect
16998
16999 Swap two rectangular objects in video.
17000
17001 This filter accepts the following options:
17002
17003 @table @option
17004 @item w
17005 Set object width.
17006
17007 @item h
17008 Set object height.
17009
17010 @item x1
17011 Set 1st rect x coordinate.
17012
17013 @item y1
17014 Set 1st rect y coordinate.
17015
17016 @item x2
17017 Set 2nd rect x coordinate.
17018
17019 @item y2
17020 Set 2nd rect y coordinate.
17021
17022 All expressions are evaluated once for each frame.
17023 @end table
17024
17025 The all options are expressions containing the following constants:
17026
17027 @table @option
17028 @item w
17029 @item h
17030 The input width and height.
17031
17032 @item a
17033 same as @var{w} / @var{h}
17034
17035 @item sar
17036 input sample aspect ratio
17037
17038 @item dar
17039 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17040
17041 @item n
17042 The number of the input frame, starting from 0.
17043
17044 @item t
17045 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17046
17047 @item pos
17048 the position in the file of the input frame, NAN if unknown
17049 @end table
17050
17051 @section swapuv
17052 Swap U & V plane.
17053
17054 @section telecine
17055
17056 Apply telecine process to the video.
17057
17058 This filter accepts the following options:
17059
17060 @table @option
17061 @item first_field
17062 @table @samp
17063 @item top, t
17064 top field first
17065 @item bottom, b
17066 bottom field first
17067 The default value is @code{top}.
17068 @end table
17069
17070 @item pattern
17071 A string of numbers representing the pulldown pattern you wish to apply.
17072 The default value is @code{23}.
17073 @end table
17074
17075 @example
17076 Some typical patterns:
17077
17078 NTSC output (30i):
17079 27.5p: 32222
17080 24p: 23 (classic)
17081 24p: 2332 (preferred)
17082 20p: 33
17083 18p: 334
17084 16p: 3444
17085
17086 PAL output (25i):
17087 27.5p: 12222
17088 24p: 222222222223 ("Euro pulldown")
17089 16.67p: 33
17090 16p: 33333334
17091 @end example
17092
17093 @section threshold
17094
17095 Apply threshold effect to video stream.
17096
17097 This filter needs four video streams to perform thresholding.
17098 First stream is stream we are filtering.
17099 Second stream is holding threshold values, third stream is holding min values,
17100 and last, fourth stream is holding max values.
17101
17102 The filter accepts the following option:
17103
17104 @table @option
17105 @item planes
17106 Set which planes will be processed, unprocessed planes will be copied.
17107 By default value 0xf, all planes will be processed.
17108 @end table
17109
17110 For example if first stream pixel's component value is less then threshold value
17111 of pixel component from 2nd threshold stream, third stream value will picked,
17112 otherwise fourth stream pixel component value will be picked.
17113
17114 Using color source filter one can perform various types of thresholding:
17115
17116 @subsection Examples
17117
17118 @itemize
17119 @item
17120 Binary threshold, using gray color as threshold:
17121 @example
17122 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
17123 @end example
17124
17125 @item
17126 Inverted binary threshold, using gray color as threshold:
17127 @example
17128 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
17129 @end example
17130
17131 @item
17132 Truncate binary threshold, using gray color as threshold:
17133 @example
17134 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
17135 @end example
17136
17137 @item
17138 Threshold to zero, using gray color as threshold:
17139 @example
17140 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
17141 @end example
17142
17143 @item
17144 Inverted threshold to zero, using gray color as threshold:
17145 @example
17146 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
17147 @end example
17148 @end itemize
17149
17150 @section thumbnail
17151 Select the most representative frame in a given sequence of consecutive frames.
17152
17153 The filter accepts the following options:
17154
17155 @table @option
17156 @item n
17157 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
17158 will pick one of them, and then handle the next batch of @var{n} frames until
17159 the end. Default is @code{100}.
17160 @end table
17161
17162 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
17163 value will result in a higher memory usage, so a high value is not recommended.
17164
17165 @subsection Examples
17166
17167 @itemize
17168 @item
17169 Extract one picture each 50 frames:
17170 @example
17171 thumbnail=50
17172 @end example
17173
17174 @item
17175 Complete example of a thumbnail creation with @command{ffmpeg}:
17176 @example
17177 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
17178 @end example
17179 @end itemize
17180
17181 @section tile
17182
17183 Tile several successive frames together.
17184
17185 The filter accepts the following options:
17186
17187 @table @option
17188
17189 @item layout
17190 Set the grid size (i.e. the number of lines and columns). For the syntax of
17191 this option, check the
17192 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17193
17194 @item nb_frames
17195 Set the maximum number of frames to render in the given area. It must be less
17196 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
17197 the area will be used.
17198
17199 @item margin
17200 Set the outer border margin in pixels.
17201
17202 @item padding
17203 Set the inner border thickness (i.e. the number of pixels between frames). For
17204 more advanced padding options (such as having different values for the edges),
17205 refer to the pad video filter.
17206
17207 @item color
17208 Specify the color of the unused area. For the syntax of this option, check the
17209 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17210 The default value of @var{color} is "black".
17211
17212 @item overlap
17213 Set the number of frames to overlap when tiling several successive frames together.
17214 The value must be between @code{0} and @var{nb_frames - 1}.
17215
17216 @item init_padding
17217 Set the number of frames to initially be empty before displaying first output frame.
17218 This controls how soon will one get first output frame.
17219 The value must be between @code{0} and @var{nb_frames - 1}.
17220 @end table
17221
17222 @subsection Examples
17223
17224 @itemize
17225 @item
17226 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
17227 @example
17228 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
17229 @end example
17230 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
17231 duplicating each output frame to accommodate the originally detected frame
17232 rate.
17233
17234 @item
17235 Display @code{5} pictures in an area of @code{3x2} frames,
17236 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
17237 mixed flat and named options:
17238 @example
17239 tile=3x2:nb_frames=5:padding=7:margin=2
17240 @end example
17241 @end itemize
17242
17243 @section tinterlace
17244
17245 Perform various types of temporal field interlacing.
17246
17247 Frames are counted starting from 1, so the first input frame is
17248 considered odd.
17249
17250 The filter accepts the following options:
17251
17252 @table @option
17253
17254 @item mode
17255 Specify the mode of the interlacing. This option can also be specified
17256 as a value alone. See below for a list of values for this option.
17257
17258 Available values are:
17259
17260 @table @samp
17261 @item merge, 0
17262 Move odd frames into the upper field, even into the lower field,
17263 generating a double height frame at half frame rate.
17264 @example
17265  ------> time
17266 Input:
17267 Frame 1         Frame 2         Frame 3         Frame 4
17268
17269 11111           22222           33333           44444
17270 11111           22222           33333           44444
17271 11111           22222           33333           44444
17272 11111           22222           33333           44444
17273
17274 Output:
17275 11111                           33333
17276 22222                           44444
17277 11111                           33333
17278 22222                           44444
17279 11111                           33333
17280 22222                           44444
17281 11111                           33333
17282 22222                           44444
17283 @end example
17284
17285 @item drop_even, 1
17286 Only output odd frames, even frames are dropped, generating a frame with
17287 unchanged height at half frame rate.
17288
17289 @example
17290  ------> time
17291 Input:
17292 Frame 1         Frame 2         Frame 3         Frame 4
17293
17294 11111           22222           33333           44444
17295 11111           22222           33333           44444
17296 11111           22222           33333           44444
17297 11111           22222           33333           44444
17298
17299 Output:
17300 11111                           33333
17301 11111                           33333
17302 11111                           33333
17303 11111                           33333
17304 @end example
17305
17306 @item drop_odd, 2
17307 Only output even frames, odd frames are dropped, generating a frame with
17308 unchanged height at half frame rate.
17309
17310 @example
17311  ------> time
17312 Input:
17313 Frame 1         Frame 2         Frame 3         Frame 4
17314
17315 11111           22222           33333           44444
17316 11111           22222           33333           44444
17317 11111           22222           33333           44444
17318 11111           22222           33333           44444
17319
17320 Output:
17321                 22222                           44444
17322                 22222                           44444
17323                 22222                           44444
17324                 22222                           44444
17325 @end example
17326
17327 @item pad, 3
17328 Expand each frame to full height, but pad alternate lines with black,
17329 generating a frame with double height at the same input frame rate.
17330
17331 @example
17332  ------> time
17333 Input:
17334 Frame 1         Frame 2         Frame 3         Frame 4
17335
17336 11111           22222           33333           44444
17337 11111           22222           33333           44444
17338 11111           22222           33333           44444
17339 11111           22222           33333           44444
17340
17341 Output:
17342 11111           .....           33333           .....
17343 .....           22222           .....           44444
17344 11111           .....           33333           .....
17345 .....           22222           .....           44444
17346 11111           .....           33333           .....
17347 .....           22222           .....           44444
17348 11111           .....           33333           .....
17349 .....           22222           .....           44444
17350 @end example
17351
17352
17353 @item interleave_top, 4
17354 Interleave the upper field from odd frames with the lower field from
17355 even frames, generating a frame with unchanged height at half frame rate.
17356
17357 @example
17358  ------> time
17359 Input:
17360 Frame 1         Frame 2         Frame 3         Frame 4
17361
17362 11111<-         22222           33333<-         44444
17363 11111           22222<-         33333           44444<-
17364 11111<-         22222           33333<-         44444
17365 11111           22222<-         33333           44444<-
17366
17367 Output:
17368 11111                           33333
17369 22222                           44444
17370 11111                           33333
17371 22222                           44444
17372 @end example
17373
17374
17375 @item interleave_bottom, 5
17376 Interleave the lower field from odd frames with the upper field from
17377 even frames, generating a frame with unchanged height at half frame rate.
17378
17379 @example
17380  ------> time
17381 Input:
17382 Frame 1         Frame 2         Frame 3         Frame 4
17383
17384 11111           22222<-         33333           44444<-
17385 11111<-         22222           33333<-         44444
17386 11111           22222<-         33333           44444<-
17387 11111<-         22222           33333<-         44444
17388
17389 Output:
17390 22222                           44444
17391 11111                           33333
17392 22222                           44444
17393 11111                           33333
17394 @end example
17395
17396
17397 @item interlacex2, 6
17398 Double frame rate with unchanged height. Frames are inserted each
17399 containing the second temporal field from the previous input frame and
17400 the first temporal field from the next input frame. This mode relies on
17401 the top_field_first flag. Useful for interlaced video displays with no
17402 field synchronisation.
17403
17404 @example
17405  ------> time
17406 Input:
17407 Frame 1         Frame 2         Frame 3         Frame 4
17408
17409 11111           22222           33333           44444
17410  11111           22222           33333           44444
17411 11111           22222           33333           44444
17412  11111           22222           33333           44444
17413
17414 Output:
17415 11111   22222   22222   33333   33333   44444   44444
17416  11111   11111   22222   22222   33333   33333   44444
17417 11111   22222   22222   33333   33333   44444   44444
17418  11111   11111   22222   22222   33333   33333   44444
17419 @end example
17420
17421
17422 @item mergex2, 7
17423 Move odd frames into the upper field, even into the lower field,
17424 generating a double height frame at same frame rate.
17425
17426 @example
17427  ------> time
17428 Input:
17429 Frame 1         Frame 2         Frame 3         Frame 4
17430
17431 11111           22222           33333           44444
17432 11111           22222           33333           44444
17433 11111           22222           33333           44444
17434 11111           22222           33333           44444
17435
17436 Output:
17437 11111           33333           33333           55555
17438 22222           22222           44444           44444
17439 11111           33333           33333           55555
17440 22222           22222           44444           44444
17441 11111           33333           33333           55555
17442 22222           22222           44444           44444
17443 11111           33333           33333           55555
17444 22222           22222           44444           44444
17445 @end example
17446
17447 @end table
17448
17449 Numeric values are deprecated but are accepted for backward
17450 compatibility reasons.
17451
17452 Default mode is @code{merge}.
17453
17454 @item flags
17455 Specify flags influencing the filter process.
17456
17457 Available value for @var{flags} is:
17458
17459 @table @option
17460 @item low_pass_filter, vlpf
17461 Enable linear vertical low-pass filtering in the filter.
17462 Vertical low-pass filtering is required when creating an interlaced
17463 destination from a progressive source which contains high-frequency
17464 vertical detail. Filtering will reduce interlace 'twitter' and Moire
17465 patterning.
17466
17467 @item complex_filter, cvlpf
17468 Enable complex vertical low-pass filtering.
17469 This will slightly less reduce interlace 'twitter' and Moire
17470 patterning but better retain detail and subjective sharpness impression.
17471
17472 @end table
17473
17474 Vertical low-pass filtering can only be enabled for @option{mode}
17475 @var{interleave_top} and @var{interleave_bottom}.
17476
17477 @end table
17478
17479 @section tmix
17480
17481 Mix successive video frames.
17482
17483 A description of the accepted options follows.
17484
17485 @table @option
17486 @item frames
17487 The number of successive frames to mix. If unspecified, it defaults to 3.
17488
17489 @item weights
17490 Specify weight of each input video frame.
17491 Each weight is separated by space. If number of weights is smaller than
17492 number of @var{frames} last specified weight will be used for all remaining
17493 unset weights.
17494
17495 @item scale
17496 Specify scale, if it is set it will be multiplied with sum
17497 of each weight multiplied with pixel values to give final destination
17498 pixel value. By default @var{scale} is auto scaled to sum of weights.
17499 @end table
17500
17501 @subsection Examples
17502
17503 @itemize
17504 @item
17505 Average 7 successive frames:
17506 @example
17507 tmix=frames=7:weights="1 1 1 1 1 1 1"
17508 @end example
17509
17510 @item
17511 Apply simple temporal convolution:
17512 @example
17513 tmix=frames=3:weights="-1 3 -1"
17514 @end example
17515
17516 @item
17517 Similar as above but only showing temporal differences:
17518 @example
17519 tmix=frames=3:weights="-1 2 -1":scale=1
17520 @end example
17521 @end itemize
17522
17523 @anchor{tonemap}
17524 @section tonemap
17525 Tone map colors from different dynamic ranges.
17526
17527 This filter expects data in single precision floating point, as it needs to
17528 operate on (and can output) out-of-range values. Another filter, such as
17529 @ref{zscale}, is needed to convert the resulting frame to a usable format.
17530
17531 The tonemapping algorithms implemented only work on linear light, so input
17532 data should be linearized beforehand (and possibly correctly tagged).
17533
17534 @example
17535 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
17536 @end example
17537
17538 @subsection Options
17539 The filter accepts the following options.
17540
17541 @table @option
17542 @item tonemap
17543 Set the tone map algorithm to use.
17544
17545 Possible values are:
17546 @table @var
17547 @item none
17548 Do not apply any tone map, only desaturate overbright pixels.
17549
17550 @item clip
17551 Hard-clip any out-of-range values. Use it for perfect color accuracy for
17552 in-range values, while distorting out-of-range values.
17553
17554 @item linear
17555 Stretch the entire reference gamut to a linear multiple of the display.
17556
17557 @item gamma
17558 Fit a logarithmic transfer between the tone curves.
17559
17560 @item reinhard
17561 Preserve overall image brightness with a simple curve, using nonlinear
17562 contrast, which results in flattening details and degrading color accuracy.
17563
17564 @item hable
17565 Preserve both dark and bright details better than @var{reinhard}, at the cost
17566 of slightly darkening everything. Use it when detail preservation is more
17567 important than color and brightness accuracy.
17568
17569 @item mobius
17570 Smoothly map out-of-range values, while retaining contrast and colors for
17571 in-range material as much as possible. Use it when color accuracy is more
17572 important than detail preservation.
17573 @end table
17574
17575 Default is none.
17576
17577 @item param
17578 Tune the tone mapping algorithm.
17579
17580 This affects the following algorithms:
17581 @table @var
17582 @item none
17583 Ignored.
17584
17585 @item linear
17586 Specifies the scale factor to use while stretching.
17587 Default to 1.0.
17588
17589 @item gamma
17590 Specifies the exponent of the function.
17591 Default to 1.8.
17592
17593 @item clip
17594 Specify an extra linear coefficient to multiply into the signal before clipping.
17595 Default to 1.0.
17596
17597 @item reinhard
17598 Specify the local contrast coefficient at the display peak.
17599 Default to 0.5, which means that in-gamut values will be about half as bright
17600 as when clipping.
17601
17602 @item hable
17603 Ignored.
17604
17605 @item mobius
17606 Specify the transition point from linear to mobius transform. Every value
17607 below this point is guaranteed to be mapped 1:1. The higher the value, the
17608 more accurate the result will be, at the cost of losing bright details.
17609 Default to 0.3, which due to the steep initial slope still preserves in-range
17610 colors fairly accurately.
17611 @end table
17612
17613 @item desat
17614 Apply desaturation for highlights that exceed this level of brightness. The
17615 higher the parameter, the more color information will be preserved. This
17616 setting helps prevent unnaturally blown-out colors for super-highlights, by
17617 (smoothly) turning into white instead. This makes images feel more natural,
17618 at the cost of reducing information about out-of-range colors.
17619
17620 The default of 2.0 is somewhat conservative and will mostly just apply to
17621 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
17622
17623 This option works only if the input frame has a supported color tag.
17624
17625 @item peak
17626 Override signal/nominal/reference peak with this value. Useful when the
17627 embedded peak information in display metadata is not reliable or when tone
17628 mapping from a lower range to a higher range.
17629 @end table
17630
17631 @section tpad
17632
17633 Temporarily pad video frames.
17634
17635 The filter accepts the following options:
17636
17637 @table @option
17638 @item start
17639 Specify number of delay frames before input video stream.
17640
17641 @item stop
17642 Specify number of padding frames after input video stream.
17643 Set to -1 to pad indefinitely.
17644
17645 @item start_mode
17646 Set kind of frames added to beginning of stream.
17647 Can be either @var{add} or @var{clone}.
17648 With @var{add} frames of solid-color are added.
17649 With @var{clone} frames are clones of first frame.
17650
17651 @item stop_mode
17652 Set kind of frames added to end of stream.
17653 Can be either @var{add} or @var{clone}.
17654 With @var{add} frames of solid-color are added.
17655 With @var{clone} frames are clones of last frame.
17656
17657 @item start_duration, stop_duration
17658 Specify the duration of the start/stop delay. See
17659 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17660 for the accepted syntax.
17661 These options override @var{start} and @var{stop}.
17662
17663 @item color
17664 Specify the color of the padded area. For the syntax of this option,
17665 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
17666 manual,ffmpeg-utils}.
17667
17668 The default value of @var{color} is "black".
17669 @end table
17670
17671 @anchor{transpose}
17672 @section transpose
17673
17674 Transpose rows with columns in the input video and optionally flip it.
17675
17676 It accepts the following parameters:
17677
17678 @table @option
17679
17680 @item dir
17681 Specify the transposition direction.
17682
17683 Can assume the following values:
17684 @table @samp
17685 @item 0, 4, cclock_flip
17686 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
17687 @example
17688 L.R     L.l
17689 . . ->  . .
17690 l.r     R.r
17691 @end example
17692
17693 @item 1, 5, clock
17694 Rotate by 90 degrees clockwise, that is:
17695 @example
17696 L.R     l.L
17697 . . ->  . .
17698 l.r     r.R
17699 @end example
17700
17701 @item 2, 6, cclock
17702 Rotate by 90 degrees counterclockwise, that is:
17703 @example
17704 L.R     R.r
17705 . . ->  . .
17706 l.r     L.l
17707 @end example
17708
17709 @item 3, 7, clock_flip
17710 Rotate by 90 degrees clockwise and vertically flip, that is:
17711 @example
17712 L.R     r.R
17713 . . ->  . .
17714 l.r     l.L
17715 @end example
17716 @end table
17717
17718 For values between 4-7, the transposition is only done if the input
17719 video geometry is portrait and not landscape. These values are
17720 deprecated, the @code{passthrough} option should be used instead.
17721
17722 Numerical values are deprecated, and should be dropped in favor of
17723 symbolic constants.
17724
17725 @item passthrough
17726 Do not apply the transposition if the input geometry matches the one
17727 specified by the specified value. It accepts the following values:
17728 @table @samp
17729 @item none
17730 Always apply transposition.
17731 @item portrait
17732 Preserve portrait geometry (when @var{height} >= @var{width}).
17733 @item landscape
17734 Preserve landscape geometry (when @var{width} >= @var{height}).
17735 @end table
17736
17737 Default value is @code{none}.
17738 @end table
17739
17740 For example to rotate by 90 degrees clockwise and preserve portrait
17741 layout:
17742 @example
17743 transpose=dir=1:passthrough=portrait
17744 @end example
17745
17746 The command above can also be specified as:
17747 @example
17748 transpose=1:portrait
17749 @end example
17750
17751 @section transpose_npp
17752
17753 Transpose rows with columns in the input video and optionally flip it.
17754 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
17755
17756 It accepts the following parameters:
17757
17758 @table @option
17759
17760 @item dir
17761 Specify the transposition direction.
17762
17763 Can assume the following values:
17764 @table @samp
17765 @item cclock_flip
17766 Rotate by 90 degrees counterclockwise and vertically flip. (default)
17767
17768 @item clock
17769 Rotate by 90 degrees clockwise.
17770
17771 @item cclock
17772 Rotate by 90 degrees counterclockwise.
17773
17774 @item clock_flip
17775 Rotate by 90 degrees clockwise and vertically flip.
17776 @end table
17777
17778 @item passthrough
17779 Do not apply the transposition if the input geometry matches the one
17780 specified by the specified value. It accepts the following values:
17781 @table @samp
17782 @item none
17783 Always apply transposition. (default)
17784 @item portrait
17785 Preserve portrait geometry (when @var{height} >= @var{width}).
17786 @item landscape
17787 Preserve landscape geometry (when @var{width} >= @var{height}).
17788 @end table
17789
17790 @end table
17791
17792 @section trim
17793 Trim the input so that the output contains one continuous subpart of the input.
17794
17795 It accepts the following parameters:
17796 @table @option
17797 @item start
17798 Specify the time of the start of the kept section, i.e. the frame with the
17799 timestamp @var{start} will be the first frame in the output.
17800
17801 @item end
17802 Specify the time of the first frame that will be dropped, i.e. the frame
17803 immediately preceding the one with the timestamp @var{end} will be the last
17804 frame in the output.
17805
17806 @item start_pts
17807 This is the same as @var{start}, except this option sets the start timestamp
17808 in timebase units instead of seconds.
17809
17810 @item end_pts
17811 This is the same as @var{end}, except this option sets the end timestamp
17812 in timebase units instead of seconds.
17813
17814 @item duration
17815 The maximum duration of the output in seconds.
17816
17817 @item start_frame
17818 The number of the first frame that should be passed to the output.
17819
17820 @item end_frame
17821 The number of the first frame that should be dropped.
17822 @end table
17823
17824 @option{start}, @option{end}, and @option{duration} are expressed as time
17825 duration specifications; see
17826 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17827 for the accepted syntax.
17828
17829 Note that the first two sets of the start/end options and the @option{duration}
17830 option look at the frame timestamp, while the _frame variants simply count the
17831 frames that pass through the filter. Also note that this filter does not modify
17832 the timestamps. If you wish for the output timestamps to start at zero, insert a
17833 setpts filter after the trim filter.
17834
17835 If multiple start or end options are set, this filter tries to be greedy and
17836 keep all the frames that match at least one of the specified constraints. To keep
17837 only the part that matches all the constraints at once, chain multiple trim
17838 filters.
17839
17840 The defaults are such that all the input is kept. So it is possible to set e.g.
17841 just the end values to keep everything before the specified time.
17842
17843 Examples:
17844 @itemize
17845 @item
17846 Drop everything except the second minute of input:
17847 @example
17848 ffmpeg -i INPUT -vf trim=60:120
17849 @end example
17850
17851 @item
17852 Keep only the first second:
17853 @example
17854 ffmpeg -i INPUT -vf trim=duration=1
17855 @end example
17856
17857 @end itemize
17858
17859 @section unpremultiply
17860 Apply alpha unpremultiply effect to input video stream using first plane
17861 of second stream as alpha.
17862
17863 Both streams must have same dimensions and same pixel format.
17864
17865 The filter accepts the following option:
17866
17867 @table @option
17868 @item planes
17869 Set which planes will be processed, unprocessed planes will be copied.
17870 By default value 0xf, all planes will be processed.
17871
17872 If the format has 1 or 2 components, then luma is bit 0.
17873 If the format has 3 or 4 components:
17874 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
17875 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
17876 If present, the alpha channel is always the last bit.
17877
17878 @item inplace
17879 Do not require 2nd input for processing, instead use alpha plane from input stream.
17880 @end table
17881
17882 @anchor{unsharp}
17883 @section unsharp
17884
17885 Sharpen or blur the input video.
17886
17887 It accepts the following parameters:
17888
17889 @table @option
17890 @item luma_msize_x, lx
17891 Set the luma matrix horizontal size. It must be an odd integer between
17892 3 and 23. The default value is 5.
17893
17894 @item luma_msize_y, ly
17895 Set the luma matrix vertical size. It must be an odd integer between 3
17896 and 23. The default value is 5.
17897
17898 @item luma_amount, la
17899 Set the luma effect strength. It must be a floating point number, reasonable
17900 values lay between -1.5 and 1.5.
17901
17902 Negative values will blur the input video, while positive values will
17903 sharpen it, a value of zero will disable the effect.
17904
17905 Default value is 1.0.
17906
17907 @item chroma_msize_x, cx
17908 Set the chroma matrix horizontal size. It must be an odd integer
17909 between 3 and 23. The default value is 5.
17910
17911 @item chroma_msize_y, cy
17912 Set the chroma matrix vertical size. It must be an odd integer
17913 between 3 and 23. The default value is 5.
17914
17915 @item chroma_amount, ca
17916 Set the chroma effect strength. It must be a floating point number, reasonable
17917 values lay between -1.5 and 1.5.
17918
17919 Negative values will blur the input video, while positive values will
17920 sharpen it, a value of zero will disable the effect.
17921
17922 Default value is 0.0.
17923
17924 @end table
17925
17926 All parameters are optional and default to the equivalent of the
17927 string '5:5:1.0:5:5:0.0'.
17928
17929 @subsection Examples
17930
17931 @itemize
17932 @item
17933 Apply strong luma sharpen effect:
17934 @example
17935 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
17936 @end example
17937
17938 @item
17939 Apply a strong blur of both luma and chroma parameters:
17940 @example
17941 unsharp=7:7:-2:7:7:-2
17942 @end example
17943 @end itemize
17944
17945 @section uspp
17946
17947 Apply ultra slow/simple postprocessing filter that compresses and decompresses
17948 the image at several (or - in the case of @option{quality} level @code{8} - all)
17949 shifts and average the results.
17950
17951 The way this differs from the behavior of spp is that uspp actually encodes &
17952 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
17953 DCT similar to MJPEG.
17954
17955 The filter accepts the following options:
17956
17957 @table @option
17958 @item quality
17959 Set quality. This option defines the number of levels for averaging. It accepts
17960 an integer in the range 0-8. If set to @code{0}, the filter will have no
17961 effect. A value of @code{8} means the higher quality. For each increment of
17962 that value the speed drops by a factor of approximately 2.  Default value is
17963 @code{3}.
17964
17965 @item qp
17966 Force a constant quantization parameter. If not set, the filter will use the QP
17967 from the video stream (if available).
17968 @end table
17969
17970 @section v360
17971
17972 Convert 360 videos between various formats.
17973
17974 The filter accepts the following options:
17975
17976 @table @option
17977
17978 @item input
17979 @item output
17980 Set format of the input/output video.
17981
17982 Available formats:
17983
17984 @table @samp
17985
17986 @item e
17987 @item equirect
17988 Equirectangular projection.
17989
17990 @item c3x2
17991 @item c6x1
17992 @item c1x6
17993 Cubemap with 3x2/6x1/1x6 layout.
17994
17995 Format specific options:
17996
17997 @table @option
17998 @item in_pad
17999 @item out_pad
18000 Set padding proportion for the input/output cubemap. Values in decimals.
18001
18002 Example values:
18003 @table @samp
18004 @item 0
18005 No padding.
18006 @item 0.01
18007 1% of face is padding. For example, with 1920x1280 resolution face size would be 640x640 and padding would be 3 pixels from each side. (640 * 0.01 = 6 pixels)
18008 @end table
18009
18010 Default value is @b{@samp{0}}.
18011
18012 @item fin_pad
18013 @item fout_pad
18014 Set fixed padding for the input/output cubemap. Values in pixels.
18015
18016 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18017
18018 @item in_forder
18019 @item out_forder
18020 Set order of faces for the input/output cubemap. Choose one direction for each position.
18021
18022 Designation of directions:
18023 @table @samp
18024 @item r
18025 right
18026 @item l
18027 left
18028 @item u
18029 up
18030 @item d
18031 down
18032 @item f
18033 forward
18034 @item b
18035 back
18036 @end table
18037
18038 Default value is @b{@samp{rludfb}}.
18039
18040 @item in_frot
18041 @item out_frot
18042 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18043
18044 Designation of angles:
18045 @table @samp
18046 @item 0
18047 0 degrees clockwise
18048 @item 1
18049 90 degrees clockwise
18050 @item 2
18051 180 degrees clockwise
18052 @item 3
18053 270 degrees clockwise
18054 @end table
18055
18056 Default value is @b{@samp{000000}}.
18057 @end table
18058
18059 @item eac
18060 Equi-Angular Cubemap.
18061
18062 @item flat
18063 @item gnomonic
18064 @item rectilinear
18065 Regular video. @i{(output only)}
18066
18067 Format specific options:
18068 @table @option
18069 @item h_fov
18070 @item v_fov
18071 @item d_fov
18072 Set horizontal/vertical/diagonal field of view. Values in degrees.
18073
18074 If diagonal field of view is set it overrides horizontal and vertical field of view.
18075 @end table
18076
18077 @item dfisheye
18078 Dual fisheye.
18079
18080 Format specific options:
18081 @table @option
18082 @item in_pad
18083 @item out_pad
18084 Set padding proportion. Values in decimals.
18085
18086 Example values:
18087 @table @samp
18088 @item 0
18089 No padding.
18090 @item 0.01
18091 1% padding.
18092 @end table
18093
18094 Default value is @b{@samp{0}}.
18095 @end table
18096
18097 @item barrel
18098 @item fb
18099 Facebook's 360 format.
18100
18101 @item sg
18102 Stereographic format.
18103
18104 Format specific options:
18105 @table @option
18106 @item h_fov
18107 @item v_fov
18108 @item d_fov
18109 Set horizontal/vertical/diagonal field of view. Values in degrees.
18110
18111 If diagonal field of view is set it overrides horizontal and vertical field of view.
18112 @end table
18113
18114 @item mercator
18115 Mercator format.
18116
18117 @item ball
18118 Ball format, gives significant distortion toward the back.
18119
18120 @item hammer
18121 Hammer-Aitoff map projection format.
18122
18123 @item sinusoidal
18124 Sinusoidal map projection format.
18125
18126 @end table
18127
18128 @item interp
18129 Set interpolation method.@*
18130 @i{Note: more complex interpolation methods require much more memory to run.}
18131
18132 Available methods:
18133
18134 @table @samp
18135 @item near
18136 @item nearest
18137 Nearest neighbour.
18138 @item line
18139 @item linear
18140 Bilinear interpolation.
18141 @item cube
18142 @item cubic
18143 Bicubic interpolation.
18144 @item lanc
18145 @item lanczos
18146 Lanczos interpolation.
18147 @end table
18148
18149 Default value is @b{@samp{line}}.
18150
18151 @item w
18152 @item h
18153 Set the output video resolution.
18154
18155 Default resolution depends on formats.
18156
18157 @item in_stereo
18158 @item out_stereo
18159 Set the input/output stereo format.
18160
18161 @table @samp
18162 @item 2d
18163 2D mono
18164 @item sbs
18165 Side by side
18166 @item tb
18167 Top bottom
18168 @end table
18169
18170 Default value is @b{@samp{2d}} for input and output format.
18171
18172 @item yaw
18173 @item pitch
18174 @item roll
18175 Set rotation for the output video. Values in degrees.
18176
18177 @item rorder
18178 Set rotation order for the output video. Choose one item for each position.
18179
18180 @table @samp
18181 @item y, Y
18182 yaw
18183 @item p, P
18184 pitch
18185 @item r, R
18186 roll
18187 @end table
18188
18189 Default value is @b{@samp{ypr}}.
18190
18191 @item h_flip
18192 @item v_flip
18193 @item d_flip
18194 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
18195
18196 @item ih_flip
18197 @item iv_flip
18198 Set if input video is flipped horizontally/vertically. Boolean values.
18199
18200 @item in_trans
18201 Set if input video is transposed. Boolean value, by default disabled.
18202
18203 @item out_trans
18204 Set if output video needs to be transposed. Boolean value, by default disabled.
18205
18206 @end table
18207
18208 @subsection Examples
18209
18210 @itemize
18211 @item
18212 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
18213 @example
18214 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
18215 @end example
18216 @item
18217 Extract back view of Equi-Angular Cubemap:
18218 @example
18219 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
18220 @end example
18221 @item
18222 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
18223 @example
18224 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
18225 @end example
18226 @end itemize
18227
18228 @section vaguedenoiser
18229
18230 Apply a wavelet based denoiser.
18231
18232 It transforms each frame from the video input into the wavelet domain,
18233 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
18234 the obtained coefficients. It does an inverse wavelet transform after.
18235 Due to wavelet properties, it should give a nice smoothed result, and
18236 reduced noise, without blurring picture features.
18237
18238 This filter accepts the following options:
18239
18240 @table @option
18241 @item threshold
18242 The filtering strength. The higher, the more filtered the video will be.
18243 Hard thresholding can use a higher threshold than soft thresholding
18244 before the video looks overfiltered. Default value is 2.
18245
18246 @item method
18247 The filtering method the filter will use.
18248
18249 It accepts the following values:
18250 @table @samp
18251 @item hard
18252 All values under the threshold will be zeroed.
18253
18254 @item soft
18255 All values under the threshold will be zeroed. All values above will be
18256 reduced by the threshold.
18257
18258 @item garrote
18259 Scales or nullifies coefficients - intermediary between (more) soft and
18260 (less) hard thresholding.
18261 @end table
18262
18263 Default is garrote.
18264
18265 @item nsteps
18266 Number of times, the wavelet will decompose the picture. Picture can't
18267 be decomposed beyond a particular point (typically, 8 for a 640x480
18268 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
18269
18270 @item percent
18271 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
18272
18273 @item planes
18274 A list of the planes to process. By default all planes are processed.
18275 @end table
18276
18277 @section vectorscope
18278
18279 Display 2 color component values in the two dimensional graph (which is called
18280 a vectorscope).
18281
18282 This filter accepts the following options:
18283
18284 @table @option
18285 @item mode, m
18286 Set vectorscope mode.
18287
18288 It accepts the following values:
18289 @table @samp
18290 @item gray
18291 Gray values are displayed on graph, higher brightness means more pixels have
18292 same component color value on location in graph. This is the default mode.
18293
18294 @item color
18295 Gray values are displayed on graph. Surrounding pixels values which are not
18296 present in video frame are drawn in gradient of 2 color components which are
18297 set by option @code{x} and @code{y}. The 3rd color component is static.
18298
18299 @item color2
18300 Actual color components values present in video frame are displayed on graph.
18301
18302 @item color3
18303 Similar as color2 but higher frequency of same values @code{x} and @code{y}
18304 on graph increases value of another color component, which is luminance by
18305 default values of @code{x} and @code{y}.
18306
18307 @item color4
18308 Actual colors present in video frame are displayed on graph. If two different
18309 colors map to same position on graph then color with higher value of component
18310 not present in graph is picked.
18311
18312 @item color5
18313 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
18314 component picked from radial gradient.
18315 @end table
18316
18317 @item x
18318 Set which color component will be represented on X-axis. Default is @code{1}.
18319
18320 @item y
18321 Set which color component will be represented on Y-axis. Default is @code{2}.
18322
18323 @item intensity, i
18324 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
18325 of color component which represents frequency of (X, Y) location in graph.
18326
18327 @item envelope, e
18328 @table @samp
18329 @item none
18330 No envelope, this is default.
18331
18332 @item instant
18333 Instant envelope, even darkest single pixel will be clearly highlighted.
18334
18335 @item peak
18336 Hold maximum and minimum values presented in graph over time. This way you
18337 can still spot out of range values without constantly looking at vectorscope.
18338
18339 @item peak+instant
18340 Peak and instant envelope combined together.
18341 @end table
18342
18343 @item graticule, g
18344 Set what kind of graticule to draw.
18345 @table @samp
18346 @item none
18347 @item green
18348 @item color
18349 @end table
18350
18351 @item opacity, o
18352 Set graticule opacity.
18353
18354 @item flags, f
18355 Set graticule flags.
18356
18357 @table @samp
18358 @item white
18359 Draw graticule for white point.
18360
18361 @item black
18362 Draw graticule for black point.
18363
18364 @item name
18365 Draw color points short names.
18366 @end table
18367
18368 @item bgopacity, b
18369 Set background opacity.
18370
18371 @item lthreshold, l
18372 Set low threshold for color component not represented on X or Y axis.
18373 Values lower than this value will be ignored. Default is 0.
18374 Note this value is multiplied with actual max possible value one pixel component
18375 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
18376 is 0.1 * 255 = 25.
18377
18378 @item hthreshold, h
18379 Set high threshold for color component not represented on X or Y axis.
18380 Values higher than this value will be ignored. Default is 1.
18381 Note this value is multiplied with actual max possible value one pixel component
18382 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
18383 is 0.9 * 255 = 230.
18384
18385 @item colorspace, c
18386 Set what kind of colorspace to use when drawing graticule.
18387 @table @samp
18388 @item auto
18389 @item 601
18390 @item 709
18391 @end table
18392 Default is auto.
18393 @end table
18394
18395 @anchor{vidstabdetect}
18396 @section vidstabdetect
18397
18398 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
18399 @ref{vidstabtransform} for pass 2.
18400
18401 This filter generates a file with relative translation and rotation
18402 transform information about subsequent frames, which is then used by
18403 the @ref{vidstabtransform} filter.
18404
18405 To enable compilation of this filter you need to configure FFmpeg with
18406 @code{--enable-libvidstab}.
18407
18408 This filter accepts the following options:
18409
18410 @table @option
18411 @item result
18412 Set the path to the file used to write the transforms information.
18413 Default value is @file{transforms.trf}.
18414
18415 @item shakiness
18416 Set how shaky the video is and how quick the camera is. It accepts an
18417 integer in the range 1-10, a value of 1 means little shakiness, a
18418 value of 10 means strong shakiness. Default value is 5.
18419
18420 @item accuracy
18421 Set the accuracy of the detection process. It must be a value in the
18422 range 1-15. A value of 1 means low accuracy, a value of 15 means high
18423 accuracy. Default value is 15.
18424
18425 @item stepsize
18426 Set stepsize of the search process. The region around minimum is
18427 scanned with 1 pixel resolution. Default value is 6.
18428
18429 @item mincontrast
18430 Set minimum contrast. Below this value a local measurement field is
18431 discarded. Must be a floating point value in the range 0-1. Default
18432 value is 0.3.
18433
18434 @item tripod
18435 Set reference frame number for tripod mode.
18436
18437 If enabled, the motion of the frames is compared to a reference frame
18438 in the filtered stream, identified by the specified number. The idea
18439 is to compensate all movements in a more-or-less static scene and keep
18440 the camera view absolutely still.
18441
18442 If set to 0, it is disabled. The frames are counted starting from 1.
18443
18444 @item show
18445 Show fields and transforms in the resulting frames. It accepts an
18446 integer in the range 0-2. Default value is 0, which disables any
18447 visualization.
18448 @end table
18449
18450 @subsection Examples
18451
18452 @itemize
18453 @item
18454 Use default values:
18455 @example
18456 vidstabdetect
18457 @end example
18458
18459 @item
18460 Analyze strongly shaky movie and put the results in file
18461 @file{mytransforms.trf}:
18462 @example
18463 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
18464 @end example
18465
18466 @item
18467 Visualize the result of internal transformations in the resulting
18468 video:
18469 @example
18470 vidstabdetect=show=1
18471 @end example
18472
18473 @item
18474 Analyze a video with medium shakiness using @command{ffmpeg}:
18475 @example
18476 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
18477 @end example
18478 @end itemize
18479
18480 @anchor{vidstabtransform}
18481 @section vidstabtransform
18482
18483 Video stabilization/deshaking: pass 2 of 2,
18484 see @ref{vidstabdetect} for pass 1.
18485
18486 Read a file with transform information for each frame and
18487 apply/compensate them. Together with the @ref{vidstabdetect}
18488 filter this can be used to deshake videos. See also
18489 @url{http://public.hronopik.de/vid.stab}. It is important to also use
18490 the @ref{unsharp} filter, see below.
18491
18492 To enable compilation of this filter you need to configure FFmpeg with
18493 @code{--enable-libvidstab}.
18494
18495 @subsection Options
18496
18497 @table @option
18498 @item input
18499 Set path to the file used to read the transforms. Default value is
18500 @file{transforms.trf}.
18501
18502 @item smoothing
18503 Set the number of frames (value*2 + 1) used for lowpass filtering the
18504 camera movements. Default value is 10.
18505
18506 For example a number of 10 means that 21 frames are used (10 in the
18507 past and 10 in the future) to smoothen the motion in the video. A
18508 larger value leads to a smoother video, but limits the acceleration of
18509 the camera (pan/tilt movements). 0 is a special case where a static
18510 camera is simulated.
18511
18512 @item optalgo
18513 Set the camera path optimization algorithm.
18514
18515 Accepted values are:
18516 @table @samp
18517 @item gauss
18518 gaussian kernel low-pass filter on camera motion (default)
18519 @item avg
18520 averaging on transformations
18521 @end table
18522
18523 @item maxshift
18524 Set maximal number of pixels to translate frames. Default value is -1,
18525 meaning no limit.
18526
18527 @item maxangle
18528 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
18529 value is -1, meaning no limit.
18530
18531 @item crop
18532 Specify how to deal with borders that may be visible due to movement
18533 compensation.
18534
18535 Available values are:
18536 @table @samp
18537 @item keep
18538 keep image information from previous frame (default)
18539 @item black
18540 fill the border black
18541 @end table
18542
18543 @item invert
18544 Invert transforms if set to 1. Default value is 0.
18545
18546 @item relative
18547 Consider transforms as relative to previous frame if set to 1,
18548 absolute if set to 0. Default value is 0.
18549
18550 @item zoom
18551 Set percentage to zoom. A positive value will result in a zoom-in
18552 effect, a negative value in a zoom-out effect. Default value is 0 (no
18553 zoom).
18554
18555 @item optzoom
18556 Set optimal zooming to avoid borders.
18557
18558 Accepted values are:
18559 @table @samp
18560 @item 0
18561 disabled
18562 @item 1
18563 optimal static zoom value is determined (only very strong movements
18564 will lead to visible borders) (default)
18565 @item 2
18566 optimal adaptive zoom value is determined (no borders will be
18567 visible), see @option{zoomspeed}
18568 @end table
18569
18570 Note that the value given at zoom is added to the one calculated here.
18571
18572 @item zoomspeed
18573 Set percent to zoom maximally each frame (enabled when
18574 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
18575 0.25.
18576
18577 @item interpol
18578 Specify type of interpolation.
18579
18580 Available values are:
18581 @table @samp
18582 @item no
18583 no interpolation
18584 @item linear
18585 linear only horizontal
18586 @item bilinear
18587 linear in both directions (default)
18588 @item bicubic
18589 cubic in both directions (slow)
18590 @end table
18591
18592 @item tripod
18593 Enable virtual tripod mode if set to 1, which is equivalent to
18594 @code{relative=0:smoothing=0}. Default value is 0.
18595
18596 Use also @code{tripod} option of @ref{vidstabdetect}.
18597
18598 @item debug
18599 Increase log verbosity if set to 1. Also the detected global motions
18600 are written to the temporary file @file{global_motions.trf}. Default
18601 value is 0.
18602 @end table
18603
18604 @subsection Examples
18605
18606 @itemize
18607 @item
18608 Use @command{ffmpeg} for a typical stabilization with default values:
18609 @example
18610 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
18611 @end example
18612
18613 Note the use of the @ref{unsharp} filter which is always recommended.
18614
18615 @item
18616 Zoom in a bit more and load transform data from a given file:
18617 @example
18618 vidstabtransform=zoom=5:input="mytransforms.trf"
18619 @end example
18620
18621 @item
18622 Smoothen the video even more:
18623 @example
18624 vidstabtransform=smoothing=30
18625 @end example
18626 @end itemize
18627
18628 @section vflip
18629
18630 Flip the input video vertically.
18631
18632 For example, to vertically flip a video with @command{ffmpeg}:
18633 @example
18634 ffmpeg -i in.avi -vf "vflip" out.avi
18635 @end example
18636
18637 @section vfrdet
18638
18639 Detect variable frame rate video.
18640
18641 This filter tries to detect if the input is variable or constant frame rate.
18642
18643 At end it will output number of frames detected as having variable delta pts,
18644 and ones with constant delta pts.
18645 If there was frames with variable delta, than it will also show min and max delta
18646 encountered.
18647
18648 @section vibrance
18649
18650 Boost or alter saturation.
18651
18652 The filter accepts the following options:
18653 @table @option
18654 @item intensity
18655 Set strength of boost if positive value or strength of alter if negative value.
18656 Default is 0. Allowed range is from -2 to 2.
18657
18658 @item rbal
18659 Set the red balance. Default is 1. Allowed range is from -10 to 10.
18660
18661 @item gbal
18662 Set the green balance. Default is 1. Allowed range is from -10 to 10.
18663
18664 @item bbal
18665 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
18666
18667 @item rlum
18668 Set the red luma coefficient.
18669
18670 @item glum
18671 Set the green luma coefficient.
18672
18673 @item blum
18674 Set the blue luma coefficient.
18675
18676 @item alternate
18677 If @code{intensity} is negative and this is set to 1, colors will change,
18678 otherwise colors will be less saturated, more towards gray.
18679 @end table
18680
18681 @anchor{vignette}
18682 @section vignette
18683
18684 Make or reverse a natural vignetting effect.
18685
18686 The filter accepts the following options:
18687
18688 @table @option
18689 @item angle, a
18690 Set lens angle expression as a number of radians.
18691
18692 The value is clipped in the @code{[0,PI/2]} range.
18693
18694 Default value: @code{"PI/5"}
18695
18696 @item x0
18697 @item y0
18698 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
18699 by default.
18700
18701 @item mode
18702 Set forward/backward mode.
18703
18704 Available modes are:
18705 @table @samp
18706 @item forward
18707 The larger the distance from the central point, the darker the image becomes.
18708
18709 @item backward
18710 The larger the distance from the central point, the brighter the image becomes.
18711 This can be used to reverse a vignette effect, though there is no automatic
18712 detection to extract the lens @option{angle} and other settings (yet). It can
18713 also be used to create a burning effect.
18714 @end table
18715
18716 Default value is @samp{forward}.
18717
18718 @item eval
18719 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
18720
18721 It accepts the following values:
18722 @table @samp
18723 @item init
18724 Evaluate expressions only once during the filter initialization.
18725
18726 @item frame
18727 Evaluate expressions for each incoming frame. This is way slower than the
18728 @samp{init} mode since it requires all the scalers to be re-computed, but it
18729 allows advanced dynamic expressions.
18730 @end table
18731
18732 Default value is @samp{init}.
18733
18734 @item dither
18735 Set dithering to reduce the circular banding effects. Default is @code{1}
18736 (enabled).
18737
18738 @item aspect
18739 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
18740 Setting this value to the SAR of the input will make a rectangular vignetting
18741 following the dimensions of the video.
18742
18743 Default is @code{1/1}.
18744 @end table
18745
18746 @subsection Expressions
18747
18748 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
18749 following parameters.
18750
18751 @table @option
18752 @item w
18753 @item h
18754 input width and height
18755
18756 @item n
18757 the number of input frame, starting from 0
18758
18759 @item pts
18760 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
18761 @var{TB} units, NAN if undefined
18762
18763 @item r
18764 frame rate of the input video, NAN if the input frame rate is unknown
18765
18766 @item t
18767 the PTS (Presentation TimeStamp) of the filtered video frame,
18768 expressed in seconds, NAN if undefined
18769
18770 @item tb
18771 time base of the input video
18772 @end table
18773
18774
18775 @subsection Examples
18776
18777 @itemize
18778 @item
18779 Apply simple strong vignetting effect:
18780 @example
18781 vignette=PI/4
18782 @end example
18783
18784 @item
18785 Make a flickering vignetting:
18786 @example
18787 vignette='PI/4+random(1)*PI/50':eval=frame
18788 @end example
18789
18790 @end itemize
18791
18792 @section vmafmotion
18793
18794 Obtain the average vmaf motion score of a video.
18795 It is one of the component filters of VMAF.
18796
18797 The obtained average motion score is printed through the logging system.
18798
18799 In the below example the input file @file{ref.mpg} is being processed and score
18800 is computed.
18801
18802 @example
18803 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
18804 @end example
18805
18806 @section vstack
18807 Stack input videos vertically.
18808
18809 All streams must be of same pixel format and of same width.
18810
18811 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
18812 to create same output.
18813
18814 The filter accepts the following options:
18815
18816 @table @option
18817 @item inputs
18818 Set number of input streams. Default is 2.
18819
18820 @item shortest
18821 If set to 1, force the output to terminate when the shortest input
18822 terminates. Default value is 0.
18823 @end table
18824
18825 @section w3fdif
18826
18827 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
18828 Deinterlacing Filter").
18829
18830 Based on the process described by Martin Weston for BBC R&D, and
18831 implemented based on the de-interlace algorithm written by Jim
18832 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
18833 uses filter coefficients calculated by BBC R&D.
18834
18835 This filter uses field-dominance information in frame to decide which
18836 of each pair of fields to place first in the output.
18837 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
18838
18839 There are two sets of filter coefficients, so called "simple"
18840 and "complex". Which set of filter coefficients is used can
18841 be set by passing an optional parameter:
18842
18843 @table @option
18844 @item filter
18845 Set the interlacing filter coefficients. Accepts one of the following values:
18846
18847 @table @samp
18848 @item simple
18849 Simple filter coefficient set.
18850 @item complex
18851 More-complex filter coefficient set.
18852 @end table
18853 Default value is @samp{complex}.
18854
18855 @item deint
18856 Specify which frames to deinterlace. Accepts one of the following values:
18857
18858 @table @samp
18859 @item all
18860 Deinterlace all frames,
18861 @item interlaced
18862 Only deinterlace frames marked as interlaced.
18863 @end table
18864
18865 Default value is @samp{all}.
18866 @end table
18867
18868 @section waveform
18869 Video waveform monitor.
18870
18871 The waveform monitor plots color component intensity. By default luminance
18872 only. Each column of the waveform corresponds to a column of pixels in the
18873 source video.
18874
18875 It accepts the following options:
18876
18877 @table @option
18878 @item mode, m
18879 Can be either @code{row}, or @code{column}. Default is @code{column}.
18880 In row mode, the graph on the left side represents color component value 0 and
18881 the right side represents value = 255. In column mode, the top side represents
18882 color component value = 0 and bottom side represents value = 255.
18883
18884 @item intensity, i
18885 Set intensity. Smaller values are useful to find out how many values of the same
18886 luminance are distributed across input rows/columns.
18887 Default value is @code{0.04}. Allowed range is [0, 1].
18888
18889 @item mirror, r
18890 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
18891 In mirrored mode, higher values will be represented on the left
18892 side for @code{row} mode and at the top for @code{column} mode. Default is
18893 @code{1} (mirrored).
18894
18895 @item display, d
18896 Set display mode.
18897 It accepts the following values:
18898 @table @samp
18899 @item overlay
18900 Presents information identical to that in the @code{parade}, except
18901 that the graphs representing color components are superimposed directly
18902 over one another.
18903
18904 This display mode makes it easier to spot relative differences or similarities
18905 in overlapping areas of the color components that are supposed to be identical,
18906 such as neutral whites, grays, or blacks.
18907
18908 @item stack
18909 Display separate graph for the color components side by side in
18910 @code{row} mode or one below the other in @code{column} mode.
18911
18912 @item parade
18913 Display separate graph for the color components side by side in
18914 @code{column} mode or one below the other in @code{row} mode.
18915
18916 Using this display mode makes it easy to spot color casts in the highlights
18917 and shadows of an image, by comparing the contours of the top and the bottom
18918 graphs of each waveform. Since whites, grays, and blacks are characterized
18919 by exactly equal amounts of red, green, and blue, neutral areas of the picture
18920 should display three waveforms of roughly equal width/height. If not, the
18921 correction is easy to perform by making level adjustments the three waveforms.
18922 @end table
18923 Default is @code{stack}.
18924
18925 @item components, c
18926 Set which color components to display. Default is 1, which means only luminance
18927 or red color component if input is in RGB colorspace. If is set for example to
18928 7 it will display all 3 (if) available color components.
18929
18930 @item envelope, e
18931 @table @samp
18932 @item none
18933 No envelope, this is default.
18934
18935 @item instant
18936 Instant envelope, minimum and maximum values presented in graph will be easily
18937 visible even with small @code{step} value.
18938
18939 @item peak
18940 Hold minimum and maximum values presented in graph across time. This way you
18941 can still spot out of range values without constantly looking at waveforms.
18942
18943 @item peak+instant
18944 Peak and instant envelope combined together.
18945 @end table
18946
18947 @item filter, f
18948 @table @samp
18949 @item lowpass
18950 No filtering, this is default.
18951
18952 @item flat
18953 Luma and chroma combined together.
18954
18955 @item aflat
18956 Similar as above, but shows difference between blue and red chroma.
18957
18958 @item xflat
18959 Similar as above, but use different colors.
18960
18961 @item chroma
18962 Displays only chroma.
18963
18964 @item color
18965 Displays actual color value on waveform.
18966
18967 @item acolor
18968 Similar as above, but with luma showing frequency of chroma values.
18969 @end table
18970
18971 @item graticule, g
18972 Set which graticule to display.
18973
18974 @table @samp
18975 @item none
18976 Do not display graticule.
18977
18978 @item green
18979 Display green graticule showing legal broadcast ranges.
18980
18981 @item orange
18982 Display orange graticule showing legal broadcast ranges.
18983 @end table
18984
18985 @item opacity, o
18986 Set graticule opacity.
18987
18988 @item flags, fl
18989 Set graticule flags.
18990
18991 @table @samp
18992 @item numbers
18993 Draw numbers above lines. By default enabled.
18994
18995 @item dots
18996 Draw dots instead of lines.
18997 @end table
18998
18999 @item scale, s
19000 Set scale used for displaying graticule.
19001
19002 @table @samp
19003 @item digital
19004 @item millivolts
19005 @item ire
19006 @end table
19007 Default is digital.
19008
19009 @item bgopacity, b
19010 Set background opacity.
19011 @end table
19012
19013 @section weave, doubleweave
19014
19015 The @code{weave} takes a field-based video input and join
19016 each two sequential fields into single frame, producing a new double
19017 height clip with half the frame rate and half the frame count.
19018
19019 The @code{doubleweave} works same as @code{weave} but without
19020 halving frame rate and frame count.
19021
19022 It accepts the following option:
19023
19024 @table @option
19025 @item first_field
19026 Set first field. Available values are:
19027
19028 @table @samp
19029 @item top, t
19030 Set the frame as top-field-first.
19031
19032 @item bottom, b
19033 Set the frame as bottom-field-first.
19034 @end table
19035 @end table
19036
19037 @subsection Examples
19038
19039 @itemize
19040 @item
19041 Interlace video using @ref{select} and @ref{separatefields} filter:
19042 @example
19043 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
19044 @end example
19045 @end itemize
19046
19047 @section xbr
19048 Apply the xBR high-quality magnification filter which is designed for pixel
19049 art. It follows a set of edge-detection rules, see
19050 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
19051
19052 It accepts the following option:
19053
19054 @table @option
19055 @item n
19056 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
19057 @code{3xBR} and @code{4} for @code{4xBR}.
19058 Default is @code{3}.
19059 @end table
19060
19061 @section xmedian
19062 Pick median pixels from several input videos.
19063
19064 The filter accepts the following options:
19065
19066 @table @option
19067 @item inputs
19068 Set number of inputs.
19069 Default is 3. Allowed range is from 3 to 255.
19070 If number of inputs is even number, than result will be mean value between two median values.
19071
19072 @item planes
19073 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
19074 @end table
19075
19076 @section xstack
19077 Stack video inputs into custom layout.
19078
19079 All streams must be of same pixel format.
19080
19081 The filter accepts the following options:
19082
19083 @table @option
19084 @item inputs
19085 Set number of input streams. Default is 2.
19086
19087 @item layout
19088 Specify layout of inputs.
19089 This option requires the desired layout configuration to be explicitly set by the user.
19090 This sets position of each video input in output. Each input
19091 is separated by '|'.
19092 The first number represents the column, and the second number represents the row.
19093 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
19094 where X is video input from which to take width or height.
19095 Multiple values can be used when separated by '+'. In such
19096 case values are summed together.
19097
19098 Note that if inputs are of different sizes gaps may appear, as not all of
19099 the output video frame will be filled. Similarly, videos can overlap each
19100 other if their position doesn't leave enough space for the full frame of
19101 adjoining videos.
19102
19103 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
19104 a layout must be set by the user.
19105
19106 @item shortest
19107 If set to 1, force the output to terminate when the shortest input
19108 terminates. Default value is 0.
19109 @end table
19110
19111 @subsection Examples
19112
19113 @itemize
19114 @item
19115 Display 4 inputs into 2x2 grid.
19116
19117 Layout:
19118 @example
19119 input1(0, 0)  | input3(w0, 0)
19120 input2(0, h0) | input4(w0, h0)
19121 @end example
19122
19123 @example
19124 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
19125 @end example
19126
19127 Note that if inputs are of different sizes, gaps or overlaps may occur.
19128
19129 @item
19130 Display 4 inputs into 1x4 grid.
19131
19132 Layout:
19133 @example
19134 input1(0, 0)
19135 input2(0, h0)
19136 input3(0, h0+h1)
19137 input4(0, h0+h1+h2)
19138 @end example
19139
19140 @example
19141 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
19142 @end example
19143
19144 Note that if inputs are of different widths, unused space will appear.
19145
19146 @item
19147 Display 9 inputs into 3x3 grid.
19148
19149 Layout:
19150 @example
19151 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
19152 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
19153 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
19154 @end example
19155
19156 @example
19157 xstack=inputs=9:layout=0_0|0_h0|0_h0+h1|w0_0|w0_h0|w0_h0+h1|w0+w3_0|w0+w3_h0|w0+w3_h0+h1
19158 @end example
19159
19160 Note that if inputs are of different sizes, gaps or overlaps may occur.
19161
19162 @item
19163 Display 16 inputs into 4x4 grid.
19164
19165 Layout:
19166 @example
19167 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
19168 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
19169 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
19170 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
19171 @end example
19172
19173 @example
19174 xstack=inputs=16:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2|w0_0|w0_h0|w0_h0+h1|w0_h0+h1+h2|w0+w4_0|
19175 w0+w4_h0|w0+w4_h0+h1|w0+w4_h0+h1+h2|w0+w4+w8_0|w0+w4+w8_h0|w0+w4+w8_h0+h1|w0+w4+w8_h0+h1+h2
19176 @end example
19177
19178 Note that if inputs are of different sizes, gaps or overlaps may occur.
19179
19180 @end itemize
19181
19182 @anchor{yadif}
19183 @section yadif
19184
19185 Deinterlace the input video ("yadif" means "yet another deinterlacing
19186 filter").
19187
19188 It accepts the following parameters:
19189
19190
19191 @table @option
19192
19193 @item mode
19194 The interlacing mode to adopt. It accepts one of the following values:
19195
19196 @table @option
19197 @item 0, send_frame
19198 Output one frame for each frame.
19199 @item 1, send_field
19200 Output one frame for each field.
19201 @item 2, send_frame_nospatial
19202 Like @code{send_frame}, but it skips the spatial interlacing check.
19203 @item 3, send_field_nospatial
19204 Like @code{send_field}, but it skips the spatial interlacing check.
19205 @end table
19206
19207 The default value is @code{send_frame}.
19208
19209 @item parity
19210 The picture field parity assumed for the input interlaced video. It accepts one
19211 of the following values:
19212
19213 @table @option
19214 @item 0, tff
19215 Assume the top field is first.
19216 @item 1, bff
19217 Assume the bottom field is first.
19218 @item -1, auto
19219 Enable automatic detection of field parity.
19220 @end table
19221
19222 The default value is @code{auto}.
19223 If the interlacing is unknown or the decoder does not export this information,
19224 top field first will be assumed.
19225
19226 @item deint
19227 Specify which frames to deinterlace. Accepts one of the following
19228 values:
19229
19230 @table @option
19231 @item 0, all
19232 Deinterlace all frames.
19233 @item 1, interlaced
19234 Only deinterlace frames marked as interlaced.
19235 @end table
19236
19237 The default value is @code{all}.
19238 @end table
19239
19240 @section yadif_cuda
19241
19242 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
19243 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
19244 and/or nvenc.
19245
19246 It accepts the following parameters:
19247
19248
19249 @table @option
19250
19251 @item mode
19252 The interlacing mode to adopt. It accepts one of the following values:
19253
19254 @table @option
19255 @item 0, send_frame
19256 Output one frame for each frame.
19257 @item 1, send_field
19258 Output one frame for each field.
19259 @item 2, send_frame_nospatial
19260 Like @code{send_frame}, but it skips the spatial interlacing check.
19261 @item 3, send_field_nospatial
19262 Like @code{send_field}, but it skips the spatial interlacing check.
19263 @end table
19264
19265 The default value is @code{send_frame}.
19266
19267 @item parity
19268 The picture field parity assumed for the input interlaced video. It accepts one
19269 of the following values:
19270
19271 @table @option
19272 @item 0, tff
19273 Assume the top field is first.
19274 @item 1, bff
19275 Assume the bottom field is first.
19276 @item -1, auto
19277 Enable automatic detection of field parity.
19278 @end table
19279
19280 The default value is @code{auto}.
19281 If the interlacing is unknown or the decoder does not export this information,
19282 top field first will be assumed.
19283
19284 @item deint
19285 Specify which frames to deinterlace. Accepts one of the following
19286 values:
19287
19288 @table @option
19289 @item 0, all
19290 Deinterlace all frames.
19291 @item 1, interlaced
19292 Only deinterlace frames marked as interlaced.
19293 @end table
19294
19295 The default value is @code{all}.
19296 @end table
19297
19298 @section zoompan
19299
19300 Apply Zoom & Pan effect.
19301
19302 This filter accepts the following options:
19303
19304 @table @option
19305 @item zoom, z
19306 Set the zoom expression. Range is 1-10. Default is 1.
19307
19308 @item x
19309 @item y
19310 Set the x and y expression. Default is 0.
19311
19312 @item d
19313 Set the duration expression in number of frames.
19314 This sets for how many number of frames effect will last for
19315 single input image.
19316
19317 @item s
19318 Set the output image size, default is 'hd720'.
19319
19320 @item fps
19321 Set the output frame rate, default is '25'.
19322 @end table
19323
19324 Each expression can contain the following constants:
19325
19326 @table @option
19327 @item in_w, iw
19328 Input width.
19329
19330 @item in_h, ih
19331 Input height.
19332
19333 @item out_w, ow
19334 Output width.
19335
19336 @item out_h, oh
19337 Output height.
19338
19339 @item in
19340 Input frame count.
19341
19342 @item on
19343 Output frame count.
19344
19345 @item x
19346 @item y
19347 Last calculated 'x' and 'y' position from 'x' and 'y' expression
19348 for current input frame.
19349
19350 @item px
19351 @item py
19352 'x' and 'y' of last output frame of previous input frame or 0 when there was
19353 not yet such frame (first input frame).
19354
19355 @item zoom
19356 Last calculated zoom from 'z' expression for current input frame.
19357
19358 @item pzoom
19359 Last calculated zoom of last output frame of previous input frame.
19360
19361 @item duration
19362 Number of output frames for current input frame. Calculated from 'd' expression
19363 for each input frame.
19364
19365 @item pduration
19366 number of output frames created for previous input frame
19367
19368 @item a
19369 Rational number: input width / input height
19370
19371 @item sar
19372 sample aspect ratio
19373
19374 @item dar
19375 display aspect ratio
19376
19377 @end table
19378
19379 @subsection Examples
19380
19381 @itemize
19382 @item
19383 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
19384 @example
19385 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
19386 @end example
19387
19388 @item
19389 Zoom-in up to 1.5 and pan always at center of picture:
19390 @example
19391 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
19392 @end example
19393
19394 @item
19395 Same as above but without pausing:
19396 @example
19397 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
19398 @end example
19399 @end itemize
19400
19401 @anchor{zscale}
19402 @section zscale
19403 Scale (resize) the input video, using the z.lib library:
19404 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
19405 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
19406
19407 The zscale filter forces the output display aspect ratio to be the same
19408 as the input, by changing the output sample aspect ratio.
19409
19410 If the input image format is different from the format requested by
19411 the next filter, the zscale filter will convert the input to the
19412 requested format.
19413
19414 @subsection Options
19415 The filter accepts the following options.
19416
19417 @table @option
19418 @item width, w
19419 @item height, h
19420 Set the output video dimension expression. Default value is the input
19421 dimension.
19422
19423 If the @var{width} or @var{w} value is 0, the input width is used for
19424 the output. If the @var{height} or @var{h} value is 0, the input height
19425 is used for the output.
19426
19427 If one and only one of the values is -n with n >= 1, the zscale filter
19428 will use a value that maintains the aspect ratio of the input image,
19429 calculated from the other specified dimension. After that it will,
19430 however, make sure that the calculated dimension is divisible by n and
19431 adjust the value if necessary.
19432
19433 If both values are -n with n >= 1, the behavior will be identical to
19434 both values being set to 0 as previously detailed.
19435
19436 See below for the list of accepted constants for use in the dimension
19437 expression.
19438
19439 @item size, s
19440 Set the video size. For the syntax of this option, check the
19441 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19442
19443 @item dither, d
19444 Set the dither type.
19445
19446 Possible values are:
19447 @table @var
19448 @item none
19449 @item ordered
19450 @item random
19451 @item error_diffusion
19452 @end table
19453
19454 Default is none.
19455
19456 @item filter, f
19457 Set the resize filter type.
19458
19459 Possible values are:
19460 @table @var
19461 @item point
19462 @item bilinear
19463 @item bicubic
19464 @item spline16
19465 @item spline36
19466 @item lanczos
19467 @end table
19468
19469 Default is bilinear.
19470
19471 @item range, r
19472 Set the color range.
19473
19474 Possible values are:
19475 @table @var
19476 @item input
19477 @item limited
19478 @item full
19479 @end table
19480
19481 Default is same as input.
19482
19483 @item primaries, p
19484 Set the color primaries.
19485
19486 Possible values are:
19487 @table @var
19488 @item input
19489 @item 709
19490 @item unspecified
19491 @item 170m
19492 @item 240m
19493 @item 2020
19494 @end table
19495
19496 Default is same as input.
19497
19498 @item transfer, t
19499 Set the transfer characteristics.
19500
19501 Possible values are:
19502 @table @var
19503 @item input
19504 @item 709
19505 @item unspecified
19506 @item 601
19507 @item linear
19508 @item 2020_10
19509 @item 2020_12
19510 @item smpte2084
19511 @item iec61966-2-1
19512 @item arib-std-b67
19513 @end table
19514
19515 Default is same as input.
19516
19517 @item matrix, m
19518 Set the colorspace matrix.
19519
19520 Possible value are:
19521 @table @var
19522 @item input
19523 @item 709
19524 @item unspecified
19525 @item 470bg
19526 @item 170m
19527 @item 2020_ncl
19528 @item 2020_cl
19529 @end table
19530
19531 Default is same as input.
19532
19533 @item rangein, rin
19534 Set the input color range.
19535
19536 Possible values are:
19537 @table @var
19538 @item input
19539 @item limited
19540 @item full
19541 @end table
19542
19543 Default is same as input.
19544
19545 @item primariesin, pin
19546 Set the input color primaries.
19547
19548 Possible values are:
19549 @table @var
19550 @item input
19551 @item 709
19552 @item unspecified
19553 @item 170m
19554 @item 240m
19555 @item 2020
19556 @end table
19557
19558 Default is same as input.
19559
19560 @item transferin, tin
19561 Set the input transfer characteristics.
19562
19563 Possible values are:
19564 @table @var
19565 @item input
19566 @item 709
19567 @item unspecified
19568 @item 601
19569 @item linear
19570 @item 2020_10
19571 @item 2020_12
19572 @end table
19573
19574 Default is same as input.
19575
19576 @item matrixin, min
19577 Set the input colorspace matrix.
19578
19579 Possible value are:
19580 @table @var
19581 @item input
19582 @item 709
19583 @item unspecified
19584 @item 470bg
19585 @item 170m
19586 @item 2020_ncl
19587 @item 2020_cl
19588 @end table
19589
19590 @item chromal, c
19591 Set the output chroma location.
19592
19593 Possible values are:
19594 @table @var
19595 @item input
19596 @item left
19597 @item center
19598 @item topleft
19599 @item top
19600 @item bottomleft
19601 @item bottom
19602 @end table
19603
19604 @item chromalin, cin
19605 Set the input chroma location.
19606
19607 Possible values are:
19608 @table @var
19609 @item input
19610 @item left
19611 @item center
19612 @item topleft
19613 @item top
19614 @item bottomleft
19615 @item bottom
19616 @end table
19617
19618 @item npl
19619 Set the nominal peak luminance.
19620 @end table
19621
19622 The values of the @option{w} and @option{h} options are expressions
19623 containing the following constants:
19624
19625 @table @var
19626 @item in_w
19627 @item in_h
19628 The input width and height
19629
19630 @item iw
19631 @item ih
19632 These are the same as @var{in_w} and @var{in_h}.
19633
19634 @item out_w
19635 @item out_h
19636 The output (scaled) width and height
19637
19638 @item ow
19639 @item oh
19640 These are the same as @var{out_w} and @var{out_h}
19641
19642 @item a
19643 The same as @var{iw} / @var{ih}
19644
19645 @item sar
19646 input sample aspect ratio
19647
19648 @item dar
19649 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
19650
19651 @item hsub
19652 @item vsub
19653 horizontal and vertical input chroma subsample values. For example for the
19654 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19655
19656 @item ohsub
19657 @item ovsub
19658 horizontal and vertical output chroma subsample values. For example for the
19659 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19660 @end table
19661
19662 @table @option
19663 @end table
19664
19665 @c man end VIDEO FILTERS
19666
19667 @chapter OpenCL Video Filters
19668 @c man begin OPENCL VIDEO FILTERS
19669
19670 Below is a description of the currently available OpenCL video filters.
19671
19672 To enable compilation of these filters you need to configure FFmpeg with
19673 @code{--enable-opencl}.
19674
19675 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
19676 @table @option
19677
19678 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
19679 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
19680 given device parameters.
19681
19682 @item -filter_hw_device @var{name}
19683 Pass the hardware device called @var{name} to all filters in any filter graph.
19684
19685 @end table
19686
19687 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
19688
19689 @itemize
19690 @item
19691 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
19692 @example
19693 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
19694 @end example
19695 @end itemize
19696
19697 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.
19698
19699 @section avgblur_opencl
19700
19701 Apply average blur filter.
19702
19703 The filter accepts the following options:
19704
19705 @table @option
19706 @item sizeX
19707 Set horizontal radius size.
19708 Range is @code{[1, 1024]} and default value is @code{1}.
19709
19710 @item planes
19711 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19712
19713 @item sizeY
19714 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
19715 @end table
19716
19717 @subsection Example
19718
19719 @itemize
19720 @item
19721 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.
19722 @example
19723 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
19724 @end example
19725 @end itemize
19726
19727 @section boxblur_opencl
19728
19729 Apply a boxblur algorithm to the input video.
19730
19731 It accepts the following parameters:
19732
19733 @table @option
19734
19735 @item luma_radius, lr
19736 @item luma_power, lp
19737 @item chroma_radius, cr
19738 @item chroma_power, cp
19739 @item alpha_radius, ar
19740 @item alpha_power, ap
19741
19742 @end table
19743
19744 A description of the accepted options follows.
19745
19746 @table @option
19747 @item luma_radius, lr
19748 @item chroma_radius, cr
19749 @item alpha_radius, ar
19750 Set an expression for the box radius in pixels used for blurring the
19751 corresponding input plane.
19752
19753 The radius value must be a non-negative number, and must not be
19754 greater than the value of the expression @code{min(w,h)/2} for the
19755 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
19756 planes.
19757
19758 Default value for @option{luma_radius} is "2". If not specified,
19759 @option{chroma_radius} and @option{alpha_radius} default to the
19760 corresponding value set for @option{luma_radius}.
19761
19762 The expressions can contain the following constants:
19763 @table @option
19764 @item w
19765 @item h
19766 The input width and height in pixels.
19767
19768 @item cw
19769 @item ch
19770 The input chroma image width and height in pixels.
19771
19772 @item hsub
19773 @item vsub
19774 The horizontal and vertical chroma subsample values. For example, for the
19775 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
19776 @end table
19777
19778 @item luma_power, lp
19779 @item chroma_power, cp
19780 @item alpha_power, ap
19781 Specify how many times the boxblur filter is applied to the
19782 corresponding plane.
19783
19784 Default value for @option{luma_power} is 2. If not specified,
19785 @option{chroma_power} and @option{alpha_power} default to the
19786 corresponding value set for @option{luma_power}.
19787
19788 A value of 0 will disable the effect.
19789 @end table
19790
19791 @subsection Examples
19792
19793 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.
19794
19795 @itemize
19796 @item
19797 Apply a boxblur filter with the luma, chroma, and alpha radius
19798 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.
19799 @example
19800 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
19801 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
19802 @end example
19803
19804 @item
19805 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.
19806
19807 For the luma plane, a 2x2 box radius will be run once.
19808
19809 For the chroma plane, a 4x4 box radius will be run 5 times.
19810
19811 For the alpha plane, a 3x3 box radius will be run 7 times.
19812 @example
19813 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
19814 @end example
19815 @end itemize
19816
19817 @section convolution_opencl
19818
19819 Apply convolution of 3x3, 5x5, 7x7 matrix.
19820
19821 The filter accepts the following options:
19822
19823 @table @option
19824 @item 0m
19825 @item 1m
19826 @item 2m
19827 @item 3m
19828 Set matrix for each plane.
19829 Matrix is sequence of 9, 25 or 49 signed numbers.
19830 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
19831
19832 @item 0rdiv
19833 @item 1rdiv
19834 @item 2rdiv
19835 @item 3rdiv
19836 Set multiplier for calculated value for each plane.
19837 If unset or 0, it will be sum of all matrix elements.
19838 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
19839
19840 @item 0bias
19841 @item 1bias
19842 @item 2bias
19843 @item 3bias
19844 Set bias for each plane. This value is added to the result of the multiplication.
19845 Useful for making the overall image brighter or darker.
19846 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
19847
19848 @end table
19849
19850 @subsection Examples
19851
19852 @itemize
19853 @item
19854 Apply sharpen:
19855 @example
19856 -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
19857 @end example
19858
19859 @item
19860 Apply blur:
19861 @example
19862 -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
19863 @end example
19864
19865 @item
19866 Apply edge enhance:
19867 @example
19868 -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
19869 @end example
19870
19871 @item
19872 Apply edge detect:
19873 @example
19874 -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
19875 @end example
19876
19877 @item
19878 Apply laplacian edge detector which includes diagonals:
19879 @example
19880 -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
19881 @end example
19882
19883 @item
19884 Apply emboss:
19885 @example
19886 -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
19887 @end example
19888 @end itemize
19889
19890 @section dilation_opencl
19891
19892 Apply dilation effect to the video.
19893
19894 This filter replaces the pixel by the local(3x3) maximum.
19895
19896 It accepts the following options:
19897
19898 @table @option
19899 @item threshold0
19900 @item threshold1
19901 @item threshold2
19902 @item threshold3
19903 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19904 If @code{0}, plane will remain unchanged.
19905
19906 @item coordinates
19907 Flag which specifies the pixel to refer to.
19908 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19909
19910 Flags to local 3x3 coordinates region centered on @code{x}:
19911
19912     1 2 3
19913
19914     4 x 5
19915
19916     6 7 8
19917 @end table
19918
19919 @subsection Example
19920
19921 @itemize
19922 @item
19923 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.
19924 @example
19925 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19926 @end example
19927 @end itemize
19928
19929 @section erosion_opencl
19930
19931 Apply erosion effect to the video.
19932
19933 This filter replaces the pixel by the local(3x3) minimum.
19934
19935 It accepts the following options:
19936
19937 @table @option
19938 @item threshold0
19939 @item threshold1
19940 @item threshold2
19941 @item threshold3
19942 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19943 If @code{0}, plane will remain unchanged.
19944
19945 @item coordinates
19946 Flag which specifies the pixel to refer to.
19947 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19948
19949 Flags to local 3x3 coordinates region centered on @code{x}:
19950
19951     1 2 3
19952
19953     4 x 5
19954
19955     6 7 8
19956 @end table
19957
19958 @subsection Example
19959
19960 @itemize
19961 @item
19962 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.
19963 @example
19964 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19965 @end example
19966 @end itemize
19967
19968 @section colorkey_opencl
19969 RGB colorspace color keying.
19970
19971 The filter accepts the following options:
19972
19973 @table @option
19974 @item color
19975 The color which will be replaced with transparency.
19976
19977 @item similarity
19978 Similarity percentage with the key color.
19979
19980 0.01 matches only the exact key color, while 1.0 matches everything.
19981
19982 @item blend
19983 Blend percentage.
19984
19985 0.0 makes pixels either fully transparent, or not transparent at all.
19986
19987 Higher values result in semi-transparent pixels, with a higher transparency
19988 the more similar the pixels color is to the key color.
19989 @end table
19990
19991 @subsection Examples
19992
19993 @itemize
19994 @item
19995 Make every semi-green pixel in the input transparent with some slight blending:
19996 @example
19997 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
19998 @end example
19999 @end itemize
20000
20001 @section deshake_opencl
20002 Feature-point based video stabilization filter.
20003
20004 The filter accepts the following options:
20005
20006 @table @option
20007 @item tripod
20008 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
20009
20010 @item debug
20011 Whether or not additional debug info should be displayed, both in the processed output and in the console.
20012
20013 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
20014
20015 Viewing point matches in the output video is only supported for RGB input.
20016
20017 Defaults to @code{0}.
20018
20019 @item adaptive_crop
20020 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
20021
20022 Defaults to @code{1}.
20023
20024 @item refine_features
20025 Whether or not feature points should be refined at a sub-pixel level.
20026
20027 This can be turned off for a slight performance gain at the cost of precision.
20028
20029 Defaults to @code{1}.
20030
20031 @item smooth_strength
20032 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
20033
20034 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
20035
20036 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
20037
20038 Defaults to @code{0.0}.
20039
20040 @item smooth_window_multiplier
20041 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
20042
20043 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
20044
20045 Acceptable values range from @code{0.1} to @code{10.0}.
20046
20047 Larger values increase the amount of motion data available for determining how to smooth the camera path,
20048 potentially improving smoothness, but also increase latency and memory usage.
20049
20050 Defaults to @code{2.0}.
20051
20052 @end table
20053
20054 @subsection Examples
20055
20056 @itemize
20057 @item
20058 Stabilize a video with a fixed, medium smoothing strength:
20059 @example
20060 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
20061 @end example
20062
20063 @item
20064 Stabilize a video with debugging (both in console and in rendered video):
20065 @example
20066 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
20067 @end example
20068 @end itemize
20069
20070 @section nlmeans_opencl
20071
20072 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
20073
20074 @section overlay_opencl
20075
20076 Overlay one video on top of another.
20077
20078 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
20079 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
20080
20081 The filter accepts the following options:
20082
20083 @table @option
20084
20085 @item x
20086 Set the x coordinate of the overlaid video on the main video.
20087 Default value is @code{0}.
20088
20089 @item y
20090 Set the x coordinate of the overlaid video on the main video.
20091 Default value is @code{0}.
20092
20093 @end table
20094
20095 @subsection Examples
20096
20097 @itemize
20098 @item
20099 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
20100 @example
20101 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
20102 @end example
20103 @item
20104 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
20105 @example
20106 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
20107 @end example
20108
20109 @end itemize
20110
20111 @section prewitt_opencl
20112
20113 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
20114
20115 The filter accepts the following option:
20116
20117 @table @option
20118 @item planes
20119 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20120
20121 @item scale
20122 Set value which will be multiplied with filtered result.
20123 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20124
20125 @item delta
20126 Set value which will be added to filtered result.
20127 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20128 @end table
20129
20130 @subsection Example
20131
20132 @itemize
20133 @item
20134 Apply the Prewitt operator with scale set to 2 and delta set to 10.
20135 @example
20136 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
20137 @end example
20138 @end itemize
20139
20140 @section roberts_opencl
20141 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
20142
20143 The filter accepts the following option:
20144
20145 @table @option
20146 @item planes
20147 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20148
20149 @item scale
20150 Set value which will be multiplied with filtered result.
20151 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20152
20153 @item delta
20154 Set value which will be added to filtered result.
20155 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20156 @end table
20157
20158 @subsection Example
20159
20160 @itemize
20161 @item
20162 Apply the Roberts cross operator with scale set to 2 and delta set to 10
20163 @example
20164 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
20165 @end example
20166 @end itemize
20167
20168 @section sobel_opencl
20169
20170 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
20171
20172 The filter accepts the following option:
20173
20174 @table @option
20175 @item planes
20176 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20177
20178 @item scale
20179 Set value which will be multiplied with filtered result.
20180 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
20181
20182 @item delta
20183 Set value which will be added to filtered result.
20184 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
20185 @end table
20186
20187 @subsection Example
20188
20189 @itemize
20190 @item
20191 Apply sobel operator with scale set to 2 and delta set to 10
20192 @example
20193 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
20194 @end example
20195 @end itemize
20196
20197 @section tonemap_opencl
20198
20199 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
20200
20201 It accepts the following parameters:
20202
20203 @table @option
20204 @item tonemap
20205 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
20206
20207 @item param
20208 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
20209
20210 @item desat
20211 Apply desaturation for highlights that exceed this level of brightness. The
20212 higher the parameter, the more color information will be preserved. This
20213 setting helps prevent unnaturally blown-out colors for super-highlights, by
20214 (smoothly) turning into white instead. This makes images feel more natural,
20215 at the cost of reducing information about out-of-range colors.
20216
20217 The default value is 0.5, and the algorithm here is a little different from
20218 the cpu version tonemap currently. A setting of 0.0 disables this option.
20219
20220 @item threshold
20221 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
20222 is used to detect whether the scene has changed or not. If the distance between
20223 the current frame average brightness and the current running average exceeds
20224 a threshold value, we would re-calculate scene average and peak brightness.
20225 The default value is 0.2.
20226
20227 @item format
20228 Specify the output pixel format.
20229
20230 Currently supported formats are:
20231 @table @var
20232 @item p010
20233 @item nv12
20234 @end table
20235
20236 @item range, r
20237 Set the output color range.
20238
20239 Possible values are:
20240 @table @var
20241 @item tv/mpeg
20242 @item pc/jpeg
20243 @end table
20244
20245 Default is same as input.
20246
20247 @item primaries, p
20248 Set the output color primaries.
20249
20250 Possible values are:
20251 @table @var
20252 @item bt709
20253 @item bt2020
20254 @end table
20255
20256 Default is same as input.
20257
20258 @item transfer, t
20259 Set the output transfer characteristics.
20260
20261 Possible values are:
20262 @table @var
20263 @item bt709
20264 @item bt2020
20265 @end table
20266
20267 Default is bt709.
20268
20269 @item matrix, m
20270 Set the output colorspace matrix.
20271
20272 Possible value are:
20273 @table @var
20274 @item bt709
20275 @item bt2020
20276 @end table
20277
20278 Default is same as input.
20279
20280 @end table
20281
20282 @subsection Example
20283
20284 @itemize
20285 @item
20286 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
20287 @example
20288 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
20289 @end example
20290 @end itemize
20291
20292 @section unsharp_opencl
20293
20294 Sharpen or blur the input video.
20295
20296 It accepts the following parameters:
20297
20298 @table @option
20299 @item luma_msize_x, lx
20300 Set the luma matrix horizontal size.
20301 Range is @code{[1, 23]} and default value is @code{5}.
20302
20303 @item luma_msize_y, ly
20304 Set the luma matrix vertical size.
20305 Range is @code{[1, 23]} and default value is @code{5}.
20306
20307 @item luma_amount, la
20308 Set the luma effect strength.
20309 Range is @code{[-10, 10]} and default value is @code{1.0}.
20310
20311 Negative values will blur the input video, while positive values will
20312 sharpen it, a value of zero will disable the effect.
20313
20314 @item chroma_msize_x, cx
20315 Set the chroma matrix horizontal size.
20316 Range is @code{[1, 23]} and default value is @code{5}.
20317
20318 @item chroma_msize_y, cy
20319 Set the chroma matrix vertical size.
20320 Range is @code{[1, 23]} and default value is @code{5}.
20321
20322 @item chroma_amount, ca
20323 Set the chroma effect strength.
20324 Range is @code{[-10, 10]} and default value is @code{0.0}.
20325
20326 Negative values will blur the input video, while positive values will
20327 sharpen it, a value of zero will disable the effect.
20328
20329 @end table
20330
20331 All parameters are optional and default to the equivalent of the
20332 string '5:5:1.0:5:5:0.0'.
20333
20334 @subsection Examples
20335
20336 @itemize
20337 @item
20338 Apply strong luma sharpen effect:
20339 @example
20340 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
20341 @end example
20342
20343 @item
20344 Apply a strong blur of both luma and chroma parameters:
20345 @example
20346 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
20347 @end example
20348 @end itemize
20349
20350 @c man end OPENCL VIDEO FILTERS
20351
20352 @chapter Video Sources
20353 @c man begin VIDEO SOURCES
20354
20355 Below is a description of the currently available video sources.
20356
20357 @section buffer
20358
20359 Buffer video frames, and make them available to the filter chain.
20360
20361 This source is mainly intended for a programmatic use, in particular
20362 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
20363
20364 It accepts the following parameters:
20365
20366 @table @option
20367
20368 @item video_size
20369 Specify the size (width and height) of the buffered video frames. For the
20370 syntax of this option, check the
20371 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20372
20373 @item width
20374 The input video width.
20375
20376 @item height
20377 The input video height.
20378
20379 @item pix_fmt
20380 A string representing the pixel format of the buffered video frames.
20381 It may be a number corresponding to a pixel format, or a pixel format
20382 name.
20383
20384 @item time_base
20385 Specify the timebase assumed by the timestamps of the buffered frames.
20386
20387 @item frame_rate
20388 Specify the frame rate expected for the video stream.
20389
20390 @item pixel_aspect, sar
20391 The sample (pixel) aspect ratio of the input video.
20392
20393 @item sws_param
20394 Specify the optional parameters to be used for the scale filter which
20395 is automatically inserted when an input change is detected in the
20396 input size or format.
20397
20398 @item hw_frames_ctx
20399 When using a hardware pixel format, this should be a reference to an
20400 AVHWFramesContext describing input frames.
20401 @end table
20402
20403 For example:
20404 @example
20405 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
20406 @end example
20407
20408 will instruct the source to accept video frames with size 320x240 and
20409 with format "yuv410p", assuming 1/24 as the timestamps timebase and
20410 square pixels (1:1 sample aspect ratio).
20411 Since the pixel format with name "yuv410p" corresponds to the number 6
20412 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
20413 this example corresponds to:
20414 @example
20415 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
20416 @end example
20417
20418 Alternatively, the options can be specified as a flat string, but this
20419 syntax is deprecated:
20420
20421 @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}]
20422
20423 @section cellauto
20424
20425 Create a pattern generated by an elementary cellular automaton.
20426
20427 The initial state of the cellular automaton can be defined through the
20428 @option{filename} and @option{pattern} options. If such options are
20429 not specified an initial state is created randomly.
20430
20431 At each new frame a new row in the video is filled with the result of
20432 the cellular automaton next generation. The behavior when the whole
20433 frame is filled is defined by the @option{scroll} option.
20434
20435 This source accepts the following options:
20436
20437 @table @option
20438 @item filename, f
20439 Read the initial cellular automaton state, i.e. the starting row, from
20440 the specified file.
20441 In the file, each non-whitespace character is considered an alive
20442 cell, a newline will terminate the row, and further characters in the
20443 file will be ignored.
20444
20445 @item pattern, p
20446 Read the initial cellular automaton state, i.e. the starting row, from
20447 the specified string.
20448
20449 Each non-whitespace character in the string is considered an alive
20450 cell, a newline will terminate the row, and further characters in the
20451 string will be ignored.
20452
20453 @item rate, r
20454 Set the video rate, that is the number of frames generated per second.
20455 Default is 25.
20456
20457 @item random_fill_ratio, ratio
20458 Set the random fill ratio for the initial cellular automaton row. It
20459 is a floating point number value ranging from 0 to 1, defaults to
20460 1/PHI.
20461
20462 This option is ignored when a file or a pattern is specified.
20463
20464 @item random_seed, seed
20465 Set the seed for filling randomly the initial row, must be an integer
20466 included between 0 and UINT32_MAX. If not specified, or if explicitly
20467 set to -1, the filter will try to use a good random seed on a best
20468 effort basis.
20469
20470 @item rule
20471 Set the cellular automaton rule, it is a number ranging from 0 to 255.
20472 Default value is 110.
20473
20474 @item size, s
20475 Set the size of the output video. For the syntax of this option, check the
20476 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20477
20478 If @option{filename} or @option{pattern} is specified, the size is set
20479 by default to the width of the specified initial state row, and the
20480 height is set to @var{width} * PHI.
20481
20482 If @option{size} is set, it must contain the width of the specified
20483 pattern string, and the specified pattern will be centered in the
20484 larger row.
20485
20486 If a filename or a pattern string is not specified, the size value
20487 defaults to "320x518" (used for a randomly generated initial state).
20488
20489 @item scroll
20490 If set to 1, scroll the output upward when all the rows in the output
20491 have been already filled. If set to 0, the new generated row will be
20492 written over the top row just after the bottom row is filled.
20493 Defaults to 1.
20494
20495 @item start_full, full
20496 If set to 1, completely fill the output with generated rows before
20497 outputting the first frame.
20498 This is the default behavior, for disabling set the value to 0.
20499
20500 @item stitch
20501 If set to 1, stitch the left and right row edges together.
20502 This is the default behavior, for disabling set the value to 0.
20503 @end table
20504
20505 @subsection Examples
20506
20507 @itemize
20508 @item
20509 Read the initial state from @file{pattern}, and specify an output of
20510 size 200x400.
20511 @example
20512 cellauto=f=pattern:s=200x400
20513 @end example
20514
20515 @item
20516 Generate a random initial row with a width of 200 cells, with a fill
20517 ratio of 2/3:
20518 @example
20519 cellauto=ratio=2/3:s=200x200
20520 @end example
20521
20522 @item
20523 Create a pattern generated by rule 18 starting by a single alive cell
20524 centered on an initial row with width 100:
20525 @example
20526 cellauto=p=@@:s=100x400:full=0:rule=18
20527 @end example
20528
20529 @item
20530 Specify a more elaborated initial pattern:
20531 @example
20532 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
20533 @end example
20534
20535 @end itemize
20536
20537 @anchor{coreimagesrc}
20538 @section coreimagesrc
20539 Video source generated on GPU using Apple's CoreImage API on OSX.
20540
20541 This video source is a specialized version of the @ref{coreimage} video filter.
20542 Use a core image generator at the beginning of the applied filterchain to
20543 generate the content.
20544
20545 The coreimagesrc video source accepts the following options:
20546 @table @option
20547 @item list_generators
20548 List all available generators along with all their respective options as well as
20549 possible minimum and maximum values along with the default values.
20550 @example
20551 list_generators=true
20552 @end example
20553
20554 @item size, s
20555 Specify the size of the sourced video. For the syntax of this option, check the
20556 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20557 The default value is @code{320x240}.
20558
20559 @item rate, r
20560 Specify the frame rate of the sourced video, as the number of frames
20561 generated per second. It has to be a string in the format
20562 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20563 number or a valid video frame rate abbreviation. The default value is
20564 "25".
20565
20566 @item sar
20567 Set the sample aspect ratio of the sourced video.
20568
20569 @item duration, d
20570 Set the duration of the sourced video. See
20571 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20572 for the accepted syntax.
20573
20574 If not specified, or the expressed duration is negative, the video is
20575 supposed to be generated forever.
20576 @end table
20577
20578 Additionally, all options of the @ref{coreimage} video filter are accepted.
20579 A complete filterchain can be used for further processing of the
20580 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
20581 and examples for details.
20582
20583 @subsection Examples
20584
20585 @itemize
20586
20587 @item
20588 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
20589 given as complete and escaped command-line for Apple's standard bash shell:
20590 @example
20591 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
20592 @end example
20593 This example is equivalent to the QRCode example of @ref{coreimage} without the
20594 need for a nullsrc video source.
20595 @end itemize
20596
20597
20598 @section mandelbrot
20599
20600 Generate a Mandelbrot set fractal, and progressively zoom towards the
20601 point specified with @var{start_x} and @var{start_y}.
20602
20603 This source accepts the following options:
20604
20605 @table @option
20606
20607 @item end_pts
20608 Set the terminal pts value. Default value is 400.
20609
20610 @item end_scale
20611 Set the terminal scale value.
20612 Must be a floating point value. Default value is 0.3.
20613
20614 @item inner
20615 Set the inner coloring mode, that is the algorithm used to draw the
20616 Mandelbrot fractal internal region.
20617
20618 It shall assume one of the following values:
20619 @table @option
20620 @item black
20621 Set black mode.
20622 @item convergence
20623 Show time until convergence.
20624 @item mincol
20625 Set color based on point closest to the origin of the iterations.
20626 @item period
20627 Set period mode.
20628 @end table
20629
20630 Default value is @var{mincol}.
20631
20632 @item bailout
20633 Set the bailout value. Default value is 10.0.
20634
20635 @item maxiter
20636 Set the maximum of iterations performed by the rendering
20637 algorithm. Default value is 7189.
20638
20639 @item outer
20640 Set outer coloring mode.
20641 It shall assume one of following values:
20642 @table @option
20643 @item iteration_count
20644 Set iteration count mode.
20645 @item normalized_iteration_count
20646 set normalized iteration count mode.
20647 @end table
20648 Default value is @var{normalized_iteration_count}.
20649
20650 @item rate, r
20651 Set frame rate, expressed as number of frames per second. Default
20652 value is "25".
20653
20654 @item size, s
20655 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
20656 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
20657
20658 @item start_scale
20659 Set the initial scale value. Default value is 3.0.
20660
20661 @item start_x
20662 Set the initial x position. Must be a floating point value between
20663 -100 and 100. Default value is -0.743643887037158704752191506114774.
20664
20665 @item start_y
20666 Set the initial y position. Must be a floating point value between
20667 -100 and 100. Default value is -0.131825904205311970493132056385139.
20668 @end table
20669
20670 @section mptestsrc
20671
20672 Generate various test patterns, as generated by the MPlayer test filter.
20673
20674 The size of the generated video is fixed, and is 256x256.
20675 This source is useful in particular for testing encoding features.
20676
20677 This source accepts the following options:
20678
20679 @table @option
20680
20681 @item rate, r
20682 Specify the frame rate of the sourced video, as the number of frames
20683 generated per second. It has to be a string in the format
20684 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20685 number or a valid video frame rate abbreviation. The default value is
20686 "25".
20687
20688 @item duration, d
20689 Set the duration of the sourced video. See
20690 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20691 for the accepted syntax.
20692
20693 If not specified, or the expressed duration is negative, the video is
20694 supposed to be generated forever.
20695
20696 @item test, t
20697
20698 Set the number or the name of the test to perform. Supported tests are:
20699 @table @option
20700 @item dc_luma
20701 @item dc_chroma
20702 @item freq_luma
20703 @item freq_chroma
20704 @item amp_luma
20705 @item amp_chroma
20706 @item cbp
20707 @item mv
20708 @item ring1
20709 @item ring2
20710 @item all
20711
20712 @end table
20713
20714 Default value is "all", which will cycle through the list of all tests.
20715 @end table
20716
20717 Some examples:
20718 @example
20719 mptestsrc=t=dc_luma
20720 @end example
20721
20722 will generate a "dc_luma" test pattern.
20723
20724 @section frei0r_src
20725
20726 Provide a frei0r source.
20727
20728 To enable compilation of this filter you need to install the frei0r
20729 header and configure FFmpeg with @code{--enable-frei0r}.
20730
20731 This source accepts the following parameters:
20732
20733 @table @option
20734
20735 @item size
20736 The size of the video to generate. For the syntax of this option, check the
20737 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20738
20739 @item framerate
20740 The framerate of the generated video. It may be a string of the form
20741 @var{num}/@var{den} or a frame rate abbreviation.
20742
20743 @item filter_name
20744 The name to the frei0r source to load. For more information regarding frei0r and
20745 how to set the parameters, read the @ref{frei0r} section in the video filters
20746 documentation.
20747
20748 @item filter_params
20749 A '|'-separated list of parameters to pass to the frei0r source.
20750
20751 @end table
20752
20753 For example, to generate a frei0r partik0l source with size 200x200
20754 and frame rate 10 which is overlaid on the overlay filter main input:
20755 @example
20756 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
20757 @end example
20758
20759 @section life
20760
20761 Generate a life pattern.
20762
20763 This source is based on a generalization of John Conway's life game.
20764
20765 The sourced input represents a life grid, each pixel represents a cell
20766 which can be in one of two possible states, alive or dead. Every cell
20767 interacts with its eight neighbours, which are the cells that are
20768 horizontally, vertically, or diagonally adjacent.
20769
20770 At each interaction the grid evolves according to the adopted rule,
20771 which specifies the number of neighbor alive cells which will make a
20772 cell stay alive or born. The @option{rule} option allows one to specify
20773 the rule to adopt.
20774
20775 This source accepts the following options:
20776
20777 @table @option
20778 @item filename, f
20779 Set the file from which to read the initial grid state. In the file,
20780 each non-whitespace character is considered an alive cell, and newline
20781 is used to delimit the end of each row.
20782
20783 If this option is not specified, the initial grid is generated
20784 randomly.
20785
20786 @item rate, r
20787 Set the video rate, that is the number of frames generated per second.
20788 Default is 25.
20789
20790 @item random_fill_ratio, ratio
20791 Set the random fill ratio for the initial random grid. It is a
20792 floating point number value ranging from 0 to 1, defaults to 1/PHI.
20793 It is ignored when a file is specified.
20794
20795 @item random_seed, seed
20796 Set the seed for filling the initial random grid, must be an integer
20797 included between 0 and UINT32_MAX. If not specified, or if explicitly
20798 set to -1, the filter will try to use a good random seed on a best
20799 effort basis.
20800
20801 @item rule
20802 Set the life rule.
20803
20804 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
20805 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
20806 @var{NS} specifies the number of alive neighbor cells which make a
20807 live cell stay alive, and @var{NB} the number of alive neighbor cells
20808 which make a dead cell to become alive (i.e. to "born").
20809 "s" and "b" can be used in place of "S" and "B", respectively.
20810
20811 Alternatively a rule can be specified by an 18-bits integer. The 9
20812 high order bits are used to encode the next cell state if it is alive
20813 for each number of neighbor alive cells, the low order bits specify
20814 the rule for "borning" new cells. Higher order bits encode for an
20815 higher number of neighbor cells.
20816 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
20817 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
20818
20819 Default value is "S23/B3", which is the original Conway's game of life
20820 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
20821 cells, and will born a new cell if there are three alive cells around
20822 a dead cell.
20823
20824 @item size, s
20825 Set the size of the output video. For the syntax of this option, check the
20826 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20827
20828 If @option{filename} is specified, the size is set by default to the
20829 same size of the input file. If @option{size} is set, it must contain
20830 the size specified in the input file, and the initial grid defined in
20831 that file is centered in the larger resulting area.
20832
20833 If a filename is not specified, the size value defaults to "320x240"
20834 (used for a randomly generated initial grid).
20835
20836 @item stitch
20837 If set to 1, stitch the left and right grid edges together, and the
20838 top and bottom edges also. Defaults to 1.
20839
20840 @item mold
20841 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
20842 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
20843 value from 0 to 255.
20844
20845 @item life_color
20846 Set the color of living (or new born) cells.
20847
20848 @item death_color
20849 Set the color of dead cells. If @option{mold} is set, this is the first color
20850 used to represent a dead cell.
20851
20852 @item mold_color
20853 Set mold color, for definitely dead and moldy cells.
20854
20855 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
20856 ffmpeg-utils manual,ffmpeg-utils}.
20857 @end table
20858
20859 @subsection Examples
20860
20861 @itemize
20862 @item
20863 Read a grid from @file{pattern}, and center it on a grid of size
20864 300x300 pixels:
20865 @example
20866 life=f=pattern:s=300x300
20867 @end example
20868
20869 @item
20870 Generate a random grid of size 200x200, with a fill ratio of 2/3:
20871 @example
20872 life=ratio=2/3:s=200x200
20873 @end example
20874
20875 @item
20876 Specify a custom rule for evolving a randomly generated grid:
20877 @example
20878 life=rule=S14/B34
20879 @end example
20880
20881 @item
20882 Full example with slow death effect (mold) using @command{ffplay}:
20883 @example
20884 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
20885 @end example
20886 @end itemize
20887
20888 @anchor{allrgb}
20889 @anchor{allyuv}
20890 @anchor{color}
20891 @anchor{haldclutsrc}
20892 @anchor{nullsrc}
20893 @anchor{pal75bars}
20894 @anchor{pal100bars}
20895 @anchor{rgbtestsrc}
20896 @anchor{smptebars}
20897 @anchor{smptehdbars}
20898 @anchor{testsrc}
20899 @anchor{testsrc2}
20900 @anchor{yuvtestsrc}
20901 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
20902
20903 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
20904
20905 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
20906
20907 The @code{color} source provides an uniformly colored input.
20908
20909 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
20910 @ref{haldclut} filter.
20911
20912 The @code{nullsrc} source returns unprocessed video frames. It is
20913 mainly useful to be employed in analysis / debugging tools, or as the
20914 source for filters which ignore the input data.
20915
20916 The @code{pal75bars} source generates a color bars pattern, based on
20917 EBU PAL recommendations with 75% color levels.
20918
20919 The @code{pal100bars} source generates a color bars pattern, based on
20920 EBU PAL recommendations with 100% color levels.
20921
20922 The @code{rgbtestsrc} source generates an RGB test pattern useful for
20923 detecting RGB vs BGR issues. You should see a red, green and blue
20924 stripe from top to bottom.
20925
20926 The @code{smptebars} source generates a color bars pattern, based on
20927 the SMPTE Engineering Guideline EG 1-1990.
20928
20929 The @code{smptehdbars} source generates a color bars pattern, based on
20930 the SMPTE RP 219-2002.
20931
20932 The @code{testsrc} source generates a test video pattern, showing a
20933 color pattern, a scrolling gradient and a timestamp. This is mainly
20934 intended for testing purposes.
20935
20936 The @code{testsrc2} source is similar to testsrc, but supports more
20937 pixel formats instead of just @code{rgb24}. This allows using it as an
20938 input for other tests without requiring a format conversion.
20939
20940 The @code{yuvtestsrc} source generates an YUV test pattern. You should
20941 see a y, cb and cr stripe from top to bottom.
20942
20943 The sources accept the following parameters:
20944
20945 @table @option
20946
20947 @item level
20948 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
20949 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
20950 pixels to be used as identity matrix for 3D lookup tables. Each component is
20951 coded on a @code{1/(N*N)} scale.
20952
20953 @item color, c
20954 Specify the color of the source, only available in the @code{color}
20955 source. For the syntax of this option, check the
20956 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
20957
20958 @item size, s
20959 Specify the size of the sourced video. For the syntax of this option, check the
20960 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20961 The default value is @code{320x240}.
20962
20963 This option is not available with the @code{allrgb}, @code{allyuv}, and
20964 @code{haldclutsrc} filters.
20965
20966 @item rate, r
20967 Specify the frame rate of the sourced video, as the number of frames
20968 generated per second. It has to be a string in the format
20969 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20970 number or a valid video frame rate abbreviation. The default value is
20971 "25".
20972
20973 @item duration, d
20974 Set the duration of the sourced video. See
20975 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20976 for the accepted syntax.
20977
20978 If not specified, or the expressed duration is negative, the video is
20979 supposed to be generated forever.
20980
20981 @item sar
20982 Set the sample aspect ratio of the sourced video.
20983
20984 @item alpha
20985 Specify the alpha (opacity) of the background, only available in the
20986 @code{testsrc2} source. The value must be between 0 (fully transparent) and
20987 255 (fully opaque, the default).
20988
20989 @item decimals, n
20990 Set the number of decimals to show in the timestamp, only available in the
20991 @code{testsrc} source.
20992
20993 The displayed timestamp value will correspond to the original
20994 timestamp value multiplied by the power of 10 of the specified
20995 value. Default value is 0.
20996 @end table
20997
20998 @subsection Examples
20999
21000 @itemize
21001 @item
21002 Generate a video with a duration of 5.3 seconds, with size
21003 176x144 and a frame rate of 10 frames per second:
21004 @example
21005 testsrc=duration=5.3:size=qcif:rate=10
21006 @end example
21007
21008 @item
21009 The following graph description will generate a red source
21010 with an opacity of 0.2, with size "qcif" and a frame rate of 10
21011 frames per second:
21012 @example
21013 color=c=red@@0.2:s=qcif:r=10
21014 @end example
21015
21016 @item
21017 If the input content is to be ignored, @code{nullsrc} can be used. The
21018 following command generates noise in the luminance plane by employing
21019 the @code{geq} filter:
21020 @example
21021 nullsrc=s=256x256, geq=random(1)*255:128:128
21022 @end example
21023 @end itemize
21024
21025 @subsection Commands
21026
21027 The @code{color} source supports the following commands:
21028
21029 @table @option
21030 @item c, color
21031 Set the color of the created image. Accepts the same syntax of the
21032 corresponding @option{color} option.
21033 @end table
21034
21035 @section openclsrc
21036
21037 Generate video using an OpenCL program.
21038
21039 @table @option
21040
21041 @item source
21042 OpenCL program source file.
21043
21044 @item kernel
21045 Kernel name in program.
21046
21047 @item size, s
21048 Size of frames to generate.  This must be set.
21049
21050 @item format
21051 Pixel format to use for the generated frames.  This must be set.
21052
21053 @item rate, r
21054 Number of frames generated every second.  Default value is '25'.
21055
21056 @end table
21057
21058 For details of how the program loading works, see the @ref{program_opencl}
21059 filter.
21060
21061 Example programs:
21062
21063 @itemize
21064 @item
21065 Generate a colour ramp by setting pixel values from the position of the pixel
21066 in the output image.  (Note that this will work with all pixel formats, but
21067 the generated output will not be the same.)
21068 @verbatim
21069 __kernel void ramp(__write_only image2d_t dst,
21070                    unsigned int index)
21071 {
21072     int2 loc = (int2)(get_global_id(0), get_global_id(1));
21073
21074     float4 val;
21075     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
21076
21077     write_imagef(dst, loc, val);
21078 }
21079 @end verbatim
21080
21081 @item
21082 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
21083 @verbatim
21084 __kernel void sierpinski_carpet(__write_only image2d_t dst,
21085                                 unsigned int index)
21086 {
21087     int2 loc = (int2)(get_global_id(0), get_global_id(1));
21088
21089     float4 value = 0.0f;
21090     int x = loc.x + index;
21091     int y = loc.y + index;
21092     while (x > 0 || y > 0) {
21093         if (x % 3 == 1 && y % 3 == 1) {
21094             value = 1.0f;
21095             break;
21096         }
21097         x /= 3;
21098         y /= 3;
21099     }
21100
21101     write_imagef(dst, loc, value);
21102 }
21103 @end verbatim
21104
21105 @end itemize
21106
21107 @section sierpinski
21108
21109 Generate a Sierpinksi carpet fractal, and randomly pan around.
21110
21111 This source accepts the following options:
21112
21113 @table @option
21114 @item size, s
21115 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
21116 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
21117
21118 @item rate, r
21119 Set frame rate, expressed as number of frames per second. Default
21120 value is "25".
21121
21122 @item seed
21123 Set seed which is used for random panning.
21124
21125 @item jump
21126 Set max jump for single pan destination. Allowed range is from 1 to 10000.
21127 @end table
21128
21129 @c man end VIDEO SOURCES
21130
21131 @chapter Video Sinks
21132 @c man begin VIDEO SINKS
21133
21134 Below is a description of the currently available video sinks.
21135
21136 @section buffersink
21137
21138 Buffer video frames, and make them available to the end of the filter
21139 graph.
21140
21141 This sink is mainly intended for programmatic use, in particular
21142 through the interface defined in @file{libavfilter/buffersink.h}
21143 or the options system.
21144
21145 It accepts a pointer to an AVBufferSinkContext structure, which
21146 defines the incoming buffers' formats, to be passed as the opaque
21147 parameter to @code{avfilter_init_filter} for initialization.
21148
21149 @section nullsink
21150
21151 Null video sink: do absolutely nothing with the input video. It is
21152 mainly useful as a template and for use in analysis / debugging
21153 tools.
21154
21155 @c man end VIDEO SINKS
21156
21157 @chapter Multimedia Filters
21158 @c man begin MULTIMEDIA FILTERS
21159
21160 Below is a description of the currently available multimedia filters.
21161
21162 @section abitscope
21163
21164 Convert input audio to a video output, displaying the audio bit scope.
21165
21166 The filter accepts the following options:
21167
21168 @table @option
21169 @item rate, r
21170 Set frame rate, expressed as number of frames per second. Default
21171 value is "25".
21172
21173 @item size, s
21174 Specify the video size for the output. For the syntax of this option, check the
21175 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21176 Default value is @code{1024x256}.
21177
21178 @item colors
21179 Specify list of colors separated by space or by '|' which will be used to
21180 draw channels. Unrecognized or missing colors will be replaced
21181 by white color.
21182 @end table
21183
21184 @section ahistogram
21185
21186 Convert input audio to a video output, displaying the volume histogram.
21187
21188 The filter accepts the following options:
21189
21190 @table @option
21191 @item dmode
21192 Specify how histogram is calculated.
21193
21194 It accepts the following values:
21195 @table @samp
21196 @item single
21197 Use single histogram for all channels.
21198 @item separate
21199 Use separate histogram for each channel.
21200 @end table
21201 Default is @code{single}.
21202
21203 @item rate, r
21204 Set frame rate, expressed as number of frames per second. Default
21205 value is "25".
21206
21207 @item size, s
21208 Specify the video size for the output. For the syntax of this option, check the
21209 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21210 Default value is @code{hd720}.
21211
21212 @item scale
21213 Set display scale.
21214
21215 It accepts the following values:
21216 @table @samp
21217 @item log
21218 logarithmic
21219 @item sqrt
21220 square root
21221 @item cbrt
21222 cubic root
21223 @item lin
21224 linear
21225 @item rlog
21226 reverse logarithmic
21227 @end table
21228 Default is @code{log}.
21229
21230 @item ascale
21231 Set amplitude scale.
21232
21233 It accepts the following values:
21234 @table @samp
21235 @item log
21236 logarithmic
21237 @item lin
21238 linear
21239 @end table
21240 Default is @code{log}.
21241
21242 @item acount
21243 Set how much frames to accumulate in histogram.
21244 Default is 1. Setting this to -1 accumulates all frames.
21245
21246 @item rheight
21247 Set histogram ratio of window height.
21248
21249 @item slide
21250 Set sonogram sliding.
21251
21252 It accepts the following values:
21253 @table @samp
21254 @item replace
21255 replace old rows with new ones.
21256 @item scroll
21257 scroll from top to bottom.
21258 @end table
21259 Default is @code{replace}.
21260 @end table
21261
21262 @section aphasemeter
21263
21264 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
21265 representing mean phase of current audio frame. A video output can also be produced and is
21266 enabled by default. The audio is passed through as first output.
21267
21268 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
21269 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
21270 and @code{1} means channels are in phase.
21271
21272 The filter accepts the following options, all related to its video output:
21273
21274 @table @option
21275 @item rate, r
21276 Set the output frame rate. Default value is @code{25}.
21277
21278 @item size, s
21279 Set the video size for the output. For the syntax of this option, check the
21280 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21281 Default value is @code{800x400}.
21282
21283 @item rc
21284 @item gc
21285 @item bc
21286 Specify the red, green, blue contrast. Default values are @code{2},
21287 @code{7} and @code{1}.
21288 Allowed range is @code{[0, 255]}.
21289
21290 @item mpc
21291 Set color which will be used for drawing median phase. If color is
21292 @code{none} which is default, no median phase value will be drawn.
21293
21294 @item video
21295 Enable video output. Default is enabled.
21296 @end table
21297
21298 @section avectorscope
21299
21300 Convert input audio to a video output, representing the audio vector
21301 scope.
21302
21303 The filter is used to measure the difference between channels of stereo
21304 audio stream. A monoaural signal, consisting of identical left and right
21305 signal, results in straight vertical line. Any stereo separation is visible
21306 as a deviation from this line, creating a Lissajous figure.
21307 If the straight (or deviation from it) but horizontal line appears this
21308 indicates that the left and right channels are out of phase.
21309
21310 The filter accepts the following options:
21311
21312 @table @option
21313 @item mode, m
21314 Set the vectorscope mode.
21315
21316 Available values are:
21317 @table @samp
21318 @item lissajous
21319 Lissajous rotated by 45 degrees.
21320
21321 @item lissajous_xy
21322 Same as above but not rotated.
21323
21324 @item polar
21325 Shape resembling half of circle.
21326 @end table
21327
21328 Default value is @samp{lissajous}.
21329
21330 @item size, s
21331 Set the video size for the output. For the syntax of this option, check the
21332 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21333 Default value is @code{400x400}.
21334
21335 @item rate, r
21336 Set the output frame rate. Default value is @code{25}.
21337
21338 @item rc
21339 @item gc
21340 @item bc
21341 @item ac
21342 Specify the red, green, blue and alpha contrast. Default values are @code{40},
21343 @code{160}, @code{80} and @code{255}.
21344 Allowed range is @code{[0, 255]}.
21345
21346 @item rf
21347 @item gf
21348 @item bf
21349 @item af
21350 Specify the red, green, blue and alpha fade. Default values are @code{15},
21351 @code{10}, @code{5} and @code{5}.
21352 Allowed range is @code{[0, 255]}.
21353
21354 @item zoom
21355 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
21356 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
21357
21358 @item draw
21359 Set the vectorscope drawing mode.
21360
21361 Available values are:
21362 @table @samp
21363 @item dot
21364 Draw dot for each sample.
21365
21366 @item line
21367 Draw line between previous and current sample.
21368 @end table
21369
21370 Default value is @samp{dot}.
21371
21372 @item scale
21373 Specify amplitude scale of audio samples.
21374
21375 Available values are:
21376 @table @samp
21377 @item lin
21378 Linear.
21379
21380 @item sqrt
21381 Square root.
21382
21383 @item cbrt
21384 Cubic root.
21385
21386 @item log
21387 Logarithmic.
21388 @end table
21389
21390 @item swap
21391 Swap left channel axis with right channel axis.
21392
21393 @item mirror
21394 Mirror axis.
21395
21396 @table @samp
21397 @item none
21398 No mirror.
21399
21400 @item x
21401 Mirror only x axis.
21402
21403 @item y
21404 Mirror only y axis.
21405
21406 @item xy
21407 Mirror both axis.
21408 @end table
21409
21410 @end table
21411
21412 @subsection Examples
21413
21414 @itemize
21415 @item
21416 Complete example using @command{ffplay}:
21417 @example
21418 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
21419              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
21420 @end example
21421 @end itemize
21422
21423 @section bench, abench
21424
21425 Benchmark part of a filtergraph.
21426
21427 The filter accepts the following options:
21428
21429 @table @option
21430 @item action
21431 Start or stop a timer.
21432
21433 Available values are:
21434 @table @samp
21435 @item start
21436 Get the current time, set it as frame metadata (using the key
21437 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
21438
21439 @item stop
21440 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
21441 the input frame metadata to get the time difference. Time difference, average,
21442 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
21443 @code{min}) are then printed. The timestamps are expressed in seconds.
21444 @end table
21445 @end table
21446
21447 @subsection Examples
21448
21449 @itemize
21450 @item
21451 Benchmark @ref{selectivecolor} filter:
21452 @example
21453 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
21454 @end example
21455 @end itemize
21456
21457 @section concat
21458
21459 Concatenate audio and video streams, joining them together one after the
21460 other.
21461
21462 The filter works on segments of synchronized video and audio streams. All
21463 segments must have the same number of streams of each type, and that will
21464 also be the number of streams at output.
21465
21466 The filter accepts the following options:
21467
21468 @table @option
21469
21470 @item n
21471 Set the number of segments. Default is 2.
21472
21473 @item v
21474 Set the number of output video streams, that is also the number of video
21475 streams in each segment. Default is 1.
21476
21477 @item a
21478 Set the number of output audio streams, that is also the number of audio
21479 streams in each segment. Default is 0.
21480
21481 @item unsafe
21482 Activate unsafe mode: do not fail if segments have a different format.
21483
21484 @end table
21485
21486 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
21487 @var{a} audio outputs.
21488
21489 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
21490 segment, in the same order as the outputs, then the inputs for the second
21491 segment, etc.
21492
21493 Related streams do not always have exactly the same duration, for various
21494 reasons including codec frame size or sloppy authoring. For that reason,
21495 related synchronized streams (e.g. a video and its audio track) should be
21496 concatenated at once. The concat filter will use the duration of the longest
21497 stream in each segment (except the last one), and if necessary pad shorter
21498 audio streams with silence.
21499
21500 For this filter to work correctly, all segments must start at timestamp 0.
21501
21502 All corresponding streams must have the same parameters in all segments; the
21503 filtering system will automatically select a common pixel format for video
21504 streams, and a common sample format, sample rate and channel layout for
21505 audio streams, but other settings, such as resolution, must be converted
21506 explicitly by the user.
21507
21508 Different frame rates are acceptable but will result in variable frame rate
21509 at output; be sure to configure the output file to handle it.
21510
21511 @subsection Examples
21512
21513 @itemize
21514 @item
21515 Concatenate an opening, an episode and an ending, all in bilingual version
21516 (video in stream 0, audio in streams 1 and 2):
21517 @example
21518 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
21519   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
21520    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
21521   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
21522 @end example
21523
21524 @item
21525 Concatenate two parts, handling audio and video separately, using the
21526 (a)movie sources, and adjusting the resolution:
21527 @example
21528 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
21529 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
21530 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
21531 @end example
21532 Note that a desync will happen at the stitch if the audio and video streams
21533 do not have exactly the same duration in the first file.
21534
21535 @end itemize
21536
21537 @subsection Commands
21538
21539 This filter supports the following commands:
21540 @table @option
21541 @item next
21542 Close the current segment and step to the next one
21543 @end table
21544
21545 @section drawgraph, adrawgraph
21546
21547 Draw a graph using input video or audio metadata.
21548
21549 It accepts the following parameters:
21550
21551 @table @option
21552 @item m1
21553 Set 1st frame metadata key from which metadata values will be used to draw a graph.
21554
21555 @item fg1
21556 Set 1st foreground color expression.
21557
21558 @item m2
21559 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
21560
21561 @item fg2
21562 Set 2nd foreground color expression.
21563
21564 @item m3
21565 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
21566
21567 @item fg3
21568 Set 3rd foreground color expression.
21569
21570 @item m4
21571 Set 4th frame metadata key from which metadata values will be used to draw a graph.
21572
21573 @item fg4
21574 Set 4th foreground color expression.
21575
21576 @item min
21577 Set minimal value of metadata value.
21578
21579 @item max
21580 Set maximal value of metadata value.
21581
21582 @item bg
21583 Set graph background color. Default is white.
21584
21585 @item mode
21586 Set graph mode.
21587
21588 Available values for mode is:
21589 @table @samp
21590 @item bar
21591 @item dot
21592 @item line
21593 @end table
21594
21595 Default is @code{line}.
21596
21597 @item slide
21598 Set slide mode.
21599
21600 Available values for slide is:
21601 @table @samp
21602 @item frame
21603 Draw new frame when right border is reached.
21604
21605 @item replace
21606 Replace old columns with new ones.
21607
21608 @item scroll
21609 Scroll from right to left.
21610
21611 @item rscroll
21612 Scroll from left to right.
21613
21614 @item picture
21615 Draw single picture.
21616 @end table
21617
21618 Default is @code{frame}.
21619
21620 @item size
21621 Set size of graph video. For the syntax of this option, check the
21622 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21623 The default value is @code{900x256}.
21624
21625 The foreground color expressions can use the following variables:
21626 @table @option
21627 @item MIN
21628 Minimal value of metadata value.
21629
21630 @item MAX
21631 Maximal value of metadata value.
21632
21633 @item VAL
21634 Current metadata key value.
21635 @end table
21636
21637 The color is defined as 0xAABBGGRR.
21638 @end table
21639
21640 Example using metadata from @ref{signalstats} filter:
21641 @example
21642 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
21643 @end example
21644
21645 Example using metadata from @ref{ebur128} filter:
21646 @example
21647 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
21648 @end example
21649
21650 @anchor{ebur128}
21651 @section ebur128
21652
21653 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
21654 level. By default, it logs a message at a frequency of 10Hz with the
21655 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
21656 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
21657
21658 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
21659 sample format is double-precision floating point. The input stream will be converted to
21660 this specification, if needed. Users may need to insert aformat and/or aresample filters
21661 after this filter to obtain the original parameters.
21662
21663 The filter also has a video output (see the @var{video} option) with a real
21664 time graph to observe the loudness evolution. The graphic contains the logged
21665 message mentioned above, so it is not printed anymore when this option is set,
21666 unless the verbose logging is set. The main graphing area contains the
21667 short-term loudness (3 seconds of analysis), and the gauge on the right is for
21668 the momentary loudness (400 milliseconds), but can optionally be configured
21669 to instead display short-term loudness (see @var{gauge}).
21670
21671 The green area marks a  +/- 1LU target range around the target loudness
21672 (-23LUFS by default, unless modified through @var{target}).
21673
21674 More information about the Loudness Recommendation EBU R128 on
21675 @url{http://tech.ebu.ch/loudness}.
21676
21677 The filter accepts the following options:
21678
21679 @table @option
21680
21681 @item video
21682 Activate the video output. The audio stream is passed unchanged whether this
21683 option is set or no. The video stream will be the first output stream if
21684 activated. Default is @code{0}.
21685
21686 @item size
21687 Set the video size. This option is for video only. For the syntax of this
21688 option, check the
21689 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21690 Default and minimum resolution is @code{640x480}.
21691
21692 @item meter
21693 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
21694 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
21695 other integer value between this range is allowed.
21696
21697 @item metadata
21698 Set metadata injection. If set to @code{1}, the audio input will be segmented
21699 into 100ms output frames, each of them containing various loudness information
21700 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
21701
21702 Default is @code{0}.
21703
21704 @item framelog
21705 Force the frame logging level.
21706
21707 Available values are:
21708 @table @samp
21709 @item info
21710 information logging level
21711 @item verbose
21712 verbose logging level
21713 @end table
21714
21715 By default, the logging level is set to @var{info}. If the @option{video} or
21716 the @option{metadata} options are set, it switches to @var{verbose}.
21717
21718 @item peak
21719 Set peak mode(s).
21720
21721 Available modes can be cumulated (the option is a @code{flag} type). Possible
21722 values are:
21723 @table @samp
21724 @item none
21725 Disable any peak mode (default).
21726 @item sample
21727 Enable sample-peak mode.
21728
21729 Simple peak mode looking for the higher sample value. It logs a message
21730 for sample-peak (identified by @code{SPK}).
21731 @item true
21732 Enable true-peak mode.
21733
21734 If enabled, the peak lookup is done on an over-sampled version of the input
21735 stream for better peak accuracy. It logs a message for true-peak.
21736 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
21737 This mode requires a build with @code{libswresample}.
21738 @end table
21739
21740 @item dualmono
21741 Treat mono input files as "dual mono". If a mono file is intended for playback
21742 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
21743 If set to @code{true}, this option will compensate for this effect.
21744 Multi-channel input files are not affected by this option.
21745
21746 @item panlaw
21747 Set a specific pan law to be used for the measurement of dual mono files.
21748 This parameter is optional, and has a default value of -3.01dB.
21749
21750 @item target
21751 Set a specific target level (in LUFS) used as relative zero in the visualization.
21752 This parameter is optional and has a default value of -23LUFS as specified
21753 by EBU R128. However, material published online may prefer a level of -16LUFS
21754 (e.g. for use with podcasts or video platforms).
21755
21756 @item gauge
21757 Set the value displayed by the gauge. Valid values are @code{momentary} and s
21758 @code{shortterm}. By default the momentary value will be used, but in certain
21759 scenarios it may be more useful to observe the short term value instead (e.g.
21760 live mixing).
21761
21762 @item scale
21763 Sets the display scale for the loudness. Valid parameters are @code{absolute}
21764 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
21765 video output, not the summary or continuous log output.
21766 @end table
21767
21768 @subsection Examples
21769
21770 @itemize
21771 @item
21772 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
21773 @example
21774 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
21775 @end example
21776
21777 @item
21778 Run an analysis with @command{ffmpeg}:
21779 @example
21780 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
21781 @end example
21782 @end itemize
21783
21784 @section interleave, ainterleave
21785
21786 Temporally interleave frames from several inputs.
21787
21788 @code{interleave} works with video inputs, @code{ainterleave} with audio.
21789
21790 These filters read frames from several inputs and send the oldest
21791 queued frame to the output.
21792
21793 Input streams must have well defined, monotonically increasing frame
21794 timestamp values.
21795
21796 In order to submit one frame to output, these filters need to enqueue
21797 at least one frame for each input, so they cannot work in case one
21798 input is not yet terminated and will not receive incoming frames.
21799
21800 For example consider the case when one input is a @code{select} filter
21801 which always drops input frames. The @code{interleave} filter will keep
21802 reading from that input, but it will never be able to send new frames
21803 to output until the input sends an end-of-stream signal.
21804
21805 Also, depending on inputs synchronization, the filters will drop
21806 frames in case one input receives more frames than the other ones, and
21807 the queue is already filled.
21808
21809 These filters accept the following options:
21810
21811 @table @option
21812 @item nb_inputs, n
21813 Set the number of different inputs, it is 2 by default.
21814 @end table
21815
21816 @subsection Examples
21817
21818 @itemize
21819 @item
21820 Interleave frames belonging to different streams using @command{ffmpeg}:
21821 @example
21822 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
21823 @end example
21824
21825 @item
21826 Add flickering blur effect:
21827 @example
21828 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
21829 @end example
21830 @end itemize
21831
21832 @section metadata, ametadata
21833
21834 Manipulate frame metadata.
21835
21836 This filter accepts the following options:
21837
21838 @table @option
21839 @item mode
21840 Set mode of operation of the filter.
21841
21842 Can be one of the following:
21843
21844 @table @samp
21845 @item select
21846 If both @code{value} and @code{key} is set, select frames
21847 which have such metadata. If only @code{key} is set, select
21848 every frame that has such key in metadata.
21849
21850 @item add
21851 Add new metadata @code{key} and @code{value}. If key is already available
21852 do nothing.
21853
21854 @item modify
21855 Modify value of already present key.
21856
21857 @item delete
21858 If @code{value} is set, delete only keys that have such value.
21859 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
21860 the frame.
21861
21862 @item print
21863 Print key and its value if metadata was found. If @code{key} is not set print all
21864 metadata values available in frame.
21865 @end table
21866
21867 @item key
21868 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
21869
21870 @item value
21871 Set metadata value which will be used. This option is mandatory for
21872 @code{modify} and @code{add} mode.
21873
21874 @item function
21875 Which function to use when comparing metadata value and @code{value}.
21876
21877 Can be one of following:
21878
21879 @table @samp
21880 @item same_str
21881 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
21882
21883 @item starts_with
21884 Values are interpreted as strings, returns true if metadata value starts with
21885 the @code{value} option string.
21886
21887 @item less
21888 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
21889
21890 @item equal
21891 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
21892
21893 @item greater
21894 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
21895
21896 @item expr
21897 Values are interpreted as floats, returns true if expression from option @code{expr}
21898 evaluates to true.
21899
21900 @item ends_with
21901 Values are interpreted as strings, returns true if metadata value ends with
21902 the @code{value} option string.
21903 @end table
21904
21905 @item expr
21906 Set expression which is used when @code{function} is set to @code{expr}.
21907 The expression is evaluated through the eval API and can contain the following
21908 constants:
21909
21910 @table @option
21911 @item VALUE1
21912 Float representation of @code{value} from metadata key.
21913
21914 @item VALUE2
21915 Float representation of @code{value} as supplied by user in @code{value} option.
21916 @end table
21917
21918 @item file
21919 If specified in @code{print} mode, output is written to the named file. Instead of
21920 plain filename any writable url can be specified. Filename ``-'' is a shorthand
21921 for standard output. If @code{file} option is not set, output is written to the log
21922 with AV_LOG_INFO loglevel.
21923
21924 @end table
21925
21926 @subsection Examples
21927
21928 @itemize
21929 @item
21930 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
21931 between 0 and 1.
21932 @example
21933 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
21934 @end example
21935 @item
21936 Print silencedetect output to file @file{metadata.txt}.
21937 @example
21938 silencedetect,ametadata=mode=print:file=metadata.txt
21939 @end example
21940 @item
21941 Direct all metadata to a pipe with file descriptor 4.
21942 @example
21943 metadata=mode=print:file='pipe\:4'
21944 @end example
21945 @end itemize
21946
21947 @section perms, aperms
21948
21949 Set read/write permissions for the output frames.
21950
21951 These filters are mainly aimed at developers to test direct path in the
21952 following filter in the filtergraph.
21953
21954 The filters accept the following options:
21955
21956 @table @option
21957 @item mode
21958 Select the permissions mode.
21959
21960 It accepts the following values:
21961 @table @samp
21962 @item none
21963 Do nothing. This is the default.
21964 @item ro
21965 Set all the output frames read-only.
21966 @item rw
21967 Set all the output frames directly writable.
21968 @item toggle
21969 Make the frame read-only if writable, and writable if read-only.
21970 @item random
21971 Set each output frame read-only or writable randomly.
21972 @end table
21973
21974 @item seed
21975 Set the seed for the @var{random} mode, must be an integer included between
21976 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
21977 @code{-1}, the filter will try to use a good random seed on a best effort
21978 basis.
21979 @end table
21980
21981 Note: in case of auto-inserted filter between the permission filter and the
21982 following one, the permission might not be received as expected in that
21983 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
21984 perms/aperms filter can avoid this problem.
21985
21986 @section realtime, arealtime
21987
21988 Slow down filtering to match real time approximately.
21989
21990 These filters will pause the filtering for a variable amount of time to
21991 match the output rate with the input timestamps.
21992 They are similar to the @option{re} option to @code{ffmpeg}.
21993
21994 They accept the following options:
21995
21996 @table @option
21997 @item limit
21998 Time limit for the pauses. Any pause longer than that will be considered
21999 a timestamp discontinuity and reset the timer. Default is 2 seconds.
22000 @item speed
22001 Speed factor for processing. The value must be a float larger than zero.
22002 Values larger than 1.0 will result in faster than realtime processing,
22003 smaller will slow processing down. The @var{limit} is automatically adapted
22004 accordingly. Default is 1.0.
22005
22006 A processing speed faster than what is possible without these filters cannot
22007 be achieved.
22008 @end table
22009
22010 @anchor{select}
22011 @section select, aselect
22012
22013 Select frames to pass in output.
22014
22015 This filter accepts the following options:
22016
22017 @table @option
22018
22019 @item expr, e
22020 Set expression, which is evaluated for each input frame.
22021
22022 If the expression is evaluated to zero, the frame is discarded.
22023
22024 If the evaluation result is negative or NaN, the frame is sent to the
22025 first output; otherwise it is sent to the output with index
22026 @code{ceil(val)-1}, assuming that the input index starts from 0.
22027
22028 For example a value of @code{1.2} corresponds to the output with index
22029 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
22030
22031 @item outputs, n
22032 Set the number of outputs. The output to which to send the selected
22033 frame is based on the result of the evaluation. Default value is 1.
22034 @end table
22035
22036 The expression can contain the following constants:
22037
22038 @table @option
22039 @item n
22040 The (sequential) number of the filtered frame, starting from 0.
22041
22042 @item selected_n
22043 The (sequential) number of the selected frame, starting from 0.
22044
22045 @item prev_selected_n
22046 The sequential number of the last selected frame. It's NAN if undefined.
22047
22048 @item TB
22049 The timebase of the input timestamps.
22050
22051 @item pts
22052 The PTS (Presentation TimeStamp) of the filtered video frame,
22053 expressed in @var{TB} units. It's NAN if undefined.
22054
22055 @item t
22056 The PTS of the filtered video frame,
22057 expressed in seconds. It's NAN if undefined.
22058
22059 @item prev_pts
22060 The PTS of the previously filtered video frame. It's NAN if undefined.
22061
22062 @item prev_selected_pts
22063 The PTS of the last previously filtered video frame. It's NAN if undefined.
22064
22065 @item prev_selected_t
22066 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
22067
22068 @item start_pts
22069 The PTS of the first video frame in the video. It's NAN if undefined.
22070
22071 @item start_t
22072 The time of the first video frame in the video. It's NAN if undefined.
22073
22074 @item pict_type @emph{(video only)}
22075 The type of the filtered frame. It can assume one of the following
22076 values:
22077 @table @option
22078 @item I
22079 @item P
22080 @item B
22081 @item S
22082 @item SI
22083 @item SP
22084 @item BI
22085 @end table
22086
22087 @item interlace_type @emph{(video only)}
22088 The frame interlace type. It can assume one of the following values:
22089 @table @option
22090 @item PROGRESSIVE
22091 The frame is progressive (not interlaced).
22092 @item TOPFIRST
22093 The frame is top-field-first.
22094 @item BOTTOMFIRST
22095 The frame is bottom-field-first.
22096 @end table
22097
22098 @item consumed_sample_n @emph{(audio only)}
22099 the number of selected samples before the current frame
22100
22101 @item samples_n @emph{(audio only)}
22102 the number of samples in the current frame
22103
22104 @item sample_rate @emph{(audio only)}
22105 the input sample rate
22106
22107 @item key
22108 This is 1 if the filtered frame is a key-frame, 0 otherwise.
22109
22110 @item pos
22111 the position in the file of the filtered frame, -1 if the information
22112 is not available (e.g. for synthetic video)
22113
22114 @item scene @emph{(video only)}
22115 value between 0 and 1 to indicate a new scene; a low value reflects a low
22116 probability for the current frame to introduce a new scene, while a higher
22117 value means the current frame is more likely to be one (see the example below)
22118
22119 @item concatdec_select
22120 The concat demuxer can select only part of a concat input file by setting an
22121 inpoint and an outpoint, but the output packets may not be entirely contained
22122 in the selected interval. By using this variable, it is possible to skip frames
22123 generated by the concat demuxer which are not exactly contained in the selected
22124 interval.
22125
22126 This works by comparing the frame pts against the @var{lavf.concat.start_time}
22127 and the @var{lavf.concat.duration} packet metadata values which are also
22128 present in the decoded frames.
22129
22130 The @var{concatdec_select} variable is -1 if the frame pts is at least
22131 start_time and either the duration metadata is missing or the frame pts is less
22132 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
22133 missing.
22134
22135 That basically means that an input frame is selected if its pts is within the
22136 interval set by the concat demuxer.
22137
22138 @end table
22139
22140 The default value of the select expression is "1".
22141
22142 @subsection Examples
22143
22144 @itemize
22145 @item
22146 Select all frames in input:
22147 @example
22148 select
22149 @end example
22150
22151 The example above is the same as:
22152 @example
22153 select=1
22154 @end example
22155
22156 @item
22157 Skip all frames:
22158 @example
22159 select=0
22160 @end example
22161
22162 @item
22163 Select only I-frames:
22164 @example
22165 select='eq(pict_type\,I)'
22166 @end example
22167
22168 @item
22169 Select one frame every 100:
22170 @example
22171 select='not(mod(n\,100))'
22172 @end example
22173
22174 @item
22175 Select only frames contained in the 10-20 time interval:
22176 @example
22177 select=between(t\,10\,20)
22178 @end example
22179
22180 @item
22181 Select only I-frames contained in the 10-20 time interval:
22182 @example
22183 select=between(t\,10\,20)*eq(pict_type\,I)
22184 @end example
22185
22186 @item
22187 Select frames with a minimum distance of 10 seconds:
22188 @example
22189 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
22190 @end example
22191
22192 @item
22193 Use aselect to select only audio frames with samples number > 100:
22194 @example
22195 aselect='gt(samples_n\,100)'
22196 @end example
22197
22198 @item
22199 Create a mosaic of the first scenes:
22200 @example
22201 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
22202 @end example
22203
22204 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
22205 choice.
22206
22207 @item
22208 Send even and odd frames to separate outputs, and compose them:
22209 @example
22210 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
22211 @end example
22212
22213 @item
22214 Select useful frames from an ffconcat file which is using inpoints and
22215 outpoints but where the source files are not intra frame only.
22216 @example
22217 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
22218 @end example
22219 @end itemize
22220
22221 @section sendcmd, asendcmd
22222
22223 Send commands to filters in the filtergraph.
22224
22225 These filters read commands to be sent to other filters in the
22226 filtergraph.
22227
22228 @code{sendcmd} must be inserted between two video filters,
22229 @code{asendcmd} must be inserted between two audio filters, but apart
22230 from that they act the same way.
22231
22232 The specification of commands can be provided in the filter arguments
22233 with the @var{commands} option, or in a file specified by the
22234 @var{filename} option.
22235
22236 These filters accept the following options:
22237 @table @option
22238 @item commands, c
22239 Set the commands to be read and sent to the other filters.
22240 @item filename, f
22241 Set the filename of the commands to be read and sent to the other
22242 filters.
22243 @end table
22244
22245 @subsection Commands syntax
22246
22247 A commands description consists of a sequence of interval
22248 specifications, comprising a list of commands to be executed when a
22249 particular event related to that interval occurs. The occurring event
22250 is typically the current frame time entering or leaving a given time
22251 interval.
22252
22253 An interval is specified by the following syntax:
22254 @example
22255 @var{START}[-@var{END}] @var{COMMANDS};
22256 @end example
22257
22258 The time interval is specified by the @var{START} and @var{END} times.
22259 @var{END} is optional and defaults to the maximum time.
22260
22261 The current frame time is considered within the specified interval if
22262 it is included in the interval [@var{START}, @var{END}), that is when
22263 the time is greater or equal to @var{START} and is lesser than
22264 @var{END}.
22265
22266 @var{COMMANDS} consists of a sequence of one or more command
22267 specifications, separated by ",", relating to that interval.  The
22268 syntax of a command specification is given by:
22269 @example
22270 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
22271 @end example
22272
22273 @var{FLAGS} is optional and specifies the type of events relating to
22274 the time interval which enable sending the specified command, and must
22275 be a non-null sequence of identifier flags separated by "+" or "|" and
22276 enclosed between "[" and "]".
22277
22278 The following flags are recognized:
22279 @table @option
22280 @item enter
22281 The command is sent when the current frame timestamp enters the
22282 specified interval. In other words, the command is sent when the
22283 previous frame timestamp was not in the given interval, and the
22284 current is.
22285
22286 @item leave
22287 The command is sent when the current frame timestamp leaves the
22288 specified interval. In other words, the command is sent when the
22289 previous frame timestamp was in the given interval, and the
22290 current is not.
22291 @end table
22292
22293 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
22294 assumed.
22295
22296 @var{TARGET} specifies the target of the command, usually the name of
22297 the filter class or a specific filter instance name.
22298
22299 @var{COMMAND} specifies the name of the command for the target filter.
22300
22301 @var{ARG} is optional and specifies the optional list of argument for
22302 the given @var{COMMAND}.
22303
22304 Between one interval specification and another, whitespaces, or
22305 sequences of characters starting with @code{#} until the end of line,
22306 are ignored and can be used to annotate comments.
22307
22308 A simplified BNF description of the commands specification syntax
22309 follows:
22310 @example
22311 @var{COMMAND_FLAG}  ::= "enter" | "leave"
22312 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
22313 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
22314 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
22315 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
22316 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
22317 @end example
22318
22319 @subsection Examples
22320
22321 @itemize
22322 @item
22323 Specify audio tempo change at second 4:
22324 @example
22325 asendcmd=c='4.0 atempo tempo 1.5',atempo
22326 @end example
22327
22328 @item
22329 Target a specific filter instance:
22330 @example
22331 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
22332 @end example
22333
22334 @item
22335 Specify a list of drawtext and hue commands in a file.
22336 @example
22337 # show text in the interval 5-10
22338 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
22339          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
22340
22341 # desaturate the image in the interval 15-20
22342 15.0-20.0 [enter] hue s 0,
22343           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
22344           [leave] hue s 1,
22345           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
22346
22347 # apply an exponential saturation fade-out effect, starting from time 25
22348 25 [enter] hue s exp(25-t)
22349 @end example
22350
22351 A filtergraph allowing to read and process the above command list
22352 stored in a file @file{test.cmd}, can be specified with:
22353 @example
22354 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
22355 @end example
22356 @end itemize
22357
22358 @anchor{setpts}
22359 @section setpts, asetpts
22360
22361 Change the PTS (presentation timestamp) of the input frames.
22362
22363 @code{setpts} works on video frames, @code{asetpts} on audio frames.
22364
22365 This filter accepts the following options:
22366
22367 @table @option
22368
22369 @item expr
22370 The expression which is evaluated for each frame to construct its timestamp.
22371
22372 @end table
22373
22374 The expression is evaluated through the eval API and can contain the following
22375 constants:
22376
22377 @table @option
22378 @item FRAME_RATE, FR
22379 frame rate, only defined for constant frame-rate video
22380
22381 @item PTS
22382 The presentation timestamp in input
22383
22384 @item N
22385 The count of the input frame for video or the number of consumed samples,
22386 not including the current frame for audio, starting from 0.
22387
22388 @item NB_CONSUMED_SAMPLES
22389 The number of consumed samples, not including the current frame (only
22390 audio)
22391
22392 @item NB_SAMPLES, S
22393 The number of samples in the current frame (only audio)
22394
22395 @item SAMPLE_RATE, SR
22396 The audio sample rate.
22397
22398 @item STARTPTS
22399 The PTS of the first frame.
22400
22401 @item STARTT
22402 the time in seconds of the first frame
22403
22404 @item INTERLACED
22405 State whether the current frame is interlaced.
22406
22407 @item T
22408 the time in seconds of the current frame
22409
22410 @item POS
22411 original position in the file of the frame, or undefined if undefined
22412 for the current frame
22413
22414 @item PREV_INPTS
22415 The previous input PTS.
22416
22417 @item PREV_INT
22418 previous input time in seconds
22419
22420 @item PREV_OUTPTS
22421 The previous output PTS.
22422
22423 @item PREV_OUTT
22424 previous output time in seconds
22425
22426 @item RTCTIME
22427 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
22428 instead.
22429
22430 @item RTCSTART
22431 The wallclock (RTC) time at the start of the movie in microseconds.
22432
22433 @item TB
22434 The timebase of the input timestamps.
22435
22436 @end table
22437
22438 @subsection Examples
22439
22440 @itemize
22441 @item
22442 Start counting PTS from zero
22443 @example
22444 setpts=PTS-STARTPTS
22445 @end example
22446
22447 @item
22448 Apply fast motion effect:
22449 @example
22450 setpts=0.5*PTS
22451 @end example
22452
22453 @item
22454 Apply slow motion effect:
22455 @example
22456 setpts=2.0*PTS
22457 @end example
22458
22459 @item
22460 Set fixed rate of 25 frames per second:
22461 @example
22462 setpts=N/(25*TB)
22463 @end example
22464
22465 @item
22466 Set fixed rate 25 fps with some jitter:
22467 @example
22468 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
22469 @end example
22470
22471 @item
22472 Apply an offset of 10 seconds to the input PTS:
22473 @example
22474 setpts=PTS+10/TB
22475 @end example
22476
22477 @item
22478 Generate timestamps from a "live source" and rebase onto the current timebase:
22479 @example
22480 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
22481 @end example
22482
22483 @item
22484 Generate timestamps by counting samples:
22485 @example
22486 asetpts=N/SR/TB
22487 @end example
22488
22489 @end itemize
22490
22491 @section setrange
22492
22493 Force color range for the output video frame.
22494
22495 The @code{setrange} filter marks the color range property for the
22496 output frames. It does not change the input frame, but only sets the
22497 corresponding property, which affects how the frame is treated by
22498 following filters.
22499
22500 The filter accepts the following options:
22501
22502 @table @option
22503
22504 @item range
22505 Available values are:
22506
22507 @table @samp
22508 @item auto
22509 Keep the same color range property.
22510
22511 @item unspecified, unknown
22512 Set the color range as unspecified.
22513
22514 @item limited, tv, mpeg
22515 Set the color range as limited.
22516
22517 @item full, pc, jpeg
22518 Set the color range as full.
22519 @end table
22520 @end table
22521
22522 @section settb, asettb
22523
22524 Set the timebase to use for the output frames timestamps.
22525 It is mainly useful for testing timebase configuration.
22526
22527 It accepts the following parameters:
22528
22529 @table @option
22530
22531 @item expr, tb
22532 The expression which is evaluated into the output timebase.
22533
22534 @end table
22535
22536 The value for @option{tb} is an arithmetic expression representing a
22537 rational. The expression can contain the constants "AVTB" (the default
22538 timebase), "intb" (the input timebase) and "sr" (the sample rate,
22539 audio only). Default value is "intb".
22540
22541 @subsection Examples
22542
22543 @itemize
22544 @item
22545 Set the timebase to 1/25:
22546 @example
22547 settb=expr=1/25
22548 @end example
22549
22550 @item
22551 Set the timebase to 1/10:
22552 @example
22553 settb=expr=0.1
22554 @end example
22555
22556 @item
22557 Set the timebase to 1001/1000:
22558 @example
22559 settb=1+0.001
22560 @end example
22561
22562 @item
22563 Set the timebase to 2*intb:
22564 @example
22565 settb=2*intb
22566 @end example
22567
22568 @item
22569 Set the default timebase value:
22570 @example
22571 settb=AVTB
22572 @end example
22573 @end itemize
22574
22575 @section showcqt
22576 Convert input audio to a video output representing frequency spectrum
22577 logarithmically using Brown-Puckette constant Q transform algorithm with
22578 direct frequency domain coefficient calculation (but the transform itself
22579 is not really constant Q, instead the Q factor is actually variable/clamped),
22580 with musical tone scale, from E0 to D#10.
22581
22582 The filter accepts the following options:
22583
22584 @table @option
22585 @item size, s
22586 Specify the video size for the output. It must be even. For the syntax of this option,
22587 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22588 Default value is @code{1920x1080}.
22589
22590 @item fps, rate, r
22591 Set the output frame rate. Default value is @code{25}.
22592
22593 @item bar_h
22594 Set the bargraph height. It must be even. Default value is @code{-1} which
22595 computes the bargraph height automatically.
22596
22597 @item axis_h
22598 Set the axis height. It must be even. Default value is @code{-1} which computes
22599 the axis height automatically.
22600
22601 @item sono_h
22602 Set the sonogram height. It must be even. Default value is @code{-1} which
22603 computes the sonogram height automatically.
22604
22605 @item fullhd
22606 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
22607 instead. Default value is @code{1}.
22608
22609 @item sono_v, volume
22610 Specify the sonogram volume expression. It can contain variables:
22611 @table @option
22612 @item bar_v
22613 the @var{bar_v} evaluated expression
22614 @item frequency, freq, f
22615 the frequency where it is evaluated
22616 @item timeclamp, tc
22617 the value of @var{timeclamp} option
22618 @end table
22619 and functions:
22620 @table @option
22621 @item a_weighting(f)
22622 A-weighting of equal loudness
22623 @item b_weighting(f)
22624 B-weighting of equal loudness
22625 @item c_weighting(f)
22626 C-weighting of equal loudness.
22627 @end table
22628 Default value is @code{16}.
22629
22630 @item bar_v, volume2
22631 Specify the bargraph volume expression. It can contain variables:
22632 @table @option
22633 @item sono_v
22634 the @var{sono_v} evaluated expression
22635 @item frequency, freq, f
22636 the frequency where it is evaluated
22637 @item timeclamp, tc
22638 the value of @var{timeclamp} option
22639 @end table
22640 and functions:
22641 @table @option
22642 @item a_weighting(f)
22643 A-weighting of equal loudness
22644 @item b_weighting(f)
22645 B-weighting of equal loudness
22646 @item c_weighting(f)
22647 C-weighting of equal loudness.
22648 @end table
22649 Default value is @code{sono_v}.
22650
22651 @item sono_g, gamma
22652 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
22653 higher gamma makes the spectrum having more range. Default value is @code{3}.
22654 Acceptable range is @code{[1, 7]}.
22655
22656 @item bar_g, gamma2
22657 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
22658 @code{[1, 7]}.
22659
22660 @item bar_t
22661 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
22662 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
22663
22664 @item timeclamp, tc
22665 Specify the transform timeclamp. At low frequency, there is trade-off between
22666 accuracy in time domain and frequency domain. If timeclamp is lower,
22667 event in time domain is represented more accurately (such as fast bass drum),
22668 otherwise event in frequency domain is represented more accurately
22669 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
22670
22671 @item attack
22672 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
22673 limits future samples by applying asymmetric windowing in time domain, useful
22674 when low latency is required. Accepted range is @code{[0, 1]}.
22675
22676 @item basefreq
22677 Specify the transform base frequency. Default value is @code{20.01523126408007475},
22678 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
22679
22680 @item endfreq
22681 Specify the transform end frequency. Default value is @code{20495.59681441799654},
22682 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
22683
22684 @item coeffclamp
22685 This option is deprecated and ignored.
22686
22687 @item tlength
22688 Specify the transform length in time domain. Use this option to control accuracy
22689 trade-off between time domain and frequency domain at every frequency sample.
22690 It can contain variables:
22691 @table @option
22692 @item frequency, freq, f
22693 the frequency where it is evaluated
22694 @item timeclamp, tc
22695 the value of @var{timeclamp} option.
22696 @end table
22697 Default value is @code{384*tc/(384+tc*f)}.
22698
22699 @item count
22700 Specify the transform count for every video frame. Default value is @code{6}.
22701 Acceptable range is @code{[1, 30]}.
22702
22703 @item fcount
22704 Specify the transform count for every single pixel. Default value is @code{0},
22705 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
22706
22707 @item fontfile
22708 Specify font file for use with freetype to draw the axis. If not specified,
22709 use embedded font. Note that drawing with font file or embedded font is not
22710 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
22711 option instead.
22712
22713 @item font
22714 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
22715 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
22716 escaping.
22717
22718 @item fontcolor
22719 Specify font color expression. This is arithmetic expression that should return
22720 integer value 0xRRGGBB. It can contain variables:
22721 @table @option
22722 @item frequency, freq, f
22723 the frequency where it is evaluated
22724 @item timeclamp, tc
22725 the value of @var{timeclamp} option
22726 @end table
22727 and functions:
22728 @table @option
22729 @item midi(f)
22730 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
22731 @item r(x), g(x), b(x)
22732 red, green, and blue value of intensity x.
22733 @end table
22734 Default value is @code{st(0, (midi(f)-59.5)/12);
22735 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
22736 r(1-ld(1)) + b(ld(1))}.
22737
22738 @item axisfile
22739 Specify image file to draw the axis. This option override @var{fontfile} and
22740 @var{fontcolor} option.
22741
22742 @item axis, text
22743 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
22744 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
22745 Default value is @code{1}.
22746
22747 @item csp
22748 Set colorspace. The accepted values are:
22749 @table @samp
22750 @item unspecified
22751 Unspecified (default)
22752
22753 @item bt709
22754 BT.709
22755
22756 @item fcc
22757 FCC
22758
22759 @item bt470bg
22760 BT.470BG or BT.601-6 625
22761
22762 @item smpte170m
22763 SMPTE-170M or BT.601-6 525
22764
22765 @item smpte240m
22766 SMPTE-240M
22767
22768 @item bt2020ncl
22769 BT.2020 with non-constant luminance
22770
22771 @end table
22772
22773 @item cscheme
22774 Set spectrogram color scheme. This is list of floating point values with format
22775 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
22776 The default is @code{1|0.5|0|0|0.5|1}.
22777
22778 @end table
22779
22780 @subsection Examples
22781
22782 @itemize
22783 @item
22784 Playing audio while showing the spectrum:
22785 @example
22786 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
22787 @end example
22788
22789 @item
22790 Same as above, but with frame rate 30 fps:
22791 @example
22792 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
22793 @end example
22794
22795 @item
22796 Playing at 1280x720:
22797 @example
22798 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
22799 @end example
22800
22801 @item
22802 Disable sonogram display:
22803 @example
22804 sono_h=0
22805 @end example
22806
22807 @item
22808 A1 and its harmonics: A1, A2, (near)E3, A3:
22809 @example
22810 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),
22811                  asplit[a][out1]; [a] showcqt [out0]'
22812 @end example
22813
22814 @item
22815 Same as above, but with more accuracy in frequency domain:
22816 @example
22817 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),
22818                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
22819 @end example
22820
22821 @item
22822 Custom volume:
22823 @example
22824 bar_v=10:sono_v=bar_v*a_weighting(f)
22825 @end example
22826
22827 @item
22828 Custom gamma, now spectrum is linear to the amplitude.
22829 @example
22830 bar_g=2:sono_g=2
22831 @end example
22832
22833 @item
22834 Custom tlength equation:
22835 @example
22836 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)))'
22837 @end example
22838
22839 @item
22840 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
22841 @example
22842 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
22843 @end example
22844
22845 @item
22846 Custom font using fontconfig:
22847 @example
22848 font='Courier New,Monospace,mono|bold'
22849 @end example
22850
22851 @item
22852 Custom frequency range with custom axis using image file:
22853 @example
22854 axisfile=myaxis.png:basefreq=40:endfreq=10000
22855 @end example
22856 @end itemize
22857
22858 @section showfreqs
22859
22860 Convert input audio to video output representing the audio power spectrum.
22861 Audio amplitude is on Y-axis while frequency is on X-axis.
22862
22863 The filter accepts the following options:
22864
22865 @table @option
22866 @item size, s
22867 Specify size of video. For the syntax of this option, check the
22868 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22869 Default is @code{1024x512}.
22870
22871 @item mode
22872 Set display mode.
22873 This set how each frequency bin will be represented.
22874
22875 It accepts the following values:
22876 @table @samp
22877 @item line
22878 @item bar
22879 @item dot
22880 @end table
22881 Default is @code{bar}.
22882
22883 @item ascale
22884 Set amplitude scale.
22885
22886 It accepts the following values:
22887 @table @samp
22888 @item lin
22889 Linear scale.
22890
22891 @item sqrt
22892 Square root scale.
22893
22894 @item cbrt
22895 Cubic root scale.
22896
22897 @item log
22898 Logarithmic scale.
22899 @end table
22900 Default is @code{log}.
22901
22902 @item fscale
22903 Set frequency scale.
22904
22905 It accepts the following values:
22906 @table @samp
22907 @item lin
22908 Linear scale.
22909
22910 @item log
22911 Logarithmic scale.
22912
22913 @item rlog
22914 Reverse logarithmic scale.
22915 @end table
22916 Default is @code{lin}.
22917
22918 @item win_size
22919 Set window size. Allowed range is from 16 to 65536.
22920
22921 Default is @code{2048}
22922
22923 @item win_func
22924 Set windowing function.
22925
22926 It accepts the following values:
22927 @table @samp
22928 @item rect
22929 @item bartlett
22930 @item hanning
22931 @item hamming
22932 @item blackman
22933 @item welch
22934 @item flattop
22935 @item bharris
22936 @item bnuttall
22937 @item bhann
22938 @item sine
22939 @item nuttall
22940 @item lanczos
22941 @item gauss
22942 @item tukey
22943 @item dolph
22944 @item cauchy
22945 @item parzen
22946 @item poisson
22947 @item bohman
22948 @end table
22949 Default is @code{hanning}.
22950
22951 @item overlap
22952 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
22953 which means optimal overlap for selected window function will be picked.
22954
22955 @item averaging
22956 Set time averaging. Setting this to 0 will display current maximal peaks.
22957 Default is @code{1}, which means time averaging is disabled.
22958
22959 @item colors
22960 Specify list of colors separated by space or by '|' which will be used to
22961 draw channel frequencies. Unrecognized or missing colors will be replaced
22962 by white color.
22963
22964 @item cmode
22965 Set channel display mode.
22966
22967 It accepts the following values:
22968 @table @samp
22969 @item combined
22970 @item separate
22971 @end table
22972 Default is @code{combined}.
22973
22974 @item minamp
22975 Set minimum amplitude used in @code{log} amplitude scaler.
22976
22977 @end table
22978
22979 @section showspatial
22980
22981 Convert stereo input audio to a video output, representing the spatial relationship
22982 between two channels.
22983
22984 The filter accepts the following options:
22985
22986 @table @option
22987 @item size, s
22988 Specify the video size for the output. For the syntax of this option, check the
22989 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22990 Default value is @code{512x512}.
22991
22992 @item win_size
22993 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
22994
22995 @item win_func
22996 Set window function.
22997
22998 It accepts the following values:
22999 @table @samp
23000 @item rect
23001 @item bartlett
23002 @item hann
23003 @item hanning
23004 @item hamming
23005 @item blackman
23006 @item welch
23007 @item flattop
23008 @item bharris
23009 @item bnuttall
23010 @item bhann
23011 @item sine
23012 @item nuttall
23013 @item lanczos
23014 @item gauss
23015 @item tukey
23016 @item dolph
23017 @item cauchy
23018 @item parzen
23019 @item poisson
23020 @item bohman
23021 @end table
23022
23023 Default value is @code{hann}.
23024
23025 @item overlap
23026 Set ratio of overlap window. Default value is @code{0.5}.
23027 When value is @code{1} overlap is set to recommended size for specific
23028 window function currently used.
23029 @end table
23030
23031 @anchor{showspectrum}
23032 @section showspectrum
23033
23034 Convert input audio to a video output, representing the audio frequency
23035 spectrum.
23036
23037 The filter accepts the following options:
23038
23039 @table @option
23040 @item size, s
23041 Specify the video size for the output. For the syntax of this option, check the
23042 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23043 Default value is @code{640x512}.
23044
23045 @item slide
23046 Specify how the spectrum should slide along the window.
23047
23048 It accepts the following values:
23049 @table @samp
23050 @item replace
23051 the samples start again on the left when they reach the right
23052 @item scroll
23053 the samples scroll from right to left
23054 @item fullframe
23055 frames are only produced when the samples reach the right
23056 @item rscroll
23057 the samples scroll from left to right
23058 @end table
23059
23060 Default value is @code{replace}.
23061
23062 @item mode
23063 Specify display mode.
23064
23065 It accepts the following values:
23066 @table @samp
23067 @item combined
23068 all channels are displayed in the same row
23069 @item separate
23070 all channels are displayed in separate rows
23071 @end table
23072
23073 Default value is @samp{combined}.
23074
23075 @item color
23076 Specify display color mode.
23077
23078 It accepts the following values:
23079 @table @samp
23080 @item channel
23081 each channel is displayed in a separate color
23082 @item intensity
23083 each channel is displayed using the same color scheme
23084 @item rainbow
23085 each channel is displayed using the rainbow color scheme
23086 @item moreland
23087 each channel is displayed using the moreland color scheme
23088 @item nebulae
23089 each channel is displayed using the nebulae color scheme
23090 @item fire
23091 each channel is displayed using the fire color scheme
23092 @item fiery
23093 each channel is displayed using the fiery color scheme
23094 @item fruit
23095 each channel is displayed using the fruit color scheme
23096 @item cool
23097 each channel is displayed using the cool color scheme
23098 @item magma
23099 each channel is displayed using the magma color scheme
23100 @item green
23101 each channel is displayed using the green color scheme
23102 @item viridis
23103 each channel is displayed using the viridis color scheme
23104 @item plasma
23105 each channel is displayed using the plasma color scheme
23106 @item cividis
23107 each channel is displayed using the cividis color scheme
23108 @item terrain
23109 each channel is displayed using the terrain color scheme
23110 @end table
23111
23112 Default value is @samp{channel}.
23113
23114 @item scale
23115 Specify scale used for calculating intensity color values.
23116
23117 It accepts the following values:
23118 @table @samp
23119 @item lin
23120 linear
23121 @item sqrt
23122 square root, default
23123 @item cbrt
23124 cubic root
23125 @item log
23126 logarithmic
23127 @item 4thrt
23128 4th root
23129 @item 5thrt
23130 5th root
23131 @end table
23132
23133 Default value is @samp{sqrt}.
23134
23135 @item fscale
23136 Specify frequency scale.
23137
23138 It accepts the following values:
23139 @table @samp
23140 @item lin
23141 linear
23142 @item log
23143 logarithmic
23144 @end table
23145
23146 Default value is @samp{lin}.
23147
23148 @item saturation
23149 Set saturation modifier for displayed colors. Negative values provide
23150 alternative color scheme. @code{0} is no saturation at all.
23151 Saturation must be in [-10.0, 10.0] range.
23152 Default value is @code{1}.
23153
23154 @item win_func
23155 Set window function.
23156
23157 It accepts the following values:
23158 @table @samp
23159 @item rect
23160 @item bartlett
23161 @item hann
23162 @item hanning
23163 @item hamming
23164 @item blackman
23165 @item welch
23166 @item flattop
23167 @item bharris
23168 @item bnuttall
23169 @item bhann
23170 @item sine
23171 @item nuttall
23172 @item lanczos
23173 @item gauss
23174 @item tukey
23175 @item dolph
23176 @item cauchy
23177 @item parzen
23178 @item poisson
23179 @item bohman
23180 @end table
23181
23182 Default value is @code{hann}.
23183
23184 @item orientation
23185 Set orientation of time vs frequency axis. Can be @code{vertical} or
23186 @code{horizontal}. Default is @code{vertical}.
23187
23188 @item overlap
23189 Set ratio of overlap window. Default value is @code{0}.
23190 When value is @code{1} overlap is set to recommended size for specific
23191 window function currently used.
23192
23193 @item gain
23194 Set scale gain for calculating intensity color values.
23195 Default value is @code{1}.
23196
23197 @item data
23198 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
23199
23200 @item rotation
23201 Set color rotation, must be in [-1.0, 1.0] range.
23202 Default value is @code{0}.
23203
23204 @item start
23205 Set start frequency from which to display spectrogram. Default is @code{0}.
23206
23207 @item stop
23208 Set stop frequency to which to display spectrogram. Default is @code{0}.
23209
23210 @item fps
23211 Set upper frame rate limit. Default is @code{auto}, unlimited.
23212
23213 @item legend
23214 Draw time and frequency axes and legends. Default is disabled.
23215 @end table
23216
23217 The usage is very similar to the showwaves filter; see the examples in that
23218 section.
23219
23220 @subsection Examples
23221
23222 @itemize
23223 @item
23224 Large window with logarithmic color scaling:
23225 @example
23226 showspectrum=s=1280x480:scale=log
23227 @end example
23228
23229 @item
23230 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
23231 @example
23232 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23233              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
23234 @end example
23235 @end itemize
23236
23237 @section showspectrumpic
23238
23239 Convert input audio to a single video frame, representing the audio frequency
23240 spectrum.
23241
23242 The filter accepts the following options:
23243
23244 @table @option
23245 @item size, s
23246 Specify the video size for the output. For the syntax of this option, check the
23247 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23248 Default value is @code{4096x2048}.
23249
23250 @item mode
23251 Specify display mode.
23252
23253 It accepts the following values:
23254 @table @samp
23255 @item combined
23256 all channels are displayed in the same row
23257 @item separate
23258 all channels are displayed in separate rows
23259 @end table
23260 Default value is @samp{combined}.
23261
23262 @item color
23263 Specify display color mode.
23264
23265 It accepts the following values:
23266 @table @samp
23267 @item channel
23268 each channel is displayed in a separate color
23269 @item intensity
23270 each channel is displayed using the same color scheme
23271 @item rainbow
23272 each channel is displayed using the rainbow color scheme
23273 @item moreland
23274 each channel is displayed using the moreland color scheme
23275 @item nebulae
23276 each channel is displayed using the nebulae color scheme
23277 @item fire
23278 each channel is displayed using the fire color scheme
23279 @item fiery
23280 each channel is displayed using the fiery color scheme
23281 @item fruit
23282 each channel is displayed using the fruit color scheme
23283 @item cool
23284 each channel is displayed using the cool color scheme
23285 @item magma
23286 each channel is displayed using the magma color scheme
23287 @item green
23288 each channel is displayed using the green color scheme
23289 @item viridis
23290 each channel is displayed using the viridis color scheme
23291 @item plasma
23292 each channel is displayed using the plasma color scheme
23293 @item cividis
23294 each channel is displayed using the cividis color scheme
23295 @item terrain
23296 each channel is displayed using the terrain color scheme
23297 @end table
23298 Default value is @samp{intensity}.
23299
23300 @item scale
23301 Specify scale used for calculating intensity color values.
23302
23303 It accepts the following values:
23304 @table @samp
23305 @item lin
23306 linear
23307 @item sqrt
23308 square root, default
23309 @item cbrt
23310 cubic root
23311 @item log
23312 logarithmic
23313 @item 4thrt
23314 4th root
23315 @item 5thrt
23316 5th root
23317 @end table
23318 Default value is @samp{log}.
23319
23320 @item fscale
23321 Specify frequency scale.
23322
23323 It accepts the following values:
23324 @table @samp
23325 @item lin
23326 linear
23327 @item log
23328 logarithmic
23329 @end table
23330
23331 Default value is @samp{lin}.
23332
23333 @item saturation
23334 Set saturation modifier for displayed colors. Negative values provide
23335 alternative color scheme. @code{0} is no saturation at all.
23336 Saturation must be in [-10.0, 10.0] range.
23337 Default value is @code{1}.
23338
23339 @item win_func
23340 Set window function.
23341
23342 It accepts the following values:
23343 @table @samp
23344 @item rect
23345 @item bartlett
23346 @item hann
23347 @item hanning
23348 @item hamming
23349 @item blackman
23350 @item welch
23351 @item flattop
23352 @item bharris
23353 @item bnuttall
23354 @item bhann
23355 @item sine
23356 @item nuttall
23357 @item lanczos
23358 @item gauss
23359 @item tukey
23360 @item dolph
23361 @item cauchy
23362 @item parzen
23363 @item poisson
23364 @item bohman
23365 @end table
23366 Default value is @code{hann}.
23367
23368 @item orientation
23369 Set orientation of time vs frequency axis. Can be @code{vertical} or
23370 @code{horizontal}. Default is @code{vertical}.
23371
23372 @item gain
23373 Set scale gain for calculating intensity color values.
23374 Default value is @code{1}.
23375
23376 @item legend
23377 Draw time and frequency axes and legends. Default is enabled.
23378
23379 @item rotation
23380 Set color rotation, must be in [-1.0, 1.0] range.
23381 Default value is @code{0}.
23382
23383 @item start
23384 Set start frequency from which to display spectrogram. Default is @code{0}.
23385
23386 @item stop
23387 Set stop frequency to which to display spectrogram. Default is @code{0}.
23388 @end table
23389
23390 @subsection Examples
23391
23392 @itemize
23393 @item
23394 Extract an audio spectrogram of a whole audio track
23395 in a 1024x1024 picture using @command{ffmpeg}:
23396 @example
23397 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
23398 @end example
23399 @end itemize
23400
23401 @section showvolume
23402
23403 Convert input audio volume to a video output.
23404
23405 The filter accepts the following options:
23406
23407 @table @option
23408 @item rate, r
23409 Set video rate.
23410
23411 @item b
23412 Set border width, allowed range is [0, 5]. Default is 1.
23413
23414 @item w
23415 Set channel width, allowed range is [80, 8192]. Default is 400.
23416
23417 @item h
23418 Set channel height, allowed range is [1, 900]. Default is 20.
23419
23420 @item f
23421 Set fade, allowed range is [0, 1]. Default is 0.95.
23422
23423 @item c
23424 Set volume color expression.
23425
23426 The expression can use the following variables:
23427
23428 @table @option
23429 @item VOLUME
23430 Current max volume of channel in dB.
23431
23432 @item PEAK
23433 Current peak.
23434
23435 @item CHANNEL
23436 Current channel number, starting from 0.
23437 @end table
23438
23439 @item t
23440 If set, displays channel names. Default is enabled.
23441
23442 @item v
23443 If set, displays volume values. Default is enabled.
23444
23445 @item o
23446 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
23447 default is @code{h}.
23448
23449 @item s
23450 Set step size, allowed range is [0, 5]. Default is 0, which means
23451 step is disabled.
23452
23453 @item p
23454 Set background opacity, allowed range is [0, 1]. Default is 0.
23455
23456 @item m
23457 Set metering mode, can be peak: @code{p} or rms: @code{r},
23458 default is @code{p}.
23459
23460 @item ds
23461 Set display scale, can be linear: @code{lin} or log: @code{log},
23462 default is @code{lin}.
23463
23464 @item dm
23465 In second.
23466 If set to > 0., display a line for the max level
23467 in the previous seconds.
23468 default is disabled: @code{0.}
23469
23470 @item dmc
23471 The color of the max line. Use when @code{dm} option is set to > 0.
23472 default is: @code{orange}
23473 @end table
23474
23475 @section showwaves
23476
23477 Convert input audio to a video output, representing the samples waves.
23478
23479 The filter accepts the following options:
23480
23481 @table @option
23482 @item size, s
23483 Specify the video size for the output. For the syntax of this option, check the
23484 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23485 Default value is @code{600x240}.
23486
23487 @item mode
23488 Set display mode.
23489
23490 Available values are:
23491 @table @samp
23492 @item point
23493 Draw a point for each sample.
23494
23495 @item line
23496 Draw a vertical line for each sample.
23497
23498 @item p2p
23499 Draw a point for each sample and a line between them.
23500
23501 @item cline
23502 Draw a centered vertical line for each sample.
23503 @end table
23504
23505 Default value is @code{point}.
23506
23507 @item n
23508 Set the number of samples which are printed on the same column. A
23509 larger value will decrease the frame rate. Must be a positive
23510 integer. This option can be set only if the value for @var{rate}
23511 is not explicitly specified.
23512
23513 @item rate, r
23514 Set the (approximate) output frame rate. This is done by setting the
23515 option @var{n}. Default value is "25".
23516
23517 @item split_channels
23518 Set if channels should be drawn separately or overlap. Default value is 0.
23519
23520 @item colors
23521 Set colors separated by '|' which are going to be used for drawing of each channel.
23522
23523 @item scale
23524 Set amplitude scale.
23525
23526 Available values are:
23527 @table @samp
23528 @item lin
23529 Linear.
23530
23531 @item log
23532 Logarithmic.
23533
23534 @item sqrt
23535 Square root.
23536
23537 @item cbrt
23538 Cubic root.
23539 @end table
23540
23541 Default is linear.
23542
23543 @item draw
23544 Set the draw mode. This is mostly useful to set for high @var{n}.
23545
23546 Available values are:
23547 @table @samp
23548 @item scale
23549 Scale pixel values for each drawn sample.
23550
23551 @item full
23552 Draw every sample directly.
23553 @end table
23554
23555 Default value is @code{scale}.
23556 @end table
23557
23558 @subsection Examples
23559
23560 @itemize
23561 @item
23562 Output the input file audio and the corresponding video representation
23563 at the same time:
23564 @example
23565 amovie=a.mp3,asplit[out0],showwaves[out1]
23566 @end example
23567
23568 @item
23569 Create a synthetic signal and show it with showwaves, forcing a
23570 frame rate of 30 frames per second:
23571 @example
23572 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
23573 @end example
23574 @end itemize
23575
23576 @section showwavespic
23577
23578 Convert input audio to a single video frame, representing the samples waves.
23579
23580 The filter accepts the following options:
23581
23582 @table @option
23583 @item size, s
23584 Specify the video size for the output. For the syntax of this option, check the
23585 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23586 Default value is @code{600x240}.
23587
23588 @item split_channels
23589 Set if channels should be drawn separately or overlap. Default value is 0.
23590
23591 @item colors
23592 Set colors separated by '|' which are going to be used for drawing of each channel.
23593
23594 @item scale
23595 Set amplitude scale.
23596
23597 Available values are:
23598 @table @samp
23599 @item lin
23600 Linear.
23601
23602 @item log
23603 Logarithmic.
23604
23605 @item sqrt
23606 Square root.
23607
23608 @item cbrt
23609 Cubic root.
23610 @end table
23611
23612 Default is linear.
23613
23614 @item draw
23615 Set the draw mode.
23616
23617 Available values are:
23618 @table @samp
23619 @item scale
23620 Scale pixel values for each drawn sample.
23621
23622 @item full
23623 Draw every sample directly.
23624 @end table
23625
23626 Default value is @code{scale}.
23627 @end table
23628
23629 @subsection Examples
23630
23631 @itemize
23632 @item
23633 Extract a channel split representation of the wave form of a whole audio track
23634 in a 1024x800 picture using @command{ffmpeg}:
23635 @example
23636 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
23637 @end example
23638 @end itemize
23639
23640 @section sidedata, asidedata
23641
23642 Delete frame side data, or select frames based on it.
23643
23644 This filter accepts the following options:
23645
23646 @table @option
23647 @item mode
23648 Set mode of operation of the filter.
23649
23650 Can be one of the following:
23651
23652 @table @samp
23653 @item select
23654 Select every frame with side data of @code{type}.
23655
23656 @item delete
23657 Delete side data of @code{type}. If @code{type} is not set, delete all side
23658 data in the frame.
23659
23660 @end table
23661
23662 @item type
23663 Set side data type used with all modes. Must be set for @code{select} mode. For
23664 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
23665 in @file{libavutil/frame.h}. For example, to choose
23666 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
23667
23668 @end table
23669
23670 @section spectrumsynth
23671
23672 Sythesize audio from 2 input video spectrums, first input stream represents
23673 magnitude across time and second represents phase across time.
23674 The filter will transform from frequency domain as displayed in videos back
23675 to time domain as presented in audio output.
23676
23677 This filter is primarily created for reversing processed @ref{showspectrum}
23678 filter outputs, but can synthesize sound from other spectrograms too.
23679 But in such case results are going to be poor if the phase data is not
23680 available, because in such cases phase data need to be recreated, usually
23681 it's just recreated from random noise.
23682 For best results use gray only output (@code{channel} color mode in
23683 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
23684 @code{lin} scale for phase video. To produce phase, for 2nd video, use
23685 @code{data} option. Inputs videos should generally use @code{fullframe}
23686 slide mode as that saves resources needed for decoding video.
23687
23688 The filter accepts the following options:
23689
23690 @table @option
23691 @item sample_rate
23692 Specify sample rate of output audio, the sample rate of audio from which
23693 spectrum was generated may differ.
23694
23695 @item channels
23696 Set number of channels represented in input video spectrums.
23697
23698 @item scale
23699 Set scale which was used when generating magnitude input spectrum.
23700 Can be @code{lin} or @code{log}. Default is @code{log}.
23701
23702 @item slide
23703 Set slide which was used when generating inputs spectrums.
23704 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
23705 Default is @code{fullframe}.
23706
23707 @item win_func
23708 Set window function used for resynthesis.
23709
23710 @item overlap
23711 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
23712 which means optimal overlap for selected window function will be picked.
23713
23714 @item orientation
23715 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
23716 Default is @code{vertical}.
23717 @end table
23718
23719 @subsection Examples
23720
23721 @itemize
23722 @item
23723 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
23724 then resynthesize videos back to audio with spectrumsynth:
23725 @example
23726 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
23727 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
23728 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
23729 @end example
23730 @end itemize
23731
23732 @section split, asplit
23733
23734 Split input into several identical outputs.
23735
23736 @code{asplit} works with audio input, @code{split} with video.
23737
23738 The filter accepts a single parameter which specifies the number of outputs. If
23739 unspecified, it defaults to 2.
23740
23741 @subsection Examples
23742
23743 @itemize
23744 @item
23745 Create two separate outputs from the same input:
23746 @example
23747 [in] split [out0][out1]
23748 @end example
23749
23750 @item
23751 To create 3 or more outputs, you need to specify the number of
23752 outputs, like in:
23753 @example
23754 [in] asplit=3 [out0][out1][out2]
23755 @end example
23756
23757 @item
23758 Create two separate outputs from the same input, one cropped and
23759 one padded:
23760 @example
23761 [in] split [splitout1][splitout2];
23762 [splitout1] crop=100:100:0:0    [cropout];
23763 [splitout2] pad=200:200:100:100 [padout];
23764 @end example
23765
23766 @item
23767 Create 5 copies of the input audio with @command{ffmpeg}:
23768 @example
23769 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
23770 @end example
23771 @end itemize
23772
23773 @section zmq, azmq
23774
23775 Receive commands sent through a libzmq client, and forward them to
23776 filters in the filtergraph.
23777
23778 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
23779 must be inserted between two video filters, @code{azmq} between two
23780 audio filters. Both are capable to send messages to any filter type.
23781
23782 To enable these filters you need to install the libzmq library and
23783 headers and configure FFmpeg with @code{--enable-libzmq}.
23784
23785 For more information about libzmq see:
23786 @url{http://www.zeromq.org/}
23787
23788 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
23789 receives messages sent through a network interface defined by the
23790 @option{bind_address} (or the abbreviation "@option{b}") option.
23791 Default value of this option is @file{tcp://localhost:5555}. You may
23792 want to alter this value to your needs, but do not forget to escape any
23793 ':' signs (see @ref{filtergraph escaping}).
23794
23795 The received message must be in the form:
23796 @example
23797 @var{TARGET} @var{COMMAND} [@var{ARG}]
23798 @end example
23799
23800 @var{TARGET} specifies the target of the command, usually the name of
23801 the filter class or a specific filter instance name. The default
23802 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
23803 but you can override this by using the @samp{filter_name@@id} syntax
23804 (see @ref{Filtergraph syntax}).
23805
23806 @var{COMMAND} specifies the name of the command for the target filter.
23807
23808 @var{ARG} is optional and specifies the optional argument list for the
23809 given @var{COMMAND}.
23810
23811 Upon reception, the message is processed and the corresponding command
23812 is injected into the filtergraph. Depending on the result, the filter
23813 will send a reply to the client, adopting the format:
23814 @example
23815 @var{ERROR_CODE} @var{ERROR_REASON}
23816 @var{MESSAGE}
23817 @end example
23818
23819 @var{MESSAGE} is optional.
23820
23821 @subsection Examples
23822
23823 Look at @file{tools/zmqsend} for an example of a zmq client which can
23824 be used to send commands processed by these filters.
23825
23826 Consider the following filtergraph generated by @command{ffplay}.
23827 In this example the last overlay filter has an instance name. All other
23828 filters will have default instance names.
23829
23830 @example
23831 ffplay -dumpgraph 1 -f lavfi "
23832 color=s=100x100:c=red  [l];
23833 color=s=100x100:c=blue [r];
23834 nullsrc=s=200x100, zmq [bg];
23835 [bg][l]   overlay     [bg+l];
23836 [bg+l][r] overlay@@my=x=100 "
23837 @end example
23838
23839 To change the color of the left side of the video, the following
23840 command can be used:
23841 @example
23842 echo Parsed_color_0 c yellow | tools/zmqsend
23843 @end example
23844
23845 To change the right side:
23846 @example
23847 echo Parsed_color_1 c pink | tools/zmqsend
23848 @end example
23849
23850 To change the position of the right side:
23851 @example
23852 echo overlay@@my x 150 | tools/zmqsend
23853 @end example
23854
23855
23856 @c man end MULTIMEDIA FILTERS
23857
23858 @chapter Multimedia Sources
23859 @c man begin MULTIMEDIA SOURCES
23860
23861 Below is a description of the currently available multimedia sources.
23862
23863 @section amovie
23864
23865 This is the same as @ref{movie} source, except it selects an audio
23866 stream by default.
23867
23868 @anchor{movie}
23869 @section movie
23870
23871 Read audio and/or video stream(s) from a movie container.
23872
23873 It accepts the following parameters:
23874
23875 @table @option
23876 @item filename
23877 The name of the resource to read (not necessarily a file; it can also be a
23878 device or a stream accessed through some protocol).
23879
23880 @item format_name, f
23881 Specifies the format assumed for the movie to read, and can be either
23882 the name of a container or an input device. If not specified, the
23883 format is guessed from @var{movie_name} or by probing.
23884
23885 @item seek_point, sp
23886 Specifies the seek point in seconds. The frames will be output
23887 starting from this seek point. The parameter is evaluated with
23888 @code{av_strtod}, so the numerical value may be suffixed by an IS
23889 postfix. The default value is "0".
23890
23891 @item streams, s
23892 Specifies the streams to read. Several streams can be specified,
23893 separated by "+". The source will then have as many outputs, in the
23894 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
23895 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
23896 respectively the default (best suited) video and audio stream. Default
23897 is "dv", or "da" if the filter is called as "amovie".
23898
23899 @item stream_index, si
23900 Specifies the index of the video stream to read. If the value is -1,
23901 the most suitable video stream will be automatically selected. The default
23902 value is "-1". Deprecated. If the filter is called "amovie", it will select
23903 audio instead of video.
23904
23905 @item loop
23906 Specifies how many times to read the stream in sequence.
23907 If the value is 0, the stream will be looped infinitely.
23908 Default value is "1".
23909
23910 Note that when the movie is looped the source timestamps are not
23911 changed, so it will generate non monotonically increasing timestamps.
23912
23913 @item discontinuity
23914 Specifies the time difference between frames above which the point is
23915 considered a timestamp discontinuity which is removed by adjusting the later
23916 timestamps.
23917 @end table
23918
23919 It allows overlaying a second video on top of the main input of
23920 a filtergraph, as shown in this graph:
23921 @example
23922 input -----------> deltapts0 --> overlay --> output
23923                                     ^
23924                                     |
23925 movie --> scale--> deltapts1 -------+
23926 @end example
23927 @subsection Examples
23928
23929 @itemize
23930 @item
23931 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
23932 on top of the input labelled "in":
23933 @example
23934 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
23935 [in] setpts=PTS-STARTPTS [main];
23936 [main][over] overlay=16:16 [out]
23937 @end example
23938
23939 @item
23940 Read from a video4linux2 device, and overlay it on top of the input
23941 labelled "in":
23942 @example
23943 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
23944 [in] setpts=PTS-STARTPTS [main];
23945 [main][over] overlay=16:16 [out]
23946 @end example
23947
23948 @item
23949 Read the first video stream and the audio stream with id 0x81 from
23950 dvd.vob; the video is connected to the pad named "video" and the audio is
23951 connected to the pad named "audio":
23952 @example
23953 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
23954 @end example
23955 @end itemize
23956
23957 @subsection Commands
23958
23959 Both movie and amovie support the following commands:
23960 @table @option
23961 @item seek
23962 Perform seek using "av_seek_frame".
23963 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
23964 @itemize
23965 @item
23966 @var{stream_index}: If stream_index is -1, a default
23967 stream is selected, and @var{timestamp} is automatically converted
23968 from AV_TIME_BASE units to the stream specific time_base.
23969 @item
23970 @var{timestamp}: Timestamp in AVStream.time_base units
23971 or, if no stream is specified, in AV_TIME_BASE units.
23972 @item
23973 @var{flags}: Flags which select direction and seeking mode.
23974 @end itemize
23975
23976 @item get_duration
23977 Get movie duration in AV_TIME_BASE units.
23978
23979 @end table
23980
23981 @c man end MULTIMEDIA SOURCES