]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter: add lagfun 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 sound like a (metallic) robot playing music:
760 @example
761 aecho=0.8:0.88:6:0.4
762 @end example
763
764 @item
765 A longer delay will sound like an open air concert in the mountains:
766 @example
767 aecho=0.8:0.9:1000:0.3
768 @end example
769
770 @item
771 Same as above but with one more mountain:
772 @example
773 aecho=0.8:0.9:1000|1800:0.3|0.25
774 @end example
775 @end itemize
776
777 @section aemphasis
778 Audio emphasis filter creates or restores material directly taken from LPs or
779 emphased CDs with different filter curves. E.g. to store music on vinyl the
780 signal has to be altered by a filter first to even out the disadvantages of
781 this recording medium.
782 Once the material is played back the inverse filter has to be applied to
783 restore the distortion of the frequency response.
784
785 The filter accepts the following options:
786
787 @table @option
788 @item level_in
789 Set input gain.
790
791 @item level_out
792 Set output gain.
793
794 @item mode
795 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
796 use @code{production} mode. Default is @code{reproduction} mode.
797
798 @item type
799 Set filter type. Selects medium. Can be one of the following:
800
801 @table @option
802 @item col
803 select Columbia.
804 @item emi
805 select EMI.
806 @item bsi
807 select BSI (78RPM).
808 @item riaa
809 select RIAA.
810 @item cd
811 select Compact Disc (CD).
812 @item 50fm
813 select 50µs (FM).
814 @item 75fm
815 select 75µs (FM).
816 @item 50kf
817 select 50µs (FM-KF).
818 @item 75kf
819 select 75µs (FM-KF).
820 @end table
821 @end table
822
823 @section aeval
824
825 Modify an audio signal according to the specified expressions.
826
827 This filter accepts one or more expressions (one for each channel),
828 which are evaluated and used to modify a corresponding audio signal.
829
830 It accepts the following parameters:
831
832 @table @option
833 @item exprs
834 Set the '|'-separated expressions list for each separate channel. If
835 the number of input channels is greater than the number of
836 expressions, the last specified expression is used for the remaining
837 output channels.
838
839 @item channel_layout, c
840 Set output channel layout. If not specified, the channel layout is
841 specified by the number of expressions. If set to @samp{same}, it will
842 use by default the same input channel layout.
843 @end table
844
845 Each expression in @var{exprs} can contain the following constants and functions:
846
847 @table @option
848 @item ch
849 channel number of the current expression
850
851 @item n
852 number of the evaluated sample, starting from 0
853
854 @item s
855 sample rate
856
857 @item t
858 time of the evaluated sample expressed in seconds
859
860 @item nb_in_channels
861 @item nb_out_channels
862 input and output number of channels
863
864 @item val(CH)
865 the value of input channel with number @var{CH}
866 @end table
867
868 Note: this filter is slow. For faster processing you should use a
869 dedicated filter.
870
871 @subsection Examples
872
873 @itemize
874 @item
875 Half volume:
876 @example
877 aeval=val(ch)/2:c=same
878 @end example
879
880 @item
881 Invert phase of the second channel:
882 @example
883 aeval=val(0)|-val(1)
884 @end example
885 @end itemize
886
887 @anchor{afade}
888 @section afade
889
890 Apply fade-in/out effect to input audio.
891
892 A description of the accepted parameters follows.
893
894 @table @option
895 @item type, t
896 Specify the effect type, can be either @code{in} for fade-in, or
897 @code{out} for a fade-out effect. Default is @code{in}.
898
899 @item start_sample, ss
900 Specify the number of the start sample for starting to apply the fade
901 effect. Default is 0.
902
903 @item nb_samples, ns
904 Specify the number of samples for which the fade effect has to last. At
905 the end of the fade-in effect the output audio will have the same
906 volume as the input audio, at the end of the fade-out transition
907 the output audio will be silence. Default is 44100.
908
909 @item start_time, st
910 Specify the start time of the fade effect. Default is 0.
911 The value must be specified as a time duration; see
912 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
913 for the accepted syntax.
914 If set this option is used instead of @var{start_sample}.
915
916 @item duration, d
917 Specify the duration of the fade effect. See
918 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
919 for the accepted syntax.
920 At the end of the fade-in effect the output audio will have the same
921 volume as the input audio, at the end of the fade-out transition
922 the output audio will be silence.
923 By default the duration is determined by @var{nb_samples}.
924 If set this option is used instead of @var{nb_samples}.
925
926 @item curve
927 Set curve for fade transition.
928
929 It accepts the following values:
930 @table @option
931 @item tri
932 select triangular, linear slope (default)
933 @item qsin
934 select quarter of sine wave
935 @item hsin
936 select half of sine wave
937 @item esin
938 select exponential sine wave
939 @item log
940 select logarithmic
941 @item ipar
942 select inverted parabola
943 @item qua
944 select quadratic
945 @item cub
946 select cubic
947 @item squ
948 select square root
949 @item cbr
950 select cubic root
951 @item par
952 select parabola
953 @item exp
954 select exponential
955 @item iqsin
956 select inverted quarter of sine wave
957 @item ihsin
958 select inverted half of sine wave
959 @item dese
960 select double-exponential seat
961 @item desi
962 select double-exponential sigmoid
963 @item losi
964 select logistic sigmoid
965 @item nofade
966 no fade applied
967 @end table
968 @end table
969
970 @subsection Examples
971
972 @itemize
973 @item
974 Fade in first 15 seconds of audio:
975 @example
976 afade=t=in:ss=0:d=15
977 @end example
978
979 @item
980 Fade out last 25 seconds of a 900 seconds audio:
981 @example
982 afade=t=out:st=875:d=25
983 @end example
984 @end itemize
985
986 @section afftdn
987 Denoise audio samples with FFT.
988
989 A description of the accepted parameters follows.
990
991 @table @option
992 @item nr
993 Set the noise reduction in dB, allowed range is 0.01 to 97.
994 Default value is 12 dB.
995
996 @item nf
997 Set the noise floor in dB, allowed range is -80 to -20.
998 Default value is -50 dB.
999
1000 @item nt
1001 Set the noise type.
1002
1003 It accepts the following values:
1004 @table @option
1005 @item w
1006 Select white noise.
1007
1008 @item v
1009 Select vinyl noise.
1010
1011 @item s
1012 Select shellac noise.
1013
1014 @item c
1015 Select custom noise, defined in @code{bn} option.
1016
1017 Default value is white noise.
1018 @end table
1019
1020 @item bn
1021 Set custom band noise for every one of 15 bands.
1022 Bands are separated by ' ' or '|'.
1023
1024 @item rf
1025 Set the residual floor in dB, allowed range is -80 to -20.
1026 Default value is -38 dB.
1027
1028 @item tn
1029 Enable noise tracking. By default is disabled.
1030 With this enabled, noise floor is automatically adjusted.
1031
1032 @item tr
1033 Enable residual tracking. By default is disabled.
1034
1035 @item om
1036 Set the output mode.
1037
1038 It accepts the following values:
1039 @table @option
1040 @item i
1041 Pass input unchanged.
1042
1043 @item o
1044 Pass noise filtered out.
1045
1046 @item n
1047 Pass only noise.
1048
1049 Default value is @var{o}.
1050 @end table
1051 @end table
1052
1053 @subsection Commands
1054
1055 This filter supports the following commands:
1056 @table @option
1057 @item sample_noise, sn
1058 Start or stop measuring noise profile.
1059 Syntax for the command is : "start" or "stop" string.
1060 After measuring noise profile is stopped it will be
1061 automatically applied in filtering.
1062
1063 @item noise_reduction, nr
1064 Change noise reduction. Argument is single float number.
1065 Syntax for the command is : "@var{noise_reduction}"
1066
1067 @item noise_floor, nf
1068 Change noise floor. Argument is single float number.
1069 Syntax for the command is : "@var{noise_floor}"
1070
1071 @item output_mode, om
1072 Change output mode operation.
1073 Syntax for the command is : "i", "o" or "n" string.
1074 @end table
1075
1076 @section afftfilt
1077 Apply arbitrary expressions to samples in frequency domain.
1078
1079 @table @option
1080 @item real
1081 Set frequency domain real expression for each separate channel separated
1082 by '|'. Default is "re".
1083 If the number of input channels is greater than the number of
1084 expressions, the last specified expression is used for the remaining
1085 output channels.
1086
1087 @item imag
1088 Set frequency domain imaginary expression for each separate channel
1089 separated by '|'. Default is "im".
1090
1091 Each expression in @var{real} and @var{imag} can contain the following
1092 constants and functions:
1093
1094 @table @option
1095 @item sr
1096 sample rate
1097
1098 @item b
1099 current frequency bin number
1100
1101 @item nb
1102 number of available bins
1103
1104 @item ch
1105 channel number of the current expression
1106
1107 @item chs
1108 number of channels
1109
1110 @item pts
1111 current frame pts
1112
1113 @item re
1114 current real part of frequency bin of current channel
1115
1116 @item im
1117 current imaginary part of frequency bin of current channel
1118
1119 @item real(b, ch)
1120 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1121
1122 @item imag(b, ch)
1123 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1124 @end table
1125
1126 @item win_size
1127 Set window size.
1128
1129 It accepts the following values:
1130 @table @samp
1131 @item w16
1132 @item w32
1133 @item w64
1134 @item w128
1135 @item w256
1136 @item w512
1137 @item w1024
1138 @item w2048
1139 @item w4096
1140 @item w8192
1141 @item w16384
1142 @item w32768
1143 @item w65536
1144 @end table
1145 Default is @code{w4096}
1146
1147 @item win_func
1148 Set window function. Default is @code{hann}.
1149
1150 @item overlap
1151 Set window overlap. If set to 1, the recommended overlap for selected
1152 window function will be picked. Default is @code{0.75}.
1153 @end table
1154
1155 @subsection Examples
1156
1157 @itemize
1158 @item
1159 Leave almost only low frequencies in audio:
1160 @example
1161 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1162 @end example
1163 @end itemize
1164
1165 @anchor{afir}
1166 @section afir
1167
1168 Apply an arbitrary Frequency Impulse Response filter.
1169
1170 This filter is designed for applying long FIR filters,
1171 up to 60 seconds long.
1172
1173 It can be used as component for digital crossover filters,
1174 room equalization, cross talk cancellation, wavefield synthesis,
1175 auralization, ambiophonics, ambisonics and spatialization.
1176
1177 This filter uses second stream as FIR coefficients.
1178 If second stream holds single channel, it will be used
1179 for all input channels in first stream, otherwise
1180 number of channels in second stream must be same as
1181 number of channels in first stream.
1182
1183 It accepts the following parameters:
1184
1185 @table @option
1186 @item dry
1187 Set dry gain. This sets input gain.
1188
1189 @item wet
1190 Set wet gain. This sets final output gain.
1191
1192 @item length
1193 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1194
1195 @item gtype
1196 Enable applying gain measured from power of IR.
1197
1198 Set which approach to use for auto gain measurement.
1199
1200 @table @option
1201 @item none
1202 Do not apply any gain.
1203
1204 @item peak
1205 select peak gain, very conservative approach. This is default value.
1206
1207 @item dc
1208 select DC gain, limited application.
1209
1210 @item gn
1211 select gain to noise approach, this is most popular one.
1212 @end table
1213
1214 @item irgain
1215 Set gain to be applied to IR coefficients before filtering.
1216 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1217
1218 @item irfmt
1219 Set format of IR stream. Can be @code{mono} or @code{input}.
1220 Default is @code{input}.
1221
1222 @item maxir
1223 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1224 Allowed range is 0.1 to 60 seconds.
1225
1226 @item response
1227 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1228 By default it is disabled.
1229
1230 @item channel
1231 Set for which IR channel to display frequency response. By default is first channel
1232 displayed. This option is used only when @var{response} is enabled.
1233
1234 @item size
1235 Set video stream size. This option is used only when @var{response} is enabled.
1236
1237 @item rate
1238 Set video stream frame rate. This option is used only when @var{response} is enabled.
1239
1240 @item minp
1241 Set minimal partition size used for convolution. Default is @var{8192}.
1242 Allowed range is from @var{8} to @var{32768}.
1243 Lower values decreases latency at cost of higher CPU usage.
1244
1245 @item maxp
1246 Set maximal partition size used for convolution. Default is @var{8192}.
1247 Allowed range is from @var{8} to @var{32768}.
1248 Lower values may increase CPU usage.
1249 @end table
1250
1251 @subsection Examples
1252
1253 @itemize
1254 @item
1255 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1256 @example
1257 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1258 @end example
1259 @end itemize
1260
1261 @anchor{aformat}
1262 @section aformat
1263
1264 Set output format constraints for the input audio. The framework will
1265 negotiate the most appropriate format to minimize conversions.
1266
1267 It accepts the following parameters:
1268 @table @option
1269
1270 @item sample_fmts
1271 A '|'-separated list of requested sample formats.
1272
1273 @item sample_rates
1274 A '|'-separated list of requested sample rates.
1275
1276 @item channel_layouts
1277 A '|'-separated list of requested channel layouts.
1278
1279 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1280 for the required syntax.
1281 @end table
1282
1283 If a parameter is omitted, all values are allowed.
1284
1285 Force the output to either unsigned 8-bit or signed 16-bit stereo
1286 @example
1287 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1288 @end example
1289
1290 @section agate
1291
1292 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1293 processing reduces disturbing noise between useful signals.
1294
1295 Gating is done by detecting the volume below a chosen level @var{threshold}
1296 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1297 floor is set via @var{range}. Because an exact manipulation of the signal
1298 would cause distortion of the waveform the reduction can be levelled over
1299 time. This is done by setting @var{attack} and @var{release}.
1300
1301 @var{attack} determines how long the signal has to fall below the threshold
1302 before any reduction will occur and @var{release} sets the time the signal
1303 has to rise above the threshold to reduce the reduction again.
1304 Shorter signals than the chosen attack time will be left untouched.
1305
1306 @table @option
1307 @item level_in
1308 Set input level before filtering.
1309 Default is 1. Allowed range is from 0.015625 to 64.
1310
1311 @item mode
1312 Set the mode of operation. Can be @code{upward} or @code{downward}.
1313 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1314 will be amplified, expanding dynamic range in upward direction.
1315 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1316
1317 @item range
1318 Set the level of gain reduction when the signal is below the threshold.
1319 Default is 0.06125. Allowed range is from 0 to 1.
1320 Setting this to 0 disables reduction and then filter behaves like expander.
1321
1322 @item threshold
1323 If a signal rises above this level the gain reduction is released.
1324 Default is 0.125. Allowed range is from 0 to 1.
1325
1326 @item ratio
1327 Set a ratio by which the signal is reduced.
1328 Default is 2. Allowed range is from 1 to 9000.
1329
1330 @item attack
1331 Amount of milliseconds the signal has to rise above the threshold before gain
1332 reduction stops.
1333 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1334
1335 @item release
1336 Amount of milliseconds the signal has to fall below the threshold before the
1337 reduction is increased again. Default is 250 milliseconds.
1338 Allowed range is from 0.01 to 9000.
1339
1340 @item makeup
1341 Set amount of amplification of signal after processing.
1342 Default is 1. Allowed range is from 1 to 64.
1343
1344 @item knee
1345 Curve the sharp knee around the threshold to enter gain reduction more softly.
1346 Default is 2.828427125. Allowed range is from 1 to 8.
1347
1348 @item detection
1349 Choose if exact signal should be taken for detection or an RMS like one.
1350 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1351
1352 @item link
1353 Choose if the average level between all channels or the louder channel affects
1354 the reduction.
1355 Default is @code{average}. Can be @code{average} or @code{maximum}.
1356 @end table
1357
1358 @section aiir
1359
1360 Apply an arbitrary Infinite Impulse Response filter.
1361
1362 It accepts the following parameters:
1363
1364 @table @option
1365 @item z
1366 Set numerator/zeros coefficients.
1367
1368 @item p
1369 Set denominator/poles coefficients.
1370
1371 @item k
1372 Set channels gains.
1373
1374 @item dry_gain
1375 Set input gain.
1376
1377 @item wet_gain
1378 Set output gain.
1379
1380 @item f
1381 Set coefficients format.
1382
1383 @table @samp
1384 @item tf
1385 transfer function
1386 @item zp
1387 Z-plane zeros/poles, cartesian (default)
1388 @item pr
1389 Z-plane zeros/poles, polar radians
1390 @item pd
1391 Z-plane zeros/poles, polar degrees
1392 @end table
1393
1394 @item r
1395 Set kind of processing.
1396 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1397
1398 @item e
1399 Set filtering precision.
1400
1401 @table @samp
1402 @item dbl
1403 double-precision floating-point (default)
1404 @item flt
1405 single-precision floating-point
1406 @item i32
1407 32-bit integers
1408 @item i16
1409 16-bit integers
1410 @end table
1411
1412 @item response
1413 Show IR frequency response, magnitude and phase in additional video stream.
1414 By default it is disabled.
1415
1416 @item channel
1417 Set for which IR channel to display frequency response. By default is first channel
1418 displayed. This option is used only when @var{response} is enabled.
1419
1420 @item size
1421 Set video stream size. This option is used only when @var{response} is enabled.
1422 @end table
1423
1424 Coefficients in @code{tf} format are separated by spaces and are in ascending
1425 order.
1426
1427 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1428 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1429 imaginary unit.
1430
1431 Different coefficients and gains can be provided for every channel, in such case
1432 use '|' to separate coefficients or gains. Last provided coefficients will be
1433 used for all remaining channels.
1434
1435 @subsection Examples
1436
1437 @itemize
1438 @item
1439 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1440 @example
1441 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1442 @end example
1443
1444 @item
1445 Same as above but in @code{zp} format:
1446 @example
1447 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1448 @end example
1449 @end itemize
1450
1451 @section alimiter
1452
1453 The limiter prevents an input signal from rising over a desired threshold.
1454 This limiter uses lookahead technology to prevent your signal from distorting.
1455 It means that there is a small delay after the signal is processed. Keep in mind
1456 that the delay it produces is the attack time you set.
1457
1458 The filter accepts the following options:
1459
1460 @table @option
1461 @item level_in
1462 Set input gain. Default is 1.
1463
1464 @item level_out
1465 Set output gain. Default is 1.
1466
1467 @item limit
1468 Don't let signals above this level pass the limiter. Default is 1.
1469
1470 @item attack
1471 The limiter will reach its attenuation level in this amount of time in
1472 milliseconds. Default is 5 milliseconds.
1473
1474 @item release
1475 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1476 Default is 50 milliseconds.
1477
1478 @item asc
1479 When gain reduction is always needed ASC takes care of releasing to an
1480 average reduction level rather than reaching a reduction of 0 in the release
1481 time.
1482
1483 @item asc_level
1484 Select how much the release time is affected by ASC, 0 means nearly no changes
1485 in release time while 1 produces higher release times.
1486
1487 @item level
1488 Auto level output signal. Default is enabled.
1489 This normalizes audio back to 0dB if enabled.
1490 @end table
1491
1492 Depending on picked setting it is recommended to upsample input 2x or 4x times
1493 with @ref{aresample} before applying this filter.
1494
1495 @section allpass
1496
1497 Apply a two-pole all-pass filter with central frequency (in Hz)
1498 @var{frequency}, and filter-width @var{width}.
1499 An all-pass filter changes the audio's frequency to phase relationship
1500 without changing its frequency to amplitude relationship.
1501
1502 The filter accepts the following options:
1503
1504 @table @option
1505 @item frequency, f
1506 Set frequency in Hz.
1507
1508 @item width_type, t
1509 Set method to specify band-width of filter.
1510 @table @option
1511 @item h
1512 Hz
1513 @item q
1514 Q-Factor
1515 @item o
1516 octave
1517 @item s
1518 slope
1519 @item k
1520 kHz
1521 @end table
1522
1523 @item width, w
1524 Specify the band-width of a filter in width_type units.
1525
1526 @item channels, c
1527 Specify which channels to filter, by default all available are filtered.
1528 @end table
1529
1530 @subsection Commands
1531
1532 This filter supports the following commands:
1533 @table @option
1534 @item frequency, f
1535 Change allpass frequency.
1536 Syntax for the command is : "@var{frequency}"
1537
1538 @item width_type, t
1539 Change allpass width_type.
1540 Syntax for the command is : "@var{width_type}"
1541
1542 @item width, w
1543 Change allpass width.
1544 Syntax for the command is : "@var{width}"
1545 @end table
1546
1547 @section aloop
1548
1549 Loop audio samples.
1550
1551 The filter accepts the following options:
1552
1553 @table @option
1554 @item loop
1555 Set the number of loops. Setting this value to -1 will result in infinite loops.
1556 Default is 0.
1557
1558 @item size
1559 Set maximal number of samples. Default is 0.
1560
1561 @item start
1562 Set first sample of loop. Default is 0.
1563 @end table
1564
1565 @anchor{amerge}
1566 @section amerge
1567
1568 Merge two or more audio streams into a single multi-channel stream.
1569
1570 The filter accepts the following options:
1571
1572 @table @option
1573
1574 @item inputs
1575 Set the number of inputs. Default is 2.
1576
1577 @end table
1578
1579 If the channel layouts of the inputs are disjoint, and therefore compatible,
1580 the channel layout of the output will be set accordingly and the channels
1581 will be reordered as necessary. If the channel layouts of the inputs are not
1582 disjoint, the output will have all the channels of the first input then all
1583 the channels of the second input, in that order, and the channel layout of
1584 the output will be the default value corresponding to the total number of
1585 channels.
1586
1587 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1588 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1589 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1590 first input, b1 is the first channel of the second input).
1591
1592 On the other hand, if both input are in stereo, the output channels will be
1593 in the default order: a1, a2, b1, b2, and the channel layout will be
1594 arbitrarily set to 4.0, which may or may not be the expected value.
1595
1596 All inputs must have the same sample rate, and format.
1597
1598 If inputs do not have the same duration, the output will stop with the
1599 shortest.
1600
1601 @subsection Examples
1602
1603 @itemize
1604 @item
1605 Merge two mono files into a stereo stream:
1606 @example
1607 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1608 @end example
1609
1610 @item
1611 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1612 @example
1613 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1614 @end example
1615 @end itemize
1616
1617 @section amix
1618
1619 Mixes multiple audio inputs into a single output.
1620
1621 Note that this filter only supports float samples (the @var{amerge}
1622 and @var{pan} audio filters support many formats). If the @var{amix}
1623 input has integer samples then @ref{aresample} will be automatically
1624 inserted to perform the conversion to float samples.
1625
1626 For example
1627 @example
1628 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1629 @end example
1630 will mix 3 input audio streams to a single output with the same duration as the
1631 first input and a dropout transition time of 3 seconds.
1632
1633 It accepts the following parameters:
1634 @table @option
1635
1636 @item inputs
1637 The number of inputs. If unspecified, it defaults to 2.
1638
1639 @item duration
1640 How to determine the end-of-stream.
1641 @table @option
1642
1643 @item longest
1644 The duration of the longest input. (default)
1645
1646 @item shortest
1647 The duration of the shortest input.
1648
1649 @item first
1650 The duration of the first input.
1651
1652 @end table
1653
1654 @item dropout_transition
1655 The transition time, in seconds, for volume renormalization when an input
1656 stream ends. The default value is 2 seconds.
1657
1658 @item weights
1659 Specify weight of each input audio stream as sequence.
1660 Each weight is separated by space. By default all inputs have same weight.
1661 @end table
1662
1663 @section amultiply
1664
1665 Multiply first audio stream with second audio stream and store result
1666 in output audio stream. Multiplication is done by multiplying each
1667 sample from first stream with sample at same position from second stream.
1668
1669 With this element-wise multiplication one can create amplitude fades and
1670 amplitude modulations.
1671
1672 @section anequalizer
1673
1674 High-order parametric multiband equalizer for each channel.
1675
1676 It accepts the following parameters:
1677 @table @option
1678 @item params
1679
1680 This option string is in format:
1681 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1682 Each equalizer band is separated by '|'.
1683
1684 @table @option
1685 @item chn
1686 Set channel number to which equalization will be applied.
1687 If input doesn't have that channel the entry is ignored.
1688
1689 @item f
1690 Set central frequency for band.
1691 If input doesn't have that frequency the entry is ignored.
1692
1693 @item w
1694 Set band width in hertz.
1695
1696 @item g
1697 Set band gain in dB.
1698
1699 @item t
1700 Set filter type for band, optional, can be:
1701
1702 @table @samp
1703 @item 0
1704 Butterworth, this is default.
1705
1706 @item 1
1707 Chebyshev type 1.
1708
1709 @item 2
1710 Chebyshev type 2.
1711 @end table
1712 @end table
1713
1714 @item curves
1715 With this option activated frequency response of anequalizer is displayed
1716 in video stream.
1717
1718 @item size
1719 Set video stream size. Only useful if curves option is activated.
1720
1721 @item mgain
1722 Set max gain that will be displayed. Only useful if curves option is activated.
1723 Setting this to a reasonable value makes it possible to display gain which is derived from
1724 neighbour bands which are too close to each other and thus produce higher gain
1725 when both are activated.
1726
1727 @item fscale
1728 Set frequency scale used to draw frequency response in video output.
1729 Can be linear or logarithmic. Default is logarithmic.
1730
1731 @item colors
1732 Set color for each channel curve which is going to be displayed in video stream.
1733 This is list of color names separated by space or by '|'.
1734 Unrecognised or missing colors will be replaced by white color.
1735 @end table
1736
1737 @subsection Examples
1738
1739 @itemize
1740 @item
1741 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1742 for first 2 channels using Chebyshev type 1 filter:
1743 @example
1744 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1745 @end example
1746 @end itemize
1747
1748 @subsection Commands
1749
1750 This filter supports the following commands:
1751 @table @option
1752 @item change
1753 Alter existing filter parameters.
1754 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1755
1756 @var{fN} is existing filter number, starting from 0, if no such filter is available
1757 error is returned.
1758 @var{freq} set new frequency parameter.
1759 @var{width} set new width parameter in herz.
1760 @var{gain} set new gain parameter in dB.
1761
1762 Full filter invocation with asendcmd may look like this:
1763 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1764 @end table
1765
1766 @section anlmdn
1767
1768 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1769
1770 Each sample is adjusted by looking for other samples with similar contexts. This
1771 context similarity is defined by comparing their surrounding patches of size
1772 @option{p}. Patches are searched in an area of @option{r} around the sample.
1773
1774 The filter accepts the following options.
1775
1776 @table @option
1777 @item s
1778 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1779
1780 @item p
1781 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1782 Default value is 2 milliseconds.
1783
1784 @item r
1785 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1786 Default value is 6 milliseconds.
1787
1788 @item o
1789 Set the output mode.
1790
1791 It accepts the following values:
1792 @table @option
1793 @item i
1794 Pass input unchanged.
1795
1796 @item o
1797 Pass noise filtered out.
1798
1799 @item n
1800 Pass only noise.
1801
1802 Default value is @var{o}.
1803 @end table
1804 @end table
1805
1806 @section anull
1807
1808 Pass the audio source unchanged to the output.
1809
1810 @section apad
1811
1812 Pad the end of an audio stream with silence.
1813
1814 This can be used together with @command{ffmpeg} @option{-shortest} to
1815 extend audio streams to the same length as the video stream.
1816
1817 A description of the accepted options follows.
1818
1819 @table @option
1820 @item packet_size
1821 Set silence packet size. Default value is 4096.
1822
1823 @item pad_len
1824 Set the number of samples of silence to add to the end. After the
1825 value is reached, the stream is terminated. This option is mutually
1826 exclusive with @option{whole_len}.
1827
1828 @item whole_len
1829 Set the minimum total number of samples in the output audio stream. If
1830 the value is longer than the input audio length, silence is added to
1831 the end, until the value is reached. This option is mutually exclusive
1832 with @option{pad_len}.
1833
1834 @item pad_dur
1835 Specify the duration of samples of silence to add. See
1836 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1837 for the accepted syntax. Used only if set to non-zero value.
1838
1839 @item whole_dur
1840 Specify the minimum total duration in the output audio stream. See
1841 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1842 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1843 the input audio length, silence is added to the end, until the value is reached.
1844 This option is mutually exclusive with @option{pad_dur}
1845 @end table
1846
1847 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1848 nor @option{whole_dur} option is set, the filter will add silence to the end of
1849 the input stream indefinitely.
1850
1851 @subsection Examples
1852
1853 @itemize
1854 @item
1855 Add 1024 samples of silence to the end of the input:
1856 @example
1857 apad=pad_len=1024
1858 @end example
1859
1860 @item
1861 Make sure the audio output will contain at least 10000 samples, pad
1862 the input with silence if required:
1863 @example
1864 apad=whole_len=10000
1865 @end example
1866
1867 @item
1868 Use @command{ffmpeg} to pad the audio input with silence, so that the
1869 video stream will always result the shortest and will be converted
1870 until the end in the output file when using the @option{shortest}
1871 option:
1872 @example
1873 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1874 @end example
1875 @end itemize
1876
1877 @section aphaser
1878 Add a phasing effect to the input audio.
1879
1880 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1881 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1882
1883 A description of the accepted parameters follows.
1884
1885 @table @option
1886 @item in_gain
1887 Set input gain. Default is 0.4.
1888
1889 @item out_gain
1890 Set output gain. Default is 0.74
1891
1892 @item delay
1893 Set delay in milliseconds. Default is 3.0.
1894
1895 @item decay
1896 Set decay. Default is 0.4.
1897
1898 @item speed
1899 Set modulation speed in Hz. Default is 0.5.
1900
1901 @item type
1902 Set modulation type. Default is triangular.
1903
1904 It accepts the following values:
1905 @table @samp
1906 @item triangular, t
1907 @item sinusoidal, s
1908 @end table
1909 @end table
1910
1911 @section apulsator
1912
1913 Audio pulsator is something between an autopanner and a tremolo.
1914 But it can produce funny stereo effects as well. Pulsator changes the volume
1915 of the left and right channel based on a LFO (low frequency oscillator) with
1916 different waveforms and shifted phases.
1917 This filter have the ability to define an offset between left and right
1918 channel. An offset of 0 means that both LFO shapes match each other.
1919 The left and right channel are altered equally - a conventional tremolo.
1920 An offset of 50% means that the shape of the right channel is exactly shifted
1921 in phase (or moved backwards about half of the frequency) - pulsator acts as
1922 an autopanner. At 1 both curves match again. Every setting in between moves the
1923 phase shift gapless between all stages and produces some "bypassing" sounds with
1924 sine and triangle waveforms. The more you set the offset near 1 (starting from
1925 the 0.5) the faster the signal passes from the left to the right speaker.
1926
1927 The filter accepts the following options:
1928
1929 @table @option
1930 @item level_in
1931 Set input gain. By default it is 1. Range is [0.015625 - 64].
1932
1933 @item level_out
1934 Set output gain. By default it is 1. Range is [0.015625 - 64].
1935
1936 @item mode
1937 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1938 sawup or sawdown. Default is sine.
1939
1940 @item amount
1941 Set modulation. Define how much of original signal is affected by the LFO.
1942
1943 @item offset_l
1944 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1945
1946 @item offset_r
1947 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1948
1949 @item width
1950 Set pulse width. Default is 1. Allowed range is [0 - 2].
1951
1952 @item timing
1953 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1954
1955 @item bpm
1956 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1957 is set to bpm.
1958
1959 @item ms
1960 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1961 is set to ms.
1962
1963 @item hz
1964 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1965 if timing is set to hz.
1966 @end table
1967
1968 @anchor{aresample}
1969 @section aresample
1970
1971 Resample the input audio to the specified parameters, using the
1972 libswresample library. If none are specified then the filter will
1973 automatically convert between its input and output.
1974
1975 This filter is also able to stretch/squeeze the audio data to make it match
1976 the timestamps or to inject silence / cut out audio to make it match the
1977 timestamps, do a combination of both or do neither.
1978
1979 The filter accepts the syntax
1980 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1981 expresses a sample rate and @var{resampler_options} is a list of
1982 @var{key}=@var{value} pairs, separated by ":". See the
1983 @ref{Resampler Options,,"Resampler Options" section in the
1984 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1985 for the complete list of supported options.
1986
1987 @subsection Examples
1988
1989 @itemize
1990 @item
1991 Resample the input audio to 44100Hz:
1992 @example
1993 aresample=44100
1994 @end example
1995
1996 @item
1997 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1998 samples per second compensation:
1999 @example
2000 aresample=async=1000
2001 @end example
2002 @end itemize
2003
2004 @section areverse
2005
2006 Reverse an audio clip.
2007
2008 Warning: This filter requires memory to buffer the entire clip, so trimming
2009 is suggested.
2010
2011 @subsection Examples
2012
2013 @itemize
2014 @item
2015 Take the first 5 seconds of a clip, and reverse it.
2016 @example
2017 atrim=end=5,areverse
2018 @end example
2019 @end itemize
2020
2021 @section asetnsamples
2022
2023 Set the number of samples per each output audio frame.
2024
2025 The last output packet may contain a different number of samples, as
2026 the filter will flush all the remaining samples when the input audio
2027 signals its end.
2028
2029 The filter accepts the following options:
2030
2031 @table @option
2032
2033 @item nb_out_samples, n
2034 Set the number of frames per each output audio frame. The number is
2035 intended as the number of samples @emph{per each channel}.
2036 Default value is 1024.
2037
2038 @item pad, p
2039 If set to 1, the filter will pad the last audio frame with zeroes, so
2040 that the last frame will contain the same number of samples as the
2041 previous ones. Default value is 1.
2042 @end table
2043
2044 For example, to set the number of per-frame samples to 1234 and
2045 disable padding for the last frame, use:
2046 @example
2047 asetnsamples=n=1234:p=0
2048 @end example
2049
2050 @section asetrate
2051
2052 Set the sample rate without altering the PCM data.
2053 This will result in a change of speed and pitch.
2054
2055 The filter accepts the following options:
2056
2057 @table @option
2058 @item sample_rate, r
2059 Set the output sample rate. Default is 44100 Hz.
2060 @end table
2061
2062 @section ashowinfo
2063
2064 Show a line containing various information for each input audio frame.
2065 The input audio is not modified.
2066
2067 The shown line contains a sequence of key/value pairs of the form
2068 @var{key}:@var{value}.
2069
2070 The following values are shown in the output:
2071
2072 @table @option
2073 @item n
2074 The (sequential) number of the input frame, starting from 0.
2075
2076 @item pts
2077 The presentation timestamp of the input frame, in time base units; the time base
2078 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2079
2080 @item pts_time
2081 The presentation timestamp of the input frame in seconds.
2082
2083 @item pos
2084 position of the frame in the input stream, -1 if this information in
2085 unavailable and/or meaningless (for example in case of synthetic audio)
2086
2087 @item fmt
2088 The sample format.
2089
2090 @item chlayout
2091 The channel layout.
2092
2093 @item rate
2094 The sample rate for the audio frame.
2095
2096 @item nb_samples
2097 The number of samples (per channel) in the frame.
2098
2099 @item checksum
2100 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2101 audio, the data is treated as if all the planes were concatenated.
2102
2103 @item plane_checksums
2104 A list of Adler-32 checksums for each data plane.
2105 @end table
2106
2107 @anchor{astats}
2108 @section astats
2109
2110 Display time domain statistical information about the audio channels.
2111 Statistics are calculated and displayed for each audio channel and,
2112 where applicable, an overall figure is also given.
2113
2114 It accepts the following option:
2115 @table @option
2116 @item length
2117 Short window length in seconds, used for peak and trough RMS measurement.
2118 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2119
2120 @item metadata
2121
2122 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2123 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2124 disabled.
2125
2126 Available keys for each channel are:
2127 DC_offset
2128 Min_level
2129 Max_level
2130 Min_difference
2131 Max_difference
2132 Mean_difference
2133 RMS_difference
2134 Peak_level
2135 RMS_peak
2136 RMS_trough
2137 Crest_factor
2138 Flat_factor
2139 Peak_count
2140 Bit_depth
2141 Dynamic_range
2142 Zero_crossings
2143 Zero_crossings_rate
2144
2145 and for Overall:
2146 DC_offset
2147 Min_level
2148 Max_level
2149 Min_difference
2150 Max_difference
2151 Mean_difference
2152 RMS_difference
2153 Peak_level
2154 RMS_level
2155 RMS_peak
2156 RMS_trough
2157 Flat_factor
2158 Peak_count
2159 Bit_depth
2160 Number_of_samples
2161
2162 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2163 this @code{lavfi.astats.Overall.Peak_count}.
2164
2165 For description what each key means read below.
2166
2167 @item reset
2168 Set number of frame after which stats are going to be recalculated.
2169 Default is disabled.
2170
2171 @item measure_perchannel
2172 Select the entries which need to be measured per channel. The metadata keys can
2173 be used as flags, default is @option{all} which measures everything.
2174 @option{none} disables all per channel measurement.
2175
2176 @item measure_overall
2177 Select the entries which need to be measured overall. The metadata keys can
2178 be used as flags, default is @option{all} which measures everything.
2179 @option{none} disables all overall measurement.
2180
2181 @end table
2182
2183 A description of each shown parameter follows:
2184
2185 @table @option
2186 @item DC offset
2187 Mean amplitude displacement from zero.
2188
2189 @item Min level
2190 Minimal sample level.
2191
2192 @item Max level
2193 Maximal sample level.
2194
2195 @item Min difference
2196 Minimal difference between two consecutive samples.
2197
2198 @item Max difference
2199 Maximal difference between two consecutive samples.
2200
2201 @item Mean difference
2202 Mean difference between two consecutive samples.
2203 The average of each difference between two consecutive samples.
2204
2205 @item RMS difference
2206 Root Mean Square difference between two consecutive samples.
2207
2208 @item Peak level dB
2209 @item RMS level dB
2210 Standard peak and RMS level measured in dBFS.
2211
2212 @item RMS peak dB
2213 @item RMS trough dB
2214 Peak and trough values for RMS level measured over a short window.
2215
2216 @item Crest factor
2217 Standard ratio of peak to RMS level (note: not in dB).
2218
2219 @item Flat factor
2220 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2221 (i.e. either @var{Min level} or @var{Max level}).
2222
2223 @item Peak count
2224 Number of occasions (not the number of samples) that the signal attained either
2225 @var{Min level} or @var{Max level}.
2226
2227 @item Bit depth
2228 Overall bit depth of audio. Number of bits used for each sample.
2229
2230 @item Dynamic range
2231 Measured dynamic range of audio in dB.
2232
2233 @item Zero crossings
2234 Number of points where the waveform crosses the zero level axis.
2235
2236 @item Zero crossings rate
2237 Rate of Zero crossings and number of audio samples.
2238 @end table
2239
2240 @section atempo
2241
2242 Adjust audio tempo.
2243
2244 The filter accepts exactly one parameter, the audio tempo. If not
2245 specified then the filter will assume nominal 1.0 tempo. Tempo must
2246 be in the [0.5, 100.0] range.
2247
2248 Note that tempo greater than 2 will skip some samples rather than
2249 blend them in.  If for any reason this is a concern it is always
2250 possible to daisy-chain several instances of atempo to achieve the
2251 desired product tempo.
2252
2253 @subsection Examples
2254
2255 @itemize
2256 @item
2257 Slow down audio to 80% tempo:
2258 @example
2259 atempo=0.8
2260 @end example
2261
2262 @item
2263 To speed up audio to 300% tempo:
2264 @example
2265 atempo=3
2266 @end example
2267
2268 @item
2269 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2270 @example
2271 atempo=sqrt(3),atempo=sqrt(3)
2272 @end example
2273 @end itemize
2274
2275 @section atrim
2276
2277 Trim the input so that the output contains one continuous subpart of the input.
2278
2279 It accepts the following parameters:
2280 @table @option
2281 @item start
2282 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2283 sample with the timestamp @var{start} will be the first sample in the output.
2284
2285 @item end
2286 Specify time of the first audio sample that will be dropped, i.e. the
2287 audio sample immediately preceding the one with the timestamp @var{end} will be
2288 the last sample in the output.
2289
2290 @item start_pts
2291 Same as @var{start}, except this option sets the start timestamp in samples
2292 instead of seconds.
2293
2294 @item end_pts
2295 Same as @var{end}, except this option sets the end timestamp in samples instead
2296 of seconds.
2297
2298 @item duration
2299 The maximum duration of the output in seconds.
2300
2301 @item start_sample
2302 The number of the first sample that should be output.
2303
2304 @item end_sample
2305 The number of the first sample that should be dropped.
2306 @end table
2307
2308 @option{start}, @option{end}, and @option{duration} are expressed as time
2309 duration specifications; see
2310 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2311
2312 Note that the first two sets of the start/end options and the @option{duration}
2313 option look at the frame timestamp, while the _sample options simply count the
2314 samples that pass through the filter. So start/end_pts and start/end_sample will
2315 give different results when the timestamps are wrong, inexact or do not start at
2316 zero. Also note that this filter does not modify the timestamps. If you wish
2317 to have the output timestamps start at zero, insert the asetpts filter after the
2318 atrim filter.
2319
2320 If multiple start or end options are set, this filter tries to be greedy and
2321 keep all samples that match at least one of the specified constraints. To keep
2322 only the part that matches all the constraints at once, chain multiple atrim
2323 filters.
2324
2325 The defaults are such that all the input is kept. So it is possible to set e.g.
2326 just the end values to keep everything before the specified time.
2327
2328 Examples:
2329 @itemize
2330 @item
2331 Drop everything except the second minute of input:
2332 @example
2333 ffmpeg -i INPUT -af atrim=60:120
2334 @end example
2335
2336 @item
2337 Keep only the first 1000 samples:
2338 @example
2339 ffmpeg -i INPUT -af atrim=end_sample=1000
2340 @end example
2341
2342 @end itemize
2343
2344 @section bandpass
2345
2346 Apply a two-pole Butterworth band-pass filter with central
2347 frequency @var{frequency}, and (3dB-point) band-width width.
2348 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2349 instead of the default: constant 0dB peak gain.
2350 The filter roll off at 6dB per octave (20dB per decade).
2351
2352 The filter accepts the following options:
2353
2354 @table @option
2355 @item frequency, f
2356 Set the filter's central frequency. Default is @code{3000}.
2357
2358 @item csg
2359 Constant skirt gain if set to 1. Defaults to 0.
2360
2361 @item width_type, t
2362 Set method to specify band-width of filter.
2363 @table @option
2364 @item h
2365 Hz
2366 @item q
2367 Q-Factor
2368 @item o
2369 octave
2370 @item s
2371 slope
2372 @item k
2373 kHz
2374 @end table
2375
2376 @item width, w
2377 Specify the band-width of a filter in width_type units.
2378
2379 @item channels, c
2380 Specify which channels to filter, by default all available are filtered.
2381 @end table
2382
2383 @subsection Commands
2384
2385 This filter supports the following commands:
2386 @table @option
2387 @item frequency, f
2388 Change bandpass frequency.
2389 Syntax for the command is : "@var{frequency}"
2390
2391 @item width_type, t
2392 Change bandpass width_type.
2393 Syntax for the command is : "@var{width_type}"
2394
2395 @item width, w
2396 Change bandpass width.
2397 Syntax for the command is : "@var{width}"
2398 @end table
2399
2400 @section bandreject
2401
2402 Apply a two-pole Butterworth band-reject filter with central
2403 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2404 The filter roll off at 6dB per octave (20dB per decade).
2405
2406 The filter accepts the following options:
2407
2408 @table @option
2409 @item frequency, f
2410 Set the filter's central frequency. Default is @code{3000}.
2411
2412 @item width_type, t
2413 Set method to specify band-width of filter.
2414 @table @option
2415 @item h
2416 Hz
2417 @item q
2418 Q-Factor
2419 @item o
2420 octave
2421 @item s
2422 slope
2423 @item k
2424 kHz
2425 @end table
2426
2427 @item width, w
2428 Specify the band-width of a filter in width_type units.
2429
2430 @item channels, c
2431 Specify which channels to filter, by default all available are filtered.
2432 @end table
2433
2434 @subsection Commands
2435
2436 This filter supports the following commands:
2437 @table @option
2438 @item frequency, f
2439 Change bandreject frequency.
2440 Syntax for the command is : "@var{frequency}"
2441
2442 @item width_type, t
2443 Change bandreject width_type.
2444 Syntax for the command is : "@var{width_type}"
2445
2446 @item width, w
2447 Change bandreject width.
2448 Syntax for the command is : "@var{width}"
2449 @end table
2450
2451 @section bass, lowshelf
2452
2453 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2454 shelving filter with a response similar to that of a standard
2455 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2456
2457 The filter accepts the following options:
2458
2459 @table @option
2460 @item gain, g
2461 Give the gain at 0 Hz. Its useful range is about -20
2462 (for a large cut) to +20 (for a large boost).
2463 Beware of clipping when using a positive gain.
2464
2465 @item frequency, f
2466 Set the filter's central frequency and so can be used
2467 to extend or reduce the frequency range to be boosted or cut.
2468 The default value is @code{100} Hz.
2469
2470 @item width_type, t
2471 Set method to specify band-width of filter.
2472 @table @option
2473 @item h
2474 Hz
2475 @item q
2476 Q-Factor
2477 @item o
2478 octave
2479 @item s
2480 slope
2481 @item k
2482 kHz
2483 @end table
2484
2485 @item width, w
2486 Determine how steep is the filter's shelf transition.
2487
2488 @item channels, c
2489 Specify which channels to filter, by default all available are filtered.
2490 @end table
2491
2492 @subsection Commands
2493
2494 This filter supports the following commands:
2495 @table @option
2496 @item frequency, f
2497 Change bass frequency.
2498 Syntax for the command is : "@var{frequency}"
2499
2500 @item width_type, t
2501 Change bass width_type.
2502 Syntax for the command is : "@var{width_type}"
2503
2504 @item width, w
2505 Change bass width.
2506 Syntax for the command is : "@var{width}"
2507
2508 @item gain, g
2509 Change bass gain.
2510 Syntax for the command is : "@var{gain}"
2511 @end table
2512
2513 @section biquad
2514
2515 Apply a biquad IIR filter with the given coefficients.
2516 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2517 are the numerator and denominator coefficients respectively.
2518 and @var{channels}, @var{c} specify which channels to filter, by default all
2519 available are filtered.
2520
2521 @subsection Commands
2522
2523 This filter supports the following commands:
2524 @table @option
2525 @item a0
2526 @item a1
2527 @item a2
2528 @item b0
2529 @item b1
2530 @item b2
2531 Change biquad parameter.
2532 Syntax for the command is : "@var{value}"
2533 @end table
2534
2535 @section bs2b
2536 Bauer stereo to binaural transformation, which improves headphone listening of
2537 stereo audio records.
2538
2539 To enable compilation of this filter you need to configure FFmpeg with
2540 @code{--enable-libbs2b}.
2541
2542 It accepts the following parameters:
2543 @table @option
2544
2545 @item profile
2546 Pre-defined crossfeed level.
2547 @table @option
2548
2549 @item default
2550 Default level (fcut=700, feed=50).
2551
2552 @item cmoy
2553 Chu Moy circuit (fcut=700, feed=60).
2554
2555 @item jmeier
2556 Jan Meier circuit (fcut=650, feed=95).
2557
2558 @end table
2559
2560 @item fcut
2561 Cut frequency (in Hz).
2562
2563 @item feed
2564 Feed level (in Hz).
2565
2566 @end table
2567
2568 @section channelmap
2569
2570 Remap input channels to new locations.
2571
2572 It accepts the following parameters:
2573 @table @option
2574 @item map
2575 Map channels from input to output. The argument is a '|'-separated list of
2576 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2577 @var{in_channel} form. @var{in_channel} can be either the name of the input
2578 channel (e.g. FL for front left) or its index in the input channel layout.
2579 @var{out_channel} is the name of the output channel or its index in the output
2580 channel layout. If @var{out_channel} is not given then it is implicitly an
2581 index, starting with zero and increasing by one for each mapping.
2582
2583 @item channel_layout
2584 The channel layout of the output stream.
2585 @end table
2586
2587 If no mapping is present, the filter will implicitly map input channels to
2588 output channels, preserving indices.
2589
2590 @subsection Examples
2591
2592 @itemize
2593 @item
2594 For example, assuming a 5.1+downmix input MOV file,
2595 @example
2596 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2597 @end example
2598 will create an output WAV file tagged as stereo from the downmix channels of
2599 the input.
2600
2601 @item
2602 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2603 @example
2604 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2605 @end example
2606 @end itemize
2607
2608 @section channelsplit
2609
2610 Split each channel from an input audio stream into a separate output stream.
2611
2612 It accepts the following parameters:
2613 @table @option
2614 @item channel_layout
2615 The channel layout of the input stream. The default is "stereo".
2616 @item channels
2617 A channel layout describing the channels to be extracted as separate output streams
2618 or "all" to extract each input channel as a separate stream. The default is "all".
2619
2620 Choosing channels not present in channel layout in the input will result in an error.
2621 @end table
2622
2623 @subsection Examples
2624
2625 @itemize
2626 @item
2627 For example, assuming a stereo input MP3 file,
2628 @example
2629 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2630 @end example
2631 will create an output Matroska file with two audio streams, one containing only
2632 the left channel and the other the right channel.
2633
2634 @item
2635 Split a 5.1 WAV file into per-channel files:
2636 @example
2637 ffmpeg -i in.wav -filter_complex
2638 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2639 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2640 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2641 side_right.wav
2642 @end example
2643
2644 @item
2645 Extract only LFE from a 5.1 WAV file:
2646 @example
2647 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2648 -map '[LFE]' lfe.wav
2649 @end example
2650 @end itemize
2651
2652 @section chorus
2653 Add a chorus effect to the audio.
2654
2655 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2656
2657 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2658 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2659 The modulation depth defines the range the modulated delay is played before or after
2660 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2661 sound tuned around the original one, like in a chorus where some vocals are slightly
2662 off key.
2663
2664 It accepts the following parameters:
2665 @table @option
2666 @item in_gain
2667 Set input gain. Default is 0.4.
2668
2669 @item out_gain
2670 Set output gain. Default is 0.4.
2671
2672 @item delays
2673 Set delays. A typical delay is around 40ms to 60ms.
2674
2675 @item decays
2676 Set decays.
2677
2678 @item speeds
2679 Set speeds.
2680
2681 @item depths
2682 Set depths.
2683 @end table
2684
2685 @subsection Examples
2686
2687 @itemize
2688 @item
2689 A single delay:
2690 @example
2691 chorus=0.7:0.9:55:0.4:0.25:2
2692 @end example
2693
2694 @item
2695 Two delays:
2696 @example
2697 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2698 @end example
2699
2700 @item
2701 Fuller sounding chorus with three delays:
2702 @example
2703 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
2704 @end example
2705 @end itemize
2706
2707 @section compand
2708 Compress or expand the audio's dynamic range.
2709
2710 It accepts the following parameters:
2711
2712 @table @option
2713
2714 @item attacks
2715 @item decays
2716 A list of times in seconds for each channel over which the instantaneous level
2717 of the input signal is averaged to determine its volume. @var{attacks} refers to
2718 increase of volume and @var{decays} refers to decrease of volume. For most
2719 situations, the attack time (response to the audio getting louder) should be
2720 shorter than the decay time, because the human ear is more sensitive to sudden
2721 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2722 a typical value for decay is 0.8 seconds.
2723 If specified number of attacks & decays is lower than number of channels, the last
2724 set attack/decay will be used for all remaining channels.
2725
2726 @item points
2727 A list of points for the transfer function, specified in dB relative to the
2728 maximum possible signal amplitude. Each key points list must be defined using
2729 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2730 @code{x0/y0 x1/y1 x2/y2 ....}
2731
2732 The input values must be in strictly increasing order but the transfer function
2733 does not have to be monotonically rising. The point @code{0/0} is assumed but
2734 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2735 function are @code{-70/-70|-60/-20|1/0}.
2736
2737 @item soft-knee
2738 Set the curve radius in dB for all joints. It defaults to 0.01.
2739
2740 @item gain
2741 Set the additional gain in dB to be applied at all points on the transfer
2742 function. This allows for easy adjustment of the overall gain.
2743 It defaults to 0.
2744
2745 @item volume
2746 Set an initial volume, in dB, to be assumed for each channel when filtering
2747 starts. This permits the user to supply a nominal level initially, so that, for
2748 example, a very large gain is not applied to initial signal levels before the
2749 companding has begun to operate. A typical value for audio which is initially
2750 quiet is -90 dB. It defaults to 0.
2751
2752 @item delay
2753 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2754 delayed before being fed to the volume adjuster. Specifying a delay
2755 approximately equal to the attack/decay times allows the filter to effectively
2756 operate in predictive rather than reactive mode. It defaults to 0.
2757
2758 @end table
2759
2760 @subsection Examples
2761
2762 @itemize
2763 @item
2764 Make music with both quiet and loud passages suitable for listening to in a
2765 noisy environment:
2766 @example
2767 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2768 @end example
2769
2770 Another example for audio with whisper and explosion parts:
2771 @example
2772 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2773 @end example
2774
2775 @item
2776 A noise gate for when the noise is at a lower level than the signal:
2777 @example
2778 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2779 @end example
2780
2781 @item
2782 Here is another noise gate, this time for when the noise is at a higher level
2783 than the signal (making it, in some ways, similar to squelch):
2784 @example
2785 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2786 @end example
2787
2788 @item
2789 2:1 compression starting at -6dB:
2790 @example
2791 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2792 @end example
2793
2794 @item
2795 2:1 compression starting at -9dB:
2796 @example
2797 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2798 @end example
2799
2800 @item
2801 2:1 compression starting at -12dB:
2802 @example
2803 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2804 @end example
2805
2806 @item
2807 2:1 compression starting at -18dB:
2808 @example
2809 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2810 @end example
2811
2812 @item
2813 3:1 compression starting at -15dB:
2814 @example
2815 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2816 @end example
2817
2818 @item
2819 Compressor/Gate:
2820 @example
2821 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2822 @end example
2823
2824 @item
2825 Expander:
2826 @example
2827 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2828 @end example
2829
2830 @item
2831 Hard limiter at -6dB:
2832 @example
2833 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2834 @end example
2835
2836 @item
2837 Hard limiter at -12dB:
2838 @example
2839 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2840 @end example
2841
2842 @item
2843 Hard noise gate at -35 dB:
2844 @example
2845 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2846 @end example
2847
2848 @item
2849 Soft limiter:
2850 @example
2851 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2852 @end example
2853 @end itemize
2854
2855 @section compensationdelay
2856
2857 Compensation Delay Line is a metric based delay to compensate differing
2858 positions of microphones or speakers.
2859
2860 For example, you have recorded guitar with two microphones placed in
2861 different location. Because the front of sound wave has fixed speed in
2862 normal conditions, the phasing of microphones can vary and depends on
2863 their location and interposition. The best sound mix can be achieved when
2864 these microphones are in phase (synchronized). Note that distance of
2865 ~30 cm between microphones makes one microphone to capture signal in
2866 antiphase to another microphone. That makes the final mix sounding moody.
2867 This filter helps to solve phasing problems by adding different delays
2868 to each microphone track and make them synchronized.
2869
2870 The best result can be reached when you take one track as base and
2871 synchronize other tracks one by one with it.
2872 Remember that synchronization/delay tolerance depends on sample rate, too.
2873 Higher sample rates will give more tolerance.
2874
2875 It accepts the following parameters:
2876
2877 @table @option
2878 @item mm
2879 Set millimeters distance. This is compensation distance for fine tuning.
2880 Default is 0.
2881
2882 @item cm
2883 Set cm distance. This is compensation distance for tightening distance setup.
2884 Default is 0.
2885
2886 @item m
2887 Set meters distance. This is compensation distance for hard distance setup.
2888 Default is 0.
2889
2890 @item dry
2891 Set dry amount. Amount of unprocessed (dry) signal.
2892 Default is 0.
2893
2894 @item wet
2895 Set wet amount. Amount of processed (wet) signal.
2896 Default is 1.
2897
2898 @item temp
2899 Set temperature degree in Celsius. This is the temperature of the environment.
2900 Default is 20.
2901 @end table
2902
2903 @section crossfeed
2904 Apply headphone crossfeed filter.
2905
2906 Crossfeed is the process of blending the left and right channels of stereo
2907 audio recording.
2908 It is mainly used to reduce extreme stereo separation of low frequencies.
2909
2910 The intent is to produce more speaker like sound to the listener.
2911
2912 The filter accepts the following options:
2913
2914 @table @option
2915 @item strength
2916 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
2917 This sets gain of low shelf filter for side part of stereo image.
2918 Default is -6dB. Max allowed is -30db when strength is set to 1.
2919
2920 @item range
2921 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
2922 This sets cut off frequency of low shelf filter. Default is cut off near
2923 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
2924
2925 @item level_in
2926 Set input gain. Default is 0.9.
2927
2928 @item level_out
2929 Set output gain. Default is 1.
2930 @end table
2931
2932 @section crystalizer
2933 Simple algorithm to expand audio dynamic range.
2934
2935 The filter accepts the following options:
2936
2937 @table @option
2938 @item i
2939 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2940 (unchanged sound) to 10.0 (maximum effect).
2941
2942 @item c
2943 Enable clipping. By default is enabled.
2944 @end table
2945
2946 @section dcshift
2947 Apply a DC shift to the audio.
2948
2949 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2950 in the recording chain) from the audio. The effect of a DC offset is reduced
2951 headroom and hence volume. The @ref{astats} filter can be used to determine if
2952 a signal has a DC offset.
2953
2954 @table @option
2955 @item shift
2956 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2957 the audio.
2958
2959 @item limitergain
2960 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2961 used to prevent clipping.
2962 @end table
2963
2964 @section drmeter
2965 Measure audio dynamic range.
2966
2967 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
2968 is found in transition material. And anything less that 8 have very poor dynamics
2969 and is very compressed.
2970
2971 The filter accepts the following options:
2972
2973 @table @option
2974 @item length
2975 Set window length in seconds used to split audio into segments of equal length.
2976 Default is 3 seconds.
2977 @end table
2978
2979 @section dynaudnorm
2980 Dynamic Audio Normalizer.
2981
2982 This filter applies a certain amount of gain to the input audio in order
2983 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2984 contrast to more "simple" normalization algorithms, the Dynamic Audio
2985 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2986 This allows for applying extra gain to the "quiet" sections of the audio
2987 while avoiding distortions or clipping the "loud" sections. In other words:
2988 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2989 sections, in the sense that the volume of each section is brought to the
2990 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2991 this goal *without* applying "dynamic range compressing". It will retain 100%
2992 of the dynamic range *within* each section of the audio file.
2993
2994 @table @option
2995 @item f
2996 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2997 Default is 500 milliseconds.
2998 The Dynamic Audio Normalizer processes the input audio in small chunks,
2999 referred to as frames. This is required, because a peak magnitude has no
3000 meaning for just a single sample value. Instead, we need to determine the
3001 peak magnitude for a contiguous sequence of sample values. While a "standard"
3002 normalizer would simply use the peak magnitude of the complete file, the
3003 Dynamic Audio Normalizer determines the peak magnitude individually for each
3004 frame. The length of a frame is specified in milliseconds. By default, the
3005 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3006 been found to give good results with most files.
3007 Note that the exact frame length, in number of samples, will be determined
3008 automatically, based on the sampling rate of the individual input audio file.
3009
3010 @item g
3011 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3012 number. Default is 31.
3013 Probably the most important parameter of the Dynamic Audio Normalizer is the
3014 @code{window size} of the Gaussian smoothing filter. The filter's window size
3015 is specified in frames, centered around the current frame. For the sake of
3016 simplicity, this must be an odd number. Consequently, the default value of 31
3017 takes into account the current frame, as well as the 15 preceding frames and
3018 the 15 subsequent frames. Using a larger window results in a stronger
3019 smoothing effect and thus in less gain variation, i.e. slower gain
3020 adaptation. Conversely, using a smaller window results in a weaker smoothing
3021 effect and thus in more gain variation, i.e. faster gain adaptation.
3022 In other words, the more you increase this value, the more the Dynamic Audio
3023 Normalizer will behave like a "traditional" normalization filter. On the
3024 contrary, the more you decrease this value, the more the Dynamic Audio
3025 Normalizer will behave like a dynamic range compressor.
3026
3027 @item p
3028 Set the target peak value. This specifies the highest permissible magnitude
3029 level for the normalized audio input. This filter will try to approach the
3030 target peak magnitude as closely as possible, but at the same time it also
3031 makes sure that the normalized signal will never exceed the peak magnitude.
3032 A frame's maximum local gain factor is imposed directly by the target peak
3033 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3034 It is not recommended to go above this value.
3035
3036 @item m
3037 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3038 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3039 factor for each input frame, i.e. the maximum gain factor that does not
3040 result in clipping or distortion. The maximum gain factor is determined by
3041 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3042 additionally bounds the frame's maximum gain factor by a predetermined
3043 (global) maximum gain factor. This is done in order to avoid excessive gain
3044 factors in "silent" or almost silent frames. By default, the maximum gain
3045 factor is 10.0, For most inputs the default value should be sufficient and
3046 it usually is not recommended to increase this value. Though, for input
3047 with an extremely low overall volume level, it may be necessary to allow even
3048 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3049 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3050 Instead, a "sigmoid" threshold function will be applied. This way, the
3051 gain factors will smoothly approach the threshold value, but never exceed that
3052 value.
3053
3054 @item r
3055 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3056 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3057 This means that the maximum local gain factor for each frame is defined
3058 (only) by the frame's highest magnitude sample. This way, the samples can
3059 be amplified as much as possible without exceeding the maximum signal
3060 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3061 Normalizer can also take into account the frame's root mean square,
3062 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3063 determine the power of a time-varying signal. It is therefore considered
3064 that the RMS is a better approximation of the "perceived loudness" than
3065 just looking at the signal's peak magnitude. Consequently, by adjusting all
3066 frames to a constant RMS value, a uniform "perceived loudness" can be
3067 established. If a target RMS value has been specified, a frame's local gain
3068 factor is defined as the factor that would result in exactly that RMS value.
3069 Note, however, that the maximum local gain factor is still restricted by the
3070 frame's highest magnitude sample, in order to prevent clipping.
3071
3072 @item n
3073 Enable channels coupling. By default is enabled.
3074 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3075 amount. This means the same gain factor will be applied to all channels, i.e.
3076 the maximum possible gain factor is determined by the "loudest" channel.
3077 However, in some recordings, it may happen that the volume of the different
3078 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3079 In this case, this option can be used to disable the channel coupling. This way,
3080 the gain factor will be determined independently for each channel, depending
3081 only on the individual channel's highest magnitude sample. This allows for
3082 harmonizing the volume of the different channels.
3083
3084 @item c
3085 Enable DC bias correction. By default is disabled.
3086 An audio signal (in the time domain) is a sequence of sample values.
3087 In the Dynamic Audio Normalizer these sample values are represented in the
3088 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3089 audio signal, or "waveform", should be centered around the zero point.
3090 That means if we calculate the mean value of all samples in a file, or in a
3091 single frame, then the result should be 0.0 or at least very close to that
3092 value. If, however, there is a significant deviation of the mean value from
3093 0.0, in either positive or negative direction, this is referred to as a
3094 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3095 Audio Normalizer provides optional DC bias correction.
3096 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3097 the mean value, or "DC correction" offset, of each input frame and subtract
3098 that value from all of the frame's sample values which ensures those samples
3099 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3100 boundaries, the DC correction offset values will be interpolated smoothly
3101 between neighbouring frames.
3102
3103 @item b
3104 Enable alternative boundary mode. By default is disabled.
3105 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3106 around each frame. This includes the preceding frames as well as the
3107 subsequent frames. However, for the "boundary" frames, located at the very
3108 beginning and at the very end of the audio file, not all neighbouring
3109 frames are available. In particular, for the first few frames in the audio
3110 file, the preceding frames are not known. And, similarly, for the last few
3111 frames in the audio file, the subsequent frames are not known. Thus, the
3112 question arises which gain factors should be assumed for the missing frames
3113 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3114 to deal with this situation. The default boundary mode assumes a gain factor
3115 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3116 "fade out" at the beginning and at the end of the input, respectively.
3117
3118 @item s
3119 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3120 By default, the Dynamic Audio Normalizer does not apply "traditional"
3121 compression. This means that signal peaks will not be pruned and thus the
3122 full dynamic range will be retained within each local neighbourhood. However,
3123 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3124 normalization algorithm with a more "traditional" compression.
3125 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3126 (thresholding) function. If (and only if) the compression feature is enabled,
3127 all input frames will be processed by a soft knee thresholding function prior
3128 to the actual normalization process. Put simply, the thresholding function is
3129 going to prune all samples whose magnitude exceeds a certain threshold value.
3130 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3131 value. Instead, the threshold value will be adjusted for each individual
3132 frame.
3133 In general, smaller parameters result in stronger compression, and vice versa.
3134 Values below 3.0 are not recommended, because audible distortion may appear.
3135 @end table
3136
3137 @section earwax
3138
3139 Make audio easier to listen to on headphones.
3140
3141 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3142 so that when listened to on headphones the stereo image is moved from
3143 inside your head (standard for headphones) to outside and in front of
3144 the listener (standard for speakers).
3145
3146 Ported from SoX.
3147
3148 @section equalizer
3149
3150 Apply a two-pole peaking equalisation (EQ) filter. With this
3151 filter, the signal-level at and around a selected frequency can
3152 be increased or decreased, whilst (unlike bandpass and bandreject
3153 filters) that at all other frequencies is unchanged.
3154
3155 In order to produce complex equalisation curves, this filter can
3156 be given several times, each with a different central frequency.
3157
3158 The filter accepts the following options:
3159
3160 @table @option
3161 @item frequency, f
3162 Set the filter's central frequency in Hz.
3163
3164 @item width_type, t
3165 Set method to specify band-width of filter.
3166 @table @option
3167 @item h
3168 Hz
3169 @item q
3170 Q-Factor
3171 @item o
3172 octave
3173 @item s
3174 slope
3175 @item k
3176 kHz
3177 @end table
3178
3179 @item width, w
3180 Specify the band-width of a filter in width_type units.
3181
3182 @item gain, g
3183 Set the required gain or attenuation in dB.
3184 Beware of clipping when using a positive gain.
3185
3186 @item channels, c
3187 Specify which channels to filter, by default all available are filtered.
3188 @end table
3189
3190 @subsection Examples
3191 @itemize
3192 @item
3193 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3194 @example
3195 equalizer=f=1000:t=h:width=200:g=-10
3196 @end example
3197
3198 @item
3199 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3200 @example
3201 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3202 @end example
3203 @end itemize
3204
3205 @subsection Commands
3206
3207 This filter supports the following commands:
3208 @table @option
3209 @item frequency, f
3210 Change equalizer frequency.
3211 Syntax for the command is : "@var{frequency}"
3212
3213 @item width_type, t
3214 Change equalizer width_type.
3215 Syntax for the command is : "@var{width_type}"
3216
3217 @item width, w
3218 Change equalizer width.
3219 Syntax for the command is : "@var{width}"
3220
3221 @item gain, g
3222 Change equalizer gain.
3223 Syntax for the command is : "@var{gain}"
3224 @end table
3225
3226 @section extrastereo
3227
3228 Linearly increases the difference between left and right channels which
3229 adds some sort of "live" effect to playback.
3230
3231 The filter accepts the following options:
3232
3233 @table @option
3234 @item m
3235 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3236 (average of both channels), with 1.0 sound will be unchanged, with
3237 -1.0 left and right channels will be swapped.
3238
3239 @item c
3240 Enable clipping. By default is enabled.
3241 @end table
3242
3243 @section firequalizer
3244 Apply FIR Equalization using arbitrary frequency response.
3245
3246 The filter accepts the following option:
3247
3248 @table @option
3249 @item gain
3250 Set gain curve equation (in dB). The expression can contain variables:
3251 @table @option
3252 @item f
3253 the evaluated frequency
3254 @item sr
3255 sample rate
3256 @item ch
3257 channel number, set to 0 when multichannels evaluation is disabled
3258 @item chid
3259 channel id, see libavutil/channel_layout.h, set to the first channel id when
3260 multichannels evaluation is disabled
3261 @item chs
3262 number of channels
3263 @item chlayout
3264 channel_layout, see libavutil/channel_layout.h
3265
3266 @end table
3267 and functions:
3268 @table @option
3269 @item gain_interpolate(f)
3270 interpolate gain on frequency f based on gain_entry
3271 @item cubic_interpolate(f)
3272 same as gain_interpolate, but smoother
3273 @end table
3274 This option is also available as command. Default is @code{gain_interpolate(f)}.
3275
3276 @item gain_entry
3277 Set gain entry for gain_interpolate function. The expression can
3278 contain functions:
3279 @table @option
3280 @item entry(f, g)
3281 store gain entry at frequency f with value g
3282 @end table
3283 This option is also available as command.
3284
3285 @item delay
3286 Set filter delay in seconds. Higher value means more accurate.
3287 Default is @code{0.01}.
3288
3289 @item accuracy
3290 Set filter accuracy in Hz. Lower value means more accurate.
3291 Default is @code{5}.
3292
3293 @item wfunc
3294 Set window function. Acceptable values are:
3295 @table @option
3296 @item rectangular
3297 rectangular window, useful when gain curve is already smooth
3298 @item hann
3299 hann window (default)
3300 @item hamming
3301 hamming window
3302 @item blackman
3303 blackman window
3304 @item nuttall3
3305 3-terms continuous 1st derivative nuttall window
3306 @item mnuttall3
3307 minimum 3-terms discontinuous nuttall window
3308 @item nuttall
3309 4-terms continuous 1st derivative nuttall window
3310 @item bnuttall
3311 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3312 @item bharris
3313 blackman-harris window
3314 @item tukey
3315 tukey window
3316 @end table
3317
3318 @item fixed
3319 If enabled, use fixed number of audio samples. This improves speed when
3320 filtering with large delay. Default is disabled.
3321
3322 @item multi
3323 Enable multichannels evaluation on gain. Default is disabled.
3324
3325 @item zero_phase
3326 Enable zero phase mode by subtracting timestamp to compensate delay.
3327 Default is disabled.
3328
3329 @item scale
3330 Set scale used by gain. Acceptable values are:
3331 @table @option
3332 @item linlin
3333 linear frequency, linear gain
3334 @item linlog
3335 linear frequency, logarithmic (in dB) gain (default)
3336 @item loglin
3337 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3338 @item loglog
3339 logarithmic frequency, logarithmic gain
3340 @end table
3341
3342 @item dumpfile
3343 Set file for dumping, suitable for gnuplot.
3344
3345 @item dumpscale
3346 Set scale for dumpfile. Acceptable values are same with scale option.
3347 Default is linlog.
3348
3349 @item fft2
3350 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3351 Default is disabled.
3352
3353 @item min_phase
3354 Enable minimum phase impulse response. Default is disabled.
3355 @end table
3356
3357 @subsection Examples
3358 @itemize
3359 @item
3360 lowpass at 1000 Hz:
3361 @example
3362 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3363 @end example
3364 @item
3365 lowpass at 1000 Hz with gain_entry:
3366 @example
3367 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3368 @end example
3369 @item
3370 custom equalization:
3371 @example
3372 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3373 @end example
3374 @item
3375 higher delay with zero phase to compensate delay:
3376 @example
3377 firequalizer=delay=0.1:fixed=on:zero_phase=on
3378 @end example
3379 @item
3380 lowpass on left channel, highpass on right channel:
3381 @example
3382 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3383 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3384 @end example
3385 @end itemize
3386
3387 @section flanger
3388 Apply a flanging effect to the audio.
3389
3390 The filter accepts the following options:
3391
3392 @table @option
3393 @item delay
3394 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3395
3396 @item depth
3397 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3398
3399 @item regen
3400 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3401 Default value is 0.
3402
3403 @item width
3404 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3405 Default value is 71.
3406
3407 @item speed
3408 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3409
3410 @item shape
3411 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3412 Default value is @var{sinusoidal}.
3413
3414 @item phase
3415 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3416 Default value is 25.
3417
3418 @item interp
3419 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3420 Default is @var{linear}.
3421 @end table
3422
3423 @section haas
3424 Apply Haas effect to audio.
3425
3426 Note that this makes most sense to apply on mono signals.
3427 With this filter applied to mono signals it give some directionality and
3428 stretches its stereo image.
3429
3430 The filter accepts the following options:
3431
3432 @table @option
3433 @item level_in
3434 Set input level. By default is @var{1}, or 0dB
3435
3436 @item level_out
3437 Set output level. By default is @var{1}, or 0dB.
3438
3439 @item side_gain
3440 Set gain applied to side part of signal. By default is @var{1}.
3441
3442 @item middle_source
3443 Set kind of middle source. Can be one of the following:
3444
3445 @table @samp
3446 @item left
3447 Pick left channel.
3448
3449 @item right
3450 Pick right channel.
3451
3452 @item mid
3453 Pick middle part signal of stereo image.
3454
3455 @item side
3456 Pick side part signal of stereo image.
3457 @end table
3458
3459 @item middle_phase
3460 Change middle phase. By default is disabled.
3461
3462 @item left_delay
3463 Set left channel delay. By default is @var{2.05} milliseconds.
3464
3465 @item left_balance
3466 Set left channel balance. By default is @var{-1}.
3467
3468 @item left_gain
3469 Set left channel gain. By default is @var{1}.
3470
3471 @item left_phase
3472 Change left phase. By default is disabled.
3473
3474 @item right_delay
3475 Set right channel delay. By defaults is @var{2.12} milliseconds.
3476
3477 @item right_balance
3478 Set right channel balance. By default is @var{1}.
3479
3480 @item right_gain
3481 Set right channel gain. By default is @var{1}.
3482
3483 @item right_phase
3484 Change right phase. By default is enabled.
3485 @end table
3486
3487 @section hdcd
3488
3489 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3490 embedded HDCD codes is expanded into a 20-bit PCM stream.
3491
3492 The filter supports the Peak Extend and Low-level Gain Adjustment features
3493 of HDCD, and detects the Transient Filter flag.
3494
3495 @example
3496 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3497 @end example
3498
3499 When using the filter with wav, note the default encoding for wav is 16-bit,
3500 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3501 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3502 @example
3503 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3504 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3505 @end example
3506
3507 The filter accepts the following options:
3508
3509 @table @option
3510 @item disable_autoconvert
3511 Disable any automatic format conversion or resampling in the filter graph.
3512
3513 @item process_stereo
3514 Process the stereo channels together. If target_gain does not match between
3515 channels, consider it invalid and use the last valid target_gain.
3516
3517 @item cdt_ms
3518 Set the code detect timer period in ms.
3519
3520 @item force_pe
3521 Always extend peaks above -3dBFS even if PE isn't signaled.
3522
3523 @item analyze_mode
3524 Replace audio with a solid tone and adjust the amplitude to signal some
3525 specific aspect of the decoding process. The output file can be loaded in
3526 an audio editor alongside the original to aid analysis.
3527
3528 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3529
3530 Modes are:
3531 @table @samp
3532 @item 0, off
3533 Disabled
3534 @item 1, lle
3535 Gain adjustment level at each sample
3536 @item 2, pe
3537 Samples where peak extend occurs
3538 @item 3, cdt
3539 Samples where the code detect timer is active
3540 @item 4, tgm
3541 Samples where the target gain does not match between channels
3542 @end table
3543 @end table
3544
3545 @section headphone
3546
3547 Apply head-related transfer functions (HRTFs) to create virtual
3548 loudspeakers around the user for binaural listening via headphones.
3549 The HRIRs are provided via additional streams, for each channel
3550 one stereo input stream is needed.
3551
3552 The filter accepts the following options:
3553
3554 @table @option
3555 @item map
3556 Set mapping of input streams for convolution.
3557 The argument is a '|'-separated list of channel names in order as they
3558 are given as additional stream inputs for filter.
3559 This also specify number of input streams. Number of input streams
3560 must be not less than number of channels in first stream plus one.
3561
3562 @item gain
3563 Set gain applied to audio. Value is in dB. Default is 0.
3564
3565 @item type
3566 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3567 processing audio in time domain which is slow.
3568 @var{freq} is processing audio in frequency domain which is fast.
3569 Default is @var{freq}.
3570
3571 @item lfe
3572 Set custom gain for LFE channels. Value is in dB. Default is 0.
3573
3574 @item size
3575 Set size of frame in number of samples which will be processed at once.
3576 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3577
3578 @item hrir
3579 Set format of hrir stream.
3580 Default value is @var{stereo}. Alternative value is @var{multich}.
3581 If value is set to @var{stereo}, number of additional streams should
3582 be greater or equal to number of input channels in first input stream.
3583 Also each additional stream should have stereo number of channels.
3584 If value is set to @var{multich}, number of additional streams should
3585 be exactly one. Also number of input channels of additional stream
3586 should be equal or greater than twice number of channels of first input
3587 stream.
3588 @end table
3589
3590 @subsection Examples
3591
3592 @itemize
3593 @item
3594 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3595 each amovie filter use stereo file with IR coefficients as input.
3596 The files give coefficients for each position of virtual loudspeaker:
3597 @example
3598 ffmpeg -i input.wav
3599 -filter_complex "amovie=azi_270_ele_0_DFC.wav[sr];amovie=azi_90_ele_0_DFC.wav[sl];amovie=azi_225_ele_0_DFC.wav[br];amovie=azi_135_ele_0_DFC.wav[bl];amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe];amovie=azi_35_ele_0_DFC.wav[fl];amovie=azi_325_ele_0_DFC.wav[fr];[0:a][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
3600 output.wav
3601 @end example
3602
3603 @item
3604 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3605 but now in @var{multich} @var{hrir} format.
3606 @example
3607 ffmpeg -i input.wav -filter_complex "amovie=minp.wav[hrirs];[0:a][hrirs]headphone=map=FL|FR|FC|LFE|BL|BR|SL|SR:hrir=multich"
3608 output.wav
3609 @end example
3610 @end itemize
3611
3612 @section highpass
3613
3614 Apply a high-pass filter with 3dB point frequency.
3615 The filter can be either single-pole, or double-pole (the default).
3616 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3617
3618 The filter accepts the following options:
3619
3620 @table @option
3621 @item frequency, f
3622 Set frequency in Hz. Default is 3000.
3623
3624 @item poles, p
3625 Set number of poles. Default is 2.
3626
3627 @item width_type, t
3628 Set method to specify band-width of filter.
3629 @table @option
3630 @item h
3631 Hz
3632 @item q
3633 Q-Factor
3634 @item o
3635 octave
3636 @item s
3637 slope
3638 @item k
3639 kHz
3640 @end table
3641
3642 @item width, w
3643 Specify the band-width of a filter in width_type units.
3644 Applies only to double-pole filter.
3645 The default is 0.707q and gives a Butterworth response.
3646
3647 @item channels, c
3648 Specify which channels to filter, by default all available are filtered.
3649 @end table
3650
3651 @subsection Commands
3652
3653 This filter supports the following commands:
3654 @table @option
3655 @item frequency, f
3656 Change highpass frequency.
3657 Syntax for the command is : "@var{frequency}"
3658
3659 @item width_type, t
3660 Change highpass width_type.
3661 Syntax for the command is : "@var{width_type}"
3662
3663 @item width, w
3664 Change highpass width.
3665 Syntax for the command is : "@var{width}"
3666 @end table
3667
3668 @section join
3669
3670 Join multiple input streams into one multi-channel stream.
3671
3672 It accepts the following parameters:
3673 @table @option
3674
3675 @item inputs
3676 The number of input streams. It defaults to 2.
3677
3678 @item channel_layout
3679 The desired output channel layout. It defaults to stereo.
3680
3681 @item map
3682 Map channels from inputs to output. The argument is a '|'-separated list of
3683 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3684 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3685 can be either the name of the input channel (e.g. FL for front left) or its
3686 index in the specified input stream. @var{out_channel} is the name of the output
3687 channel.
3688 @end table
3689
3690 The filter will attempt to guess the mappings when they are not specified
3691 explicitly. It does so by first trying to find an unused matching input channel
3692 and if that fails it picks the first unused input channel.
3693
3694 Join 3 inputs (with properly set channel layouts):
3695 @example
3696 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3697 @end example
3698
3699 Build a 5.1 output from 6 single-channel streams:
3700 @example
3701 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3702 'join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-SL|4.0-SR|5.0-LFE'
3703 out
3704 @end example
3705
3706 @section ladspa
3707
3708 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3709
3710 To enable compilation of this filter you need to configure FFmpeg with
3711 @code{--enable-ladspa}.
3712
3713 @table @option
3714 @item file, f
3715 Specifies the name of LADSPA plugin library to load. If the environment
3716 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3717 each one of the directories specified by the colon separated list in
3718 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3719 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3720 @file{/usr/lib/ladspa/}.
3721
3722 @item plugin, p
3723 Specifies the plugin within the library. Some libraries contain only
3724 one plugin, but others contain many of them. If this is not set filter
3725 will list all available plugins within the specified library.
3726
3727 @item controls, c
3728 Set the '|' separated list of controls which are zero or more floating point
3729 values that determine the behavior of the loaded plugin (for example delay,
3730 threshold or gain).
3731 Controls need to be defined using the following syntax:
3732 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3733 @var{valuei} is the value set on the @var{i}-th control.
3734 Alternatively they can be also defined using the following syntax:
3735 @var{value0}|@var{value1}|@var{value2}|..., where
3736 @var{valuei} is the value set on the @var{i}-th control.
3737 If @option{controls} is set to @code{help}, all available controls and
3738 their valid ranges are printed.
3739
3740 @item sample_rate, s
3741 Specify the sample rate, default to 44100. Only used if plugin have
3742 zero inputs.
3743
3744 @item nb_samples, n
3745 Set the number of samples per channel per each output frame, default
3746 is 1024. Only used if plugin have zero inputs.
3747
3748 @item duration, d
3749 Set the minimum duration of the sourced audio. See
3750 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3751 for the accepted syntax.
3752 Note that the resulting duration may be greater than the specified duration,
3753 as the generated audio is always cut at the end of a complete frame.
3754 If not specified, or the expressed duration is negative, the audio is
3755 supposed to be generated forever.
3756 Only used if plugin have zero inputs.
3757
3758 @end table
3759
3760 @subsection Examples
3761
3762 @itemize
3763 @item
3764 List all available plugins within amp (LADSPA example plugin) library:
3765 @example
3766 ladspa=file=amp
3767 @end example
3768
3769 @item
3770 List all available controls and their valid ranges for @code{vcf_notch}
3771 plugin from @code{VCF} library:
3772 @example
3773 ladspa=f=vcf:p=vcf_notch:c=help
3774 @end example
3775
3776 @item
3777 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3778 plugin library:
3779 @example
3780 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3781 @end example
3782
3783 @item
3784 Add reverberation to the audio using TAP-plugins
3785 (Tom's Audio Processing plugins):
3786 @example
3787 ladspa=file=tap_reverb:tap_reverb
3788 @end example
3789
3790 @item
3791 Generate white noise, with 0.2 amplitude:
3792 @example
3793 ladspa=file=cmt:noise_source_white:c=c0=.2
3794 @end example
3795
3796 @item
3797 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3798 @code{C* Audio Plugin Suite} (CAPS) library:
3799 @example
3800 ladspa=file=caps:Click:c=c1=20'
3801 @end example
3802
3803 @item
3804 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3805 @example
3806 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3807 @end example
3808
3809 @item
3810 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3811 @code{SWH Plugins} collection:
3812 @example
3813 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3814 @end example
3815
3816 @item
3817 Attenuate low frequencies using Multiband EQ from Steve Harris
3818 @code{SWH Plugins} collection:
3819 @example
3820 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3821 @end example
3822
3823 @item
3824 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3825 (CAPS) library:
3826 @example
3827 ladspa=caps:Narrower
3828 @end example
3829
3830 @item
3831 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3832 @example
3833 ladspa=caps:White:.2
3834 @end example
3835
3836 @item
3837 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3838 @example
3839 ladspa=caps:Fractal:c=c1=1
3840 @end example
3841
3842 @item
3843 Dynamic volume normalization using @code{VLevel} plugin:
3844 @example
3845 ladspa=vlevel-ladspa:vlevel_mono
3846 @end example
3847 @end itemize
3848
3849 @subsection Commands
3850
3851 This filter supports the following commands:
3852 @table @option
3853 @item cN
3854 Modify the @var{N}-th control value.
3855
3856 If the specified value is not valid, it is ignored and prior one is kept.
3857 @end table
3858
3859 @section loudnorm
3860
3861 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
3862 Support for both single pass (livestreams, files) and double pass (files) modes.
3863 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
3864 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
3865 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
3866
3867 The filter accepts the following options:
3868
3869 @table @option
3870 @item I, i
3871 Set integrated loudness target.
3872 Range is -70.0 - -5.0. Default value is -24.0.
3873
3874 @item LRA, lra
3875 Set loudness range target.
3876 Range is 1.0 - 20.0. Default value is 7.0.
3877
3878 @item TP, tp
3879 Set maximum true peak.
3880 Range is -9.0 - +0.0. Default value is -2.0.
3881
3882 @item measured_I, measured_i
3883 Measured IL of input file.
3884 Range is -99.0 - +0.0.
3885
3886 @item measured_LRA, measured_lra
3887 Measured LRA of input file.
3888 Range is  0.0 - 99.0.
3889
3890 @item measured_TP, measured_tp
3891 Measured true peak of input file.
3892 Range is  -99.0 - +99.0.
3893
3894 @item measured_thresh
3895 Measured threshold of input file.
3896 Range is -99.0 - +0.0.
3897
3898 @item offset
3899 Set offset gain. Gain is applied before the true-peak limiter.
3900 Range is  -99.0 - +99.0. Default is +0.0.
3901
3902 @item linear
3903 Normalize linearly if possible.
3904 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3905 to be specified in order to use this mode.
3906 Options are true or false. Default is true.
3907
3908 @item dual_mono
3909 Treat mono input files as "dual-mono". If a mono file is intended for playback
3910 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3911 If set to @code{true}, this option will compensate for this effect.
3912 Multi-channel input files are not affected by this option.
3913 Options are true or false. Default is false.
3914
3915 @item print_format
3916 Set print format for stats. Options are summary, json, or none.
3917 Default value is none.
3918 @end table
3919
3920 @section lowpass
3921
3922 Apply a low-pass filter with 3dB point frequency.
3923 The filter can be either single-pole or double-pole (the default).
3924 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3925
3926 The filter accepts the following options:
3927
3928 @table @option
3929 @item frequency, f
3930 Set frequency in Hz. Default is 500.
3931
3932 @item poles, p
3933 Set number of poles. Default is 2.
3934
3935 @item width_type, t
3936 Set method to specify band-width of filter.
3937 @table @option
3938 @item h
3939 Hz
3940 @item q
3941 Q-Factor
3942 @item o
3943 octave
3944 @item s
3945 slope
3946 @item k
3947 kHz
3948 @end table
3949
3950 @item width, w
3951 Specify the band-width of a filter in width_type units.
3952 Applies only to double-pole filter.
3953 The default is 0.707q and gives a Butterworth response.
3954
3955 @item channels, c
3956 Specify which channels to filter, by default all available are filtered.
3957 @end table
3958
3959 @subsection Examples
3960 @itemize
3961 @item
3962 Lowpass only LFE channel, it LFE is not present it does nothing:
3963 @example
3964 lowpass=c=LFE
3965 @end example
3966 @end itemize
3967
3968 @subsection Commands
3969
3970 This filter supports the following commands:
3971 @table @option
3972 @item frequency, f
3973 Change lowpass frequency.
3974 Syntax for the command is : "@var{frequency}"
3975
3976 @item width_type, t
3977 Change lowpass width_type.
3978 Syntax for the command is : "@var{width_type}"
3979
3980 @item width, w
3981 Change lowpass width.
3982 Syntax for the command is : "@var{width}"
3983 @end table
3984
3985 @section lv2
3986
3987 Load a LV2 (LADSPA Version 2) plugin.
3988
3989 To enable compilation of this filter you need to configure FFmpeg with
3990 @code{--enable-lv2}.
3991
3992 @table @option
3993 @item plugin, p
3994 Specifies the plugin URI. You may need to escape ':'.
3995
3996 @item controls, c
3997 Set the '|' separated list of controls which are zero or more floating point
3998 values that determine the behavior of the loaded plugin (for example delay,
3999 threshold or gain).
4000 If @option{controls} is set to @code{help}, all available controls and
4001 their valid ranges are printed.
4002
4003 @item sample_rate, s
4004 Specify the sample rate, default to 44100. Only used if plugin have
4005 zero inputs.
4006
4007 @item nb_samples, n
4008 Set the number of samples per channel per each output frame, default
4009 is 1024. Only used if plugin have zero inputs.
4010
4011 @item duration, d
4012 Set the minimum duration of the sourced audio. See
4013 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4014 for the accepted syntax.
4015 Note that the resulting duration may be greater than the specified duration,
4016 as the generated audio is always cut at the end of a complete frame.
4017 If not specified, or the expressed duration is negative, the audio is
4018 supposed to be generated forever.
4019 Only used if plugin have zero inputs.
4020 @end table
4021
4022 @subsection Examples
4023
4024 @itemize
4025 @item
4026 Apply bass enhancer plugin from Calf:
4027 @example
4028 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4029 @end example
4030
4031 @item
4032 Apply vinyl plugin from Calf:
4033 @example
4034 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4035 @end example
4036
4037 @item
4038 Apply bit crusher plugin from ArtyFX:
4039 @example
4040 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4041 @end example
4042 @end itemize
4043
4044 @section mcompand
4045 Multiband Compress or expand the audio's dynamic range.
4046
4047 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4048 This is akin to the crossover of a loudspeaker, and results in flat frequency
4049 response when absent compander action.
4050
4051 It accepts the following parameters:
4052
4053 @table @option
4054 @item args
4055 This option syntax is:
4056 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4057 For explanation of each item refer to compand filter documentation.
4058 @end table
4059
4060 @anchor{pan}
4061 @section pan
4062
4063 Mix channels with specific gain levels. The filter accepts the output
4064 channel layout followed by a set of channels definitions.
4065
4066 This filter is also designed to efficiently remap the channels of an audio
4067 stream.
4068
4069 The filter accepts parameters of the form:
4070 "@var{l}|@var{outdef}|@var{outdef}|..."
4071
4072 @table @option
4073 @item l
4074 output channel layout or number of channels
4075
4076 @item outdef
4077 output channel specification, of the form:
4078 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4079
4080 @item out_name
4081 output channel to define, either a channel name (FL, FR, etc.) or a channel
4082 number (c0, c1, etc.)
4083
4084 @item gain
4085 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4086
4087 @item in_name
4088 input channel to use, see out_name for details; it is not possible to mix
4089 named and numbered input channels
4090 @end table
4091
4092 If the `=' in a channel specification is replaced by `<', then the gains for
4093 that specification will be renormalized so that the total is 1, thus
4094 avoiding clipping noise.
4095
4096 @subsection Mixing examples
4097
4098 For example, if you want to down-mix from stereo to mono, but with a bigger
4099 factor for the left channel:
4100 @example
4101 pan=1c|c0=0.9*c0+0.1*c1
4102 @end example
4103
4104 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4105 7-channels surround:
4106 @example
4107 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4108 @end example
4109
4110 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4111 that should be preferred (see "-ac" option) unless you have very specific
4112 needs.
4113
4114 @subsection Remapping examples
4115
4116 The channel remapping will be effective if, and only if:
4117
4118 @itemize
4119 @item gain coefficients are zeroes or ones,
4120 @item only one input per channel output,
4121 @end itemize
4122
4123 If all these conditions are satisfied, the filter will notify the user ("Pure
4124 channel mapping detected"), and use an optimized and lossless method to do the
4125 remapping.
4126
4127 For example, if you have a 5.1 source and want a stereo audio stream by
4128 dropping the extra channels:
4129 @example
4130 pan="stereo| c0=FL | c1=FR"
4131 @end example
4132
4133 Given the same source, you can also switch front left and front right channels
4134 and keep the input channel layout:
4135 @example
4136 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4137 @end example
4138
4139 If the input is a stereo audio stream, you can mute the front left channel (and
4140 still keep the stereo channel layout) with:
4141 @example
4142 pan="stereo|c1=c1"
4143 @end example
4144
4145 Still with a stereo audio stream input, you can copy the right channel in both
4146 front left and right:
4147 @example
4148 pan="stereo| c0=FR | c1=FR"
4149 @end example
4150
4151 @section replaygain
4152
4153 ReplayGain scanner filter. This filter takes an audio stream as an input and
4154 outputs it unchanged.
4155 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4156
4157 @section resample
4158
4159 Convert the audio sample format, sample rate and channel layout. It is
4160 not meant to be used directly.
4161
4162 @section rubberband
4163 Apply time-stretching and pitch-shifting with librubberband.
4164
4165 To enable compilation of this filter, you need to configure FFmpeg with
4166 @code{--enable-librubberband}.
4167
4168 The filter accepts the following options:
4169
4170 @table @option
4171 @item tempo
4172 Set tempo scale factor.
4173
4174 @item pitch
4175 Set pitch scale factor.
4176
4177 @item transients
4178 Set transients detector.
4179 Possible values are:
4180 @table @var
4181 @item crisp
4182 @item mixed
4183 @item smooth
4184 @end table
4185
4186 @item detector
4187 Set detector.
4188 Possible values are:
4189 @table @var
4190 @item compound
4191 @item percussive
4192 @item soft
4193 @end table
4194
4195 @item phase
4196 Set phase.
4197 Possible values are:
4198 @table @var
4199 @item laminar
4200 @item independent
4201 @end table
4202
4203 @item window
4204 Set processing window size.
4205 Possible values are:
4206 @table @var
4207 @item standard
4208 @item short
4209 @item long
4210 @end table
4211
4212 @item smoothing
4213 Set smoothing.
4214 Possible values are:
4215 @table @var
4216 @item off
4217 @item on
4218 @end table
4219
4220 @item formant
4221 Enable formant preservation when shift pitching.
4222 Possible values are:
4223 @table @var
4224 @item shifted
4225 @item preserved
4226 @end table
4227
4228 @item pitchq
4229 Set pitch quality.
4230 Possible values are:
4231 @table @var
4232 @item quality
4233 @item speed
4234 @item consistency
4235 @end table
4236
4237 @item channels
4238 Set channels.
4239 Possible values are:
4240 @table @var
4241 @item apart
4242 @item together
4243 @end table
4244 @end table
4245
4246 @section sidechaincompress
4247
4248 This filter acts like normal compressor but has the ability to compress
4249 detected signal using second input signal.
4250 It needs two input streams and returns one output stream.
4251 First input stream will be processed depending on second stream signal.
4252 The filtered signal then can be filtered with other filters in later stages of
4253 processing. See @ref{pan} and @ref{amerge} filter.
4254
4255 The filter accepts the following options:
4256
4257 @table @option
4258 @item level_in
4259 Set input gain. Default is 1. Range is between 0.015625 and 64.
4260
4261 @item mode
4262 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4263 Default is @code{downward}.
4264
4265 @item threshold
4266 If a signal of second stream raises above this level it will affect the gain
4267 reduction of first stream.
4268 By default is 0.125. Range is between 0.00097563 and 1.
4269
4270 @item ratio
4271 Set a ratio about which the signal is reduced. 1:2 means that if the level
4272 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4273 Default is 2. Range is between 1 and 20.
4274
4275 @item attack
4276 Amount of milliseconds the signal has to rise above the threshold before gain
4277 reduction starts. Default is 20. Range is between 0.01 and 2000.
4278
4279 @item release
4280 Amount of milliseconds the signal has to fall below the threshold before
4281 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4282
4283 @item makeup
4284 Set the amount by how much signal will be amplified after processing.
4285 Default is 1. Range is from 1 to 64.
4286
4287 @item knee
4288 Curve the sharp knee around the threshold to enter gain reduction more softly.
4289 Default is 2.82843. Range is between 1 and 8.
4290
4291 @item link
4292 Choose if the @code{average} level between all channels of side-chain stream
4293 or the louder(@code{maximum}) channel of side-chain stream affects the
4294 reduction. Default is @code{average}.
4295
4296 @item detection
4297 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4298 of @code{rms}. Default is @code{rms} which is mainly smoother.
4299
4300 @item level_sc
4301 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4302
4303 @item mix
4304 How much to use compressed signal in output. Default is 1.
4305 Range is between 0 and 1.
4306 @end table
4307
4308 @subsection Examples
4309
4310 @itemize
4311 @item
4312 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4313 depending on the signal of 2nd input and later compressed signal to be
4314 merged with 2nd input:
4315 @example
4316 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4317 @end example
4318 @end itemize
4319
4320 @section sidechaingate
4321
4322 A sidechain gate acts like a normal (wideband) gate but has the ability to
4323 filter the detected signal before sending it to the gain reduction stage.
4324 Normally a gate uses the full range signal to detect a level above the
4325 threshold.
4326 For example: If you cut all lower frequencies from your sidechain signal
4327 the gate will decrease the volume of your track only if not enough highs
4328 appear. With this technique you are able to reduce the resonation of a
4329 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4330 guitar.
4331 It needs two input streams and returns one output stream.
4332 First input stream will be processed depending on second stream signal.
4333
4334 The filter accepts the following options:
4335
4336 @table @option
4337 @item level_in
4338 Set input level before filtering.
4339 Default is 1. Allowed range is from 0.015625 to 64.
4340
4341 @item mode
4342 Set the mode of operation. Can be @code{upward} or @code{downward}.
4343 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4344 will be amplified, expanding dynamic range in upward direction.
4345 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4346
4347 @item range
4348 Set the level of gain reduction when the signal is below the threshold.
4349 Default is 0.06125. Allowed range is from 0 to 1.
4350 Setting this to 0 disables reduction and then filter behaves like expander.
4351
4352 @item threshold
4353 If a signal rises above this level the gain reduction is released.
4354 Default is 0.125. Allowed range is from 0 to 1.
4355
4356 @item ratio
4357 Set a ratio about which the signal is reduced.
4358 Default is 2. Allowed range is from 1 to 9000.
4359
4360 @item attack
4361 Amount of milliseconds the signal has to rise above the threshold before gain
4362 reduction stops.
4363 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4364
4365 @item release
4366 Amount of milliseconds the signal has to fall below the threshold before the
4367 reduction is increased again. Default is 250 milliseconds.
4368 Allowed range is from 0.01 to 9000.
4369
4370 @item makeup
4371 Set amount of amplification of signal after processing.
4372 Default is 1. Allowed range is from 1 to 64.
4373
4374 @item knee
4375 Curve the sharp knee around the threshold to enter gain reduction more softly.
4376 Default is 2.828427125. Allowed range is from 1 to 8.
4377
4378 @item detection
4379 Choose if exact signal should be taken for detection or an RMS like one.
4380 Default is rms. Can be peak or rms.
4381
4382 @item link
4383 Choose if the average level between all channels or the louder channel affects
4384 the reduction.
4385 Default is average. Can be average or maximum.
4386
4387 @item level_sc
4388 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4389 @end table
4390
4391 @section silencedetect
4392
4393 Detect silence in an audio stream.
4394
4395 This filter logs a message when it detects that the input audio volume is less
4396 or equal to a noise tolerance value for a duration greater or equal to the
4397 minimum detected noise duration.
4398
4399 The printed times and duration are expressed in seconds.
4400
4401 The filter accepts the following options:
4402
4403 @table @option
4404 @item noise, n
4405 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4406 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4407
4408 @item duration, d
4409 Set silence duration until notification (default is 2 seconds).
4410
4411 @item mono, m
4412 Process each channel separately, instead of combined. By default is disabled.
4413 @end table
4414
4415 @subsection Examples
4416
4417 @itemize
4418 @item
4419 Detect 5 seconds of silence with -50dB noise tolerance:
4420 @example
4421 silencedetect=n=-50dB:d=5
4422 @end example
4423
4424 @item
4425 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4426 tolerance in @file{silence.mp3}:
4427 @example
4428 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4429 @end example
4430 @end itemize
4431
4432 @section silenceremove
4433
4434 Remove silence from the beginning, middle or end of the audio.
4435
4436 The filter accepts the following options:
4437
4438 @table @option
4439 @item start_periods
4440 This value is used to indicate if audio should be trimmed at beginning of
4441 the audio. A value of zero indicates no silence should be trimmed from the
4442 beginning. When specifying a non-zero value, it trims audio up until it
4443 finds non-silence. Normally, when trimming silence from beginning of audio
4444 the @var{start_periods} will be @code{1} but it can be increased to higher
4445 values to trim all audio up to specific count of non-silence periods.
4446 Default value is @code{0}.
4447
4448 @item start_duration
4449 Specify the amount of time that non-silence must be detected before it stops
4450 trimming audio. By increasing the duration, bursts of noises can be treated
4451 as silence and trimmed off. Default value is @code{0}.
4452
4453 @item start_threshold
4454 This indicates what sample value should be treated as silence. For digital
4455 audio, a value of @code{0} may be fine but for audio recorded from analog,
4456 you may wish to increase the value to account for background noise.
4457 Can be specified in dB (in case "dB" is appended to the specified value)
4458 or amplitude ratio. Default value is @code{0}.
4459
4460 @item start_silence
4461 Specify max duration of silence at beginning that will be kept after
4462 trimming. Default is 0, which is equal to trimming all samples detected
4463 as silence.
4464
4465 @item start_mode
4466 Specify mode of detection of silence end in start of multi-channel audio.
4467 Can be @var{any} or @var{all}. Default is @var{any}.
4468 With @var{any}, any sample that is detected as non-silence will cause
4469 stopped trimming of silence.
4470 With @var{all}, only if all channels are detected as non-silence will cause
4471 stopped trimming of silence.
4472
4473 @item stop_periods
4474 Set the count for trimming silence from the end of audio.
4475 To remove silence from the middle of a file, specify a @var{stop_periods}
4476 that is negative. This value is then treated as a positive value and is
4477 used to indicate the effect should restart processing as specified by
4478 @var{start_periods}, making it suitable for removing periods of silence
4479 in the middle of the audio.
4480 Default value is @code{0}.
4481
4482 @item stop_duration
4483 Specify a duration of silence that must exist before audio is not copied any
4484 more. By specifying a higher duration, silence that is wanted can be left in
4485 the audio.
4486 Default value is @code{0}.
4487
4488 @item stop_threshold
4489 This is the same as @option{start_threshold} but for trimming silence from
4490 the end of audio.
4491 Can be specified in dB (in case "dB" is appended to the specified value)
4492 or amplitude ratio. Default value is @code{0}.
4493
4494 @item stop_silence
4495 Specify max duration of silence at end that will be kept after
4496 trimming. Default is 0, which is equal to trimming all samples detected
4497 as silence.
4498
4499 @item stop_mode
4500 Specify mode of detection of silence start in end of multi-channel audio.
4501 Can be @var{any} or @var{all}. Default is @var{any}.
4502 With @var{any}, any sample that is detected as non-silence will cause
4503 stopped trimming of silence.
4504 With @var{all}, only if all channels are detected as non-silence will cause
4505 stopped trimming of silence.
4506
4507 @item detection
4508 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4509 and works better with digital silence which is exactly 0.
4510 Default value is @code{rms}.
4511
4512 @item window
4513 Set duration in number of seconds used to calculate size of window in number
4514 of samples for detecting silence.
4515 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4516 @end table
4517
4518 @subsection Examples
4519
4520 @itemize
4521 @item
4522 The following example shows how this filter can be used to start a recording
4523 that does not contain the delay at the start which usually occurs between
4524 pressing the record button and the start of the performance:
4525 @example
4526 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4527 @end example
4528
4529 @item
4530 Trim all silence encountered from beginning to end where there is more than 1
4531 second of silence in audio:
4532 @example
4533 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4534 @end example
4535 @end itemize
4536
4537 @section sofalizer
4538
4539 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4540 loudspeakers around the user for binaural listening via headphones (audio
4541 formats up to 9 channels supported).
4542 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4543 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4544 Austrian Academy of Sciences.
4545
4546 To enable compilation of this filter you need to configure FFmpeg with
4547 @code{--enable-libmysofa}.
4548
4549 The filter accepts the following options:
4550
4551 @table @option
4552 @item sofa
4553 Set the SOFA file used for rendering.
4554
4555 @item gain
4556 Set gain applied to audio. Value is in dB. Default is 0.
4557
4558 @item rotation
4559 Set rotation of virtual loudspeakers in deg. Default is 0.
4560
4561 @item elevation
4562 Set elevation of virtual speakers in deg. Default is 0.
4563
4564 @item radius
4565 Set distance in meters between loudspeakers and the listener with near-field
4566 HRTFs. Default is 1.
4567
4568 @item type
4569 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4570 processing audio in time domain which is slow.
4571 @var{freq} is processing audio in frequency domain which is fast.
4572 Default is @var{freq}.
4573
4574 @item speakers
4575 Set custom positions of virtual loudspeakers. Syntax for this option is:
4576 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4577 Each virtual loudspeaker is described with short channel name following with
4578 azimuth and elevation in degrees.
4579 Each virtual loudspeaker description is separated by '|'.
4580 For example to override front left and front right channel positions use:
4581 'speakers=FL 45 15|FR 345 15'.
4582 Descriptions with unrecognised channel names are ignored.
4583
4584 @item lfegain
4585 Set custom gain for LFE channels. Value is in dB. Default is 0.
4586
4587 @item framesize
4588 Set custom frame size in number of samples. Default is 1024.
4589 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4590 is set to @var{freq}.
4591
4592 @item normalize
4593 Should all IRs be normalized upon importing SOFA file.
4594 By default is enabled.
4595
4596 @item interpolate
4597 Should nearest IRs be interpolated with neighbor IRs if exact position
4598 does not match. By default is disabled.
4599
4600 @item minphase
4601 Minphase all IRs upon loading of SOFA file. By default is disabled.
4602
4603 @item anglestep
4604 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4605
4606 @item radstep
4607 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4608 @end table
4609
4610 @subsection Examples
4611
4612 @itemize
4613 @item
4614 Using ClubFritz6 sofa file:
4615 @example
4616 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4617 @end example
4618
4619 @item
4620 Using ClubFritz12 sofa file and bigger radius with small rotation:
4621 @example
4622 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4623 @end example
4624
4625 @item
4626 Similar as above but with custom speaker positions for front left, front right, back left and back right
4627 and also with custom gain:
4628 @example
4629 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4630 @end example
4631 @end itemize
4632
4633 @section stereotools
4634
4635 This filter has some handy utilities to manage stereo signals, for converting
4636 M/S stereo recordings to L/R signal while having control over the parameters
4637 or spreading the stereo image of master track.
4638
4639 The filter accepts the following options:
4640
4641 @table @option
4642 @item level_in
4643 Set input level before filtering for both channels. Defaults is 1.
4644 Allowed range is from 0.015625 to 64.
4645
4646 @item level_out
4647 Set output level after filtering for both channels. Defaults is 1.
4648 Allowed range is from 0.015625 to 64.
4649
4650 @item balance_in
4651 Set input balance between both channels. Default is 0.
4652 Allowed range is from -1 to 1.
4653
4654 @item balance_out
4655 Set output balance between both channels. Default is 0.
4656 Allowed range is from -1 to 1.
4657
4658 @item softclip
4659 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4660 clipping. Disabled by default.
4661
4662 @item mutel
4663 Mute the left channel. Disabled by default.
4664
4665 @item muter
4666 Mute the right channel. Disabled by default.
4667
4668 @item phasel
4669 Change the phase of the left channel. Disabled by default.
4670
4671 @item phaser
4672 Change the phase of the right channel. Disabled by default.
4673
4674 @item mode
4675 Set stereo mode. Available values are:
4676
4677 @table @samp
4678 @item lr>lr
4679 Left/Right to Left/Right, this is default.
4680
4681 @item lr>ms
4682 Left/Right to Mid/Side.
4683
4684 @item ms>lr
4685 Mid/Side to Left/Right.
4686
4687 @item lr>ll
4688 Left/Right to Left/Left.
4689
4690 @item lr>rr
4691 Left/Right to Right/Right.
4692
4693 @item lr>l+r
4694 Left/Right to Left + Right.
4695
4696 @item lr>rl
4697 Left/Right to Right/Left.
4698
4699 @item ms>ll
4700 Mid/Side to Left/Left.
4701
4702 @item ms>rr
4703 Mid/Side to Right/Right.
4704 @end table
4705
4706 @item slev
4707 Set level of side signal. Default is 1.
4708 Allowed range is from 0.015625 to 64.
4709
4710 @item sbal
4711 Set balance of side signal. Default is 0.
4712 Allowed range is from -1 to 1.
4713
4714 @item mlev
4715 Set level of the middle signal. Default is 1.
4716 Allowed range is from 0.015625 to 64.
4717
4718 @item mpan
4719 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4720
4721 @item base
4722 Set stereo base between mono and inversed channels. Default is 0.
4723 Allowed range is from -1 to 1.
4724
4725 @item delay
4726 Set delay in milliseconds how much to delay left from right channel and
4727 vice versa. Default is 0. Allowed range is from -20 to 20.
4728
4729 @item sclevel
4730 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4731
4732 @item phase
4733 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4734
4735 @item bmode_in, bmode_out
4736 Set balance mode for balance_in/balance_out option.
4737
4738 Can be one of the following:
4739
4740 @table @samp
4741 @item balance
4742 Classic balance mode. Attenuate one channel at time.
4743 Gain is raised up to 1.
4744
4745 @item amplitude
4746 Similar as classic mode above but gain is raised up to 2.
4747
4748 @item power
4749 Equal power distribution, from -6dB to +6dB range.
4750 @end table
4751 @end table
4752
4753 @subsection Examples
4754
4755 @itemize
4756 @item
4757 Apply karaoke like effect:
4758 @example
4759 stereotools=mlev=0.015625
4760 @end example
4761
4762 @item
4763 Convert M/S signal to L/R:
4764 @example
4765 "stereotools=mode=ms>lr"
4766 @end example
4767 @end itemize
4768
4769 @section stereowiden
4770
4771 This filter enhance the stereo effect by suppressing signal common to both
4772 channels and by delaying the signal of left into right and vice versa,
4773 thereby widening the stereo effect.
4774
4775 The filter accepts the following options:
4776
4777 @table @option
4778 @item delay
4779 Time in milliseconds of the delay of left signal into right and vice versa.
4780 Default is 20 milliseconds.
4781
4782 @item feedback
4783 Amount of gain in delayed signal into right and vice versa. Gives a delay
4784 effect of left signal in right output and vice versa which gives widening
4785 effect. Default is 0.3.
4786
4787 @item crossfeed
4788 Cross feed of left into right with inverted phase. This helps in suppressing
4789 the mono. If the value is 1 it will cancel all the signal common to both
4790 channels. Default is 0.3.
4791
4792 @item drymix
4793 Set level of input signal of original channel. Default is 0.8.
4794 @end table
4795
4796 @section superequalizer
4797 Apply 18 band equalizer.
4798
4799 The filter accepts the following options:
4800 @table @option
4801 @item 1b
4802 Set 65Hz band gain.
4803 @item 2b
4804 Set 92Hz band gain.
4805 @item 3b
4806 Set 131Hz band gain.
4807 @item 4b
4808 Set 185Hz band gain.
4809 @item 5b
4810 Set 262Hz band gain.
4811 @item 6b
4812 Set 370Hz band gain.
4813 @item 7b
4814 Set 523Hz band gain.
4815 @item 8b
4816 Set 740Hz band gain.
4817 @item 9b
4818 Set 1047Hz band gain.
4819 @item 10b
4820 Set 1480Hz band gain.
4821 @item 11b
4822 Set 2093Hz band gain.
4823 @item 12b
4824 Set 2960Hz band gain.
4825 @item 13b
4826 Set 4186Hz band gain.
4827 @item 14b
4828 Set 5920Hz band gain.
4829 @item 15b
4830 Set 8372Hz band gain.
4831 @item 16b
4832 Set 11840Hz band gain.
4833 @item 17b
4834 Set 16744Hz band gain.
4835 @item 18b
4836 Set 20000Hz band gain.
4837 @end table
4838
4839 @section surround
4840 Apply audio surround upmix filter.
4841
4842 This filter allows to produce multichannel output from audio stream.
4843
4844 The filter accepts the following options:
4845
4846 @table @option
4847 @item chl_out
4848 Set output channel layout. By default, this is @var{5.1}.
4849
4850 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4851 for the required syntax.
4852
4853 @item chl_in
4854 Set input channel layout. By default, this is @var{stereo}.
4855
4856 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4857 for the required syntax.
4858
4859 @item level_in
4860 Set input volume level. By default, this is @var{1}.
4861
4862 @item level_out
4863 Set output volume level. By default, this is @var{1}.
4864
4865 @item lfe
4866 Enable LFE channel output if output channel layout has it. By default, this is enabled.
4867
4868 @item lfe_low
4869 Set LFE low cut off frequency. By default, this is @var{128} Hz.
4870
4871 @item lfe_high
4872 Set LFE high cut off frequency. By default, this is @var{256} Hz.
4873
4874 @item fc_in
4875 Set front center input volume. By default, this is @var{1}.
4876
4877 @item fc_out
4878 Set front center output volume. By default, this is @var{1}.
4879
4880 @item lfe_in
4881 Set LFE input volume. By default, this is @var{1}.
4882
4883 @item lfe_out
4884 Set LFE output volume. By default, this is @var{1}.
4885
4886 @item win_func
4887 Set window function.
4888
4889 It accepts the following values:
4890 @table @samp
4891 @item rect
4892 @item bartlett
4893 @item hann, hanning
4894 @item hamming
4895 @item blackman
4896 @item welch
4897 @item flattop
4898 @item bharris
4899 @item bnuttall
4900 @item bhann
4901 @item sine
4902 @item nuttall
4903 @item lanczos
4904 @item gauss
4905 @item tukey
4906 @item dolph
4907 @item cauchy
4908 @item parzen
4909 @item poisson
4910 @item bohman
4911 @end table
4912 Default is @code{hann}.
4913
4914 @item overlap
4915 Set window overlap. If set to 1, the recommended overlap for selected
4916 window function will be picked. Default is @code{0.5}.
4917 @end table
4918
4919 @section treble, highshelf
4920
4921 Boost or cut treble (upper) frequencies of the audio using a two-pole
4922 shelving filter with a response similar to that of a standard
4923 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
4924
4925 The filter accepts the following options:
4926
4927 @table @option
4928 @item gain, g
4929 Give the gain at whichever is the lower of ~22 kHz and the
4930 Nyquist frequency. Its useful range is about -20 (for a large cut)
4931 to +20 (for a large boost). Beware of clipping when using a positive gain.
4932
4933 @item frequency, f
4934 Set the filter's central frequency and so can be used
4935 to extend or reduce the frequency range to be boosted or cut.
4936 The default value is @code{3000} Hz.
4937
4938 @item width_type, t
4939 Set method to specify band-width of filter.
4940 @table @option
4941 @item h
4942 Hz
4943 @item q
4944 Q-Factor
4945 @item o
4946 octave
4947 @item s
4948 slope
4949 @item k
4950 kHz
4951 @end table
4952
4953 @item width, w
4954 Determine how steep is the filter's shelf transition.
4955
4956 @item channels, c
4957 Specify which channels to filter, by default all available are filtered.
4958 @end table
4959
4960 @subsection Commands
4961
4962 This filter supports the following commands:
4963 @table @option
4964 @item frequency, f
4965 Change treble frequency.
4966 Syntax for the command is : "@var{frequency}"
4967
4968 @item width_type, t
4969 Change treble width_type.
4970 Syntax for the command is : "@var{width_type}"
4971
4972 @item width, w
4973 Change treble width.
4974 Syntax for the command is : "@var{width}"
4975
4976 @item gain, g
4977 Change treble gain.
4978 Syntax for the command is : "@var{gain}"
4979 @end table
4980
4981 @section tremolo
4982
4983 Sinusoidal amplitude modulation.
4984
4985 The filter accepts the following options:
4986
4987 @table @option
4988 @item f
4989 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
4990 (20 Hz or lower) will result in a tremolo effect.
4991 This filter may also be used as a ring modulator by specifying
4992 a modulation frequency higher than 20 Hz.
4993 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4994
4995 @item d
4996 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4997 Default value is 0.5.
4998 @end table
4999
5000 @section vibrato
5001
5002 Sinusoidal phase modulation.
5003
5004 The filter accepts the following options:
5005
5006 @table @option
5007 @item f
5008 Modulation frequency in Hertz.
5009 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5010
5011 @item d
5012 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5013 Default value is 0.5.
5014 @end table
5015
5016 @section volume
5017
5018 Adjust the input audio volume.
5019
5020 It accepts the following parameters:
5021 @table @option
5022
5023 @item volume
5024 Set audio volume expression.
5025
5026 Output values are clipped to the maximum value.
5027
5028 The output audio volume is given by the relation:
5029 @example
5030 @var{output_volume} = @var{volume} * @var{input_volume}
5031 @end example
5032
5033 The default value for @var{volume} is "1.0".
5034
5035 @item precision
5036 This parameter represents the mathematical precision.
5037
5038 It determines which input sample formats will be allowed, which affects the
5039 precision of the volume scaling.
5040
5041 @table @option
5042 @item fixed
5043 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5044 @item float
5045 32-bit floating-point; this limits input sample format to FLT. (default)
5046 @item double
5047 64-bit floating-point; this limits input sample format to DBL.
5048 @end table
5049
5050 @item replaygain
5051 Choose the behaviour on encountering ReplayGain side data in input frames.
5052
5053 @table @option
5054 @item drop
5055 Remove ReplayGain side data, ignoring its contents (the default).
5056
5057 @item ignore
5058 Ignore ReplayGain side data, but leave it in the frame.
5059
5060 @item track
5061 Prefer the track gain, if present.
5062
5063 @item album
5064 Prefer the album gain, if present.
5065 @end table
5066
5067 @item replaygain_preamp
5068 Pre-amplification gain in dB to apply to the selected replaygain gain.
5069
5070 Default value for @var{replaygain_preamp} is 0.0.
5071
5072 @item eval
5073 Set when the volume expression is evaluated.
5074
5075 It accepts the following values:
5076 @table @samp
5077 @item once
5078 only evaluate expression once during the filter initialization, or
5079 when the @samp{volume} command is sent
5080
5081 @item frame
5082 evaluate expression for each incoming frame
5083 @end table
5084
5085 Default value is @samp{once}.
5086 @end table
5087
5088 The volume expression can contain the following parameters.
5089
5090 @table @option
5091 @item n
5092 frame number (starting at zero)
5093 @item nb_channels
5094 number of channels
5095 @item nb_consumed_samples
5096 number of samples consumed by the filter
5097 @item nb_samples
5098 number of samples in the current frame
5099 @item pos
5100 original frame position in the file
5101 @item pts
5102 frame PTS
5103 @item sample_rate
5104 sample rate
5105 @item startpts
5106 PTS at start of stream
5107 @item startt
5108 time at start of stream
5109 @item t
5110 frame time
5111 @item tb
5112 timestamp timebase
5113 @item volume
5114 last set volume value
5115 @end table
5116
5117 Note that when @option{eval} is set to @samp{once} only the
5118 @var{sample_rate} and @var{tb} variables are available, all other
5119 variables will evaluate to NAN.
5120
5121 @subsection Commands
5122
5123 This filter supports the following commands:
5124 @table @option
5125 @item volume
5126 Modify the volume expression.
5127 The command accepts the same syntax of the corresponding option.
5128
5129 If the specified expression is not valid, it is kept at its current
5130 value.
5131 @item replaygain_noclip
5132 Prevent clipping by limiting the gain applied.
5133
5134 Default value for @var{replaygain_noclip} is 1.
5135
5136 @end table
5137
5138 @subsection Examples
5139
5140 @itemize
5141 @item
5142 Halve the input audio volume:
5143 @example
5144 volume=volume=0.5
5145 volume=volume=1/2
5146 volume=volume=-6.0206dB
5147 @end example
5148
5149 In all the above example the named key for @option{volume} can be
5150 omitted, for example like in:
5151 @example
5152 volume=0.5
5153 @end example
5154
5155 @item
5156 Increase input audio power by 6 decibels using fixed-point precision:
5157 @example
5158 volume=volume=6dB:precision=fixed
5159 @end example
5160
5161 @item
5162 Fade volume after time 10 with an annihilation period of 5 seconds:
5163 @example
5164 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5165 @end example
5166 @end itemize
5167
5168 @section volumedetect
5169
5170 Detect the volume of the input video.
5171
5172 The filter has no parameters. The input is not modified. Statistics about
5173 the volume will be printed in the log when the input stream end is reached.
5174
5175 In particular it will show the mean volume (root mean square), maximum
5176 volume (on a per-sample basis), and the beginning of a histogram of the
5177 registered volume values (from the maximum value to a cumulated 1/1000 of
5178 the samples).
5179
5180 All volumes are in decibels relative to the maximum PCM value.
5181
5182 @subsection Examples
5183
5184 Here is an excerpt of the output:
5185 @example
5186 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5187 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5188 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5189 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5190 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5191 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5192 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5193 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5194 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5195 @end example
5196
5197 It means that:
5198 @itemize
5199 @item
5200 The mean square energy is approximately -27 dB, or 10^-2.7.
5201 @item
5202 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5203 @item
5204 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5205 @end itemize
5206
5207 In other words, raising the volume by +4 dB does not cause any clipping,
5208 raising it by +5 dB causes clipping for 6 samples, etc.
5209
5210 @c man end AUDIO FILTERS
5211
5212 @chapter Audio Sources
5213 @c man begin AUDIO SOURCES
5214
5215 Below is a description of the currently available audio sources.
5216
5217 @section abuffer
5218
5219 Buffer audio frames, and make them available to the filter chain.
5220
5221 This source is mainly intended for a programmatic use, in particular
5222 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5223
5224 It accepts the following parameters:
5225 @table @option
5226
5227 @item time_base
5228 The timebase which will be used for timestamps of submitted frames. It must be
5229 either a floating-point number or in @var{numerator}/@var{denominator} form.
5230
5231 @item sample_rate
5232 The sample rate of the incoming audio buffers.
5233
5234 @item sample_fmt
5235 The sample format of the incoming audio buffers.
5236 Either a sample format name or its corresponding integer representation from
5237 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5238
5239 @item channel_layout
5240 The channel layout of the incoming audio buffers.
5241 Either a channel layout name from channel_layout_map in
5242 @file{libavutil/channel_layout.c} or its corresponding integer representation
5243 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5244
5245 @item channels
5246 The number of channels of the incoming audio buffers.
5247 If both @var{channels} and @var{channel_layout} are specified, then they
5248 must be consistent.
5249
5250 @end table
5251
5252 @subsection Examples
5253
5254 @example
5255 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5256 @end example
5257
5258 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5259 Since the sample format with name "s16p" corresponds to the number
5260 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5261 equivalent to:
5262 @example
5263 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5264 @end example
5265
5266 @section aevalsrc
5267
5268 Generate an audio signal specified by an expression.
5269
5270 This source accepts in input one or more expressions (one for each
5271 channel), which are evaluated and used to generate a corresponding
5272 audio signal.
5273
5274 This source accepts the following options:
5275
5276 @table @option
5277 @item exprs
5278 Set the '|'-separated expressions list for each separate channel. In case the
5279 @option{channel_layout} option is not specified, the selected channel layout
5280 depends on the number of provided expressions. Otherwise the last
5281 specified expression is applied to the remaining output channels.
5282
5283 @item channel_layout, c
5284 Set the channel layout. The number of channels in the specified layout
5285 must be equal to the number of specified expressions.
5286
5287 @item duration, d
5288 Set the minimum duration of the sourced audio. See
5289 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5290 for the accepted syntax.
5291 Note that the resulting duration may be greater than the specified
5292 duration, as the generated audio is always cut at the end of a
5293 complete frame.
5294
5295 If not specified, or the expressed duration is negative, the audio is
5296 supposed to be generated forever.
5297
5298 @item nb_samples, n
5299 Set the number of samples per channel per each output frame,
5300 default to 1024.
5301
5302 @item sample_rate, s
5303 Specify the sample rate, default to 44100.
5304 @end table
5305
5306 Each expression in @var{exprs} can contain the following constants:
5307
5308 @table @option
5309 @item n
5310 number of the evaluated sample, starting from 0
5311
5312 @item t
5313 time of the evaluated sample expressed in seconds, starting from 0
5314
5315 @item s
5316 sample rate
5317
5318 @end table
5319
5320 @subsection Examples
5321
5322 @itemize
5323 @item
5324 Generate silence:
5325 @example
5326 aevalsrc=0
5327 @end example
5328
5329 @item
5330 Generate a sin signal with frequency of 440 Hz, set sample rate to
5331 8000 Hz:
5332 @example
5333 aevalsrc="sin(440*2*PI*t):s=8000"
5334 @end example
5335
5336 @item
5337 Generate a two channels signal, specify the channel layout (Front
5338 Center + Back Center) explicitly:
5339 @example
5340 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5341 @end example
5342
5343 @item
5344 Generate white noise:
5345 @example
5346 aevalsrc="-2+random(0)"
5347 @end example
5348
5349 @item
5350 Generate an amplitude modulated signal:
5351 @example
5352 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5353 @end example
5354
5355 @item
5356 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5357 @example
5358 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5359 @end example
5360
5361 @end itemize
5362
5363 @section anullsrc
5364
5365 The null audio source, return unprocessed audio frames. It is mainly useful
5366 as a template and to be employed in analysis / debugging tools, or as
5367 the source for filters which ignore the input data (for example the sox
5368 synth filter).
5369
5370 This source accepts the following options:
5371
5372 @table @option
5373
5374 @item channel_layout, cl
5375
5376 Specifies the channel layout, and can be either an integer or a string
5377 representing a channel layout. The default value of @var{channel_layout}
5378 is "stereo".
5379
5380 Check the channel_layout_map definition in
5381 @file{libavutil/channel_layout.c} for the mapping between strings and
5382 channel layout values.
5383
5384 @item sample_rate, r
5385 Specifies the sample rate, and defaults to 44100.
5386
5387 @item nb_samples, n
5388 Set the number of samples per requested frames.
5389
5390 @end table
5391
5392 @subsection Examples
5393
5394 @itemize
5395 @item
5396 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5397 @example
5398 anullsrc=r=48000:cl=4
5399 @end example
5400
5401 @item
5402 Do the same operation with a more obvious syntax:
5403 @example
5404 anullsrc=r=48000:cl=mono
5405 @end example
5406 @end itemize
5407
5408 All the parameters need to be explicitly defined.
5409
5410 @section flite
5411
5412 Synthesize a voice utterance using the libflite library.
5413
5414 To enable compilation of this filter you need to configure FFmpeg with
5415 @code{--enable-libflite}.
5416
5417 Note that versions of the flite library prior to 2.0 are not thread-safe.
5418
5419 The filter accepts the following options:
5420
5421 @table @option
5422
5423 @item list_voices
5424 If set to 1, list the names of the available voices and exit
5425 immediately. Default value is 0.
5426
5427 @item nb_samples, n
5428 Set the maximum number of samples per frame. Default value is 512.
5429
5430 @item textfile
5431 Set the filename containing the text to speak.
5432
5433 @item text
5434 Set the text to speak.
5435
5436 @item voice, v
5437 Set the voice to use for the speech synthesis. Default value is
5438 @code{kal}. See also the @var{list_voices} option.
5439 @end table
5440
5441 @subsection Examples
5442
5443 @itemize
5444 @item
5445 Read from file @file{speech.txt}, and synthesize the text using the
5446 standard flite voice:
5447 @example
5448 flite=textfile=speech.txt
5449 @end example
5450
5451 @item
5452 Read the specified text selecting the @code{slt} voice:
5453 @example
5454 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5455 @end example
5456
5457 @item
5458 Input text to ffmpeg:
5459 @example
5460 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5461 @end example
5462
5463 @item
5464 Make @file{ffplay} speak the specified text, using @code{flite} and
5465 the @code{lavfi} device:
5466 @example
5467 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5468 @end example
5469 @end itemize
5470
5471 For more information about libflite, check:
5472 @url{http://www.festvox.org/flite/}
5473
5474 @section anoisesrc
5475
5476 Generate a noise audio signal.
5477
5478 The filter accepts the following options:
5479
5480 @table @option
5481 @item sample_rate, r
5482 Specify the sample rate. Default value is 48000 Hz.
5483
5484 @item amplitude, a
5485 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5486 is 1.0.
5487
5488 @item duration, d
5489 Specify the duration of the generated audio stream. Not specifying this option
5490 results in noise with an infinite length.
5491
5492 @item color, colour, c
5493 Specify the color of noise. Available noise colors are white, pink, brown,
5494 blue and violet. Default color is white.
5495
5496 @item seed, s
5497 Specify a value used to seed the PRNG.
5498
5499 @item nb_samples, n
5500 Set the number of samples per each output frame, default is 1024.
5501 @end table
5502
5503 @subsection Examples
5504
5505 @itemize
5506
5507 @item
5508 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5509 @example
5510 anoisesrc=d=60:c=pink:r=44100:a=0.5
5511 @end example
5512 @end itemize
5513
5514 @section hilbert
5515
5516 Generate odd-tap Hilbert transform FIR coefficients.
5517
5518 The resulting stream can be used with @ref{afir} filter for phase-shifting
5519 the signal by 90 degrees.
5520
5521 This is used in many matrix coding schemes and for analytic signal generation.
5522 The process is often written as a multiplication by i (or j), the imaginary unit.
5523
5524 The filter accepts the following options:
5525
5526 @table @option
5527
5528 @item sample_rate, s
5529 Set sample rate, default is 44100.
5530
5531 @item taps, t
5532 Set length of FIR filter, default is 22051.
5533
5534 @item nb_samples, n
5535 Set number of samples per each frame.
5536
5537 @item win_func, w
5538 Set window function to be used when generating FIR coefficients.
5539 @end table
5540
5541 @section sinc
5542
5543 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5544
5545 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5546
5547 The filter accepts the following options:
5548
5549 @table @option
5550 @item sample_rate, r
5551 Set sample rate, default is 44100.
5552
5553 @item nb_samples, n
5554 Set number of samples per each frame. Default is 1024.
5555
5556 @item hp
5557 Set high-pass frequency. Default is 0.
5558
5559 @item lp
5560 Set low-pass frequency. Default is 0.
5561 If high-pass frequency is lower than low-pass frequency and low-pass frequency
5562 is higher than 0 then filter will create band-pass filter coefficients,
5563 otherwise band-reject filter coefficients.
5564
5565 @item phase
5566 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
5567
5568 @item beta
5569 Set Kaiser window beta.
5570
5571 @item att
5572 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
5573
5574 @item round
5575 Enable rounding, by default is disabled.
5576
5577 @item hptaps
5578 Set number of taps for high-pass filter.
5579
5580 @item lptaps
5581 Set number of taps for low-pass filter.
5582 @end table
5583
5584 @section sine
5585
5586 Generate an audio signal made of a sine wave with amplitude 1/8.
5587
5588 The audio signal is bit-exact.
5589
5590 The filter accepts the following options:
5591
5592 @table @option
5593
5594 @item frequency, f
5595 Set the carrier frequency. Default is 440 Hz.
5596
5597 @item beep_factor, b
5598 Enable a periodic beep every second with frequency @var{beep_factor} times
5599 the carrier frequency. Default is 0, meaning the beep is disabled.
5600
5601 @item sample_rate, r
5602 Specify the sample rate, default is 44100.
5603
5604 @item duration, d
5605 Specify the duration of the generated audio stream.
5606
5607 @item samples_per_frame
5608 Set the number of samples per output frame.
5609
5610 The expression can contain the following constants:
5611
5612 @table @option
5613 @item n
5614 The (sequential) number of the output audio frame, starting from 0.
5615
5616 @item pts
5617 The PTS (Presentation TimeStamp) of the output audio frame,
5618 expressed in @var{TB} units.
5619
5620 @item t
5621 The PTS of the output audio frame, expressed in seconds.
5622
5623 @item TB
5624 The timebase of the output audio frames.
5625 @end table
5626
5627 Default is @code{1024}.
5628 @end table
5629
5630 @subsection Examples
5631
5632 @itemize
5633
5634 @item
5635 Generate a simple 440 Hz sine wave:
5636 @example
5637 sine
5638 @end example
5639
5640 @item
5641 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5642 @example
5643 sine=220:4:d=5
5644 sine=f=220:b=4:d=5
5645 sine=frequency=220:beep_factor=4:duration=5
5646 @end example
5647
5648 @item
5649 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5650 pattern:
5651 @example
5652 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5653 @end example
5654 @end itemize
5655
5656 @c man end AUDIO SOURCES
5657
5658 @chapter Audio Sinks
5659 @c man begin AUDIO SINKS
5660
5661 Below is a description of the currently available audio sinks.
5662
5663 @section abuffersink
5664
5665 Buffer audio frames, and make them available to the end of filter chain.
5666
5667 This sink is mainly intended for programmatic use, in particular
5668 through the interface defined in @file{libavfilter/buffersink.h}
5669 or the options system.
5670
5671 It accepts a pointer to an AVABufferSinkContext structure, which
5672 defines the incoming buffers' formats, to be passed as the opaque
5673 parameter to @code{avfilter_init_filter} for initialization.
5674 @section anullsink
5675
5676 Null audio sink; do absolutely nothing with the input audio. It is
5677 mainly useful as a template and for use in analysis / debugging
5678 tools.
5679
5680 @c man end AUDIO SINKS
5681
5682 @chapter Video Filters
5683 @c man begin VIDEO FILTERS
5684
5685 When you configure your FFmpeg build, you can disable any of the
5686 existing filters using @code{--disable-filters}.
5687 The configure output will show the video filters included in your
5688 build.
5689
5690 Below is a description of the currently available video filters.
5691
5692 @section alphaextract
5693
5694 Extract the alpha component from the input as a grayscale video. This
5695 is especially useful with the @var{alphamerge} filter.
5696
5697 @section alphamerge
5698
5699 Add or replace the alpha component of the primary input with the
5700 grayscale value of a second input. This is intended for use with
5701 @var{alphaextract} to allow the transmission or storage of frame
5702 sequences that have alpha in a format that doesn't support an alpha
5703 channel.
5704
5705 For example, to reconstruct full frames from a normal YUV-encoded video
5706 and a separate video created with @var{alphaextract}, you might use:
5707 @example
5708 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
5709 @end example
5710
5711 Since this filter is designed for reconstruction, it operates on frame
5712 sequences without considering timestamps, and terminates when either
5713 input reaches end of stream. This will cause problems if your encoding
5714 pipeline drops frames. If you're trying to apply an image as an
5715 overlay to a video stream, consider the @var{overlay} filter instead.
5716
5717 @section amplify
5718
5719 Amplify differences between current pixel and pixels of adjacent frames in
5720 same pixel location.
5721
5722 This filter accepts the following options:
5723
5724 @table @option
5725 @item radius
5726 Set frame radius. Default is 2. Allowed range is from 1 to 63.
5727 For example radius of 3 will instruct filter to calculate average of 7 frames.
5728
5729 @item factor
5730 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
5731
5732 @item threshold
5733 Set threshold for difference amplification. Any difference greater or equal to
5734 this value will not alter source pixel. Default is 10.
5735 Allowed range is from 0 to 65535.
5736
5737 @item tolerance
5738 Set tolerance for difference amplification. Any difference lower to
5739 this value will not alter source pixel. Default is 0.
5740 Allowed range is from 0 to 65535.
5741
5742 @item low
5743 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5744 This option controls maximum possible value that will decrease source pixel value.
5745
5746 @item high
5747 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5748 This option controls maximum possible value that will increase source pixel value.
5749
5750 @item planes
5751 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
5752 @end table
5753
5754 @section ass
5755
5756 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
5757 and libavformat to work. On the other hand, it is limited to ASS (Advanced
5758 Substation Alpha) subtitles files.
5759
5760 This filter accepts the following option in addition to the common options from
5761 the @ref{subtitles} filter:
5762
5763 @table @option
5764 @item shaping
5765 Set the shaping engine
5766
5767 Available values are:
5768 @table @samp
5769 @item auto
5770 The default libass shaping engine, which is the best available.
5771 @item simple
5772 Fast, font-agnostic shaper that can do only substitutions
5773 @item complex
5774 Slower shaper using OpenType for substitutions and positioning
5775 @end table
5776
5777 The default is @code{auto}.
5778 @end table
5779
5780 @section atadenoise
5781 Apply an Adaptive Temporal Averaging Denoiser to the video input.
5782
5783 The filter accepts the following options:
5784
5785 @table @option
5786 @item 0a
5787 Set threshold A for 1st plane. Default is 0.02.
5788 Valid range is 0 to 0.3.
5789
5790 @item 0b
5791 Set threshold B for 1st plane. Default is 0.04.
5792 Valid range is 0 to 5.
5793
5794 @item 1a
5795 Set threshold A for 2nd plane. Default is 0.02.
5796 Valid range is 0 to 0.3.
5797
5798 @item 1b
5799 Set threshold B for 2nd plane. Default is 0.04.
5800 Valid range is 0 to 5.
5801
5802 @item 2a
5803 Set threshold A for 3rd plane. Default is 0.02.
5804 Valid range is 0 to 0.3.
5805
5806 @item 2b
5807 Set threshold B for 3rd plane. Default is 0.04.
5808 Valid range is 0 to 5.
5809
5810 Threshold A is designed to react on abrupt changes in the input signal and
5811 threshold B is designed to react on continuous changes in the input signal.
5812
5813 @item s
5814 Set number of frames filter will use for averaging. Default is 9. Must be odd
5815 number in range [5, 129].
5816
5817 @item p
5818 Set what planes of frame filter will use for averaging. Default is all.
5819 @end table
5820
5821 @section avgblur
5822
5823 Apply average blur filter.
5824
5825 The filter accepts the following options:
5826
5827 @table @option
5828 @item sizeX
5829 Set horizontal radius size.
5830
5831 @item planes
5832 Set which planes to filter. By default all planes are filtered.
5833
5834 @item sizeY
5835 Set vertical radius size, if zero it will be same as @code{sizeX}.
5836 Default is @code{0}.
5837 @end table
5838
5839 @section bbox
5840
5841 Compute the bounding box for the non-black pixels in the input frame
5842 luminance plane.
5843
5844 This filter computes the bounding box containing all the pixels with a
5845 luminance value greater than the minimum allowed value.
5846 The parameters describing the bounding box are printed on the filter
5847 log.
5848
5849 The filter accepts the following option:
5850
5851 @table @option
5852 @item min_val
5853 Set the minimal luminance value. Default is @code{16}.
5854 @end table
5855
5856 @section bitplanenoise
5857
5858 Show and measure bit plane noise.
5859
5860 The filter accepts the following options:
5861
5862 @table @option
5863 @item bitplane
5864 Set which plane to analyze. Default is @code{1}.
5865
5866 @item filter
5867 Filter out noisy pixels from @code{bitplane} set above.
5868 Default is disabled.
5869 @end table
5870
5871 @section blackdetect
5872
5873 Detect video intervals that are (almost) completely black. Can be
5874 useful to detect chapter transitions, commercials, or invalid
5875 recordings. Output lines contains the time for the start, end and
5876 duration of the detected black interval expressed in seconds.
5877
5878 In order to display the output lines, you need to set the loglevel at
5879 least to the AV_LOG_INFO value.
5880
5881 The filter accepts the following options:
5882
5883 @table @option
5884 @item black_min_duration, d
5885 Set the minimum detected black duration expressed in seconds. It must
5886 be a non-negative floating point number.
5887
5888 Default value is 2.0.
5889
5890 @item picture_black_ratio_th, pic_th
5891 Set the threshold for considering a picture "black".
5892 Express the minimum value for the ratio:
5893 @example
5894 @var{nb_black_pixels} / @var{nb_pixels}
5895 @end example
5896
5897 for which a picture is considered black.
5898 Default value is 0.98.
5899
5900 @item pixel_black_th, pix_th
5901 Set the threshold for considering a pixel "black".
5902
5903 The threshold expresses the maximum pixel luminance value for which a
5904 pixel is considered "black". The provided value is scaled according to
5905 the following equation:
5906 @example
5907 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
5908 @end example
5909
5910 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
5911 the input video format, the range is [0-255] for YUV full-range
5912 formats and [16-235] for YUV non full-range formats.
5913
5914 Default value is 0.10.
5915 @end table
5916
5917 The following example sets the maximum pixel threshold to the minimum
5918 value, and detects only black intervals of 2 or more seconds:
5919 @example
5920 blackdetect=d=2:pix_th=0.00
5921 @end example
5922
5923 @section blackframe
5924
5925 Detect frames that are (almost) completely black. Can be useful to
5926 detect chapter transitions or commercials. Output lines consist of
5927 the frame number of the detected frame, the percentage of blackness,
5928 the position in the file if known or -1 and the timestamp in seconds.
5929
5930 In order to display the output lines, you need to set the loglevel at
5931 least to the AV_LOG_INFO value.
5932
5933 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
5934 The value represents the percentage of pixels in the picture that
5935 are below the threshold value.
5936
5937 It accepts the following parameters:
5938
5939 @table @option
5940
5941 @item amount
5942 The percentage of the pixels that have to be below the threshold; it defaults to
5943 @code{98}.
5944
5945 @item threshold, thresh
5946 The threshold below which a pixel value is considered black; it defaults to
5947 @code{32}.
5948
5949 @end table
5950
5951 @section blend, tblend
5952
5953 Blend two video frames into each other.
5954
5955 The @code{blend} filter takes two input streams and outputs one
5956 stream, the first input is the "top" layer and second input is
5957 "bottom" layer.  By default, the output terminates when the longest input terminates.
5958
5959 The @code{tblend} (time blend) filter takes two consecutive frames
5960 from one single stream, and outputs the result obtained by blending
5961 the new frame on top of the old frame.
5962
5963 A description of the accepted options follows.
5964
5965 @table @option
5966 @item c0_mode
5967 @item c1_mode
5968 @item c2_mode
5969 @item c3_mode
5970 @item all_mode
5971 Set blend mode for specific pixel component or all pixel components in case
5972 of @var{all_mode}. Default value is @code{normal}.
5973
5974 Available values for component modes are:
5975 @table @samp
5976 @item addition
5977 @item grainmerge
5978 @item and
5979 @item average
5980 @item burn
5981 @item darken
5982 @item difference
5983 @item grainextract
5984 @item divide
5985 @item dodge
5986 @item freeze
5987 @item exclusion
5988 @item extremity
5989 @item glow
5990 @item hardlight
5991 @item hardmix
5992 @item heat
5993 @item lighten
5994 @item linearlight
5995 @item multiply
5996 @item multiply128
5997 @item negation
5998 @item normal
5999 @item or
6000 @item overlay
6001 @item phoenix
6002 @item pinlight
6003 @item reflect
6004 @item screen
6005 @item softlight
6006 @item subtract
6007 @item vividlight
6008 @item xor
6009 @end table
6010
6011 @item c0_opacity
6012 @item c1_opacity
6013 @item c2_opacity
6014 @item c3_opacity
6015 @item all_opacity
6016 Set blend opacity for specific pixel component or all pixel components in case
6017 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6018
6019 @item c0_expr
6020 @item c1_expr
6021 @item c2_expr
6022 @item c3_expr
6023 @item all_expr
6024 Set blend expression for specific pixel component or all pixel components in case
6025 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6026
6027 The expressions can use the following variables:
6028
6029 @table @option
6030 @item N
6031 The sequential number of the filtered frame, starting from @code{0}.
6032
6033 @item X
6034 @item Y
6035 the coordinates of the current sample
6036
6037 @item W
6038 @item H
6039 the width and height of currently filtered plane
6040
6041 @item SW
6042 @item SH
6043 Width and height scale for the plane being filtered. It is the
6044 ratio between the dimensions of the current plane to the luma plane,
6045 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6046 the luma plane and @code{0.5,0.5} for the chroma planes.
6047
6048 @item T
6049 Time of the current frame, expressed in seconds.
6050
6051 @item TOP, A
6052 Value of pixel component at current location for first video frame (top layer).
6053
6054 @item BOTTOM, B
6055 Value of pixel component at current location for second video frame (bottom layer).
6056 @end table
6057 @end table
6058
6059 The @code{blend} filter also supports the @ref{framesync} options.
6060
6061 @subsection Examples
6062
6063 @itemize
6064 @item
6065 Apply transition from bottom layer to top layer in first 10 seconds:
6066 @example
6067 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6068 @end example
6069
6070 @item
6071 Apply linear horizontal transition from top layer to bottom layer:
6072 @example
6073 blend=all_expr='A*(X/W)+B*(1-X/W)'
6074 @end example
6075
6076 @item
6077 Apply 1x1 checkerboard effect:
6078 @example
6079 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6080 @end example
6081
6082 @item
6083 Apply uncover left effect:
6084 @example
6085 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6086 @end example
6087
6088 @item
6089 Apply uncover down effect:
6090 @example
6091 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6092 @end example
6093
6094 @item
6095 Apply uncover up-left effect:
6096 @example
6097 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6098 @end example
6099
6100 @item
6101 Split diagonally video and shows top and bottom layer on each side:
6102 @example
6103 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6104 @end example
6105
6106 @item
6107 Display differences between the current and the previous frame:
6108 @example
6109 tblend=all_mode=grainextract
6110 @end example
6111 @end itemize
6112
6113 @section bm3d
6114
6115 Denoise frames using Block-Matching 3D algorithm.
6116
6117 The filter accepts the following options.
6118
6119 @table @option
6120 @item sigma
6121 Set denoising strength. Default value is 1.
6122 Allowed range is from 0 to 999.9.
6123 The denoising algorithm is very sensitive to sigma, so adjust it
6124 according to the source.
6125
6126 @item block
6127 Set local patch size. This sets dimensions in 2D.
6128
6129 @item bstep
6130 Set sliding step for processing blocks. Default value is 4.
6131 Allowed range is from 1 to 64.
6132 Smaller values allows processing more reference blocks and is slower.
6133
6134 @item group
6135 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6136 When set to 1, no block matching is done. Larger values allows more blocks
6137 in single group.
6138 Allowed range is from 1 to 256.
6139
6140 @item range
6141 Set radius for search block matching. Default is 9.
6142 Allowed range is from 1 to INT32_MAX.
6143
6144 @item mstep
6145 Set step between two search locations for block matching. Default is 1.
6146 Allowed range is from 1 to 64. Smaller is slower.
6147
6148 @item thmse
6149 Set threshold of mean square error for block matching. Valid range is 0 to
6150 INT32_MAX.
6151
6152 @item hdthr
6153 Set thresholding parameter for hard thresholding in 3D transformed domain.
6154 Larger values results in stronger hard-thresholding filtering in frequency
6155 domain.
6156
6157 @item estim
6158 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6159 Default is @code{basic}.
6160
6161 @item ref
6162 If enabled, filter will use 2nd stream for block matching.
6163 Default is disabled for @code{basic} value of @var{estim} option,
6164 and always enabled if value of @var{estim} is @code{final}.
6165
6166 @item planes
6167 Set planes to filter. Default is all available except alpha.
6168 @end table
6169
6170 @subsection Examples
6171
6172 @itemize
6173 @item
6174 Basic filtering with bm3d:
6175 @example
6176 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6177 @end example
6178
6179 @item
6180 Same as above, but filtering only luma:
6181 @example
6182 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6183 @end example
6184
6185 @item
6186 Same as above, but with both estimation modes:
6187 @example
6188 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
6189 @end example
6190
6191 @item
6192 Same as above, but prefilter with @ref{nlmeans} filter instead:
6193 @example
6194 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
6195 @end example
6196 @end itemize
6197
6198 @section boxblur
6199
6200 Apply a boxblur algorithm to the input video.
6201
6202 It accepts the following parameters:
6203
6204 @table @option
6205
6206 @item luma_radius, lr
6207 @item luma_power, lp
6208 @item chroma_radius, cr
6209 @item chroma_power, cp
6210 @item alpha_radius, ar
6211 @item alpha_power, ap
6212
6213 @end table
6214
6215 A description of the accepted options follows.
6216
6217 @table @option
6218 @item luma_radius, lr
6219 @item chroma_radius, cr
6220 @item alpha_radius, ar
6221 Set an expression for the box radius in pixels used for blurring the
6222 corresponding input plane.
6223
6224 The radius value must be a non-negative number, and must not be
6225 greater than the value of the expression @code{min(w,h)/2} for the
6226 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6227 planes.
6228
6229 Default value for @option{luma_radius} is "2". If not specified,
6230 @option{chroma_radius} and @option{alpha_radius} default to the
6231 corresponding value set for @option{luma_radius}.
6232
6233 The expressions can contain the following constants:
6234 @table @option
6235 @item w
6236 @item h
6237 The input width and height in pixels.
6238
6239 @item cw
6240 @item ch
6241 The input chroma image width and height in pixels.
6242
6243 @item hsub
6244 @item vsub
6245 The horizontal and vertical chroma subsample values. For example, for the
6246 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6247 @end table
6248
6249 @item luma_power, lp
6250 @item chroma_power, cp
6251 @item alpha_power, ap
6252 Specify how many times the boxblur filter is applied to the
6253 corresponding plane.
6254
6255 Default value for @option{luma_power} is 2. If not specified,
6256 @option{chroma_power} and @option{alpha_power} default to the
6257 corresponding value set for @option{luma_power}.
6258
6259 A value of 0 will disable the effect.
6260 @end table
6261
6262 @subsection Examples
6263
6264 @itemize
6265 @item
6266 Apply a boxblur filter with the luma, chroma, and alpha radii
6267 set to 2:
6268 @example
6269 boxblur=luma_radius=2:luma_power=1
6270 boxblur=2:1
6271 @end example
6272
6273 @item
6274 Set the luma radius to 2, and alpha and chroma radius to 0:
6275 @example
6276 boxblur=2:1:cr=0:ar=0
6277 @end example
6278
6279 @item
6280 Set the luma and chroma radii to a fraction of the video dimension:
6281 @example
6282 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6283 @end example
6284 @end itemize
6285
6286 @section bwdif
6287
6288 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6289 Deinterlacing Filter").
6290
6291 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6292 interpolation algorithms.
6293 It accepts the following parameters:
6294
6295 @table @option
6296 @item mode
6297 The interlacing mode to adopt. It accepts one of the following values:
6298
6299 @table @option
6300 @item 0, send_frame
6301 Output one frame for each frame.
6302 @item 1, send_field
6303 Output one frame for each field.
6304 @end table
6305
6306 The default value is @code{send_field}.
6307
6308 @item parity
6309 The picture field parity assumed for the input interlaced video. It accepts one
6310 of the following values:
6311
6312 @table @option
6313 @item 0, tff
6314 Assume the top field is first.
6315 @item 1, bff
6316 Assume the bottom field is first.
6317 @item -1, auto
6318 Enable automatic detection of field parity.
6319 @end table
6320
6321 The default value is @code{auto}.
6322 If the interlacing is unknown or the decoder does not export this information,
6323 top field first will be assumed.
6324
6325 @item deint
6326 Specify which frames to deinterlace. Accept one of the following
6327 values:
6328
6329 @table @option
6330 @item 0, all
6331 Deinterlace all frames.
6332 @item 1, interlaced
6333 Only deinterlace frames marked as interlaced.
6334 @end table
6335
6336 The default value is @code{all}.
6337 @end table
6338
6339 @section chromahold
6340 Remove all color information for all colors except for certain one.
6341
6342 The filter accepts the following options:
6343
6344 @table @option
6345 @item color
6346 The color which will not be replaced with neutral chroma.
6347
6348 @item similarity
6349 Similarity percentage with the above color.
6350 0.01 matches only the exact key color, while 1.0 matches everything.
6351
6352 @item yuv
6353 Signals that the color passed is already in YUV instead of RGB.
6354
6355 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6356 This can be used to pass exact YUV values as hexadecimal numbers.
6357 @end table
6358
6359 @section chromakey
6360 YUV colorspace color/chroma keying.
6361
6362 The filter accepts the following options:
6363
6364 @table @option
6365 @item color
6366 The color which will be replaced with transparency.
6367
6368 @item similarity
6369 Similarity percentage with the key color.
6370
6371 0.01 matches only the exact key color, while 1.0 matches everything.
6372
6373 @item blend
6374 Blend percentage.
6375
6376 0.0 makes pixels either fully transparent, or not transparent at all.
6377
6378 Higher values result in semi-transparent pixels, with a higher transparency
6379 the more similar the pixels color is to the key color.
6380
6381 @item yuv
6382 Signals that the color passed is already in YUV instead of RGB.
6383
6384 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6385 This can be used to pass exact YUV values as hexadecimal numbers.
6386 @end table
6387
6388 @subsection Examples
6389
6390 @itemize
6391 @item
6392 Make every green pixel in the input image transparent:
6393 @example
6394 ffmpeg -i input.png -vf chromakey=green out.png
6395 @end example
6396
6397 @item
6398 Overlay a greenscreen-video on top of a static black background.
6399 @example
6400 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
6401 @end example
6402 @end itemize
6403
6404 @section chromashift
6405 Shift chroma pixels horizontally and/or vertically.
6406
6407 The filter accepts the following options:
6408 @table @option
6409 @item cbh
6410 Set amount to shift chroma-blue horizontally.
6411 @item cbv
6412 Set amount to shift chroma-blue vertically.
6413 @item crh
6414 Set amount to shift chroma-red horizontally.
6415 @item crv
6416 Set amount to shift chroma-red vertically.
6417 @item edge
6418 Set edge mode, can be @var{smear}, default, or @var{warp}.
6419 @end table
6420
6421 @section ciescope
6422
6423 Display CIE color diagram with pixels overlaid onto it.
6424
6425 The filter accepts the following options:
6426
6427 @table @option
6428 @item system
6429 Set color system.
6430
6431 @table @samp
6432 @item ntsc, 470m
6433 @item ebu, 470bg
6434 @item smpte
6435 @item 240m
6436 @item apple
6437 @item widergb
6438 @item cie1931
6439 @item rec709, hdtv
6440 @item uhdtv, rec2020
6441 @end table
6442
6443 @item cie
6444 Set CIE system.
6445
6446 @table @samp
6447 @item xyy
6448 @item ucs
6449 @item luv
6450 @end table
6451
6452 @item gamuts
6453 Set what gamuts to draw.
6454
6455 See @code{system} option for available values.
6456
6457 @item size, s
6458 Set ciescope size, by default set to 512.
6459
6460 @item intensity, i
6461 Set intensity used to map input pixel values to CIE diagram.
6462
6463 @item contrast
6464 Set contrast used to draw tongue colors that are out of active color system gamut.
6465
6466 @item corrgamma
6467 Correct gamma displayed on scope, by default enabled.
6468
6469 @item showwhite
6470 Show white point on CIE diagram, by default disabled.
6471
6472 @item gamma
6473 Set input gamma. Used only with XYZ input color space.
6474 @end table
6475
6476 @section codecview
6477
6478 Visualize information exported by some codecs.
6479
6480 Some codecs can export information through frames using side-data or other
6481 means. For example, some MPEG based codecs export motion vectors through the
6482 @var{export_mvs} flag in the codec @option{flags2} option.
6483
6484 The filter accepts the following option:
6485
6486 @table @option
6487 @item mv
6488 Set motion vectors to visualize.
6489
6490 Available flags for @var{mv} are:
6491
6492 @table @samp
6493 @item pf
6494 forward predicted MVs of P-frames
6495 @item bf
6496 forward predicted MVs of B-frames
6497 @item bb
6498 backward predicted MVs of B-frames
6499 @end table
6500
6501 @item qp
6502 Display quantization parameters using the chroma planes.
6503
6504 @item mv_type, mvt
6505 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
6506
6507 Available flags for @var{mv_type} are:
6508
6509 @table @samp
6510 @item fp
6511 forward predicted MVs
6512 @item bp
6513 backward predicted MVs
6514 @end table
6515
6516 @item frame_type, ft
6517 Set frame type to visualize motion vectors of.
6518
6519 Available flags for @var{frame_type} are:
6520
6521 @table @samp
6522 @item if
6523 intra-coded frames (I-frames)
6524 @item pf
6525 predicted frames (P-frames)
6526 @item bf
6527 bi-directionally predicted frames (B-frames)
6528 @end table
6529 @end table
6530
6531 @subsection Examples
6532
6533 @itemize
6534 @item
6535 Visualize forward predicted MVs of all frames using @command{ffplay}:
6536 @example
6537 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
6538 @end example
6539
6540 @item
6541 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
6542 @example
6543 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
6544 @end example
6545 @end itemize
6546
6547 @section colorbalance
6548 Modify intensity of primary colors (red, green and blue) of input frames.
6549
6550 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
6551 regions for the red-cyan, green-magenta or blue-yellow balance.
6552
6553 A positive adjustment value shifts the balance towards the primary color, a negative
6554 value towards the complementary color.
6555
6556 The filter accepts the following options:
6557
6558 @table @option
6559 @item rs
6560 @item gs
6561 @item bs
6562 Adjust red, green and blue shadows (darkest pixels).
6563
6564 @item rm
6565 @item gm
6566 @item bm
6567 Adjust red, green and blue midtones (medium pixels).
6568
6569 @item rh
6570 @item gh
6571 @item bh
6572 Adjust red, green and blue highlights (brightest pixels).
6573
6574 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6575 @end table
6576
6577 @subsection Examples
6578
6579 @itemize
6580 @item
6581 Add red color cast to shadows:
6582 @example
6583 colorbalance=rs=.3
6584 @end example
6585 @end itemize
6586
6587 @section colorkey
6588 RGB colorspace color keying.
6589
6590 The filter accepts the following options:
6591
6592 @table @option
6593 @item color
6594 The color which will be replaced with transparency.
6595
6596 @item similarity
6597 Similarity percentage with the key color.
6598
6599 0.01 matches only the exact key color, while 1.0 matches everything.
6600
6601 @item blend
6602 Blend percentage.
6603
6604 0.0 makes pixels either fully transparent, or not transparent at all.
6605
6606 Higher values result in semi-transparent pixels, with a higher transparency
6607 the more similar the pixels color is to the key color.
6608 @end table
6609
6610 @subsection Examples
6611
6612 @itemize
6613 @item
6614 Make every green pixel in the input image transparent:
6615 @example
6616 ffmpeg -i input.png -vf colorkey=green out.png
6617 @end example
6618
6619 @item
6620 Overlay a greenscreen-video on top of a static background image.
6621 @example
6622 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
6623 @end example
6624 @end itemize
6625
6626 @section colorlevels
6627
6628 Adjust video input frames using levels.
6629
6630 The filter accepts the following options:
6631
6632 @table @option
6633 @item rimin
6634 @item gimin
6635 @item bimin
6636 @item aimin
6637 Adjust red, green, blue and alpha input black point.
6638 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6639
6640 @item rimax
6641 @item gimax
6642 @item bimax
6643 @item aimax
6644 Adjust red, green, blue and alpha input white point.
6645 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
6646
6647 Input levels are used to lighten highlights (bright tones), darken shadows
6648 (dark tones), change the balance of bright and dark tones.
6649
6650 @item romin
6651 @item gomin
6652 @item bomin
6653 @item aomin
6654 Adjust red, green, blue and alpha output black point.
6655 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
6656
6657 @item romax
6658 @item gomax
6659 @item bomax
6660 @item aomax
6661 Adjust red, green, blue and alpha output white point.
6662 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
6663
6664 Output levels allows manual selection of a constrained output level range.
6665 @end table
6666
6667 @subsection Examples
6668
6669 @itemize
6670 @item
6671 Make video output darker:
6672 @example
6673 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
6674 @end example
6675
6676 @item
6677 Increase contrast:
6678 @example
6679 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
6680 @end example
6681
6682 @item
6683 Make video output lighter:
6684 @example
6685 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
6686 @end example
6687
6688 @item
6689 Increase brightness:
6690 @example
6691 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
6692 @end example
6693 @end itemize
6694
6695 @section colorchannelmixer
6696
6697 Adjust video input frames by re-mixing color channels.
6698
6699 This filter modifies a color channel by adding the values associated to
6700 the other channels of the same pixels. For example if the value to
6701 modify is red, the output value will be:
6702 @example
6703 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
6704 @end example
6705
6706 The filter accepts the following options:
6707
6708 @table @option
6709 @item rr
6710 @item rg
6711 @item rb
6712 @item ra
6713 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6714 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6715
6716 @item gr
6717 @item gg
6718 @item gb
6719 @item ga
6720 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6721 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6722
6723 @item br
6724 @item bg
6725 @item bb
6726 @item ba
6727 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6728 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6729
6730 @item ar
6731 @item ag
6732 @item ab
6733 @item aa
6734 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
6735 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
6736
6737 Allowed ranges for options are @code{[-2.0, 2.0]}.
6738 @end table
6739
6740 @subsection Examples
6741
6742 @itemize
6743 @item
6744 Convert source to grayscale:
6745 @example
6746 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
6747 @end example
6748 @item
6749 Simulate sepia tones:
6750 @example
6751 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
6752 @end example
6753 @end itemize
6754
6755 @section colormatrix
6756
6757 Convert color matrix.
6758
6759 The filter accepts the following options:
6760
6761 @table @option
6762 @item src
6763 @item dst
6764 Specify the source and destination color matrix. Both values must be
6765 specified.
6766
6767 The accepted values are:
6768 @table @samp
6769 @item bt709
6770 BT.709
6771
6772 @item fcc
6773 FCC
6774
6775 @item bt601
6776 BT.601
6777
6778 @item bt470
6779 BT.470
6780
6781 @item bt470bg
6782 BT.470BG
6783
6784 @item smpte170m
6785 SMPTE-170M
6786
6787 @item smpte240m
6788 SMPTE-240M
6789
6790 @item bt2020
6791 BT.2020
6792 @end table
6793 @end table
6794
6795 For example to convert from BT.601 to SMPTE-240M, use the command:
6796 @example
6797 colormatrix=bt601:smpte240m
6798 @end example
6799
6800 @section colorspace
6801
6802 Convert colorspace, transfer characteristics or color primaries.
6803 Input video needs to have an even size.
6804
6805 The filter accepts the following options:
6806
6807 @table @option
6808 @anchor{all}
6809 @item all
6810 Specify all color properties at once.
6811
6812 The accepted values are:
6813 @table @samp
6814 @item bt470m
6815 BT.470M
6816
6817 @item bt470bg
6818 BT.470BG
6819
6820 @item bt601-6-525
6821 BT.601-6 525
6822
6823 @item bt601-6-625
6824 BT.601-6 625
6825
6826 @item bt709
6827 BT.709
6828
6829 @item smpte170m
6830 SMPTE-170M
6831
6832 @item smpte240m
6833 SMPTE-240M
6834
6835 @item bt2020
6836 BT.2020
6837
6838 @end table
6839
6840 @anchor{space}
6841 @item space
6842 Specify output colorspace.
6843
6844 The accepted values are:
6845 @table @samp
6846 @item bt709
6847 BT.709
6848
6849 @item fcc
6850 FCC
6851
6852 @item bt470bg
6853 BT.470BG or BT.601-6 625
6854
6855 @item smpte170m
6856 SMPTE-170M or BT.601-6 525
6857
6858 @item smpte240m
6859 SMPTE-240M
6860
6861 @item ycgco
6862 YCgCo
6863
6864 @item bt2020ncl
6865 BT.2020 with non-constant luminance
6866
6867 @end table
6868
6869 @anchor{trc}
6870 @item trc
6871 Specify output transfer characteristics.
6872
6873 The accepted values are:
6874 @table @samp
6875 @item bt709
6876 BT.709
6877
6878 @item bt470m
6879 BT.470M
6880
6881 @item bt470bg
6882 BT.470BG
6883
6884 @item gamma22
6885 Constant gamma of 2.2
6886
6887 @item gamma28
6888 Constant gamma of 2.8
6889
6890 @item smpte170m
6891 SMPTE-170M, BT.601-6 625 or BT.601-6 525
6892
6893 @item smpte240m
6894 SMPTE-240M
6895
6896 @item srgb
6897 SRGB
6898
6899 @item iec61966-2-1
6900 iec61966-2-1
6901
6902 @item iec61966-2-4
6903 iec61966-2-4
6904
6905 @item xvycc
6906 xvycc
6907
6908 @item bt2020-10
6909 BT.2020 for 10-bits content
6910
6911 @item bt2020-12
6912 BT.2020 for 12-bits content
6913
6914 @end table
6915
6916 @anchor{primaries}
6917 @item primaries
6918 Specify output color primaries.
6919
6920 The accepted values are:
6921 @table @samp
6922 @item bt709
6923 BT.709
6924
6925 @item bt470m
6926 BT.470M
6927
6928 @item bt470bg
6929 BT.470BG or BT.601-6 625
6930
6931 @item smpte170m
6932 SMPTE-170M or BT.601-6 525
6933
6934 @item smpte240m
6935 SMPTE-240M
6936
6937 @item film
6938 film
6939
6940 @item smpte431
6941 SMPTE-431
6942
6943 @item smpte432
6944 SMPTE-432
6945
6946 @item bt2020
6947 BT.2020
6948
6949 @item jedec-p22
6950 JEDEC P22 phosphors
6951
6952 @end table
6953
6954 @anchor{range}
6955 @item range
6956 Specify output color range.
6957
6958 The accepted values are:
6959 @table @samp
6960 @item tv
6961 TV (restricted) range
6962
6963 @item mpeg
6964 MPEG (restricted) range
6965
6966 @item pc
6967 PC (full) range
6968
6969 @item jpeg
6970 JPEG (full) range
6971
6972 @end table
6973
6974 @item format
6975 Specify output color format.
6976
6977 The accepted values are:
6978 @table @samp
6979 @item yuv420p
6980 YUV 4:2:0 planar 8-bits
6981
6982 @item yuv420p10
6983 YUV 4:2:0 planar 10-bits
6984
6985 @item yuv420p12
6986 YUV 4:2:0 planar 12-bits
6987
6988 @item yuv422p
6989 YUV 4:2:2 planar 8-bits
6990
6991 @item yuv422p10
6992 YUV 4:2:2 planar 10-bits
6993
6994 @item yuv422p12
6995 YUV 4:2:2 planar 12-bits
6996
6997 @item yuv444p
6998 YUV 4:4:4 planar 8-bits
6999
7000 @item yuv444p10
7001 YUV 4:4:4 planar 10-bits
7002
7003 @item yuv444p12
7004 YUV 4:4:4 planar 12-bits
7005
7006 @end table
7007
7008 @item fast
7009 Do a fast conversion, which skips gamma/primary correction. This will take
7010 significantly less CPU, but will be mathematically incorrect. To get output
7011 compatible with that produced by the colormatrix filter, use fast=1.
7012
7013 @item dither
7014 Specify dithering mode.
7015
7016 The accepted values are:
7017 @table @samp
7018 @item none
7019 No dithering
7020
7021 @item fsb
7022 Floyd-Steinberg dithering
7023 @end table
7024
7025 @item wpadapt
7026 Whitepoint adaptation mode.
7027
7028 The accepted values are:
7029 @table @samp
7030 @item bradford
7031 Bradford whitepoint adaptation
7032
7033 @item vonkries
7034 von Kries whitepoint adaptation
7035
7036 @item identity
7037 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7038 @end table
7039
7040 @item iall
7041 Override all input properties at once. Same accepted values as @ref{all}.
7042
7043 @item ispace
7044 Override input colorspace. Same accepted values as @ref{space}.
7045
7046 @item iprimaries
7047 Override input color primaries. Same accepted values as @ref{primaries}.
7048
7049 @item itrc
7050 Override input transfer characteristics. Same accepted values as @ref{trc}.
7051
7052 @item irange
7053 Override input color range. Same accepted values as @ref{range}.
7054
7055 @end table
7056
7057 The filter converts the transfer characteristics, color space and color
7058 primaries to the specified user values. The output value, if not specified,
7059 is set to a default value based on the "all" property. If that property is
7060 also not specified, the filter will log an error. The output color range and
7061 format default to the same value as the input color range and format. The
7062 input transfer characteristics, color space, color primaries and color range
7063 should be set on the input data. If any of these are missing, the filter will
7064 log an error and no conversion will take place.
7065
7066 For example to convert the input to SMPTE-240M, use the command:
7067 @example
7068 colorspace=smpte240m
7069 @end example
7070
7071 @section convolution
7072
7073 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7074
7075 The filter accepts the following options:
7076
7077 @table @option
7078 @item 0m
7079 @item 1m
7080 @item 2m
7081 @item 3m
7082 Set matrix for each plane.
7083 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7084 and from 1 to 49 odd number of signed integers in @var{row} mode.
7085
7086 @item 0rdiv
7087 @item 1rdiv
7088 @item 2rdiv
7089 @item 3rdiv
7090 Set multiplier for calculated value for each plane.
7091 If unset or 0, it will be sum of all matrix elements.
7092
7093 @item 0bias
7094 @item 1bias
7095 @item 2bias
7096 @item 3bias
7097 Set bias for each plane. This value is added to the result of the multiplication.
7098 Useful for making the overall image brighter or darker. Default is 0.0.
7099
7100 @item 0mode
7101 @item 1mode
7102 @item 2mode
7103 @item 3mode
7104 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7105 Default is @var{square}.
7106 @end table
7107
7108 @subsection Examples
7109
7110 @itemize
7111 @item
7112 Apply sharpen:
7113 @example
7114 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"
7115 @end example
7116
7117 @item
7118 Apply blur:
7119 @example
7120 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"
7121 @end example
7122
7123 @item
7124 Apply edge enhance:
7125 @example
7126 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"
7127 @end example
7128
7129 @item
7130 Apply edge detect:
7131 @example
7132 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"
7133 @end example
7134
7135 @item
7136 Apply laplacian edge detector which includes diagonals:
7137 @example
7138 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"
7139 @end example
7140
7141 @item
7142 Apply emboss:
7143 @example
7144 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"
7145 @end example
7146 @end itemize
7147
7148 @section convolve
7149
7150 Apply 2D convolution of video stream in frequency domain using second stream
7151 as impulse.
7152
7153 The filter accepts the following options:
7154
7155 @table @option
7156 @item planes
7157 Set which planes to process.
7158
7159 @item impulse
7160 Set which impulse video frames will be processed, can be @var{first}
7161 or @var{all}. Default is @var{all}.
7162 @end table
7163
7164 The @code{convolve} filter also supports the @ref{framesync} options.
7165
7166 @section copy
7167
7168 Copy the input video source unchanged to the output. This is mainly useful for
7169 testing purposes.
7170
7171 @anchor{coreimage}
7172 @section coreimage
7173 Video filtering on GPU using Apple's CoreImage API on OSX.
7174
7175 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7176 processed by video hardware. However, software-based OpenGL implementations
7177 exist which means there is no guarantee for hardware processing. It depends on
7178 the respective OSX.
7179
7180 There are many filters and image generators provided by Apple that come with a
7181 large variety of options. The filter has to be referenced by its name along
7182 with its options.
7183
7184 The coreimage filter accepts the following options:
7185 @table @option
7186 @item list_filters
7187 List all available filters and generators along with all their respective
7188 options as well as possible minimum and maximum values along with the default
7189 values.
7190 @example
7191 list_filters=true
7192 @end example
7193
7194 @item filter
7195 Specify all filters by their respective name and options.
7196 Use @var{list_filters} to determine all valid filter names and options.
7197 Numerical options are specified by a float value and are automatically clamped
7198 to their respective value range.  Vector and color options have to be specified
7199 by a list of space separated float values. Character escaping has to be done.
7200 A special option name @code{default} is available to use default options for a
7201 filter.
7202
7203 It is required to specify either @code{default} or at least one of the filter options.
7204 All omitted options are used with their default values.
7205 The syntax of the filter string is as follows:
7206 @example
7207 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7208 @end example
7209
7210 @item output_rect
7211 Specify a rectangle where the output of the filter chain is copied into the
7212 input image. It is given by a list of space separated float values:
7213 @example
7214 output_rect=x\ y\ width\ height
7215 @end example
7216 If not given, the output rectangle equals the dimensions of the input image.
7217 The output rectangle is automatically cropped at the borders of the input
7218 image. Negative values are valid for each component.
7219 @example
7220 output_rect=25\ 25\ 100\ 100
7221 @end example
7222 @end table
7223
7224 Several filters can be chained for successive processing without GPU-HOST
7225 transfers allowing for fast processing of complex filter chains.
7226 Currently, only filters with zero (generators) or exactly one (filters) input
7227 image and one output image are supported. Also, transition filters are not yet
7228 usable as intended.
7229
7230 Some filters generate output images with additional padding depending on the
7231 respective filter kernel. The padding is automatically removed to ensure the
7232 filter output has the same size as the input image.
7233
7234 For image generators, the size of the output image is determined by the
7235 previous output image of the filter chain or the input image of the whole
7236 filterchain, respectively. The generators do not use the pixel information of
7237 this image to generate their output. However, the generated output is
7238 blended onto this image, resulting in partial or complete coverage of the
7239 output image.
7240
7241 The @ref{coreimagesrc} video source can be used for generating input images
7242 which are directly fed into the filter chain. By using it, providing input
7243 images by another video source or an input video is not required.
7244
7245 @subsection Examples
7246
7247 @itemize
7248
7249 @item
7250 List all filters available:
7251 @example
7252 coreimage=list_filters=true
7253 @end example
7254
7255 @item
7256 Use the CIBoxBlur filter with default options to blur an image:
7257 @example
7258 coreimage=filter=CIBoxBlur@@default
7259 @end example
7260
7261 @item
7262 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7263 its center at 100x100 and a radius of 50 pixels:
7264 @example
7265 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7266 @end example
7267
7268 @item
7269 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7270 given as complete and escaped command-line for Apple's standard bash shell:
7271 @example
7272 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7273 @end example
7274 @end itemize
7275
7276 @section crop
7277
7278 Crop the input video to given dimensions.
7279
7280 It accepts the following parameters:
7281
7282 @table @option
7283 @item w, out_w
7284 The width of the output video. It defaults to @code{iw}.
7285 This expression is evaluated only once during the filter
7286 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7287
7288 @item h, out_h
7289 The height of the output video. It defaults to @code{ih}.
7290 This expression is evaluated only once during the filter
7291 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7292
7293 @item x
7294 The horizontal position, in the input video, of the left edge of the output
7295 video. It defaults to @code{(in_w-out_w)/2}.
7296 This expression is evaluated per-frame.
7297
7298 @item y
7299 The vertical position, in the input video, of the top edge of the output video.
7300 It defaults to @code{(in_h-out_h)/2}.
7301 This expression is evaluated per-frame.
7302
7303 @item keep_aspect
7304 If set to 1 will force the output display aspect ratio
7305 to be the same of the input, by changing the output sample aspect
7306 ratio. It defaults to 0.
7307
7308 @item exact
7309 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7310 width/height/x/y as specified and will not be rounded to nearest smaller value.
7311 It defaults to 0.
7312 @end table
7313
7314 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7315 expressions containing the following constants:
7316
7317 @table @option
7318 @item x
7319 @item y
7320 The computed values for @var{x} and @var{y}. They are evaluated for
7321 each new frame.
7322
7323 @item in_w
7324 @item in_h
7325 The input width and height.
7326
7327 @item iw
7328 @item ih
7329 These are the same as @var{in_w} and @var{in_h}.
7330
7331 @item out_w
7332 @item out_h
7333 The output (cropped) width and height.
7334
7335 @item ow
7336 @item oh
7337 These are the same as @var{out_w} and @var{out_h}.
7338
7339 @item a
7340 same as @var{iw} / @var{ih}
7341
7342 @item sar
7343 input sample aspect ratio
7344
7345 @item dar
7346 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7347
7348 @item hsub
7349 @item vsub
7350 horizontal and vertical chroma subsample values. For example for the
7351 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7352
7353 @item n
7354 The number of the input frame, starting from 0.
7355
7356 @item pos
7357 the position in the file of the input frame, NAN if unknown
7358
7359 @item t
7360 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
7361
7362 @end table
7363
7364 The expression for @var{out_w} may depend on the value of @var{out_h},
7365 and the expression for @var{out_h} may depend on @var{out_w}, but they
7366 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
7367 evaluated after @var{out_w} and @var{out_h}.
7368
7369 The @var{x} and @var{y} parameters specify the expressions for the
7370 position of the top-left corner of the output (non-cropped) area. They
7371 are evaluated for each frame. If the evaluated value is not valid, it
7372 is approximated to the nearest valid value.
7373
7374 The expression for @var{x} may depend on @var{y}, and the expression
7375 for @var{y} may depend on @var{x}.
7376
7377 @subsection Examples
7378
7379 @itemize
7380 @item
7381 Crop area with size 100x100 at position (12,34).
7382 @example
7383 crop=100:100:12:34
7384 @end example
7385
7386 Using named options, the example above becomes:
7387 @example
7388 crop=w=100:h=100:x=12:y=34
7389 @end example
7390
7391 @item
7392 Crop the central input area with size 100x100:
7393 @example
7394 crop=100:100
7395 @end example
7396
7397 @item
7398 Crop the central input area with size 2/3 of the input video:
7399 @example
7400 crop=2/3*in_w:2/3*in_h
7401 @end example
7402
7403 @item
7404 Crop the input video central square:
7405 @example
7406 crop=out_w=in_h
7407 crop=in_h
7408 @end example
7409
7410 @item
7411 Delimit the rectangle with the top-left corner placed at position
7412 100:100 and the right-bottom corner corresponding to the right-bottom
7413 corner of the input image.
7414 @example
7415 crop=in_w-100:in_h-100:100:100
7416 @end example
7417
7418 @item
7419 Crop 10 pixels from the left and right borders, and 20 pixels from
7420 the top and bottom borders
7421 @example
7422 crop=in_w-2*10:in_h-2*20
7423 @end example
7424
7425 @item
7426 Keep only the bottom right quarter of the input image:
7427 @example
7428 crop=in_w/2:in_h/2:in_w/2:in_h/2
7429 @end example
7430
7431 @item
7432 Crop height for getting Greek harmony:
7433 @example
7434 crop=in_w:1/PHI*in_w
7435 @end example
7436
7437 @item
7438 Apply trembling effect:
7439 @example
7440 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)
7441 @end example
7442
7443 @item
7444 Apply erratic camera effect depending on timestamp:
7445 @example
7446 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)"
7447 @end example
7448
7449 @item
7450 Set x depending on the value of y:
7451 @example
7452 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
7453 @end example
7454 @end itemize
7455
7456 @subsection Commands
7457
7458 This filter supports the following commands:
7459 @table @option
7460 @item w, out_w
7461 @item h, out_h
7462 @item x
7463 @item y
7464 Set width/height of the output video and the horizontal/vertical position
7465 in the input video.
7466 The command accepts the same syntax of the corresponding option.
7467
7468 If the specified expression is not valid, it is kept at its current
7469 value.
7470 @end table
7471
7472 @section cropdetect
7473
7474 Auto-detect the crop size.
7475
7476 It calculates the necessary cropping parameters and prints the
7477 recommended parameters via the logging system. The detected dimensions
7478 correspond to the non-black area of the input video.
7479
7480 It accepts the following parameters:
7481
7482 @table @option
7483
7484 @item limit
7485 Set higher black value threshold, which can be optionally specified
7486 from nothing (0) to everything (255 for 8-bit based formats). An intensity
7487 value greater to the set value is considered non-black. It defaults to 24.
7488 You can also specify a value between 0.0 and 1.0 which will be scaled depending
7489 on the bitdepth of the pixel format.
7490
7491 @item round
7492 The value which the width/height should be divisible by. It defaults to
7493 16. The offset is automatically adjusted to center the video. Use 2 to
7494 get only even dimensions (needed for 4:2:2 video). 16 is best when
7495 encoding to most video codecs.
7496
7497 @item reset_count, reset
7498 Set the counter that determines after how many frames cropdetect will
7499 reset the previously detected largest video area and start over to
7500 detect the current optimal crop area. Default value is 0.
7501
7502 This can be useful when channel logos distort the video area. 0
7503 indicates 'never reset', and returns the largest area encountered during
7504 playback.
7505 @end table
7506
7507 @anchor{cue}
7508 @section cue
7509
7510 Delay video filtering until a given wallclock timestamp. The filter first
7511 passes on @option{preroll} amount of frames, then it buffers at most
7512 @option{buffer} amount of frames and waits for the cue. After reaching the cue
7513 it forwards the buffered frames and also any subsequent frames coming in its
7514 input.
7515
7516 The filter can be used synchronize the output of multiple ffmpeg processes for
7517 realtime output devices like decklink. By putting the delay in the filtering
7518 chain and pre-buffering frames the process can pass on data to output almost
7519 immediately after the target wallclock timestamp is reached.
7520
7521 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
7522 some use cases.
7523
7524 @table @option
7525
7526 @item cue
7527 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
7528
7529 @item preroll
7530 The duration of content to pass on as preroll expressed in seconds. Default is 0.
7531
7532 @item buffer
7533 The maximum duration of content to buffer before waiting for the cue expressed
7534 in seconds. Default is 0.
7535
7536 @end table
7537
7538 @anchor{curves}
7539 @section curves
7540
7541 Apply color adjustments using curves.
7542
7543 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
7544 component (red, green and blue) has its values defined by @var{N} key points
7545 tied from each other using a smooth curve. The x-axis represents the pixel
7546 values from the input frame, and the y-axis the new pixel values to be set for
7547 the output frame.
7548
7549 By default, a component curve is defined by the two points @var{(0;0)} and
7550 @var{(1;1)}. This creates a straight line where each original pixel value is
7551 "adjusted" to its own value, which means no change to the image.
7552
7553 The filter allows you to redefine these two points and add some more. A new
7554 curve (using a natural cubic spline interpolation) will be define to pass
7555 smoothly through all these new coordinates. The new defined points needs to be
7556 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
7557 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
7558 the vector spaces, the values will be clipped accordingly.
7559
7560 The filter accepts the following options:
7561
7562 @table @option
7563 @item preset
7564 Select one of the available color presets. This option can be used in addition
7565 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
7566 options takes priority on the preset values.
7567 Available presets are:
7568 @table @samp
7569 @item none
7570 @item color_negative
7571 @item cross_process
7572 @item darker
7573 @item increase_contrast
7574 @item lighter
7575 @item linear_contrast
7576 @item medium_contrast
7577 @item negative
7578 @item strong_contrast
7579 @item vintage
7580 @end table
7581 Default is @code{none}.
7582 @item master, m
7583 Set the master key points. These points will define a second pass mapping. It
7584 is sometimes called a "luminance" or "value" mapping. It can be used with
7585 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
7586 post-processing LUT.
7587 @item red, r
7588 Set the key points for the red component.
7589 @item green, g
7590 Set the key points for the green component.
7591 @item blue, b
7592 Set the key points for the blue component.
7593 @item all
7594 Set the key points for all components (not including master).
7595 Can be used in addition to the other key points component
7596 options. In this case, the unset component(s) will fallback on this
7597 @option{all} setting.
7598 @item psfile
7599 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
7600 @item plot
7601 Save Gnuplot script of the curves in specified file.
7602 @end table
7603
7604 To avoid some filtergraph syntax conflicts, each key points list need to be
7605 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
7606
7607 @subsection Examples
7608
7609 @itemize
7610 @item
7611 Increase slightly the middle level of blue:
7612 @example
7613 curves=blue='0/0 0.5/0.58 1/1'
7614 @end example
7615
7616 @item
7617 Vintage effect:
7618 @example
7619 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'
7620 @end example
7621 Here we obtain the following coordinates for each components:
7622 @table @var
7623 @item red
7624 @code{(0;0.11) (0.42;0.51) (1;0.95)}
7625 @item green
7626 @code{(0;0) (0.50;0.48) (1;1)}
7627 @item blue
7628 @code{(0;0.22) (0.49;0.44) (1;0.80)}
7629 @end table
7630
7631 @item
7632 The previous example can also be achieved with the associated built-in preset:
7633 @example
7634 curves=preset=vintage
7635 @end example
7636
7637 @item
7638 Or simply:
7639 @example
7640 curves=vintage
7641 @end example
7642
7643 @item
7644 Use a Photoshop preset and redefine the points of the green component:
7645 @example
7646 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
7647 @end example
7648
7649 @item
7650 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
7651 and @command{gnuplot}:
7652 @example
7653 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
7654 gnuplot -p /tmp/curves.plt
7655 @end example
7656 @end itemize
7657
7658 @section datascope
7659
7660 Video data analysis filter.
7661
7662 This filter shows hexadecimal pixel values of part of video.
7663
7664 The filter accepts the following options:
7665
7666 @table @option
7667 @item size, s
7668 Set output video size.
7669
7670 @item x
7671 Set x offset from where to pick pixels.
7672
7673 @item y
7674 Set y offset from where to pick pixels.
7675
7676 @item mode
7677 Set scope mode, can be one of the following:
7678 @table @samp
7679 @item mono
7680 Draw hexadecimal pixel values with white color on black background.
7681
7682 @item color
7683 Draw hexadecimal pixel values with input video pixel color on black
7684 background.
7685
7686 @item color2
7687 Draw hexadecimal pixel values on color background picked from input video,
7688 the text color is picked in such way so its always visible.
7689 @end table
7690
7691 @item axis
7692 Draw rows and columns numbers on left and top of video.
7693
7694 @item opacity
7695 Set background opacity.
7696 @end table
7697
7698 @section dctdnoiz
7699
7700 Denoise frames using 2D DCT (frequency domain filtering).
7701
7702 This filter is not designed for real time.
7703
7704 The filter accepts the following options:
7705
7706 @table @option
7707 @item sigma, s
7708 Set the noise sigma constant.
7709
7710 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
7711 coefficient (absolute value) below this threshold with be dropped.
7712
7713 If you need a more advanced filtering, see @option{expr}.
7714
7715 Default is @code{0}.
7716
7717 @item overlap
7718 Set number overlapping pixels for each block. Since the filter can be slow, you
7719 may want to reduce this value, at the cost of a less effective filter and the
7720 risk of various artefacts.
7721
7722 If the overlapping value doesn't permit processing the whole input width or
7723 height, a warning will be displayed and according borders won't be denoised.
7724
7725 Default value is @var{blocksize}-1, which is the best possible setting.
7726
7727 @item expr, e
7728 Set the coefficient factor expression.
7729
7730 For each coefficient of a DCT block, this expression will be evaluated as a
7731 multiplier value for the coefficient.
7732
7733 If this is option is set, the @option{sigma} option will be ignored.
7734
7735 The absolute value of the coefficient can be accessed through the @var{c}
7736 variable.
7737
7738 @item n
7739 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
7740 @var{blocksize}, which is the width and height of the processed blocks.
7741
7742 The default value is @var{3} (8x8) and can be raised to @var{4} for a
7743 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
7744 on the speed processing. Also, a larger block size does not necessarily means a
7745 better de-noising.
7746 @end table
7747
7748 @subsection Examples
7749
7750 Apply a denoise with a @option{sigma} of @code{4.5}:
7751 @example
7752 dctdnoiz=4.5
7753 @end example
7754
7755 The same operation can be achieved using the expression system:
7756 @example
7757 dctdnoiz=e='gte(c, 4.5*3)'
7758 @end example
7759
7760 Violent denoise using a block size of @code{16x16}:
7761 @example
7762 dctdnoiz=15:n=4
7763 @end example
7764
7765 @section deband
7766
7767 Remove banding artifacts from input video.
7768 It works by replacing banded pixels with average value of referenced pixels.
7769
7770 The filter accepts the following options:
7771
7772 @table @option
7773 @item 1thr
7774 @item 2thr
7775 @item 3thr
7776 @item 4thr
7777 Set banding detection threshold for each plane. Default is 0.02.
7778 Valid range is 0.00003 to 0.5.
7779 If difference between current pixel and reference pixel is less than threshold,
7780 it will be considered as banded.
7781
7782 @item range, r
7783 Banding detection range in pixels. Default is 16. If positive, random number
7784 in range 0 to set value will be used. If negative, exact absolute value
7785 will be used.
7786 The range defines square of four pixels around current pixel.
7787
7788 @item direction, d
7789 Set direction in radians from which four pixel will be compared. If positive,
7790 random direction from 0 to set direction will be picked. If negative, exact of
7791 absolute value will be picked. For example direction 0, -PI or -2*PI radians
7792 will pick only pixels on same row and -PI/2 will pick only pixels on same
7793 column.
7794
7795 @item blur, b
7796 If enabled, current pixel is compared with average value of all four
7797 surrounding pixels. The default is enabled. If disabled current pixel is
7798 compared with all four surrounding pixels. The pixel is considered banded
7799 if only all four differences with surrounding pixels are less than threshold.
7800
7801 @item coupling, c
7802 If enabled, current pixel is changed if and only if all pixel components are banded,
7803 e.g. banding detection threshold is triggered for all color components.
7804 The default is disabled.
7805 @end table
7806
7807 @section deblock
7808
7809 Remove blocking artifacts from input video.
7810
7811 The filter accepts the following options:
7812
7813 @table @option
7814 @item filter
7815 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
7816 This controls what kind of deblocking is applied.
7817
7818 @item block
7819 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
7820
7821 @item alpha
7822 @item beta
7823 @item gamma
7824 @item delta
7825 Set blocking detection thresholds. Allowed range is 0 to 1.
7826 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
7827 Using higher threshold gives more deblocking strength.
7828 Setting @var{alpha} controls threshold detection at exact edge of block.
7829 Remaining options controls threshold detection near the edge. Each one for
7830 below/above or left/right. Setting any of those to @var{0} disables
7831 deblocking.
7832
7833 @item planes
7834 Set planes to filter. Default is to filter all available planes.
7835 @end table
7836
7837 @subsection Examples
7838
7839 @itemize
7840 @item
7841 Deblock using weak filter and block size of 4 pixels.
7842 @example
7843 deblock=filter=weak:block=4
7844 @end example
7845
7846 @item
7847 Deblock using strong filter, block size of 4 pixels and custom thresholds for
7848 deblocking more edges.
7849 @example
7850 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
7851 @end example
7852
7853 @item
7854 Similar as above, but filter only first plane.
7855 @example
7856 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
7857 @end example
7858
7859 @item
7860 Similar as above, but filter only second and third plane.
7861 @example
7862 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
7863 @end example
7864 @end itemize
7865
7866 @anchor{decimate}
7867 @section decimate
7868
7869 Drop duplicated frames at regular intervals.
7870
7871 The filter accepts the following options:
7872
7873 @table @option
7874 @item cycle
7875 Set the number of frames from which one will be dropped. Setting this to
7876 @var{N} means one frame in every batch of @var{N} frames will be dropped.
7877 Default is @code{5}.
7878
7879 @item dupthresh
7880 Set the threshold for duplicate detection. If the difference metric for a frame
7881 is less than or equal to this value, then it is declared as duplicate. Default
7882 is @code{1.1}
7883
7884 @item scthresh
7885 Set scene change threshold. Default is @code{15}.
7886
7887 @item blockx
7888 @item blocky
7889 Set the size of the x and y-axis blocks used during metric calculations.
7890 Larger blocks give better noise suppression, but also give worse detection of
7891 small movements. Must be a power of two. Default is @code{32}.
7892
7893 @item ppsrc
7894 Mark main input as a pre-processed input and activate clean source input
7895 stream. This allows the input to be pre-processed with various filters to help
7896 the metrics calculation while keeping the frame selection lossless. When set to
7897 @code{1}, the first stream is for the pre-processed input, and the second
7898 stream is the clean source from where the kept frames are chosen. Default is
7899 @code{0}.
7900
7901 @item chroma
7902 Set whether or not chroma is considered in the metric calculations. Default is
7903 @code{1}.
7904 @end table
7905
7906 @section deconvolve
7907
7908 Apply 2D deconvolution of video stream in frequency domain using second stream
7909 as impulse.
7910
7911 The filter accepts the following options:
7912
7913 @table @option
7914 @item planes
7915 Set which planes to process.
7916
7917 @item impulse
7918 Set which impulse video frames will be processed, can be @var{first}
7919 or @var{all}. Default is @var{all}.
7920
7921 @item noise
7922 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
7923 and height are not same and not power of 2 or if stream prior to convolving
7924 had noise.
7925 @end table
7926
7927 The @code{deconvolve} filter also supports the @ref{framesync} options.
7928
7929 @section dedot
7930
7931 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
7932
7933 It accepts the following options:
7934
7935 @table @option
7936 @item m
7937 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
7938 @var{rainbows} for cross-color reduction.
7939
7940 @item lt
7941 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
7942
7943 @item tl
7944 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
7945
7946 @item tc
7947 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
7948
7949 @item ct
7950 Set temporal chroma threshold. Lower values increases reduction of cross-color.
7951 @end table
7952
7953 @section deflate
7954
7955 Apply deflate effect to the video.
7956
7957 This filter replaces the pixel by the local(3x3) average by taking into account
7958 only values lower than the pixel.
7959
7960 It accepts the following options:
7961
7962 @table @option
7963 @item threshold0
7964 @item threshold1
7965 @item threshold2
7966 @item threshold3
7967 Limit the maximum change for each plane, default is 65535.
7968 If 0, plane will remain unchanged.
7969 @end table
7970
7971 @section deflicker
7972
7973 Remove temporal frame luminance variations.
7974
7975 It accepts the following options:
7976
7977 @table @option
7978 @item size, s
7979 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
7980
7981 @item mode, m
7982 Set averaging mode to smooth temporal luminance variations.
7983
7984 Available values are:
7985 @table @samp
7986 @item am
7987 Arithmetic mean
7988
7989 @item gm
7990 Geometric mean
7991
7992 @item hm
7993 Harmonic mean
7994
7995 @item qm
7996 Quadratic mean
7997
7998 @item cm
7999 Cubic mean
8000
8001 @item pm
8002 Power mean
8003
8004 @item median
8005 Median
8006 @end table
8007
8008 @item bypass
8009 Do not actually modify frame. Useful when one only wants metadata.
8010 @end table
8011
8012 @section dejudder
8013
8014 Remove judder produced by partially interlaced telecined content.
8015
8016 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8017 source was partially telecined content then the output of @code{pullup,dejudder}
8018 will have a variable frame rate. May change the recorded frame rate of the
8019 container. Aside from that change, this filter will not affect constant frame
8020 rate video.
8021
8022 The option available in this filter is:
8023 @table @option
8024
8025 @item cycle
8026 Specify the length of the window over which the judder repeats.
8027
8028 Accepts any integer greater than 1. Useful values are:
8029 @table @samp
8030
8031 @item 4
8032 If the original was telecined from 24 to 30 fps (Film to NTSC).
8033
8034 @item 5
8035 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8036
8037 @item 20
8038 If a mixture of the two.
8039 @end table
8040
8041 The default is @samp{4}.
8042 @end table
8043
8044 @section delogo
8045
8046 Suppress a TV station logo by a simple interpolation of the surrounding
8047 pixels. Just set a rectangle covering the logo and watch it disappear
8048 (and sometimes something even uglier appear - your mileage may vary).
8049
8050 It accepts the following parameters:
8051 @table @option
8052
8053 @item x
8054 @item y
8055 Specify the top left corner coordinates of the logo. They must be
8056 specified.
8057
8058 @item w
8059 @item h
8060 Specify the width and height of the logo to clear. They must be
8061 specified.
8062
8063 @item band, t
8064 Specify the thickness of the fuzzy edge of the rectangle (added to
8065 @var{w} and @var{h}). The default value is 1. This option is
8066 deprecated, setting higher values should no longer be necessary and
8067 is not recommended.
8068
8069 @item show
8070 When set to 1, a green rectangle is drawn on the screen to simplify
8071 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8072 The default value is 0.
8073
8074 The rectangle is drawn on the outermost pixels which will be (partly)
8075 replaced with interpolated values. The values of the next pixels
8076 immediately outside this rectangle in each direction will be used to
8077 compute the interpolated pixel values inside the rectangle.
8078
8079 @end table
8080
8081 @subsection Examples
8082
8083 @itemize
8084 @item
8085 Set a rectangle covering the area with top left corner coordinates 0,0
8086 and size 100x77, and a band of size 10:
8087 @example
8088 delogo=x=0:y=0:w=100:h=77:band=10
8089 @end example
8090
8091 @end itemize
8092
8093 @section deshake
8094
8095 Attempt to fix small changes in horizontal and/or vertical shift. This
8096 filter helps remove camera shake from hand-holding a camera, bumping a
8097 tripod, moving on a vehicle, etc.
8098
8099 The filter accepts the following options:
8100
8101 @table @option
8102
8103 @item x
8104 @item y
8105 @item w
8106 @item h
8107 Specify a rectangular area where to limit the search for motion
8108 vectors.
8109 If desired the search for motion vectors can be limited to a
8110 rectangular area of the frame defined by its top left corner, width
8111 and height. These parameters have the same meaning as the drawbox
8112 filter which can be used to visualise the position of the bounding
8113 box.
8114
8115 This is useful when simultaneous movement of subjects within the frame
8116 might be confused for camera motion by the motion vector search.
8117
8118 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8119 then the full frame is used. This allows later options to be set
8120 without specifying the bounding box for the motion vector search.
8121
8122 Default - search the whole frame.
8123
8124 @item rx
8125 @item ry
8126 Specify the maximum extent of movement in x and y directions in the
8127 range 0-64 pixels. Default 16.
8128
8129 @item edge
8130 Specify how to generate pixels to fill blanks at the edge of the
8131 frame. Available values are:
8132 @table @samp
8133 @item blank, 0
8134 Fill zeroes at blank locations
8135 @item original, 1
8136 Original image at blank locations
8137 @item clamp, 2
8138 Extruded edge value at blank locations
8139 @item mirror, 3
8140 Mirrored edge at blank locations
8141 @end table
8142 Default value is @samp{mirror}.
8143
8144 @item blocksize
8145 Specify the blocksize to use for motion search. Range 4-128 pixels,
8146 default 8.
8147
8148 @item contrast
8149 Specify the contrast threshold for blocks. Only blocks with more than
8150 the specified contrast (difference between darkest and lightest
8151 pixels) will be considered. Range 1-255, default 125.
8152
8153 @item search
8154 Specify the search strategy. Available values are:
8155 @table @samp
8156 @item exhaustive, 0
8157 Set exhaustive search
8158 @item less, 1
8159 Set less exhaustive search.
8160 @end table
8161 Default value is @samp{exhaustive}.
8162
8163 @item filename
8164 If set then a detailed log of the motion search is written to the
8165 specified file.
8166
8167 @end table
8168
8169 @section despill
8170
8171 Remove unwanted contamination of foreground colors, caused by reflected color of
8172 greenscreen or bluescreen.
8173
8174 This filter accepts the following options:
8175
8176 @table @option
8177 @item type
8178 Set what type of despill to use.
8179
8180 @item mix
8181 Set how spillmap will be generated.
8182
8183 @item expand
8184 Set how much to get rid of still remaining spill.
8185
8186 @item red
8187 Controls amount of red in spill area.
8188
8189 @item green
8190 Controls amount of green in spill area.
8191 Should be -1 for greenscreen.
8192
8193 @item blue
8194 Controls amount of blue in spill area.
8195 Should be -1 for bluescreen.
8196
8197 @item brightness
8198 Controls brightness of spill area, preserving colors.
8199
8200 @item alpha
8201 Modify alpha from generated spillmap.
8202 @end table
8203
8204 @section detelecine
8205
8206 Apply an exact inverse of the telecine operation. It requires a predefined
8207 pattern specified using the pattern option which must be the same as that passed
8208 to the telecine filter.
8209
8210 This filter accepts the following options:
8211
8212 @table @option
8213 @item first_field
8214 @table @samp
8215 @item top, t
8216 top field first
8217 @item bottom, b
8218 bottom field first
8219 The default value is @code{top}.
8220 @end table
8221
8222 @item pattern
8223 A string of numbers representing the pulldown pattern you wish to apply.
8224 The default value is @code{23}.
8225
8226 @item start_frame
8227 A number representing position of the first frame with respect to the telecine
8228 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8229 @end table
8230
8231 @section dilation
8232
8233 Apply dilation effect to the video.
8234
8235 This filter replaces the pixel by the local(3x3) maximum.
8236
8237 It accepts the following options:
8238
8239 @table @option
8240 @item threshold0
8241 @item threshold1
8242 @item threshold2
8243 @item threshold3
8244 Limit the maximum change for each plane, default is 65535.
8245 If 0, plane will remain unchanged.
8246
8247 @item coordinates
8248 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8249 pixels are used.
8250
8251 Flags to local 3x3 coordinates maps like this:
8252
8253     1 2 3
8254     4   5
8255     6 7 8
8256 @end table
8257
8258 @section displace
8259
8260 Displace pixels as indicated by second and third input stream.
8261
8262 It takes three input streams and outputs one stream, the first input is the
8263 source, and second and third input are displacement maps.
8264
8265 The second input specifies how much to displace pixels along the
8266 x-axis, while the third input specifies how much to displace pixels
8267 along the y-axis.
8268 If one of displacement map streams terminates, last frame from that
8269 displacement map will be used.
8270
8271 Note that once generated, displacements maps can be reused over and over again.
8272
8273 A description of the accepted options follows.
8274
8275 @table @option
8276 @item edge
8277 Set displace behavior for pixels that are out of range.
8278
8279 Available values are:
8280 @table @samp
8281 @item blank
8282 Missing pixels are replaced by black pixels.
8283
8284 @item smear
8285 Adjacent pixels will spread out to replace missing pixels.
8286
8287 @item wrap
8288 Out of range pixels are wrapped so they point to pixels of other side.
8289
8290 @item mirror
8291 Out of range pixels will be replaced with mirrored pixels.
8292 @end table
8293 Default is @samp{smear}.
8294
8295 @end table
8296
8297 @subsection Examples
8298
8299 @itemize
8300 @item
8301 Add ripple effect to rgb input of video size hd720:
8302 @example
8303 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
8304 @end example
8305
8306 @item
8307 Add wave effect to rgb input of video size hd720:
8308 @example
8309 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
8310 @end example
8311 @end itemize
8312
8313 @section drawbox
8314
8315 Draw a colored box on the input image.
8316
8317 It accepts the following parameters:
8318
8319 @table @option
8320 @item x
8321 @item y
8322 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
8323
8324 @item width, w
8325 @item height, h
8326 The expressions which specify the width and height of the box; if 0 they are interpreted as
8327 the input width and height. It defaults to 0.
8328
8329 @item color, c
8330 Specify the color of the box to write. For the general syntax of this option,
8331 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8332 value @code{invert} is used, the box edge color is the same as the
8333 video with inverted luma.
8334
8335 @item thickness, t
8336 The expression which sets the thickness of the box edge.
8337 A value of @code{fill} will create a filled box. Default value is @code{3}.
8338
8339 See below for the list of accepted constants.
8340
8341 @item replace
8342 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
8343 will overwrite the video's color and alpha pixels.
8344 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
8345 @end table
8346
8347 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8348 following constants:
8349
8350 @table @option
8351 @item dar
8352 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8353
8354 @item hsub
8355 @item vsub
8356 horizontal and vertical chroma subsample values. For example for the
8357 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8358
8359 @item in_h, ih
8360 @item in_w, iw
8361 The input width and height.
8362
8363 @item sar
8364 The input sample aspect ratio.
8365
8366 @item x
8367 @item y
8368 The x and y offset coordinates where the box is drawn.
8369
8370 @item w
8371 @item h
8372 The width and height of the drawn box.
8373
8374 @item t
8375 The thickness of the drawn box.
8376
8377 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8378 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8379
8380 @end table
8381
8382 @subsection Examples
8383
8384 @itemize
8385 @item
8386 Draw a black box around the edge of the input image:
8387 @example
8388 drawbox
8389 @end example
8390
8391 @item
8392 Draw a box with color red and an opacity of 50%:
8393 @example
8394 drawbox=10:20:200:60:red@@0.5
8395 @end example
8396
8397 The previous example can be specified as:
8398 @example
8399 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
8400 @end example
8401
8402 @item
8403 Fill the box with pink color:
8404 @example
8405 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
8406 @end example
8407
8408 @item
8409 Draw a 2-pixel red 2.40:1 mask:
8410 @example
8411 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
8412 @end example
8413 @end itemize
8414
8415 @section drawgrid
8416
8417 Draw a grid on the input image.
8418
8419 It accepts the following parameters:
8420
8421 @table @option
8422 @item x
8423 @item y
8424 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
8425
8426 @item width, w
8427 @item height, h
8428 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
8429 input width and height, respectively, minus @code{thickness}, so image gets
8430 framed. Default to 0.
8431
8432 @item color, c
8433 Specify the color of the grid. For the general syntax of this option,
8434 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8435 value @code{invert} is used, the grid color is the same as the
8436 video with inverted luma.
8437
8438 @item thickness, t
8439 The expression which sets the thickness of the grid line. Default value is @code{1}.
8440
8441 See below for the list of accepted constants.
8442
8443 @item replace
8444 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
8445 will overwrite the video's color and alpha pixels.
8446 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
8447 @end table
8448
8449 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8450 following constants:
8451
8452 @table @option
8453 @item dar
8454 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8455
8456 @item hsub
8457 @item vsub
8458 horizontal and vertical chroma subsample values. For example for the
8459 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8460
8461 @item in_h, ih
8462 @item in_w, iw
8463 The input grid cell width and height.
8464
8465 @item sar
8466 The input sample aspect ratio.
8467
8468 @item x
8469 @item y
8470 The x and y coordinates of some point of grid intersection (meant to configure offset).
8471
8472 @item w
8473 @item h
8474 The width and height of the drawn cell.
8475
8476 @item t
8477 The thickness of the drawn cell.
8478
8479 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8480 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8481
8482 @end table
8483
8484 @subsection Examples
8485
8486 @itemize
8487 @item
8488 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
8489 @example
8490 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
8491 @end example
8492
8493 @item
8494 Draw a white 3x3 grid with an opacity of 50%:
8495 @example
8496 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
8497 @end example
8498 @end itemize
8499
8500 @anchor{drawtext}
8501 @section drawtext
8502
8503 Draw a text string or text from a specified file on top of a video, using the
8504 libfreetype library.
8505
8506 To enable compilation of this filter, you need to configure FFmpeg with
8507 @code{--enable-libfreetype}.
8508 To enable default font fallback and the @var{font} option you need to
8509 configure FFmpeg with @code{--enable-libfontconfig}.
8510 To enable the @var{text_shaping} option, you need to configure FFmpeg with
8511 @code{--enable-libfribidi}.
8512
8513 @subsection Syntax
8514
8515 It accepts the following parameters:
8516
8517 @table @option
8518
8519 @item box
8520 Used to draw a box around text using the background color.
8521 The value must be either 1 (enable) or 0 (disable).
8522 The default value of @var{box} is 0.
8523
8524 @item boxborderw
8525 Set the width of the border to be drawn around the box using @var{boxcolor}.
8526 The default value of @var{boxborderw} is 0.
8527
8528 @item boxcolor
8529 The color to be used for drawing box around text. For the syntax of this
8530 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8531
8532 The default value of @var{boxcolor} is "white".
8533
8534 @item line_spacing
8535 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
8536 The default value of @var{line_spacing} is 0.
8537
8538 @item borderw
8539 Set the width of the border to be drawn around the text using @var{bordercolor}.
8540 The default value of @var{borderw} is 0.
8541
8542 @item bordercolor
8543 Set the color to be used for drawing border around text. For the syntax of this
8544 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8545
8546 The default value of @var{bordercolor} is "black".
8547
8548 @item expansion
8549 Select how the @var{text} is expanded. Can be either @code{none},
8550 @code{strftime} (deprecated) or
8551 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
8552 below for details.
8553
8554 @item basetime
8555 Set a start time for the count. Value is in microseconds. Only applied
8556 in the deprecated strftime expansion mode. To emulate in normal expansion
8557 mode use the @code{pts} function, supplying the start time (in seconds)
8558 as the second argument.
8559
8560 @item fix_bounds
8561 If true, check and fix text coords to avoid clipping.
8562
8563 @item fontcolor
8564 The color to be used for drawing fonts. For the syntax of this option, check
8565 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8566
8567 The default value of @var{fontcolor} is "black".
8568
8569 @item fontcolor_expr
8570 String which is expanded the same way as @var{text} to obtain dynamic
8571 @var{fontcolor} value. By default this option has empty value and is not
8572 processed. When this option is set, it overrides @var{fontcolor} option.
8573
8574 @item font
8575 The font family to be used for drawing text. By default Sans.
8576
8577 @item fontfile
8578 The font file to be used for drawing text. The path must be included.
8579 This parameter is mandatory if the fontconfig support is disabled.
8580
8581 @item alpha
8582 Draw the text applying alpha blending. The value can
8583 be a number between 0.0 and 1.0.
8584 The expression accepts the same variables @var{x, y} as well.
8585 The default value is 1.
8586 Please see @var{fontcolor_expr}.
8587
8588 @item fontsize
8589 The font size to be used for drawing text.
8590 The default value of @var{fontsize} is 16.
8591
8592 @item text_shaping
8593 If set to 1, attempt to shape the text (for example, reverse the order of
8594 right-to-left text and join Arabic characters) before drawing it.
8595 Otherwise, just draw the text exactly as given.
8596 By default 1 (if supported).
8597
8598 @item ft_load_flags
8599 The flags to be used for loading the fonts.
8600
8601 The flags map the corresponding flags supported by libfreetype, and are
8602 a combination of the following values:
8603 @table @var
8604 @item default
8605 @item no_scale
8606 @item no_hinting
8607 @item render
8608 @item no_bitmap
8609 @item vertical_layout
8610 @item force_autohint
8611 @item crop_bitmap
8612 @item pedantic
8613 @item ignore_global_advance_width
8614 @item no_recurse
8615 @item ignore_transform
8616 @item monochrome
8617 @item linear_design
8618 @item no_autohint
8619 @end table
8620
8621 Default value is "default".
8622
8623 For more information consult the documentation for the FT_LOAD_*
8624 libfreetype flags.
8625
8626 @item shadowcolor
8627 The color to be used for drawing a shadow behind the drawn text. For the
8628 syntax of this option, check the @ref{color syntax,,"Color" section in the
8629 ffmpeg-utils manual,ffmpeg-utils}.
8630
8631 The default value of @var{shadowcolor} is "black".
8632
8633 @item shadowx
8634 @item shadowy
8635 The x and y offsets for the text shadow position with respect to the
8636 position of the text. They can be either positive or negative
8637 values. The default value for both is "0".
8638
8639 @item start_number
8640 The starting frame number for the n/frame_num variable. The default value
8641 is "0".
8642
8643 @item tabsize
8644 The size in number of spaces to use for rendering the tab.
8645 Default value is 4.
8646
8647 @item timecode
8648 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
8649 format. It can be used with or without text parameter. @var{timecode_rate}
8650 option must be specified.
8651
8652 @item timecode_rate, rate, r
8653 Set the timecode frame rate (timecode only). Value will be rounded to nearest
8654 integer. Minimum value is "1".
8655 Drop-frame timecode is supported for frame rates 30 & 60.
8656
8657 @item tc24hmax
8658 If set to 1, the output of the timecode option will wrap around at 24 hours.
8659 Default is 0 (disabled).
8660
8661 @item text
8662 The text string to be drawn. The text must be a sequence of UTF-8
8663 encoded characters.
8664 This parameter is mandatory if no file is specified with the parameter
8665 @var{textfile}.
8666
8667 @item textfile
8668 A text file containing text to be drawn. The text must be a sequence
8669 of UTF-8 encoded characters.
8670
8671 This parameter is mandatory if no text string is specified with the
8672 parameter @var{text}.
8673
8674 If both @var{text} and @var{textfile} are specified, an error is thrown.
8675
8676 @item reload
8677 If set to 1, the @var{textfile} will be reloaded before each frame.
8678 Be sure to update it atomically, or it may be read partially, or even fail.
8679
8680 @item x
8681 @item y
8682 The expressions which specify the offsets where text will be drawn
8683 within the video frame. They are relative to the top/left border of the
8684 output image.
8685
8686 The default value of @var{x} and @var{y} is "0".
8687
8688 See below for the list of accepted constants and functions.
8689 @end table
8690
8691 The parameters for @var{x} and @var{y} are expressions containing the
8692 following constants and functions:
8693
8694 @table @option
8695 @item dar
8696 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
8697
8698 @item hsub
8699 @item vsub
8700 horizontal and vertical chroma subsample values. For example for the
8701 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8702
8703 @item line_h, lh
8704 the height of each text line
8705
8706 @item main_h, h, H
8707 the input height
8708
8709 @item main_w, w, W
8710 the input width
8711
8712 @item max_glyph_a, ascent
8713 the maximum distance from the baseline to the highest/upper grid
8714 coordinate used to place a glyph outline point, for all the rendered
8715 glyphs.
8716 It is a positive value, due to the grid's orientation with the Y axis
8717 upwards.
8718
8719 @item max_glyph_d, descent
8720 the maximum distance from the baseline to the lowest grid coordinate
8721 used to place a glyph outline point, for all the rendered glyphs.
8722 This is a negative value, due to the grid's orientation, with the Y axis
8723 upwards.
8724
8725 @item max_glyph_h
8726 maximum glyph height, that is the maximum height for all the glyphs
8727 contained in the rendered text, it is equivalent to @var{ascent} -
8728 @var{descent}.
8729
8730 @item max_glyph_w
8731 maximum glyph width, that is the maximum width for all the glyphs
8732 contained in the rendered text
8733
8734 @item n
8735 the number of input frame, starting from 0
8736
8737 @item rand(min, max)
8738 return a random number included between @var{min} and @var{max}
8739
8740 @item sar
8741 The input sample aspect ratio.
8742
8743 @item t
8744 timestamp expressed in seconds, NAN if the input timestamp is unknown
8745
8746 @item text_h, th
8747 the height of the rendered text
8748
8749 @item text_w, tw
8750 the width of the rendered text
8751
8752 @item x
8753 @item y
8754 the x and y offset coordinates where the text is drawn.
8755
8756 These parameters allow the @var{x} and @var{y} expressions to refer
8757 each other, so you can for example specify @code{y=x/dar}.
8758 @end table
8759
8760 @anchor{drawtext_expansion}
8761 @subsection Text expansion
8762
8763 If @option{expansion} is set to @code{strftime},
8764 the filter recognizes strftime() sequences in the provided text and
8765 expands them accordingly. Check the documentation of strftime(). This
8766 feature is deprecated.
8767
8768 If @option{expansion} is set to @code{none}, the text is printed verbatim.
8769
8770 If @option{expansion} is set to @code{normal} (which is the default),
8771 the following expansion mechanism is used.
8772
8773 The backslash character @samp{\}, followed by any character, always expands to
8774 the second character.
8775
8776 Sequences of the form @code{%@{...@}} are expanded. The text between the
8777 braces is a function name, possibly followed by arguments separated by ':'.
8778 If the arguments contain special characters or delimiters (':' or '@}'),
8779 they should be escaped.
8780
8781 Note that they probably must also be escaped as the value for the
8782 @option{text} option in the filter argument string and as the filter
8783 argument in the filtergraph description, and possibly also for the shell,
8784 that makes up to four levels of escaping; using a text file avoids these
8785 problems.
8786
8787 The following functions are available:
8788
8789 @table @command
8790
8791 @item expr, e
8792 The expression evaluation result.
8793
8794 It must take one argument specifying the expression to be evaluated,
8795 which accepts the same constants and functions as the @var{x} and
8796 @var{y} values. Note that not all constants should be used, for
8797 example the text size is not known when evaluating the expression, so
8798 the constants @var{text_w} and @var{text_h} will have an undefined
8799 value.
8800
8801 @item expr_int_format, eif
8802 Evaluate the expression's value and output as formatted integer.
8803
8804 The first argument is the expression to be evaluated, just as for the @var{expr} function.
8805 The second argument specifies the output format. Allowed values are @samp{x},
8806 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
8807 @code{printf} function.
8808 The third parameter is optional and sets the number of positions taken by the output.
8809 It can be used to add padding with zeros from the left.
8810
8811 @item gmtime
8812 The time at which the filter is running, expressed in UTC.
8813 It can accept an argument: a strftime() format string.
8814
8815 @item localtime
8816 The time at which the filter is running, expressed in the local time zone.
8817 It can accept an argument: a strftime() format string.
8818
8819 @item metadata
8820 Frame metadata. Takes one or two arguments.
8821
8822 The first argument is mandatory and specifies the metadata key.
8823
8824 The second argument is optional and specifies a default value, used when the
8825 metadata key is not found or empty.
8826
8827 @item n, frame_num
8828 The frame number, starting from 0.
8829
8830 @item pict_type
8831 A 1 character description of the current picture type.
8832
8833 @item pts
8834 The timestamp of the current frame.
8835 It can take up to three arguments.
8836
8837 The first argument is the format of the timestamp; it defaults to @code{flt}
8838 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
8839 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
8840 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
8841 @code{localtime} stands for the timestamp of the frame formatted as
8842 local time zone time.
8843
8844 The second argument is an offset added to the timestamp.
8845
8846 If the format is set to @code{hms}, a third argument @code{24HH} may be
8847 supplied to present the hour part of the formatted timestamp in 24h format
8848 (00-23).
8849
8850 If the format is set to @code{localtime} or @code{gmtime},
8851 a third argument may be supplied: a strftime() format string.
8852 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
8853 @end table
8854
8855 @subsection Examples
8856
8857 @itemize
8858 @item
8859 Draw "Test Text" with font FreeSerif, using the default values for the
8860 optional parameters.
8861
8862 @example
8863 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
8864 @end example
8865
8866 @item
8867 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
8868 and y=50 (counting from the top-left corner of the screen), text is
8869 yellow with a red box around it. Both the text and the box have an
8870 opacity of 20%.
8871
8872 @example
8873 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
8874           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
8875 @end example
8876
8877 Note that the double quotes are not necessary if spaces are not used
8878 within the parameter list.
8879
8880 @item
8881 Show the text at the center of the video frame:
8882 @example
8883 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
8884 @end example
8885
8886 @item
8887 Show the text at a random position, switching to a new position every 30 seconds:
8888 @example
8889 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)"
8890 @end example
8891
8892 @item
8893 Show a text line sliding from right to left in the last row of the video
8894 frame. The file @file{LONG_LINE} is assumed to contain a single line
8895 with no newlines.
8896 @example
8897 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
8898 @end example
8899
8900 @item
8901 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
8902 @example
8903 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
8904 @end example
8905
8906 @item
8907 Draw a single green letter "g", at the center of the input video.
8908 The glyph baseline is placed at half screen height.
8909 @example
8910 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
8911 @end example
8912
8913 @item
8914 Show text for 1 second every 3 seconds:
8915 @example
8916 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
8917 @end example
8918
8919 @item
8920 Use fontconfig to set the font. Note that the colons need to be escaped.
8921 @example
8922 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
8923 @end example
8924
8925 @item
8926 Print the date of a real-time encoding (see strftime(3)):
8927 @example
8928 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
8929 @end example
8930
8931 @item
8932 Show text fading in and out (appearing/disappearing):
8933 @example
8934 #!/bin/sh
8935 DS=1.0 # display start
8936 DE=10.0 # display end
8937 FID=1.5 # fade in duration
8938 FOD=5 # fade out duration
8939 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 @}"
8940 @end example
8941
8942 @item
8943 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
8944 and the @option{fontsize} value are included in the @option{y} offset.
8945 @example
8946 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
8947 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
8948 @end example
8949
8950 @end itemize
8951
8952 For more information about libfreetype, check:
8953 @url{http://www.freetype.org/}.
8954
8955 For more information about fontconfig, check:
8956 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
8957
8958 For more information about libfribidi, check:
8959 @url{http://fribidi.org/}.
8960
8961 @section edgedetect
8962
8963 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
8964
8965 The filter accepts the following options:
8966
8967 @table @option
8968 @item low
8969 @item high
8970 Set low and high threshold values used by the Canny thresholding
8971 algorithm.
8972
8973 The high threshold selects the "strong" edge pixels, which are then
8974 connected through 8-connectivity with the "weak" edge pixels selected
8975 by the low threshold.
8976
8977 @var{low} and @var{high} threshold values must be chosen in the range
8978 [0,1], and @var{low} should be lesser or equal to @var{high}.
8979
8980 Default value for @var{low} is @code{20/255}, and default value for @var{high}
8981 is @code{50/255}.
8982
8983 @item mode
8984 Define the drawing mode.
8985
8986 @table @samp
8987 @item wires
8988 Draw white/gray wires on black background.
8989
8990 @item colormix
8991 Mix the colors to create a paint/cartoon effect.
8992
8993 @item canny
8994 Apply Canny edge detector on all selected planes.
8995 @end table
8996 Default value is @var{wires}.
8997
8998 @item planes
8999 Select planes for filtering. By default all available planes are filtered.
9000 @end table
9001
9002 @subsection Examples
9003
9004 @itemize
9005 @item
9006 Standard edge detection with custom values for the hysteresis thresholding:
9007 @example
9008 edgedetect=low=0.1:high=0.4
9009 @end example
9010
9011 @item
9012 Painting effect without thresholding:
9013 @example
9014 edgedetect=mode=colormix:high=0
9015 @end example
9016 @end itemize
9017
9018 @section eq
9019 Set brightness, contrast, saturation and approximate gamma adjustment.
9020
9021 The filter accepts the following options:
9022
9023 @table @option
9024 @item contrast
9025 Set the contrast expression. The value must be a float value in range
9026 @code{-2.0} to @code{2.0}. The default value is "1".
9027
9028 @item brightness
9029 Set the brightness expression. The value must be a float value in
9030 range @code{-1.0} to @code{1.0}. The default value is "0".
9031
9032 @item saturation
9033 Set the saturation expression. The value must be a float in
9034 range @code{0.0} to @code{3.0}. The default value is "1".
9035
9036 @item gamma
9037 Set the gamma expression. The value must be a float in range
9038 @code{0.1} to @code{10.0}.  The default value is "1".
9039
9040 @item gamma_r
9041 Set the gamma expression for red. The value must be a float in
9042 range @code{0.1} to @code{10.0}. The default value is "1".
9043
9044 @item gamma_g
9045 Set the gamma expression for green. The value must be a float in range
9046 @code{0.1} to @code{10.0}. The default value is "1".
9047
9048 @item gamma_b
9049 Set the gamma expression for blue. The value must be a float in range
9050 @code{0.1} to @code{10.0}. The default value is "1".
9051
9052 @item gamma_weight
9053 Set the gamma weight expression. It can be used to reduce the effect
9054 of a high gamma value on bright image areas, e.g. keep them from
9055 getting overamplified and just plain white. The value must be a float
9056 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
9057 gamma correction all the way down while @code{1.0} leaves it at its
9058 full strength. Default is "1".
9059
9060 @item eval
9061 Set when the expressions for brightness, contrast, saturation and
9062 gamma expressions are evaluated.
9063
9064 It accepts the following values:
9065 @table @samp
9066 @item init
9067 only evaluate expressions once during the filter initialization or
9068 when a command is processed
9069
9070 @item frame
9071 evaluate expressions for each incoming frame
9072 @end table
9073
9074 Default value is @samp{init}.
9075 @end table
9076
9077 The expressions accept the following parameters:
9078 @table @option
9079 @item n
9080 frame count of the input frame starting from 0
9081
9082 @item pos
9083 byte position of the corresponding packet in the input file, NAN if
9084 unspecified
9085
9086 @item r
9087 frame rate of the input video, NAN if the input frame rate is unknown
9088
9089 @item t
9090 timestamp expressed in seconds, NAN if the input timestamp is unknown
9091 @end table
9092
9093 @subsection Commands
9094 The filter supports the following commands:
9095
9096 @table @option
9097 @item contrast
9098 Set the contrast expression.
9099
9100 @item brightness
9101 Set the brightness expression.
9102
9103 @item saturation
9104 Set the saturation expression.
9105
9106 @item gamma
9107 Set the gamma expression.
9108
9109 @item gamma_r
9110 Set the gamma_r expression.
9111
9112 @item gamma_g
9113 Set gamma_g expression.
9114
9115 @item gamma_b
9116 Set gamma_b expression.
9117
9118 @item gamma_weight
9119 Set gamma_weight expression.
9120
9121 The command accepts the same syntax of the corresponding option.
9122
9123 If the specified expression is not valid, it is kept at its current
9124 value.
9125
9126 @end table
9127
9128 @section erosion
9129
9130 Apply erosion effect to the video.
9131
9132 This filter replaces the pixel by the local(3x3) minimum.
9133
9134 It accepts the following options:
9135
9136 @table @option
9137 @item threshold0
9138 @item threshold1
9139 @item threshold2
9140 @item threshold3
9141 Limit the maximum change for each plane, default is 65535.
9142 If 0, plane will remain unchanged.
9143
9144 @item coordinates
9145 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9146 pixels are used.
9147
9148 Flags to local 3x3 coordinates maps like this:
9149
9150     1 2 3
9151     4   5
9152     6 7 8
9153 @end table
9154
9155 @section extractplanes
9156
9157 Extract color channel components from input video stream into
9158 separate grayscale video streams.
9159
9160 The filter accepts the following option:
9161
9162 @table @option
9163 @item planes
9164 Set plane(s) to extract.
9165
9166 Available values for planes are:
9167 @table @samp
9168 @item y
9169 @item u
9170 @item v
9171 @item a
9172 @item r
9173 @item g
9174 @item b
9175 @end table
9176
9177 Choosing planes not available in the input will result in an error.
9178 That means you cannot select @code{r}, @code{g}, @code{b} planes
9179 with @code{y}, @code{u}, @code{v} planes at same time.
9180 @end table
9181
9182 @subsection Examples
9183
9184 @itemize
9185 @item
9186 Extract luma, u and v color channel component from input video frame
9187 into 3 grayscale outputs:
9188 @example
9189 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
9190 @end example
9191 @end itemize
9192
9193 @section elbg
9194
9195 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9196
9197 For each input image, the filter will compute the optimal mapping from
9198 the input to the output given the codebook length, that is the number
9199 of distinct output colors.
9200
9201 This filter accepts the following options.
9202
9203 @table @option
9204 @item codebook_length, l
9205 Set codebook length. The value must be a positive integer, and
9206 represents the number of distinct output colors. Default value is 256.
9207
9208 @item nb_steps, n
9209 Set the maximum number of iterations to apply for computing the optimal
9210 mapping. The higher the value the better the result and the higher the
9211 computation time. Default value is 1.
9212
9213 @item seed, s
9214 Set a random seed, must be an integer included between 0 and
9215 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9216 will try to use a good random seed on a best effort basis.
9217
9218 @item pal8
9219 Set pal8 output pixel format. This option does not work with codebook
9220 length greater than 256.
9221 @end table
9222
9223 @section entropy
9224
9225 Measure graylevel entropy in histogram of color channels of video frames.
9226
9227 It accepts the following parameters:
9228
9229 @table @option
9230 @item mode
9231 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9232
9233 @var{diff} mode measures entropy of histogram delta values, absolute differences
9234 between neighbour histogram values.
9235 @end table
9236
9237 @section fade
9238
9239 Apply a fade-in/out effect to the input video.
9240
9241 It accepts the following parameters:
9242
9243 @table @option
9244 @item type, t
9245 The effect type can be either "in" for a fade-in, or "out" for a fade-out
9246 effect.
9247 Default is @code{in}.
9248
9249 @item start_frame, s
9250 Specify the number of the frame to start applying the fade
9251 effect at. Default is 0.
9252
9253 @item nb_frames, n
9254 The number of frames that the fade effect lasts. At the end of the
9255 fade-in effect, the output video will have the same intensity as the input video.
9256 At the end of the fade-out transition, the output video will be filled with the
9257 selected @option{color}.
9258 Default is 25.
9259
9260 @item alpha
9261 If set to 1, fade only alpha channel, if one exists on the input.
9262 Default value is 0.
9263
9264 @item start_time, st
9265 Specify the timestamp (in seconds) of the frame to start to apply the fade
9266 effect. If both start_frame and start_time are specified, the fade will start at
9267 whichever comes last.  Default is 0.
9268
9269 @item duration, d
9270 The number of seconds for which the fade effect has to last. At the end of the
9271 fade-in effect the output video will have the same intensity as the input video,
9272 at the end of the fade-out transition the output video will be filled with the
9273 selected @option{color}.
9274 If both duration and nb_frames are specified, duration is used. Default is 0
9275 (nb_frames is used by default).
9276
9277 @item color, c
9278 Specify the color of the fade. Default is "black".
9279 @end table
9280
9281 @subsection Examples
9282
9283 @itemize
9284 @item
9285 Fade in the first 30 frames of video:
9286 @example
9287 fade=in:0:30
9288 @end example
9289
9290 The command above is equivalent to:
9291 @example
9292 fade=t=in:s=0:n=30
9293 @end example
9294
9295 @item
9296 Fade out the last 45 frames of a 200-frame video:
9297 @example
9298 fade=out:155:45
9299 fade=type=out:start_frame=155:nb_frames=45
9300 @end example
9301
9302 @item
9303 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
9304 @example
9305 fade=in:0:25, fade=out:975:25
9306 @end example
9307
9308 @item
9309 Make the first 5 frames yellow, then fade in from frame 5-24:
9310 @example
9311 fade=in:5:20:color=yellow
9312 @end example
9313
9314 @item
9315 Fade in alpha over first 25 frames of video:
9316 @example
9317 fade=in:0:25:alpha=1
9318 @end example
9319
9320 @item
9321 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
9322 @example
9323 fade=t=in:st=5.5:d=0.5
9324 @end example
9325
9326 @end itemize
9327
9328 @section fftfilt
9329 Apply arbitrary expressions to samples in frequency domain
9330
9331 @table @option
9332 @item dc_Y
9333 Adjust the dc value (gain) of the luma plane of the image. The filter
9334 accepts an integer value in range @code{0} to @code{1000}. The default
9335 value is set to @code{0}.
9336
9337 @item dc_U
9338 Adjust the dc value (gain) of the 1st chroma plane of the image. The
9339 filter accepts an integer value in range @code{0} to @code{1000}. The
9340 default value is set to @code{0}.
9341
9342 @item dc_V
9343 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
9344 filter accepts an integer value in range @code{0} to @code{1000}. The
9345 default value is set to @code{0}.
9346
9347 @item weight_Y
9348 Set the frequency domain weight expression for the luma plane.
9349
9350 @item weight_U
9351 Set the frequency domain weight expression for the 1st chroma plane.
9352
9353 @item weight_V
9354 Set the frequency domain weight expression for the 2nd chroma plane.
9355
9356 @item eval
9357 Set when the expressions are evaluated.
9358
9359 It accepts the following values:
9360 @table @samp
9361 @item init
9362 Only evaluate expressions once during the filter initialization.
9363
9364 @item frame
9365 Evaluate expressions for each incoming frame.
9366 @end table
9367
9368 Default value is @samp{init}.
9369
9370 The filter accepts the following variables:
9371 @item X
9372 @item Y
9373 The coordinates of the current sample.
9374
9375 @item W
9376 @item H
9377 The width and height of the image.
9378
9379 @item N
9380 The number of input frame, starting from 0.
9381 @end table
9382
9383 @subsection Examples
9384
9385 @itemize
9386 @item
9387 High-pass:
9388 @example
9389 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
9390 @end example
9391
9392 @item
9393 Low-pass:
9394 @example
9395 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
9396 @end example
9397
9398 @item
9399 Sharpen:
9400 @example
9401 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
9402 @end example
9403
9404 @item
9405 Blur:
9406 @example
9407 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
9408 @end example
9409
9410 @end itemize
9411
9412 @section fftdnoiz
9413 Denoise frames using 3D FFT (frequency domain filtering).
9414
9415 The filter accepts the following options:
9416
9417 @table @option
9418 @item sigma
9419 Set the noise sigma constant. This sets denoising strength.
9420 Default value is 1. Allowed range is from 0 to 30.
9421 Using very high sigma with low overlap may give blocking artifacts.
9422
9423 @item amount
9424 Set amount of denoising. By default all detected noise is reduced.
9425 Default value is 1. Allowed range is from 0 to 1.
9426
9427 @item block
9428 Set size of block, Default is 4, can be 3, 4, 5 or 6.
9429 Actual size of block in pixels is 2 to power of @var{block}, so by default
9430 block size in pixels is 2^4 which is 16.
9431
9432 @item overlap
9433 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
9434
9435 @item prev
9436 Set number of previous frames to use for denoising. By default is set to 0.
9437
9438 @item next
9439 Set number of next frames to to use for denoising. By default is set to 0.
9440
9441 @item planes
9442 Set planes which will be filtered, by default are all available filtered
9443 except alpha.
9444 @end table
9445
9446 @section field
9447
9448 Extract a single field from an interlaced image using stride
9449 arithmetic to avoid wasting CPU time. The output frames are marked as
9450 non-interlaced.
9451
9452 The filter accepts the following options:
9453
9454 @table @option
9455 @item type
9456 Specify whether to extract the top (if the value is @code{0} or
9457 @code{top}) or the bottom field (if the value is @code{1} or
9458 @code{bottom}).
9459 @end table
9460
9461 @section fieldhint
9462
9463 Create new frames by copying the top and bottom fields from surrounding frames
9464 supplied as numbers by the hint file.
9465
9466 @table @option
9467 @item hint
9468 Set file containing hints: absolute/relative frame numbers.
9469
9470 There must be one line for each frame in a clip. Each line must contain two
9471 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
9472 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
9473 is current frame number for @code{absolute} mode or out of [-1, 1] range
9474 for @code{relative} mode. First number tells from which frame to pick up top
9475 field and second number tells from which frame to pick up bottom field.
9476
9477 If optionally followed by @code{+} output frame will be marked as interlaced,
9478 else if followed by @code{-} output frame will be marked as progressive, else
9479 it will be marked same as input frame.
9480 If line starts with @code{#} or @code{;} that line is skipped.
9481
9482 @item mode
9483 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
9484 @end table
9485
9486 Example of first several lines of @code{hint} file for @code{relative} mode:
9487 @example
9488 0,0 - # first frame
9489 1,0 - # second frame, use third's frame top field and second's frame bottom field
9490 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
9491 1,0 -
9492 0,0 -
9493 0,0 -
9494 1,0 -
9495 1,0 -
9496 1,0 -
9497 0,0 -
9498 0,0 -
9499 1,0 -
9500 1,0 -
9501 1,0 -
9502 0,0 -
9503 @end example
9504
9505 @section fieldmatch
9506
9507 Field matching filter for inverse telecine. It is meant to reconstruct the
9508 progressive frames from a telecined stream. The filter does not drop duplicated
9509 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
9510 followed by a decimation filter such as @ref{decimate} in the filtergraph.
9511
9512 The separation of the field matching and the decimation is notably motivated by
9513 the possibility of inserting a de-interlacing filter fallback between the two.
9514 If the source has mixed telecined and real interlaced content,
9515 @code{fieldmatch} will not be able to match fields for the interlaced parts.
9516 But these remaining combed frames will be marked as interlaced, and thus can be
9517 de-interlaced by a later filter such as @ref{yadif} before decimation.
9518
9519 In addition to the various configuration options, @code{fieldmatch} can take an
9520 optional second stream, activated through the @option{ppsrc} option. If
9521 enabled, the frames reconstruction will be based on the fields and frames from
9522 this second stream. This allows the first input to be pre-processed in order to
9523 help the various algorithms of the filter, while keeping the output lossless
9524 (assuming the fields are matched properly). Typically, a field-aware denoiser,
9525 or brightness/contrast adjustments can help.
9526
9527 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
9528 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
9529 which @code{fieldmatch} is based on. While the semantic and usage are very
9530 close, some behaviour and options names can differ.
9531
9532 The @ref{decimate} filter currently only works for constant frame rate input.
9533 If your input has mixed telecined (30fps) and progressive content with a lower
9534 framerate like 24fps use the following filterchain to produce the necessary cfr
9535 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
9536
9537 The filter accepts the following options:
9538
9539 @table @option
9540 @item order
9541 Specify the assumed field order of the input stream. Available values are:
9542
9543 @table @samp
9544 @item auto
9545 Auto detect parity (use FFmpeg's internal parity value).
9546 @item bff
9547 Assume bottom field first.
9548 @item tff
9549 Assume top field first.
9550 @end table
9551
9552 Note that it is sometimes recommended not to trust the parity announced by the
9553 stream.
9554
9555 Default value is @var{auto}.
9556
9557 @item mode
9558 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
9559 sense that it won't risk creating jerkiness due to duplicate frames when
9560 possible, but if there are bad edits or blended fields it will end up
9561 outputting combed frames when a good match might actually exist. On the other
9562 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
9563 but will almost always find a good frame if there is one. The other values are
9564 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
9565 jerkiness and creating duplicate frames versus finding good matches in sections
9566 with bad edits, orphaned fields, blended fields, etc.
9567
9568 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
9569
9570 Available values are:
9571
9572 @table @samp
9573 @item pc
9574 2-way matching (p/c)
9575 @item pc_n
9576 2-way matching, and trying 3rd match if still combed (p/c + n)
9577 @item pc_u
9578 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
9579 @item pc_n_ub
9580 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
9581 still combed (p/c + n + u/b)
9582 @item pcn
9583 3-way matching (p/c/n)
9584 @item pcn_ub
9585 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
9586 detected as combed (p/c/n + u/b)
9587 @end table
9588
9589 The parenthesis at the end indicate the matches that would be used for that
9590 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
9591 @var{top}).
9592
9593 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
9594 the slowest.
9595
9596 Default value is @var{pc_n}.
9597
9598 @item ppsrc
9599 Mark the main input stream as a pre-processed input, and enable the secondary
9600 input stream as the clean source to pick the fields from. See the filter
9601 introduction for more details. It is similar to the @option{clip2} feature from
9602 VFM/TFM.
9603
9604 Default value is @code{0} (disabled).
9605
9606 @item field
9607 Set the field to match from. It is recommended to set this to the same value as
9608 @option{order} unless you experience matching failures with that setting. In
9609 certain circumstances changing the field that is used to match from can have a
9610 large impact on matching performance. Available values are:
9611
9612 @table @samp
9613 @item auto
9614 Automatic (same value as @option{order}).
9615 @item bottom
9616 Match from the bottom field.
9617 @item top
9618 Match from the top field.
9619 @end table
9620
9621 Default value is @var{auto}.
9622
9623 @item mchroma
9624 Set whether or not chroma is included during the match comparisons. In most
9625 cases it is recommended to leave this enabled. You should set this to @code{0}
9626 only if your clip has bad chroma problems such as heavy rainbowing or other
9627 artifacts. Setting this to @code{0} could also be used to speed things up at
9628 the cost of some accuracy.
9629
9630 Default value is @code{1}.
9631
9632 @item y0
9633 @item y1
9634 These define an exclusion band which excludes the lines between @option{y0} and
9635 @option{y1} from being included in the field matching decision. An exclusion
9636 band can be used to ignore subtitles, a logo, or other things that may
9637 interfere with the matching. @option{y0} sets the starting scan line and
9638 @option{y1} sets the ending line; all lines in between @option{y0} and
9639 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
9640 @option{y0} and @option{y1} to the same value will disable the feature.
9641 @option{y0} and @option{y1} defaults to @code{0}.
9642
9643 @item scthresh
9644 Set the scene change detection threshold as a percentage of maximum change on
9645 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
9646 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
9647 @option{scthresh} is @code{[0.0, 100.0]}.
9648
9649 Default value is @code{12.0}.
9650
9651 @item combmatch
9652 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
9653 account the combed scores of matches when deciding what match to use as the
9654 final match. Available values are:
9655
9656 @table @samp
9657 @item none
9658 No final matching based on combed scores.
9659 @item sc
9660 Combed scores are only used when a scene change is detected.
9661 @item full
9662 Use combed scores all the time.
9663 @end table
9664
9665 Default is @var{sc}.
9666
9667 @item combdbg
9668 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
9669 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
9670 Available values are:
9671
9672 @table @samp
9673 @item none
9674 No forced calculation.
9675 @item pcn
9676 Force p/c/n calculations.
9677 @item pcnub
9678 Force p/c/n/u/b calculations.
9679 @end table
9680
9681 Default value is @var{none}.
9682
9683 @item cthresh
9684 This is the area combing threshold used for combed frame detection. This
9685 essentially controls how "strong" or "visible" combing must be to be detected.
9686 Larger values mean combing must be more visible and smaller values mean combing
9687 can be less visible or strong and still be detected. Valid settings are from
9688 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
9689 be detected as combed). This is basically a pixel difference value. A good
9690 range is @code{[8, 12]}.
9691
9692 Default value is @code{9}.
9693
9694 @item chroma
9695 Sets whether or not chroma is considered in the combed frame decision.  Only
9696 disable this if your source has chroma problems (rainbowing, etc.) that are
9697 causing problems for the combed frame detection with chroma enabled. Actually,
9698 using @option{chroma}=@var{0} is usually more reliable, except for the case
9699 where there is chroma only combing in the source.
9700
9701 Default value is @code{0}.
9702
9703 @item blockx
9704 @item blocky
9705 Respectively set the x-axis and y-axis size of the window used during combed
9706 frame detection. This has to do with the size of the area in which
9707 @option{combpel} pixels are required to be detected as combed for a frame to be
9708 declared combed. See the @option{combpel} parameter description for more info.
9709 Possible values are any number that is a power of 2 starting at 4 and going up
9710 to 512.
9711
9712 Default value is @code{16}.
9713
9714 @item combpel
9715 The number of combed pixels inside any of the @option{blocky} by
9716 @option{blockx} size blocks on the frame for the frame to be detected as
9717 combed. While @option{cthresh} controls how "visible" the combing must be, this
9718 setting controls "how much" combing there must be in any localized area (a
9719 window defined by the @option{blockx} and @option{blocky} settings) on the
9720 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
9721 which point no frames will ever be detected as combed). This setting is known
9722 as @option{MI} in TFM/VFM vocabulary.
9723
9724 Default value is @code{80}.
9725 @end table
9726
9727 @anchor{p/c/n/u/b meaning}
9728 @subsection p/c/n/u/b meaning
9729
9730 @subsubsection p/c/n
9731
9732 We assume the following telecined stream:
9733
9734 @example
9735 Top fields:     1 2 2 3 4
9736 Bottom fields:  1 2 3 4 4
9737 @end example
9738
9739 The numbers correspond to the progressive frame the fields relate to. Here, the
9740 first two frames are progressive, the 3rd and 4th are combed, and so on.
9741
9742 When @code{fieldmatch} is configured to run a matching from bottom
9743 (@option{field}=@var{bottom}) this is how this input stream get transformed:
9744
9745 @example
9746 Input stream:
9747                 T     1 2 2 3 4
9748                 B     1 2 3 4 4   <-- matching reference
9749
9750 Matches:              c c n n c
9751
9752 Output stream:
9753                 T     1 2 3 4 4
9754                 B     1 2 3 4 4
9755 @end example
9756
9757 As a result of the field matching, we can see that some frames get duplicated.
9758 To perform a complete inverse telecine, you need to rely on a decimation filter
9759 after this operation. See for instance the @ref{decimate} filter.
9760
9761 The same operation now matching from top fields (@option{field}=@var{top})
9762 looks like this:
9763
9764 @example
9765 Input stream:
9766                 T     1 2 2 3 4   <-- matching reference
9767                 B     1 2 3 4 4
9768
9769 Matches:              c c p p c
9770
9771 Output stream:
9772                 T     1 2 2 3 4
9773                 B     1 2 2 3 4
9774 @end example
9775
9776 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
9777 basically, they refer to the frame and field of the opposite parity:
9778
9779 @itemize
9780 @item @var{p} matches the field of the opposite parity in the previous frame
9781 @item @var{c} matches the field of the opposite parity in the current frame
9782 @item @var{n} matches the field of the opposite parity in the next frame
9783 @end itemize
9784
9785 @subsubsection u/b
9786
9787 The @var{u} and @var{b} matching are a bit special in the sense that they match
9788 from the opposite parity flag. In the following examples, we assume that we are
9789 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
9790 'x' is placed above and below each matched fields.
9791
9792 With bottom matching (@option{field}=@var{bottom}):
9793 @example
9794 Match:           c         p           n          b          u
9795
9796                  x       x               x        x          x
9797   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
9798   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
9799                  x         x           x        x              x
9800
9801 Output frames:
9802                  2          1          2          2          2
9803                  2          2          2          1          3
9804 @end example
9805
9806 With top matching (@option{field}=@var{top}):
9807 @example
9808 Match:           c         p           n          b          u
9809
9810                  x         x           x        x              x
9811   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
9812   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
9813                  x       x               x        x          x
9814
9815 Output frames:
9816                  2          2          2          1          2
9817                  2          1          3          2          2
9818 @end example
9819
9820 @subsection Examples
9821
9822 Simple IVTC of a top field first telecined stream:
9823 @example
9824 fieldmatch=order=tff:combmatch=none, decimate
9825 @end example
9826
9827 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
9828 @example
9829 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
9830 @end example
9831
9832 @section fieldorder
9833
9834 Transform the field order of the input video.
9835
9836 It accepts the following parameters:
9837
9838 @table @option
9839
9840 @item order
9841 The output field order. Valid values are @var{tff} for top field first or @var{bff}
9842 for bottom field first.
9843 @end table
9844
9845 The default value is @samp{tff}.
9846
9847 The transformation is done by shifting the picture content up or down
9848 by one line, and filling the remaining line with appropriate picture content.
9849 This method is consistent with most broadcast field order converters.
9850
9851 If the input video is not flagged as being interlaced, or it is already
9852 flagged as being of the required output field order, then this filter does
9853 not alter the incoming video.
9854
9855 It is very useful when converting to or from PAL DV material,
9856 which is bottom field first.
9857
9858 For example:
9859 @example
9860 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
9861 @end example
9862
9863 @section fifo, afifo
9864
9865 Buffer input images and send them when they are requested.
9866
9867 It is mainly useful when auto-inserted by the libavfilter
9868 framework.
9869
9870 It does not take parameters.
9871
9872 @section fillborders
9873
9874 Fill borders of the input video, without changing video stream dimensions.
9875 Sometimes video can have garbage at the four edges and you may not want to
9876 crop video input to keep size multiple of some number.
9877
9878 This filter accepts the following options:
9879
9880 @table @option
9881 @item left
9882 Number of pixels to fill from left border.
9883
9884 @item right
9885 Number of pixels to fill from right border.
9886
9887 @item top
9888 Number of pixels to fill from top border.
9889
9890 @item bottom
9891 Number of pixels to fill from bottom border.
9892
9893 @item mode
9894 Set fill mode.
9895
9896 It accepts the following values:
9897 @table @samp
9898 @item smear
9899 fill pixels using outermost pixels
9900
9901 @item mirror
9902 fill pixels using mirroring
9903
9904 @item fixed
9905 fill pixels with constant value
9906 @end table
9907
9908 Default is @var{smear}.
9909
9910 @item color
9911 Set color for pixels in fixed mode. Default is @var{black}.
9912 @end table
9913
9914 @section find_rect
9915
9916 Find a rectangular object
9917
9918 It accepts the following options:
9919
9920 @table @option
9921 @item object
9922 Filepath of the object image, needs to be in gray8.
9923
9924 @item threshold
9925 Detection threshold, default is 0.5.
9926
9927 @item mipmaps
9928 Number of mipmaps, default is 3.
9929
9930 @item xmin, ymin, xmax, ymax
9931 Specifies the rectangle in which to search.
9932 @end table
9933
9934 @subsection Examples
9935
9936 @itemize
9937 @item
9938 Generate a representative palette of a given video using @command{ffmpeg}:
9939 @example
9940 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9941 @end example
9942 @end itemize
9943
9944 @section cover_rect
9945
9946 Cover a rectangular object
9947
9948 It accepts the following options:
9949
9950 @table @option
9951 @item cover
9952 Filepath of the optional cover image, needs to be in yuv420.
9953
9954 @item mode
9955 Set covering mode.
9956
9957 It accepts the following values:
9958 @table @samp
9959 @item cover
9960 cover it by the supplied image
9961 @item blur
9962 cover it by interpolating the surrounding pixels
9963 @end table
9964
9965 Default value is @var{blur}.
9966 @end table
9967
9968 @subsection Examples
9969
9970 @itemize
9971 @item
9972 Generate a representative palette of a given video using @command{ffmpeg}:
9973 @example
9974 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9975 @end example
9976 @end itemize
9977
9978 @section floodfill
9979
9980 Flood area with values of same pixel components with another values.
9981
9982 It accepts the following options:
9983 @table @option
9984 @item x
9985 Set pixel x coordinate.
9986
9987 @item y
9988 Set pixel y coordinate.
9989
9990 @item s0
9991 Set source #0 component value.
9992
9993 @item s1
9994 Set source #1 component value.
9995
9996 @item s2
9997 Set source #2 component value.
9998
9999 @item s3
10000 Set source #3 component value.
10001
10002 @item d0
10003 Set destination #0 component value.
10004
10005 @item d1
10006 Set destination #1 component value.
10007
10008 @item d2
10009 Set destination #2 component value.
10010
10011 @item d3
10012 Set destination #3 component value.
10013 @end table
10014
10015 @anchor{format}
10016 @section format
10017
10018 Convert the input video to one of the specified pixel formats.
10019 Libavfilter will try to pick one that is suitable as input to
10020 the next filter.
10021
10022 It accepts the following parameters:
10023 @table @option
10024
10025 @item pix_fmts
10026 A '|'-separated list of pixel format names, such as
10027 "pix_fmts=yuv420p|monow|rgb24".
10028
10029 @end table
10030
10031 @subsection Examples
10032
10033 @itemize
10034 @item
10035 Convert the input video to the @var{yuv420p} format
10036 @example
10037 format=pix_fmts=yuv420p
10038 @end example
10039
10040 Convert the input video to any of the formats in the list
10041 @example
10042 format=pix_fmts=yuv420p|yuv444p|yuv410p
10043 @end example
10044 @end itemize
10045
10046 @anchor{fps}
10047 @section fps
10048
10049 Convert the video to specified constant frame rate by duplicating or dropping
10050 frames as necessary.
10051
10052 It accepts the following parameters:
10053 @table @option
10054
10055 @item fps
10056 The desired output frame rate. The default is @code{25}.
10057
10058 @item start_time
10059 Assume the first PTS should be the given value, in seconds. This allows for
10060 padding/trimming at the start of stream. By default, no assumption is made
10061 about the first frame's expected PTS, so no padding or trimming is done.
10062 For example, this could be set to 0 to pad the beginning with duplicates of
10063 the first frame if a video stream starts after the audio stream or to trim any
10064 frames with a negative PTS.
10065
10066 @item round
10067 Timestamp (PTS) rounding method.
10068
10069 Possible values are:
10070 @table @option
10071 @item zero
10072 round towards 0
10073 @item inf
10074 round away from 0
10075 @item down
10076 round towards -infinity
10077 @item up
10078 round towards +infinity
10079 @item near
10080 round to nearest
10081 @end table
10082 The default is @code{near}.
10083
10084 @item eof_action
10085 Action performed when reading the last frame.
10086
10087 Possible values are:
10088 @table @option
10089 @item round
10090 Use same timestamp rounding method as used for other frames.
10091 @item pass
10092 Pass through last frame if input duration has not been reached yet.
10093 @end table
10094 The default is @code{round}.
10095
10096 @end table
10097
10098 Alternatively, the options can be specified as a flat string:
10099 @var{fps}[:@var{start_time}[:@var{round}]].
10100
10101 See also the @ref{setpts} filter.
10102
10103 @subsection Examples
10104
10105 @itemize
10106 @item
10107 A typical usage in order to set the fps to 25:
10108 @example
10109 fps=fps=25
10110 @end example
10111
10112 @item
10113 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
10114 @example
10115 fps=fps=film:round=near
10116 @end example
10117 @end itemize
10118
10119 @section framepack
10120
10121 Pack two different video streams into a stereoscopic video, setting proper
10122 metadata on supported codecs. The two views should have the same size and
10123 framerate and processing will stop when the shorter video ends. Please note
10124 that you may conveniently adjust view properties with the @ref{scale} and
10125 @ref{fps} filters.
10126
10127 It accepts the following parameters:
10128 @table @option
10129
10130 @item format
10131 The desired packing format. Supported values are:
10132
10133 @table @option
10134
10135 @item sbs
10136 The views are next to each other (default).
10137
10138 @item tab
10139 The views are on top of each other.
10140
10141 @item lines
10142 The views are packed by line.
10143
10144 @item columns
10145 The views are packed by column.
10146
10147 @item frameseq
10148 The views are temporally interleaved.
10149
10150 @end table
10151
10152 @end table
10153
10154 Some examples:
10155
10156 @example
10157 # Convert left and right views into a frame-sequential video
10158 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
10159
10160 # Convert views into a side-by-side video with the same output resolution as the input
10161 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
10162 @end example
10163
10164 @section framerate
10165
10166 Change the frame rate by interpolating new video output frames from the source
10167 frames.
10168
10169 This filter is not designed to function correctly with interlaced media. If
10170 you wish to change the frame rate of interlaced media then you are required
10171 to deinterlace before this filter and re-interlace after this filter.
10172
10173 A description of the accepted options follows.
10174
10175 @table @option
10176 @item fps
10177 Specify the output frames per second. This option can also be specified
10178 as a value alone. The default is @code{50}.
10179
10180 @item interp_start
10181 Specify the start of a range where the output frame will be created as a
10182 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10183 the default is @code{15}.
10184
10185 @item interp_end
10186 Specify the end of a range where the output frame will be created as a
10187 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10188 the default is @code{240}.
10189
10190 @item scene
10191 Specify the level at which a scene change is detected as a value between
10192 0 and 100 to indicate a new scene; a low value reflects a low
10193 probability for the current frame to introduce a new scene, while a higher
10194 value means the current frame is more likely to be one.
10195 The default is @code{8.2}.
10196
10197 @item flags
10198 Specify flags influencing the filter process.
10199
10200 Available value for @var{flags} is:
10201
10202 @table @option
10203 @item scene_change_detect, scd
10204 Enable scene change detection using the value of the option @var{scene}.
10205 This flag is enabled by default.
10206 @end table
10207 @end table
10208
10209 @section framestep
10210
10211 Select one frame every N-th frame.
10212
10213 This filter accepts the following option:
10214 @table @option
10215 @item step
10216 Select frame after every @code{step} frames.
10217 Allowed values are positive integers higher than 0. Default value is @code{1}.
10218 @end table
10219
10220 @section freezedetect
10221
10222 Detect frozen video.
10223
10224 This filter logs a message and sets frame metadata when it detects that the
10225 input video has no significant change in content during a specified duration.
10226 Video freeze detection calculates the mean average absolute difference of all
10227 the components of video frames and compares it to a noise floor.
10228
10229 The printed times and duration are expressed in seconds. The
10230 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
10231 whose timestamp equals or exceeds the detection duration and it contains the
10232 timestamp of the first frame of the freeze. The
10233 @code{lavfi.freezedetect.freeze_duration} and
10234 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
10235 after the freeze.
10236
10237 The filter accepts the following options:
10238
10239 @table @option
10240 @item noise, n
10241 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
10242 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
10243 0.001.
10244
10245 @item duration, d
10246 Set freeze duration until notification (default is 2 seconds).
10247 @end table
10248
10249 @anchor{frei0r}
10250 @section frei0r
10251
10252 Apply a frei0r effect to the input video.
10253
10254 To enable the compilation of this filter, you need to install the frei0r
10255 header and configure FFmpeg with @code{--enable-frei0r}.
10256
10257 It accepts the following parameters:
10258
10259 @table @option
10260
10261 @item filter_name
10262 The name of the frei0r effect to load. If the environment variable
10263 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
10264 directories specified by the colon-separated list in @env{FREI0R_PATH}.
10265 Otherwise, the standard frei0r paths are searched, in this order:
10266 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
10267 @file{/usr/lib/frei0r-1/}.
10268
10269 @item filter_params
10270 A '|'-separated list of parameters to pass to the frei0r effect.
10271
10272 @end table
10273
10274 A frei0r effect parameter can be a boolean (its value is either
10275 "y" or "n"), a double, a color (specified as
10276 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
10277 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
10278 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
10279 a position (specified as @var{X}/@var{Y}, where
10280 @var{X} and @var{Y} are floating point numbers) and/or a string.
10281
10282 The number and types of parameters depend on the loaded effect. If an
10283 effect parameter is not specified, the default value is set.
10284
10285 @subsection Examples
10286
10287 @itemize
10288 @item
10289 Apply the distort0r effect, setting the first two double parameters:
10290 @example
10291 frei0r=filter_name=distort0r:filter_params=0.5|0.01
10292 @end example
10293
10294 @item
10295 Apply the colordistance effect, taking a color as the first parameter:
10296 @example
10297 frei0r=colordistance:0.2/0.3/0.4
10298 frei0r=colordistance:violet
10299 frei0r=colordistance:0x112233
10300 @end example
10301
10302 @item
10303 Apply the perspective effect, specifying the top left and top right image
10304 positions:
10305 @example
10306 frei0r=perspective:0.2/0.2|0.8/0.2
10307 @end example
10308 @end itemize
10309
10310 For more information, see
10311 @url{http://frei0r.dyne.org}
10312
10313 @section fspp
10314
10315 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
10316
10317 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
10318 processing filter, one of them is performed once per block, not per pixel.
10319 This allows for much higher speed.
10320
10321 The filter accepts the following options:
10322
10323 @table @option
10324 @item quality
10325 Set quality. This option defines the number of levels for averaging. It accepts
10326 an integer in the range 4-5. Default value is @code{4}.
10327
10328 @item qp
10329 Force a constant quantization parameter. It accepts an integer in range 0-63.
10330 If not set, the filter will use the QP from the video stream (if available).
10331
10332 @item strength
10333 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
10334 more details but also more artifacts, while higher values make the image smoother
10335 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
10336
10337 @item use_bframe_qp
10338 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10339 option may cause flicker since the B-Frames have often larger QP. Default is
10340 @code{0} (not enabled).
10341
10342 @end table
10343
10344 @section gblur
10345
10346 Apply Gaussian blur filter.
10347
10348 The filter accepts the following options:
10349
10350 @table @option
10351 @item sigma
10352 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
10353
10354 @item steps
10355 Set number of steps for Gaussian approximation. Default is @code{1}.
10356
10357 @item planes
10358 Set which planes to filter. By default all planes are filtered.
10359
10360 @item sigmaV
10361 Set vertical sigma, if negative it will be same as @code{sigma}.
10362 Default is @code{-1}.
10363 @end table
10364
10365 @section geq
10366
10367 Apply generic equation to each pixel.
10368
10369 The filter accepts the following options:
10370
10371 @table @option
10372 @item lum_expr, lum
10373 Set the luminance expression.
10374 @item cb_expr, cb
10375 Set the chrominance blue expression.
10376 @item cr_expr, cr
10377 Set the chrominance red expression.
10378 @item alpha_expr, a
10379 Set the alpha expression.
10380 @item red_expr, r
10381 Set the red expression.
10382 @item green_expr, g
10383 Set the green expression.
10384 @item blue_expr, b
10385 Set the blue expression.
10386 @end table
10387
10388 The colorspace is selected according to the specified options. If one
10389 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
10390 options is specified, the filter will automatically select a YCbCr
10391 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
10392 @option{blue_expr} options is specified, it will select an RGB
10393 colorspace.
10394
10395 If one of the chrominance expression is not defined, it falls back on the other
10396 one. If no alpha expression is specified it will evaluate to opaque value.
10397 If none of chrominance expressions are specified, they will evaluate
10398 to the luminance expression.
10399
10400 The expressions can use the following variables and functions:
10401
10402 @table @option
10403 @item N
10404 The sequential number of the filtered frame, starting from @code{0}.
10405
10406 @item X
10407 @item Y
10408 The coordinates of the current sample.
10409
10410 @item W
10411 @item H
10412 The width and height of the image.
10413
10414 @item SW
10415 @item SH
10416 Width and height scale depending on the currently filtered plane. It is the
10417 ratio between the corresponding luma plane number of pixels and the current
10418 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
10419 @code{0.5,0.5} for chroma planes.
10420
10421 @item T
10422 Time of the current frame, expressed in seconds.
10423
10424 @item p(x, y)
10425 Return the value of the pixel at location (@var{x},@var{y}) of the current
10426 plane.
10427
10428 @item lum(x, y)
10429 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
10430 plane.
10431
10432 @item cb(x, y)
10433 Return the value of the pixel at location (@var{x},@var{y}) of the
10434 blue-difference chroma plane. Return 0 if there is no such plane.
10435
10436 @item cr(x, y)
10437 Return the value of the pixel at location (@var{x},@var{y}) of the
10438 red-difference chroma plane. Return 0 if there is no such plane.
10439
10440 @item r(x, y)
10441 @item g(x, y)
10442 @item b(x, y)
10443 Return the value of the pixel at location (@var{x},@var{y}) of the
10444 red/green/blue component. Return 0 if there is no such component.
10445
10446 @item alpha(x, y)
10447 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
10448 plane. Return 0 if there is no such plane.
10449 @end table
10450
10451 For functions, if @var{x} and @var{y} are outside the area, the value will be
10452 automatically clipped to the closer edge.
10453
10454 @subsection Examples
10455
10456 @itemize
10457 @item
10458 Flip the image horizontally:
10459 @example
10460 geq=p(W-X\,Y)
10461 @end example
10462
10463 @item
10464 Generate a bidimensional sine wave, with angle @code{PI/3} and a
10465 wavelength of 100 pixels:
10466 @example
10467 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
10468 @end example
10469
10470 @item
10471 Generate a fancy enigmatic moving light:
10472 @example
10473 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
10474 @end example
10475
10476 @item
10477 Generate a quick emboss effect:
10478 @example
10479 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
10480 @end example
10481
10482 @item
10483 Modify RGB components depending on pixel position:
10484 @example
10485 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
10486 @end example
10487
10488 @item
10489 Create a radial gradient that is the same size as the input (also see
10490 the @ref{vignette} filter):
10491 @example
10492 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
10493 @end example
10494 @end itemize
10495
10496 @section gradfun
10497
10498 Fix the banding artifacts that are sometimes introduced into nearly flat
10499 regions by truncation to 8-bit color depth.
10500 Interpolate the gradients that should go where the bands are, and
10501 dither them.
10502
10503 It is designed for playback only.  Do not use it prior to
10504 lossy compression, because compression tends to lose the dither and
10505 bring back the bands.
10506
10507 It accepts the following parameters:
10508
10509 @table @option
10510
10511 @item strength
10512 The maximum amount by which the filter will change any one pixel. This is also
10513 the threshold for detecting nearly flat regions. Acceptable values range from
10514 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
10515 valid range.
10516
10517 @item radius
10518 The neighborhood to fit the gradient to. A larger radius makes for smoother
10519 gradients, but also prevents the filter from modifying the pixels near detailed
10520 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
10521 values will be clipped to the valid range.
10522
10523 @end table
10524
10525 Alternatively, the options can be specified as a flat string:
10526 @var{strength}[:@var{radius}]
10527
10528 @subsection Examples
10529
10530 @itemize
10531 @item
10532 Apply the filter with a @code{3.5} strength and radius of @code{8}:
10533 @example
10534 gradfun=3.5:8
10535 @end example
10536
10537 @item
10538 Specify radius, omitting the strength (which will fall-back to the default
10539 value):
10540 @example
10541 gradfun=radius=8
10542 @end example
10543
10544 @end itemize
10545
10546 @section graphmonitor, agraphmonitor
10547 Show various filtergraph stats.
10548
10549 With this filter one can debug complete filtergraph.
10550 Especially issues with links filling with queued frames.
10551
10552 The filter accepts the following options:
10553
10554 @table @option
10555 @item size, s
10556 Set video output size. Default is @var{hd720}.
10557
10558 @item opacity, o
10559 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
10560
10561 @item mode, m
10562 Set output mode, can be @var{fulll} or @var{compact}.
10563 In @var{compact} mode only filters with some queued frames have displayed stats.
10564
10565 @item flags, f
10566 Set flags which enable which stats are shown in video.
10567
10568 Available values for flags are:
10569 @table @samp
10570 @item queue
10571 Display number of queued frames in each link.
10572
10573 @item frame_count_in
10574 Display number of frames taken from filter.
10575
10576 @item frame_count_out
10577 Display number of frames given out from filter.
10578
10579 @item pts
10580 Display current filtered frame pts.
10581
10582 @item time
10583 Display current filtered frame time.
10584
10585 @item timebase
10586 Display time base for filter link.
10587
10588 @item format
10589 Display used format for filter link.
10590
10591 @item size
10592 Display video size or number of audio channels in case of audio used by filter link.
10593
10594 @item rate
10595 Display video frame rate or sample rate in case of audio used by filter link.
10596 @end table
10597
10598 @item rate, r
10599 Set upper limit for video rate of output stream, Default value is @var{25}.
10600 This guarantee that output video frame rate will not be higher than this value.
10601 @end table
10602
10603 @section greyedge
10604 A color constancy variation filter which estimates scene illumination via grey edge algorithm
10605 and corrects the scene colors accordingly.
10606
10607 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
10608
10609 The filter accepts the following options:
10610
10611 @table @option
10612 @item difford
10613 The order of differentiation to be applied on the scene. Must be chosen in the range
10614 [0,2] and default value is 1.
10615
10616 @item minknorm
10617 The Minkowski parameter to be used for calculating the Minkowski distance. Must
10618 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
10619 max value instead of calculating Minkowski distance.
10620
10621 @item sigma
10622 The standard deviation of Gaussian blur to be applied on the scene. Must be
10623 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
10624 can't be equal to 0 if @var{difford} is greater than 0.
10625 @end table
10626
10627 @subsection Examples
10628 @itemize
10629
10630 @item
10631 Grey Edge:
10632 @example
10633 greyedge=difford=1:minknorm=5:sigma=2
10634 @end example
10635
10636 @item
10637 Max Edge:
10638 @example
10639 greyedge=difford=1:minknorm=0:sigma=2
10640 @end example
10641
10642 @end itemize
10643
10644 @anchor{haldclut}
10645 @section haldclut
10646
10647 Apply a Hald CLUT to a video stream.
10648
10649 First input is the video stream to process, and second one is the Hald CLUT.
10650 The Hald CLUT input can be a simple picture or a complete video stream.
10651
10652 The filter accepts the following options:
10653
10654 @table @option
10655 @item shortest
10656 Force termination when the shortest input terminates. Default is @code{0}.
10657 @item repeatlast
10658 Continue applying the last CLUT after the end of the stream. A value of
10659 @code{0} disable the filter after the last frame of the CLUT is reached.
10660 Default is @code{1}.
10661 @end table
10662
10663 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
10664 filters share the same internals).
10665
10666 More information about the Hald CLUT can be found on Eskil Steenberg's website
10667 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
10668
10669 @subsection Workflow examples
10670
10671 @subsubsection Hald CLUT video stream
10672
10673 Generate an identity Hald CLUT stream altered with various effects:
10674 @example
10675 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
10676 @end example
10677
10678 Note: make sure you use a lossless codec.
10679
10680 Then use it with @code{haldclut} to apply it on some random stream:
10681 @example
10682 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
10683 @end example
10684
10685 The Hald CLUT will be applied to the 10 first seconds (duration of
10686 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
10687 to the remaining frames of the @code{mandelbrot} stream.
10688
10689 @subsubsection Hald CLUT with preview
10690
10691 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
10692 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
10693 biggest possible square starting at the top left of the picture. The remaining
10694 padding pixels (bottom or right) will be ignored. This area can be used to add
10695 a preview of the Hald CLUT.
10696
10697 Typically, the following generated Hald CLUT will be supported by the
10698 @code{haldclut} filter:
10699
10700 @example
10701 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
10702    pad=iw+320 [padded_clut];
10703    smptebars=s=320x256, split [a][b];
10704    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
10705    [main][b] overlay=W-320" -frames:v 1 clut.png
10706 @end example
10707
10708 It contains the original and a preview of the effect of the CLUT: SMPTE color
10709 bars are displayed on the right-top, and below the same color bars processed by
10710 the color changes.
10711
10712 Then, the effect of this Hald CLUT can be visualized with:
10713 @example
10714 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
10715 @end example
10716
10717 @section hflip
10718
10719 Flip the input video horizontally.
10720
10721 For example, to horizontally flip the input video with @command{ffmpeg}:
10722 @example
10723 ffmpeg -i in.avi -vf "hflip" out.avi
10724 @end example
10725
10726 @section histeq
10727 This filter applies a global color histogram equalization on a
10728 per-frame basis.
10729
10730 It can be used to correct video that has a compressed range of pixel
10731 intensities.  The filter redistributes the pixel intensities to
10732 equalize their distribution across the intensity range. It may be
10733 viewed as an "automatically adjusting contrast filter". This filter is
10734 useful only for correcting degraded or poorly captured source
10735 video.
10736
10737 The filter accepts the following options:
10738
10739 @table @option
10740 @item strength
10741 Determine the amount of equalization to be applied.  As the strength
10742 is reduced, the distribution of pixel intensities more-and-more
10743 approaches that of the input frame. The value must be a float number
10744 in the range [0,1] and defaults to 0.200.
10745
10746 @item intensity
10747 Set the maximum intensity that can generated and scale the output
10748 values appropriately.  The strength should be set as desired and then
10749 the intensity can be limited if needed to avoid washing-out. The value
10750 must be a float number in the range [0,1] and defaults to 0.210.
10751
10752 @item antibanding
10753 Set the antibanding level. If enabled the filter will randomly vary
10754 the luminance of output pixels by a small amount to avoid banding of
10755 the histogram. Possible values are @code{none}, @code{weak} or
10756 @code{strong}. It defaults to @code{none}.
10757 @end table
10758
10759 @section histogram
10760
10761 Compute and draw a color distribution histogram for the input video.
10762
10763 The computed histogram is a representation of the color component
10764 distribution in an image.
10765
10766 Standard histogram displays the color components distribution in an image.
10767 Displays color graph for each color component. Shows distribution of
10768 the Y, U, V, A or R, G, B components, depending on input format, in the
10769 current frame. Below each graph a color component scale meter is shown.
10770
10771 The filter accepts the following options:
10772
10773 @table @option
10774 @item level_height
10775 Set height of level. Default value is @code{200}.
10776 Allowed range is [50, 2048].
10777
10778 @item scale_height
10779 Set height of color scale. Default value is @code{12}.
10780 Allowed range is [0, 40].
10781
10782 @item display_mode
10783 Set display mode.
10784 It accepts the following values:
10785 @table @samp
10786 @item stack
10787 Per color component graphs are placed below each other.
10788
10789 @item parade
10790 Per color component graphs are placed side by side.
10791
10792 @item overlay
10793 Presents information identical to that in the @code{parade}, except
10794 that the graphs representing color components are superimposed directly
10795 over one another.
10796 @end table
10797 Default is @code{stack}.
10798
10799 @item levels_mode
10800 Set mode. Can be either @code{linear}, or @code{logarithmic}.
10801 Default is @code{linear}.
10802
10803 @item components
10804 Set what color components to display.
10805 Default is @code{7}.
10806
10807 @item fgopacity
10808 Set foreground opacity. Default is @code{0.7}.
10809
10810 @item bgopacity
10811 Set background opacity. Default is @code{0.5}.
10812 @end table
10813
10814 @subsection Examples
10815
10816 @itemize
10817
10818 @item
10819 Calculate and draw histogram:
10820 @example
10821 ffplay -i input -vf histogram
10822 @end example
10823
10824 @end itemize
10825
10826 @anchor{hqdn3d}
10827 @section hqdn3d
10828
10829 This is a high precision/quality 3d denoise filter. It aims to reduce
10830 image noise, producing smooth images and making still images really
10831 still. It should enhance compressibility.
10832
10833 It accepts the following optional parameters:
10834
10835 @table @option
10836 @item luma_spatial
10837 A non-negative floating point number which specifies spatial luma strength.
10838 It defaults to 4.0.
10839
10840 @item chroma_spatial
10841 A non-negative floating point number which specifies spatial chroma strength.
10842 It defaults to 3.0*@var{luma_spatial}/4.0.
10843
10844 @item luma_tmp
10845 A floating point number which specifies luma temporal strength. It defaults to
10846 6.0*@var{luma_spatial}/4.0.
10847
10848 @item chroma_tmp
10849 A floating point number which specifies chroma temporal strength. It defaults to
10850 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
10851 @end table
10852
10853 @anchor{hwdownload}
10854 @section hwdownload
10855
10856 Download hardware frames to system memory.
10857
10858 The input must be in hardware frames, and the output a non-hardware format.
10859 Not all formats will be supported on the output - it may be necessary to insert
10860 an additional @option{format} filter immediately following in the graph to get
10861 the output in a supported format.
10862
10863 @section hwmap
10864
10865 Map hardware frames to system memory or to another device.
10866
10867 This filter has several different modes of operation; which one is used depends
10868 on the input and output formats:
10869 @itemize
10870 @item
10871 Hardware frame input, normal frame output
10872
10873 Map the input frames to system memory and pass them to the output.  If the
10874 original hardware frame is later required (for example, after overlaying
10875 something else on part of it), the @option{hwmap} filter can be used again
10876 in the next mode to retrieve it.
10877 @item
10878 Normal frame input, hardware frame output
10879
10880 If the input is actually a software-mapped hardware frame, then unmap it -
10881 that is, return the original hardware frame.
10882
10883 Otherwise, a device must be provided.  Create new hardware surfaces on that
10884 device for the output, then map them back to the software format at the input
10885 and give those frames to the preceding filter.  This will then act like the
10886 @option{hwupload} filter, but may be able to avoid an additional copy when
10887 the input is already in a compatible format.
10888 @item
10889 Hardware frame input and output
10890
10891 A device must be supplied for the output, either directly or with the
10892 @option{derive_device} option.  The input and output devices must be of
10893 different types and compatible - the exact meaning of this is
10894 system-dependent, but typically it means that they must refer to the same
10895 underlying hardware context (for example, refer to the same graphics card).
10896
10897 If the input frames were originally created on the output device, then unmap
10898 to retrieve the original frames.
10899
10900 Otherwise, map the frames to the output device - create new hardware frames
10901 on the output corresponding to the frames on the input.
10902 @end itemize
10903
10904 The following additional parameters are accepted:
10905
10906 @table @option
10907 @item mode
10908 Set the frame mapping mode.  Some combination of:
10909 @table @var
10910 @item read
10911 The mapped frame should be readable.
10912 @item write
10913 The mapped frame should be writeable.
10914 @item overwrite
10915 The mapping will always overwrite the entire frame.
10916
10917 This may improve performance in some cases, as the original contents of the
10918 frame need not be loaded.
10919 @item direct
10920 The mapping must not involve any copying.
10921
10922 Indirect mappings to copies of frames are created in some cases where either
10923 direct mapping is not possible or it would have unexpected properties.
10924 Setting this flag ensures that the mapping is direct and will fail if that is
10925 not possible.
10926 @end table
10927 Defaults to @var{read+write} if not specified.
10928
10929 @item derive_device @var{type}
10930 Rather than using the device supplied at initialisation, instead derive a new
10931 device of type @var{type} from the device the input frames exist on.
10932
10933 @item reverse
10934 In a hardware to hardware mapping, map in reverse - create frames in the sink
10935 and map them back to the source.  This may be necessary in some cases where
10936 a mapping in one direction is required but only the opposite direction is
10937 supported by the devices being used.
10938
10939 This option is dangerous - it may break the preceding filter in undefined
10940 ways if there are any additional constraints on that filter's output.
10941 Do not use it without fully understanding the implications of its use.
10942 @end table
10943
10944 @anchor{hwupload}
10945 @section hwupload
10946
10947 Upload system memory frames to hardware surfaces.
10948
10949 The device to upload to must be supplied when the filter is initialised.  If
10950 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
10951 option.
10952
10953 @anchor{hwupload_cuda}
10954 @section hwupload_cuda
10955
10956 Upload system memory frames to a CUDA device.
10957
10958 It accepts the following optional parameters:
10959
10960 @table @option
10961 @item device
10962 The number of the CUDA device to use
10963 @end table
10964
10965 @section hqx
10966
10967 Apply a high-quality magnification filter designed for pixel art. This filter
10968 was originally created by Maxim Stepin.
10969
10970 It accepts the following option:
10971
10972 @table @option
10973 @item n
10974 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
10975 @code{hq3x} and @code{4} for @code{hq4x}.
10976 Default is @code{3}.
10977 @end table
10978
10979 @section hstack
10980 Stack input videos horizontally.
10981
10982 All streams must be of same pixel format and of same height.
10983
10984 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
10985 to create same output.
10986
10987 The filter accept the following option:
10988
10989 @table @option
10990 @item inputs
10991 Set number of input streams. Default is 2.
10992
10993 @item shortest
10994 If set to 1, force the output to terminate when the shortest input
10995 terminates. Default value is 0.
10996 @end table
10997
10998 @section hue
10999
11000 Modify the hue and/or the saturation of the input.
11001
11002 It accepts the following parameters:
11003
11004 @table @option
11005 @item h
11006 Specify the hue angle as a number of degrees. It accepts an expression,
11007 and defaults to "0".
11008
11009 @item s
11010 Specify the saturation in the [-10,10] range. It accepts an expression and
11011 defaults to "1".
11012
11013 @item H
11014 Specify the hue angle as a number of radians. It accepts an
11015 expression, and defaults to "0".
11016
11017 @item b
11018 Specify the brightness in the [-10,10] range. It accepts an expression and
11019 defaults to "0".
11020 @end table
11021
11022 @option{h} and @option{H} are mutually exclusive, and can't be
11023 specified at the same time.
11024
11025 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11026 expressions containing the following constants:
11027
11028 @table @option
11029 @item n
11030 frame count of the input frame starting from 0
11031
11032 @item pts
11033 presentation timestamp of the input frame expressed in time base units
11034
11035 @item r
11036 frame rate of the input video, NAN if the input frame rate is unknown
11037
11038 @item t
11039 timestamp expressed in seconds, NAN if the input timestamp is unknown
11040
11041 @item tb
11042 time base of the input video
11043 @end table
11044
11045 @subsection Examples
11046
11047 @itemize
11048 @item
11049 Set the hue to 90 degrees and the saturation to 1.0:
11050 @example
11051 hue=h=90:s=1
11052 @end example
11053
11054 @item
11055 Same command but expressing the hue in radians:
11056 @example
11057 hue=H=PI/2:s=1
11058 @end example
11059
11060 @item
11061 Rotate hue and make the saturation swing between 0
11062 and 2 over a period of 1 second:
11063 @example
11064 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11065 @end example
11066
11067 @item
11068 Apply a 3 seconds saturation fade-in effect starting at 0:
11069 @example
11070 hue="s=min(t/3\,1)"
11071 @end example
11072
11073 The general fade-in expression can be written as:
11074 @example
11075 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11076 @end example
11077
11078 @item
11079 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11080 @example
11081 hue="s=max(0\, min(1\, (8-t)/3))"
11082 @end example
11083
11084 The general fade-out expression can be written as:
11085 @example
11086 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
11087 @end example
11088
11089 @end itemize
11090
11091 @subsection Commands
11092
11093 This filter supports the following commands:
11094 @table @option
11095 @item b
11096 @item s
11097 @item h
11098 @item H
11099 Modify the hue and/or the saturation and/or brightness of the input video.
11100 The command accepts the same syntax of the corresponding option.
11101
11102 If the specified expression is not valid, it is kept at its current
11103 value.
11104 @end table
11105
11106 @section hysteresis
11107
11108 Grow first stream into second stream by connecting components.
11109 This makes it possible to build more robust edge masks.
11110
11111 This filter accepts the following options:
11112
11113 @table @option
11114 @item planes
11115 Set which planes will be processed as bitmap, unprocessed planes will be
11116 copied from first stream.
11117 By default value 0xf, all planes will be processed.
11118
11119 @item threshold
11120 Set threshold which is used in filtering. If pixel component value is higher than
11121 this value filter algorithm for connecting components is activated.
11122 By default value is 0.
11123 @end table
11124
11125 @section idet
11126
11127 Detect video interlacing type.
11128
11129 This filter tries to detect if the input frames are interlaced, progressive,
11130 top or bottom field first. It will also try to detect fields that are
11131 repeated between adjacent frames (a sign of telecine).
11132
11133 Single frame detection considers only immediately adjacent frames when classifying each frame.
11134 Multiple frame detection incorporates the classification history of previous frames.
11135
11136 The filter will log these metadata values:
11137
11138 @table @option
11139 @item single.current_frame
11140 Detected type of current frame using single-frame detection. One of:
11141 ``tff'' (top field first), ``bff'' (bottom field first),
11142 ``progressive'', or ``undetermined''
11143
11144 @item single.tff
11145 Cumulative number of frames detected as top field first using single-frame detection.
11146
11147 @item multiple.tff
11148 Cumulative number of frames detected as top field first using multiple-frame detection.
11149
11150 @item single.bff
11151 Cumulative number of frames detected as bottom field first using single-frame detection.
11152
11153 @item multiple.current_frame
11154 Detected type of current frame using multiple-frame detection. One of:
11155 ``tff'' (top field first), ``bff'' (bottom field first),
11156 ``progressive'', or ``undetermined''
11157
11158 @item multiple.bff
11159 Cumulative number of frames detected as bottom field first using multiple-frame detection.
11160
11161 @item single.progressive
11162 Cumulative number of frames detected as progressive using single-frame detection.
11163
11164 @item multiple.progressive
11165 Cumulative number of frames detected as progressive using multiple-frame detection.
11166
11167 @item single.undetermined
11168 Cumulative number of frames that could not be classified using single-frame detection.
11169
11170 @item multiple.undetermined
11171 Cumulative number of frames that could not be classified using multiple-frame detection.
11172
11173 @item repeated.current_frame
11174 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
11175
11176 @item repeated.neither
11177 Cumulative number of frames with no repeated field.
11178
11179 @item repeated.top
11180 Cumulative number of frames with the top field repeated from the previous frame's top field.
11181
11182 @item repeated.bottom
11183 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
11184 @end table
11185
11186 The filter accepts the following options:
11187
11188 @table @option
11189 @item intl_thres
11190 Set interlacing threshold.
11191 @item prog_thres
11192 Set progressive threshold.
11193 @item rep_thres
11194 Threshold for repeated field detection.
11195 @item half_life
11196 Number of frames after which a given frame's contribution to the
11197 statistics is halved (i.e., it contributes only 0.5 to its
11198 classification). The default of 0 means that all frames seen are given
11199 full weight of 1.0 forever.
11200 @item analyze_interlaced_flag
11201 When this is not 0 then idet will use the specified number of frames to determine
11202 if the interlaced flag is accurate, it will not count undetermined frames.
11203 If the flag is found to be accurate it will be used without any further
11204 computations, if it is found to be inaccurate it will be cleared without any
11205 further computations. This allows inserting the idet filter as a low computational
11206 method to clean up the interlaced flag
11207 @end table
11208
11209 @section il
11210
11211 Deinterleave or interleave fields.
11212
11213 This filter allows one to process interlaced images fields without
11214 deinterlacing them. Deinterleaving splits the input frame into 2
11215 fields (so called half pictures). Odd lines are moved to the top
11216 half of the output image, even lines to the bottom half.
11217 You can process (filter) them independently and then re-interleave them.
11218
11219 The filter accepts the following options:
11220
11221 @table @option
11222 @item luma_mode, l
11223 @item chroma_mode, c
11224 @item alpha_mode, a
11225 Available values for @var{luma_mode}, @var{chroma_mode} and
11226 @var{alpha_mode} are:
11227
11228 @table @samp
11229 @item none
11230 Do nothing.
11231
11232 @item deinterleave, d
11233 Deinterleave fields, placing one above the other.
11234
11235 @item interleave, i
11236 Interleave fields. Reverse the effect of deinterleaving.
11237 @end table
11238 Default value is @code{none}.
11239
11240 @item luma_swap, ls
11241 @item chroma_swap, cs
11242 @item alpha_swap, as
11243 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
11244 @end table
11245
11246 @section inflate
11247
11248 Apply inflate effect to the video.
11249
11250 This filter replaces the pixel by the local(3x3) average by taking into account
11251 only values higher than the pixel.
11252
11253 It accepts the following options:
11254
11255 @table @option
11256 @item threshold0
11257 @item threshold1
11258 @item threshold2
11259 @item threshold3
11260 Limit the maximum change for each plane, default is 65535.
11261 If 0, plane will remain unchanged.
11262 @end table
11263
11264 @section interlace
11265
11266 Simple interlacing filter from progressive contents. This interleaves upper (or
11267 lower) lines from odd frames with lower (or upper) lines from even frames,
11268 halving the frame rate and preserving image height.
11269
11270 @example
11271    Original        Original             New Frame
11272    Frame 'j'      Frame 'j+1'             (tff)
11273   ==========      ===========       ==================
11274     Line 0  -------------------->    Frame 'j' Line 0
11275     Line 1          Line 1  ---->   Frame 'j+1' Line 1
11276     Line 2 --------------------->    Frame 'j' Line 2
11277     Line 3          Line 3  ---->   Frame 'j+1' Line 3
11278      ...             ...                   ...
11279 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
11280 @end example
11281
11282 It accepts the following optional parameters:
11283
11284 @table @option
11285 @item scan
11286 This determines whether the interlaced frame is taken from the even
11287 (tff - default) or odd (bff) lines of the progressive frame.
11288
11289 @item lowpass
11290 Vertical lowpass filter to avoid twitter interlacing and
11291 reduce moire patterns.
11292
11293 @table @samp
11294 @item 0, off
11295 Disable vertical lowpass filter
11296
11297 @item 1, linear
11298 Enable linear filter (default)
11299
11300 @item 2, complex
11301 Enable complex filter. This will slightly less reduce twitter and moire
11302 but better retain detail and subjective sharpness impression.
11303
11304 @end table
11305 @end table
11306
11307 @section kerndeint
11308
11309 Deinterlace input video by applying Donald Graft's adaptive kernel
11310 deinterling. Work on interlaced parts of a video to produce
11311 progressive frames.
11312
11313 The description of the accepted parameters follows.
11314
11315 @table @option
11316 @item thresh
11317 Set the threshold which affects the filter's tolerance when
11318 determining if a pixel line must be processed. It must be an integer
11319 in the range [0,255] and defaults to 10. A value of 0 will result in
11320 applying the process on every pixels.
11321
11322 @item map
11323 Paint pixels exceeding the threshold value to white if set to 1.
11324 Default is 0.
11325
11326 @item order
11327 Set the fields order. Swap fields if set to 1, leave fields alone if
11328 0. Default is 0.
11329
11330 @item sharp
11331 Enable additional sharpening if set to 1. Default is 0.
11332
11333 @item twoway
11334 Enable twoway sharpening if set to 1. Default is 0.
11335 @end table
11336
11337 @subsection Examples
11338
11339 @itemize
11340 @item
11341 Apply default values:
11342 @example
11343 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
11344 @end example
11345
11346 @item
11347 Enable additional sharpening:
11348 @example
11349 kerndeint=sharp=1
11350 @end example
11351
11352 @item
11353 Paint processed pixels in white:
11354 @example
11355 kerndeint=map=1
11356 @end example
11357 @end itemize
11358
11359 @section lagfun
11360
11361 Slowly update darker pixels.
11362
11363 This filter makes short flashes of light appear longer.
11364 This filter accepts the following options:
11365
11366 @table @option
11367 @item decay
11368 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
11369
11370 @item planes
11371 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
11372 @end table
11373
11374 @section lenscorrection
11375
11376 Correct radial lens distortion
11377
11378 This filter can be used to correct for radial distortion as can result from the use
11379 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
11380 one can use tools available for example as part of opencv or simply trial-and-error.
11381 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
11382 and extract the k1 and k2 coefficients from the resulting matrix.
11383
11384 Note that effectively the same filter is available in the open-source tools Krita and
11385 Digikam from the KDE project.
11386
11387 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
11388 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
11389 brightness distribution, so you may want to use both filters together in certain
11390 cases, though you will have to take care of ordering, i.e. whether vignetting should
11391 be applied before or after lens correction.
11392
11393 @subsection Options
11394
11395 The filter accepts the following options:
11396
11397 @table @option
11398 @item cx
11399 Relative x-coordinate of the focal point of the image, and thereby the center of the
11400 distortion. This value has a range [0,1] and is expressed as fractions of the image
11401 width. Default is 0.5.
11402 @item cy
11403 Relative y-coordinate of the focal point of the image, and thereby the center of the
11404 distortion. This value has a range [0,1] and is expressed as fractions of the image
11405 height. Default is 0.5.
11406 @item k1
11407 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
11408 no correction. Default is 0.
11409 @item k2
11410 Coefficient of the double quadratic correction term. This value has a range [-1,1].
11411 0 means no correction. Default is 0.
11412 @end table
11413
11414 The formula that generates the correction is:
11415
11416 @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)
11417
11418 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
11419 distances from the focal point in the source and target images, respectively.
11420
11421 @section lensfun
11422
11423 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
11424
11425 The @code{lensfun} filter requires the camera make, camera model, and lens model
11426 to apply the lens correction. The filter will load the lensfun database and
11427 query it to find the corresponding camera and lens entries in the database. As
11428 long as these entries can be found with the given options, the filter can
11429 perform corrections on frames. Note that incomplete strings will result in the
11430 filter choosing the best match with the given options, and the filter will
11431 output the chosen camera and lens models (logged with level "info"). You must
11432 provide the make, camera model, and lens model as they are required.
11433
11434 The filter accepts the following options:
11435
11436 @table @option
11437 @item make
11438 The make of the camera (for example, "Canon"). This option is required.
11439
11440 @item model
11441 The model of the camera (for example, "Canon EOS 100D"). This option is
11442 required.
11443
11444 @item lens_model
11445 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
11446 option is required.
11447
11448 @item mode
11449 The type of correction to apply. The following values are valid options:
11450
11451 @table @samp
11452 @item vignetting
11453 Enables fixing lens vignetting.
11454
11455 @item geometry
11456 Enables fixing lens geometry. This is the default.
11457
11458 @item subpixel
11459 Enables fixing chromatic aberrations.
11460
11461 @item vig_geo
11462 Enables fixing lens vignetting and lens geometry.
11463
11464 @item vig_subpixel
11465 Enables fixing lens vignetting and chromatic aberrations.
11466
11467 @item distortion
11468 Enables fixing both lens geometry and chromatic aberrations.
11469
11470 @item all
11471 Enables all possible corrections.
11472
11473 @end table
11474 @item focal_length
11475 The focal length of the image/video (zoom; expected constant for video). For
11476 example, a 18--55mm lens has focal length range of [18--55], so a value in that
11477 range should be chosen when using that lens. Default 18.
11478
11479 @item aperture
11480 The aperture of the image/video (expected constant for video). Note that
11481 aperture is only used for vignetting correction. Default 3.5.
11482
11483 @item focus_distance
11484 The focus distance of the image/video (expected constant for video). Note that
11485 focus distance is only used for vignetting and only slightly affects the
11486 vignetting correction process. If unknown, leave it at the default value (which
11487 is 1000).
11488
11489 @item scale
11490 The scale factor which is applied after transformation. After correction the
11491 video is no longer necessarily rectangular. This parameter controls how much of
11492 the resulting image is visible. The value 0 means that a value will be chosen
11493 automatically such that there is little or no unmapped area in the output
11494 image. 1.0 means that no additional scaling is done. Lower values may result
11495 in more of the corrected image being visible, while higher values may avoid
11496 unmapped areas in the output.
11497
11498 @item target_geometry
11499 The target geometry of the output image/video. The following values are valid
11500 options:
11501
11502 @table @samp
11503 @item rectilinear (default)
11504 @item fisheye
11505 @item panoramic
11506 @item equirectangular
11507 @item fisheye_orthographic
11508 @item fisheye_stereographic
11509 @item fisheye_equisolid
11510 @item fisheye_thoby
11511 @end table
11512 @item reverse
11513 Apply the reverse of image correction (instead of correcting distortion, apply
11514 it).
11515
11516 @item interpolation
11517 The type of interpolation used when correcting distortion. The following values
11518 are valid options:
11519
11520 @table @samp
11521 @item nearest
11522 @item linear (default)
11523 @item lanczos
11524 @end table
11525 @end table
11526
11527 @subsection Examples
11528
11529 @itemize
11530 @item
11531 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
11532 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
11533 aperture of "8.0".
11534
11535 @example
11536 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
11537 @end example
11538
11539 @item
11540 Apply the same as before, but only for the first 5 seconds of video.
11541
11542 @example
11543 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
11544 @end example
11545
11546 @end itemize
11547
11548 @section libvmaf
11549
11550 Obtain the VMAF (Video Multi-Method Assessment Fusion)
11551 score between two input videos.
11552
11553 The obtained VMAF score is printed through the logging system.
11554
11555 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
11556 After installing the library it can be enabled using:
11557 @code{./configure --enable-libvmaf --enable-version3}.
11558 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
11559
11560 The filter has following options:
11561
11562 @table @option
11563 @item model_path
11564 Set the model path which is to be used for SVM.
11565 Default value: @code{"vmaf_v0.6.1.pkl"}
11566
11567 @item log_path
11568 Set the file path to be used to store logs.
11569
11570 @item log_fmt
11571 Set the format of the log file (xml or json).
11572
11573 @item enable_transform
11574 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
11575 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
11576 Default value: @code{false}
11577
11578 @item phone_model
11579 Invokes the phone model which will generate VMAF scores higher than in the
11580 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
11581
11582 @item psnr
11583 Enables computing psnr along with vmaf.
11584
11585 @item ssim
11586 Enables computing ssim along with vmaf.
11587
11588 @item ms_ssim
11589 Enables computing ms_ssim along with vmaf.
11590
11591 @item pool
11592 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
11593
11594 @item n_threads
11595 Set number of threads to be used when computing vmaf.
11596
11597 @item n_subsample
11598 Set interval for frame subsampling used when computing vmaf.
11599
11600 @item enable_conf_interval
11601 Enables confidence interval.
11602 @end table
11603
11604 This filter also supports the @ref{framesync} options.
11605
11606 On the below examples the input file @file{main.mpg} being processed is
11607 compared with the reference file @file{ref.mpg}.
11608
11609 @example
11610 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
11611 @end example
11612
11613 Example with options:
11614 @example
11615 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
11616 @end example
11617
11618 @section limiter
11619
11620 Limits the pixel components values to the specified range [min, max].
11621
11622 The filter accepts the following options:
11623
11624 @table @option
11625 @item min
11626 Lower bound. Defaults to the lowest allowed value for the input.
11627
11628 @item max
11629 Upper bound. Defaults to the highest allowed value for the input.
11630
11631 @item planes
11632 Specify which planes will be processed. Defaults to all available.
11633 @end table
11634
11635 @section loop
11636
11637 Loop video frames.
11638
11639 The filter accepts the following options:
11640
11641 @table @option
11642 @item loop
11643 Set the number of loops. Setting this value to -1 will result in infinite loops.
11644 Default is 0.
11645
11646 @item size
11647 Set maximal size in number of frames. Default is 0.
11648
11649 @item start
11650 Set first frame of loop. Default is 0.
11651 @end table
11652
11653 @subsection Examples
11654
11655 @itemize
11656 @item
11657 Loop single first frame infinitely:
11658 @example
11659 loop=loop=-1:size=1:start=0
11660 @end example
11661
11662 @item
11663 Loop single first frame 10 times:
11664 @example
11665 loop=loop=10:size=1:start=0
11666 @end example
11667
11668 @item
11669 Loop 10 first frames 5 times:
11670 @example
11671 loop=loop=5:size=10:start=0
11672 @end example
11673 @end itemize
11674
11675 @section lut1d
11676
11677 Apply a 1D LUT to an input video.
11678
11679 The filter accepts the following options:
11680
11681 @table @option
11682 @item file
11683 Set the 1D LUT file name.
11684
11685 Currently supported formats:
11686 @table @samp
11687 @item cube
11688 Iridas
11689 @item csp
11690 cineSpace
11691 @end table
11692
11693 @item interp
11694 Select interpolation mode.
11695
11696 Available values are:
11697
11698 @table @samp
11699 @item nearest
11700 Use values from the nearest defined point.
11701 @item linear
11702 Interpolate values using the linear interpolation.
11703 @item cosine
11704 Interpolate values using the cosine interpolation.
11705 @item cubic
11706 Interpolate values using the cubic interpolation.
11707 @item spline
11708 Interpolate values using the spline interpolation.
11709 @end table
11710 @end table
11711
11712 @anchor{lut3d}
11713 @section lut3d
11714
11715 Apply a 3D LUT to an input video.
11716
11717 The filter accepts the following options:
11718
11719 @table @option
11720 @item file
11721 Set the 3D LUT file name.
11722
11723 Currently supported formats:
11724 @table @samp
11725 @item 3dl
11726 AfterEffects
11727 @item cube
11728 Iridas
11729 @item dat
11730 DaVinci
11731 @item m3d
11732 Pandora
11733 @item csp
11734 cineSpace
11735 @end table
11736 @item interp
11737 Select interpolation mode.
11738
11739 Available values are:
11740
11741 @table @samp
11742 @item nearest
11743 Use values from the nearest defined point.
11744 @item trilinear
11745 Interpolate values using the 8 points defining a cube.
11746 @item tetrahedral
11747 Interpolate values using a tetrahedron.
11748 @end table
11749 @end table
11750
11751 This filter also supports the @ref{framesync} options.
11752
11753 @section lumakey
11754
11755 Turn certain luma values into transparency.
11756
11757 The filter accepts the following options:
11758
11759 @table @option
11760 @item threshold
11761 Set the luma which will be used as base for transparency.
11762 Default value is @code{0}.
11763
11764 @item tolerance
11765 Set the range of luma values to be keyed out.
11766 Default value is @code{0}.
11767
11768 @item softness
11769 Set the range of softness. Default value is @code{0}.
11770 Use this to control gradual transition from zero to full transparency.
11771 @end table
11772
11773 @section lut, lutrgb, lutyuv
11774
11775 Compute a look-up table for binding each pixel component input value
11776 to an output value, and apply it to the input video.
11777
11778 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
11779 to an RGB input video.
11780
11781 These filters accept the following parameters:
11782 @table @option
11783 @item c0
11784 set first pixel component expression
11785 @item c1
11786 set second pixel component expression
11787 @item c2
11788 set third pixel component expression
11789 @item c3
11790 set fourth pixel component expression, corresponds to the alpha component
11791
11792 @item r
11793 set red component expression
11794 @item g
11795 set green component expression
11796 @item b
11797 set blue component expression
11798 @item a
11799 alpha component expression
11800
11801 @item y
11802 set Y/luminance component expression
11803 @item u
11804 set U/Cb component expression
11805 @item v
11806 set V/Cr component expression
11807 @end table
11808
11809 Each of them specifies the expression to use for computing the lookup table for
11810 the corresponding pixel component values.
11811
11812 The exact component associated to each of the @var{c*} options depends on the
11813 format in input.
11814
11815 The @var{lut} filter requires either YUV or RGB pixel formats in input,
11816 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
11817
11818 The expressions can contain the following constants and functions:
11819
11820 @table @option
11821 @item w
11822 @item h
11823 The input width and height.
11824
11825 @item val
11826 The input value for the pixel component.
11827
11828 @item clipval
11829 The input value, clipped to the @var{minval}-@var{maxval} range.
11830
11831 @item maxval
11832 The maximum value for the pixel component.
11833
11834 @item minval
11835 The minimum value for the pixel component.
11836
11837 @item negval
11838 The negated value for the pixel component value, clipped to the
11839 @var{minval}-@var{maxval} range; it corresponds to the expression
11840 "maxval-clipval+minval".
11841
11842 @item clip(val)
11843 The computed value in @var{val}, clipped to the
11844 @var{minval}-@var{maxval} range.
11845
11846 @item gammaval(gamma)
11847 The computed gamma correction value of the pixel component value,
11848 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
11849 expression
11850 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
11851
11852 @end table
11853
11854 All expressions default to "val".
11855
11856 @subsection Examples
11857
11858 @itemize
11859 @item
11860 Negate input video:
11861 @example
11862 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
11863 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
11864 @end example
11865
11866 The above is the same as:
11867 @example
11868 lutrgb="r=negval:g=negval:b=negval"
11869 lutyuv="y=negval:u=negval:v=negval"
11870 @end example
11871
11872 @item
11873 Negate luminance:
11874 @example
11875 lutyuv=y=negval
11876 @end example
11877
11878 @item
11879 Remove chroma components, turning the video into a graytone image:
11880 @example
11881 lutyuv="u=128:v=128"
11882 @end example
11883
11884 @item
11885 Apply a luma burning effect:
11886 @example
11887 lutyuv="y=2*val"
11888 @end example
11889
11890 @item
11891 Remove green and blue components:
11892 @example
11893 lutrgb="g=0:b=0"
11894 @end example
11895
11896 @item
11897 Set a constant alpha channel value on input:
11898 @example
11899 format=rgba,lutrgb=a="maxval-minval/2"
11900 @end example
11901
11902 @item
11903 Correct luminance gamma by a factor of 0.5:
11904 @example
11905 lutyuv=y=gammaval(0.5)
11906 @end example
11907
11908 @item
11909 Discard least significant bits of luma:
11910 @example
11911 lutyuv=y='bitand(val, 128+64+32)'
11912 @end example
11913
11914 @item
11915 Technicolor like effect:
11916 @example
11917 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
11918 @end example
11919 @end itemize
11920
11921 @section lut2, tlut2
11922
11923 The @code{lut2} filter takes two input streams and outputs one
11924 stream.
11925
11926 The @code{tlut2} (time lut2) filter takes two consecutive frames
11927 from one single stream.
11928
11929 This filter accepts the following parameters:
11930 @table @option
11931 @item c0
11932 set first pixel component expression
11933 @item c1
11934 set second pixel component expression
11935 @item c2
11936 set third pixel component expression
11937 @item c3
11938 set fourth pixel component expression, corresponds to the alpha component
11939
11940 @item d
11941 set output bit depth, only available for @code{lut2} filter. By default is 0,
11942 which means bit depth is automatically picked from first input format.
11943 @end table
11944
11945 Each of them specifies the expression to use for computing the lookup table for
11946 the corresponding pixel component values.
11947
11948 The exact component associated to each of the @var{c*} options depends on the
11949 format in inputs.
11950
11951 The expressions can contain the following constants:
11952
11953 @table @option
11954 @item w
11955 @item h
11956 The input width and height.
11957
11958 @item x
11959 The first input value for the pixel component.
11960
11961 @item y
11962 The second input value for the pixel component.
11963
11964 @item bdx
11965 The first input video bit depth.
11966
11967 @item bdy
11968 The second input video bit depth.
11969 @end table
11970
11971 All expressions default to "x".
11972
11973 @subsection Examples
11974
11975 @itemize
11976 @item
11977 Highlight differences between two RGB video streams:
11978 @example
11979 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)'
11980 @end example
11981
11982 @item
11983 Highlight differences between two YUV video streams:
11984 @example
11985 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)'
11986 @end example
11987
11988 @item
11989 Show max difference between two video streams:
11990 @example
11991 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)))'
11992 @end example
11993 @end itemize
11994
11995 @section maskedclamp
11996
11997 Clamp the first input stream with the second input and third input stream.
11998
11999 Returns the value of first stream to be between second input
12000 stream - @code{undershoot} and third input stream + @code{overshoot}.
12001
12002 This filter accepts the following options:
12003 @table @option
12004 @item undershoot
12005 Default value is @code{0}.
12006
12007 @item overshoot
12008 Default value is @code{0}.
12009
12010 @item planes
12011 Set which planes will be processed as bitmap, unprocessed planes will be
12012 copied from first stream.
12013 By default value 0xf, all planes will be processed.
12014 @end table
12015
12016 @section maskedmerge
12017
12018 Merge the first input stream with the second input stream using per pixel
12019 weights in the third input stream.
12020
12021 A value of 0 in the third stream pixel component means that pixel component
12022 from first stream is returned unchanged, while maximum value (eg. 255 for
12023 8-bit videos) means that pixel component from second stream is returned
12024 unchanged. Intermediate values define the amount of merging between both
12025 input stream's pixel components.
12026
12027 This filter accepts the following options:
12028 @table @option
12029 @item planes
12030 Set which planes will be processed as bitmap, unprocessed planes will be
12031 copied from first stream.
12032 By default value 0xf, all planes will be processed.
12033 @end table
12034
12035 @section maskfun
12036 Create mask from input video.
12037
12038 For example it is useful to create motion masks after @code{tblend} filter.
12039
12040 This filter accepts the following options:
12041
12042 @table @option
12043 @item low
12044 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
12045
12046 @item high
12047 Set high threshold. Any pixel component higher than this value will be set to max value
12048 allowed for current pixel format.
12049
12050 @item planes
12051 Set planes to filter, by default all available planes are filtered.
12052
12053 @item fill
12054 Fill all frame pixels with this value.
12055
12056 @item sum
12057 Set max average pixel value for frame. If sum of all pixel components is higher that this
12058 average, output frame will be completely filled with value set by @var{fill} option.
12059 Typically useful for scene changes when used in combination with @code{tblend} filter.
12060 @end table
12061
12062 @section mcdeint
12063
12064 Apply motion-compensation deinterlacing.
12065
12066 It needs one field per frame as input and must thus be used together
12067 with yadif=1/3 or equivalent.
12068
12069 This filter accepts the following options:
12070 @table @option
12071 @item mode
12072 Set the deinterlacing mode.
12073
12074 It accepts one of the following values:
12075 @table @samp
12076 @item fast
12077 @item medium
12078 @item slow
12079 use iterative motion estimation
12080 @item extra_slow
12081 like @samp{slow}, but use multiple reference frames.
12082 @end table
12083 Default value is @samp{fast}.
12084
12085 @item parity
12086 Set the picture field parity assumed for the input video. It must be
12087 one of the following values:
12088
12089 @table @samp
12090 @item 0, tff
12091 assume top field first
12092 @item 1, bff
12093 assume bottom field first
12094 @end table
12095
12096 Default value is @samp{bff}.
12097
12098 @item qp
12099 Set per-block quantization parameter (QP) used by the internal
12100 encoder.
12101
12102 Higher values should result in a smoother motion vector field but less
12103 optimal individual vectors. Default value is 1.
12104 @end table
12105
12106 @section mergeplanes
12107
12108 Merge color channel components from several video streams.
12109
12110 The filter accepts up to 4 input streams, and merge selected input
12111 planes to the output video.
12112
12113 This filter accepts the following options:
12114 @table @option
12115 @item mapping
12116 Set input to output plane mapping. Default is @code{0}.
12117
12118 The mappings is specified as a bitmap. It should be specified as a
12119 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
12120 mapping for the first plane of the output stream. 'A' sets the number of
12121 the input stream to use (from 0 to 3), and 'a' the plane number of the
12122 corresponding input to use (from 0 to 3). The rest of the mappings is
12123 similar, 'Bb' describes the mapping for the output stream second
12124 plane, 'Cc' describes the mapping for the output stream third plane and
12125 'Dd' describes the mapping for the output stream fourth plane.
12126
12127 @item format
12128 Set output pixel format. Default is @code{yuva444p}.
12129 @end table
12130
12131 @subsection Examples
12132
12133 @itemize
12134 @item
12135 Merge three gray video streams of same width and height into single video stream:
12136 @example
12137 [a0][a1][a2]mergeplanes=0x001020:yuv444p
12138 @end example
12139
12140 @item
12141 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
12142 @example
12143 [a0][a1]mergeplanes=0x00010210:yuva444p
12144 @end example
12145
12146 @item
12147 Swap Y and A plane in yuva444p stream:
12148 @example
12149 format=yuva444p,mergeplanes=0x03010200:yuva444p
12150 @end example
12151
12152 @item
12153 Swap U and V plane in yuv420p stream:
12154 @example
12155 format=yuv420p,mergeplanes=0x000201:yuv420p
12156 @end example
12157
12158 @item
12159 Cast a rgb24 clip to yuv444p:
12160 @example
12161 format=rgb24,mergeplanes=0x000102:yuv444p
12162 @end example
12163 @end itemize
12164
12165 @section mestimate
12166
12167 Estimate and export motion vectors using block matching algorithms.
12168 Motion vectors are stored in frame side data to be used by other filters.
12169
12170 This filter accepts the following options:
12171 @table @option
12172 @item method
12173 Specify the motion estimation method. Accepts one of the following values:
12174
12175 @table @samp
12176 @item esa
12177 Exhaustive search algorithm.
12178 @item tss
12179 Three step search algorithm.
12180 @item tdls
12181 Two dimensional logarithmic search algorithm.
12182 @item ntss
12183 New three step search algorithm.
12184 @item fss
12185 Four step search algorithm.
12186 @item ds
12187 Diamond search algorithm.
12188 @item hexbs
12189 Hexagon-based search algorithm.
12190 @item epzs
12191 Enhanced predictive zonal search algorithm.
12192 @item umh
12193 Uneven multi-hexagon search algorithm.
12194 @end table
12195 Default value is @samp{esa}.
12196
12197 @item mb_size
12198 Macroblock size. Default @code{16}.
12199
12200 @item search_param
12201 Search parameter. Default @code{7}.
12202 @end table
12203
12204 @section midequalizer
12205
12206 Apply Midway Image Equalization effect using two video streams.
12207
12208 Midway Image Equalization adjusts a pair of images to have the same
12209 histogram, while maintaining their dynamics as much as possible. It's
12210 useful for e.g. matching exposures from a pair of stereo cameras.
12211
12212 This filter has two inputs and one output, which must be of same pixel format, but
12213 may be of different sizes. The output of filter is first input adjusted with
12214 midway histogram of both inputs.
12215
12216 This filter accepts the following option:
12217
12218 @table @option
12219 @item planes
12220 Set which planes to process. Default is @code{15}, which is all available planes.
12221 @end table
12222
12223 @section minterpolate
12224
12225 Convert the video to specified frame rate using motion interpolation.
12226
12227 This filter accepts the following options:
12228 @table @option
12229 @item fps
12230 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}.
12231
12232 @item mi_mode
12233 Motion interpolation mode. Following values are accepted:
12234 @table @samp
12235 @item dup
12236 Duplicate previous or next frame for interpolating new ones.
12237 @item blend
12238 Blend source frames. Interpolated frame is mean of previous and next frames.
12239 @item mci
12240 Motion compensated interpolation. Following options are effective when this mode is selected:
12241
12242 @table @samp
12243 @item mc_mode
12244 Motion compensation mode. Following values are accepted:
12245 @table @samp
12246 @item obmc
12247 Overlapped block motion compensation.
12248 @item aobmc
12249 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
12250 @end table
12251 Default mode is @samp{obmc}.
12252
12253 @item me_mode
12254 Motion estimation mode. Following values are accepted:
12255 @table @samp
12256 @item bidir
12257 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
12258 @item bilat
12259 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
12260 @end table
12261 Default mode is @samp{bilat}.
12262
12263 @item me
12264 The algorithm to be used for motion estimation. Following values are accepted:
12265 @table @samp
12266 @item esa
12267 Exhaustive search algorithm.
12268 @item tss
12269 Three step search algorithm.
12270 @item tdls
12271 Two dimensional logarithmic search algorithm.
12272 @item ntss
12273 New three step search algorithm.
12274 @item fss
12275 Four step search algorithm.
12276 @item ds
12277 Diamond search algorithm.
12278 @item hexbs
12279 Hexagon-based search algorithm.
12280 @item epzs
12281 Enhanced predictive zonal search algorithm.
12282 @item umh
12283 Uneven multi-hexagon search algorithm.
12284 @end table
12285 Default algorithm is @samp{epzs}.
12286
12287 @item mb_size
12288 Macroblock size. Default @code{16}.
12289
12290 @item search_param
12291 Motion estimation search parameter. Default @code{32}.
12292
12293 @item vsbmc
12294 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).
12295 @end table
12296 @end table
12297
12298 @item scd
12299 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:
12300 @table @samp
12301 @item none
12302 Disable scene change detection.
12303 @item fdiff
12304 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
12305 @end table
12306 Default method is @samp{fdiff}.
12307
12308 @item scd_threshold
12309 Scene change detection threshold. Default is @code{5.0}.
12310 @end table
12311
12312 @section mix
12313
12314 Mix several video input streams into one video stream.
12315
12316 A description of the accepted options follows.
12317
12318 @table @option
12319 @item nb_inputs
12320 The number of inputs. If unspecified, it defaults to 2.
12321
12322 @item weights
12323 Specify weight of each input video stream as sequence.
12324 Each weight is separated by space. If number of weights
12325 is smaller than number of @var{frames} last specified
12326 weight will be used for all remaining unset weights.
12327
12328 @item scale
12329 Specify scale, if it is set it will be multiplied with sum
12330 of each weight multiplied with pixel values to give final destination
12331 pixel value. By default @var{scale} is auto scaled to sum of weights.
12332
12333 @item duration
12334 Specify how end of stream is determined.
12335 @table @samp
12336 @item longest
12337 The duration of the longest input. (default)
12338
12339 @item shortest
12340 The duration of the shortest input.
12341
12342 @item first
12343 The duration of the first input.
12344 @end table
12345 @end table
12346
12347 @section mpdecimate
12348
12349 Drop frames that do not differ greatly from the previous frame in
12350 order to reduce frame rate.
12351
12352 The main use of this filter is for very-low-bitrate encoding
12353 (e.g. streaming over dialup modem), but it could in theory be used for
12354 fixing movies that were inverse-telecined incorrectly.
12355
12356 A description of the accepted options follows.
12357
12358 @table @option
12359 @item max
12360 Set the maximum number of consecutive frames which can be dropped (if
12361 positive), or the minimum interval between dropped frames (if
12362 negative). If the value is 0, the frame is dropped disregarding the
12363 number of previous sequentially dropped frames.
12364
12365 Default value is 0.
12366
12367 @item hi
12368 @item lo
12369 @item frac
12370 Set the dropping threshold values.
12371
12372 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
12373 represent actual pixel value differences, so a threshold of 64
12374 corresponds to 1 unit of difference for each pixel, or the same spread
12375 out differently over the block.
12376
12377 A frame is a candidate for dropping if no 8x8 blocks differ by more
12378 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
12379 meaning the whole image) differ by more than a threshold of @option{lo}.
12380
12381 Default value for @option{hi} is 64*12, default value for @option{lo} is
12382 64*5, and default value for @option{frac} is 0.33.
12383 @end table
12384
12385
12386 @section negate
12387
12388 Negate (invert) the input video.
12389
12390 It accepts the following option:
12391
12392 @table @option
12393
12394 @item negate_alpha
12395 With value 1, it negates the alpha component, if present. Default value is 0.
12396 @end table
12397
12398 @anchor{nlmeans}
12399 @section nlmeans
12400
12401 Denoise frames using Non-Local Means algorithm.
12402
12403 Each pixel is adjusted by looking for other pixels with similar contexts. This
12404 context similarity is defined by comparing their surrounding patches of size
12405 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
12406 around the pixel.
12407
12408 Note that the research area defines centers for patches, which means some
12409 patches will be made of pixels outside that research area.
12410
12411 The filter accepts the following options.
12412
12413 @table @option
12414 @item s
12415 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
12416
12417 @item p
12418 Set patch size. Default is 7. Must be odd number in range [0, 99].
12419
12420 @item pc
12421 Same as @option{p} but for chroma planes.
12422
12423 The default value is @var{0} and means automatic.
12424
12425 @item r
12426 Set research size. Default is 15. Must be odd number in range [0, 99].
12427
12428 @item rc
12429 Same as @option{r} but for chroma planes.
12430
12431 The default value is @var{0} and means automatic.
12432 @end table
12433
12434 @section nnedi
12435
12436 Deinterlace video using neural network edge directed interpolation.
12437
12438 This filter accepts the following options:
12439
12440 @table @option
12441 @item weights
12442 Mandatory option, without binary file filter can not work.
12443 Currently file can be found here:
12444 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
12445
12446 @item deint
12447 Set which frames to deinterlace, by default it is @code{all}.
12448 Can be @code{all} or @code{interlaced}.
12449
12450 @item field
12451 Set mode of operation.
12452
12453 Can be one of the following:
12454
12455 @table @samp
12456 @item af
12457 Use frame flags, both fields.
12458 @item a
12459 Use frame flags, single field.
12460 @item t
12461 Use top field only.
12462 @item b
12463 Use bottom field only.
12464 @item tf
12465 Use both fields, top first.
12466 @item bf
12467 Use both fields, bottom first.
12468 @end table
12469
12470 @item planes
12471 Set which planes to process, by default filter process all frames.
12472
12473 @item nsize
12474 Set size of local neighborhood around each pixel, used by the predictor neural
12475 network.
12476
12477 Can be one of the following:
12478
12479 @table @samp
12480 @item s8x6
12481 @item s16x6
12482 @item s32x6
12483 @item s48x6
12484 @item s8x4
12485 @item s16x4
12486 @item s32x4
12487 @end table
12488
12489 @item nns
12490 Set the number of neurons in predictor neural network.
12491 Can be one of the following:
12492
12493 @table @samp
12494 @item n16
12495 @item n32
12496 @item n64
12497 @item n128
12498 @item n256
12499 @end table
12500
12501 @item qual
12502 Controls the number of different neural network predictions that are blended
12503 together to compute the final output value. Can be @code{fast}, default or
12504 @code{slow}.
12505
12506 @item etype
12507 Set which set of weights to use in the predictor.
12508 Can be one of the following:
12509
12510 @table @samp
12511 @item a
12512 weights trained to minimize absolute error
12513 @item s
12514 weights trained to minimize squared error
12515 @end table
12516
12517 @item pscrn
12518 Controls whether or not the prescreener neural network is used to decide
12519 which pixels should be processed by the predictor neural network and which
12520 can be handled by simple cubic interpolation.
12521 The prescreener is trained to know whether cubic interpolation will be
12522 sufficient for a pixel or whether it should be predicted by the predictor nn.
12523 The computational complexity of the prescreener nn is much less than that of
12524 the predictor nn. Since most pixels can be handled by cubic interpolation,
12525 using the prescreener generally results in much faster processing.
12526 The prescreener is pretty accurate, so the difference between using it and not
12527 using it is almost always unnoticeable.
12528
12529 Can be one of the following:
12530
12531 @table @samp
12532 @item none
12533 @item original
12534 @item new
12535 @end table
12536
12537 Default is @code{new}.
12538
12539 @item fapprox
12540 Set various debugging flags.
12541 @end table
12542
12543 @section noformat
12544
12545 Force libavfilter not to use any of the specified pixel formats for the
12546 input to the next filter.
12547
12548 It accepts the following parameters:
12549 @table @option
12550
12551 @item pix_fmts
12552 A '|'-separated list of pixel format names, such as
12553 pix_fmts=yuv420p|monow|rgb24".
12554
12555 @end table
12556
12557 @subsection Examples
12558
12559 @itemize
12560 @item
12561 Force libavfilter to use a format different from @var{yuv420p} for the
12562 input to the vflip filter:
12563 @example
12564 noformat=pix_fmts=yuv420p,vflip
12565 @end example
12566
12567 @item
12568 Convert the input video to any of the formats not contained in the list:
12569 @example
12570 noformat=yuv420p|yuv444p|yuv410p
12571 @end example
12572 @end itemize
12573
12574 @section noise
12575
12576 Add noise on video input frame.
12577
12578 The filter accepts the following options:
12579
12580 @table @option
12581 @item all_seed
12582 @item c0_seed
12583 @item c1_seed
12584 @item c2_seed
12585 @item c3_seed
12586 Set noise seed for specific pixel component or all pixel components in case
12587 of @var{all_seed}. Default value is @code{123457}.
12588
12589 @item all_strength, alls
12590 @item c0_strength, c0s
12591 @item c1_strength, c1s
12592 @item c2_strength, c2s
12593 @item c3_strength, c3s
12594 Set noise strength for specific pixel component or all pixel components in case
12595 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
12596
12597 @item all_flags, allf
12598 @item c0_flags, c0f
12599 @item c1_flags, c1f
12600 @item c2_flags, c2f
12601 @item c3_flags, c3f
12602 Set pixel component flags or set flags for all components if @var{all_flags}.
12603 Available values for component flags are:
12604 @table @samp
12605 @item a
12606 averaged temporal noise (smoother)
12607 @item p
12608 mix random noise with a (semi)regular pattern
12609 @item t
12610 temporal noise (noise pattern changes between frames)
12611 @item u
12612 uniform noise (gaussian otherwise)
12613 @end table
12614 @end table
12615
12616 @subsection Examples
12617
12618 Add temporal and uniform noise to input video:
12619 @example
12620 noise=alls=20:allf=t+u
12621 @end example
12622
12623 @section normalize
12624
12625 Normalize RGB video (aka histogram stretching, contrast stretching).
12626 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
12627
12628 For each channel of each frame, the filter computes the input range and maps
12629 it linearly to the user-specified output range. The output range defaults
12630 to the full dynamic range from pure black to pure white.
12631
12632 Temporal smoothing can be used on the input range to reduce flickering (rapid
12633 changes in brightness) caused when small dark or bright objects enter or leave
12634 the scene. This is similar to the auto-exposure (automatic gain control) on a
12635 video camera, and, like a video camera, it may cause a period of over- or
12636 under-exposure of the video.
12637
12638 The R,G,B channels can be normalized independently, which may cause some
12639 color shifting, or linked together as a single channel, which prevents
12640 color shifting. Linked normalization preserves hue. Independent normalization
12641 does not, so it can be used to remove some color casts. Independent and linked
12642 normalization can be combined in any ratio.
12643
12644 The normalize filter accepts the following options:
12645
12646 @table @option
12647 @item blackpt
12648 @item whitept
12649 Colors which define the output range. The minimum input value is mapped to
12650 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
12651 The defaults are black and white respectively. Specifying white for
12652 @var{blackpt} and black for @var{whitept} will give color-inverted,
12653 normalized video. Shades of grey can be used to reduce the dynamic range
12654 (contrast). Specifying saturated colors here can create some interesting
12655 effects.
12656
12657 @item smoothing
12658 The number of previous frames to use for temporal smoothing. The input range
12659 of each channel is smoothed using a rolling average over the current frame
12660 and the @var{smoothing} previous frames. The default is 0 (no temporal
12661 smoothing).
12662
12663 @item independence
12664 Controls the ratio of independent (color shifting) channel normalization to
12665 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
12666 independent. Defaults to 1.0 (fully independent).
12667
12668 @item strength
12669 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
12670 expensive no-op. Defaults to 1.0 (full strength).
12671
12672 @end table
12673
12674 @subsection Examples
12675
12676 Stretch video contrast to use the full dynamic range, with no temporal
12677 smoothing; may flicker depending on the source content:
12678 @example
12679 normalize=blackpt=black:whitept=white:smoothing=0
12680 @end example
12681
12682 As above, but with 50 frames of temporal smoothing; flicker should be
12683 reduced, depending on the source content:
12684 @example
12685 normalize=blackpt=black:whitept=white:smoothing=50
12686 @end example
12687
12688 As above, but with hue-preserving linked channel normalization:
12689 @example
12690 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
12691 @end example
12692
12693 As above, but with half strength:
12694 @example
12695 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
12696 @end example
12697
12698 Map the darkest input color to red, the brightest input color to cyan:
12699 @example
12700 normalize=blackpt=red:whitept=cyan
12701 @end example
12702
12703 @section null
12704
12705 Pass the video source unchanged to the output.
12706
12707 @section ocr
12708 Optical Character Recognition
12709
12710 This filter uses Tesseract for optical character recognition. To enable
12711 compilation of this filter, you need to configure FFmpeg with
12712 @code{--enable-libtesseract}.
12713
12714 It accepts the following options:
12715
12716 @table @option
12717 @item datapath
12718 Set datapath to tesseract data. Default is to use whatever was
12719 set at installation.
12720
12721 @item language
12722 Set language, default is "eng".
12723
12724 @item whitelist
12725 Set character whitelist.
12726
12727 @item blacklist
12728 Set character blacklist.
12729 @end table
12730
12731 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
12732
12733 @section ocv
12734
12735 Apply a video transform using libopencv.
12736
12737 To enable this filter, install the libopencv library and headers and
12738 configure FFmpeg with @code{--enable-libopencv}.
12739
12740 It accepts the following parameters:
12741
12742 @table @option
12743
12744 @item filter_name
12745 The name of the libopencv filter to apply.
12746
12747 @item filter_params
12748 The parameters to pass to the libopencv filter. If not specified, the default
12749 values are assumed.
12750
12751 @end table
12752
12753 Refer to the official libopencv documentation for more precise
12754 information:
12755 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
12756
12757 Several libopencv filters are supported; see the following subsections.
12758
12759 @anchor{dilate}
12760 @subsection dilate
12761
12762 Dilate an image by using a specific structuring element.
12763 It corresponds to the libopencv function @code{cvDilate}.
12764
12765 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
12766
12767 @var{struct_el} represents a structuring element, and has the syntax:
12768 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
12769
12770 @var{cols} and @var{rows} represent the number of columns and rows of
12771 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
12772 point, and @var{shape} the shape for the structuring element. @var{shape}
12773 must be "rect", "cross", "ellipse", or "custom".
12774
12775 If the value for @var{shape} is "custom", it must be followed by a
12776 string of the form "=@var{filename}". The file with name
12777 @var{filename} is assumed to represent a binary image, with each
12778 printable character corresponding to a bright pixel. When a custom
12779 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
12780 or columns and rows of the read file are assumed instead.
12781
12782 The default value for @var{struct_el} is "3x3+0x0/rect".
12783
12784 @var{nb_iterations} specifies the number of times the transform is
12785 applied to the image, and defaults to 1.
12786
12787 Some examples:
12788 @example
12789 # Use the default values
12790 ocv=dilate
12791
12792 # Dilate using a structuring element with a 5x5 cross, iterating two times
12793 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
12794
12795 # Read the shape from the file diamond.shape, iterating two times.
12796 # The file diamond.shape may contain a pattern of characters like this
12797 #   *
12798 #  ***
12799 # *****
12800 #  ***
12801 #   *
12802 # The specified columns and rows are ignored
12803 # but the anchor point coordinates are not
12804 ocv=dilate:0x0+2x2/custom=diamond.shape|2
12805 @end example
12806
12807 @subsection erode
12808
12809 Erode an image by using a specific structuring element.
12810 It corresponds to the libopencv function @code{cvErode}.
12811
12812 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
12813 with the same syntax and semantics as the @ref{dilate} filter.
12814
12815 @subsection smooth
12816
12817 Smooth the input video.
12818
12819 The filter takes the following parameters:
12820 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
12821
12822 @var{type} is the type of smooth filter to apply, and must be one of
12823 the following values: "blur", "blur_no_scale", "median", "gaussian",
12824 or "bilateral". The default value is "gaussian".
12825
12826 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
12827 depend on the smooth type. @var{param1} and
12828 @var{param2} accept integer positive values or 0. @var{param3} and
12829 @var{param4} accept floating point values.
12830
12831 The default value for @var{param1} is 3. The default value for the
12832 other parameters is 0.
12833
12834 These parameters correspond to the parameters assigned to the
12835 libopencv function @code{cvSmooth}.
12836
12837 @section oscilloscope
12838
12839 2D Video Oscilloscope.
12840
12841 Useful to measure spatial impulse, step responses, chroma delays, etc.
12842
12843 It accepts the following parameters:
12844
12845 @table @option
12846 @item x
12847 Set scope center x position.
12848
12849 @item y
12850 Set scope center y position.
12851
12852 @item s
12853 Set scope size, relative to frame diagonal.
12854
12855 @item t
12856 Set scope tilt/rotation.
12857
12858 @item o
12859 Set trace opacity.
12860
12861 @item tx
12862 Set trace center x position.
12863
12864 @item ty
12865 Set trace center y position.
12866
12867 @item tw
12868 Set trace width, relative to width of frame.
12869
12870 @item th
12871 Set trace height, relative to height of frame.
12872
12873 @item c
12874 Set which components to trace. By default it traces first three components.
12875
12876 @item g
12877 Draw trace grid. By default is enabled.
12878
12879 @item st
12880 Draw some statistics. By default is enabled.
12881
12882 @item sc
12883 Draw scope. By default is enabled.
12884 @end table
12885
12886 @subsection Examples
12887
12888 @itemize
12889 @item
12890 Inspect full first row of video frame.
12891 @example
12892 oscilloscope=x=0.5:y=0:s=1
12893 @end example
12894
12895 @item
12896 Inspect full last row of video frame.
12897 @example
12898 oscilloscope=x=0.5:y=1:s=1
12899 @end example
12900
12901 @item
12902 Inspect full 5th line of video frame of height 1080.
12903 @example
12904 oscilloscope=x=0.5:y=5/1080:s=1
12905 @end example
12906
12907 @item
12908 Inspect full last column of video frame.
12909 @example
12910 oscilloscope=x=1:y=0.5:s=1:t=1
12911 @end example
12912
12913 @end itemize
12914
12915 @anchor{overlay}
12916 @section overlay
12917
12918 Overlay one video on top of another.
12919
12920 It takes two inputs and has one output. The first input is the "main"
12921 video on which the second input is overlaid.
12922
12923 It accepts the following parameters:
12924
12925 A description of the accepted options follows.
12926
12927 @table @option
12928 @item x
12929 @item y
12930 Set the expression for the x and y coordinates of the overlaid video
12931 on the main video. Default value is "0" for both expressions. In case
12932 the expression is invalid, it is set to a huge value (meaning that the
12933 overlay will not be displayed within the output visible area).
12934
12935 @item eof_action
12936 See @ref{framesync}.
12937
12938 @item eval
12939 Set when the expressions for @option{x}, and @option{y} are evaluated.
12940
12941 It accepts the following values:
12942 @table @samp
12943 @item init
12944 only evaluate expressions once during the filter initialization or
12945 when a command is processed
12946
12947 @item frame
12948 evaluate expressions for each incoming frame
12949 @end table
12950
12951 Default value is @samp{frame}.
12952
12953 @item shortest
12954 See @ref{framesync}.
12955
12956 @item format
12957 Set the format for the output video.
12958
12959 It accepts the following values:
12960 @table @samp
12961 @item yuv420
12962 force YUV420 output
12963
12964 @item yuv422
12965 force YUV422 output
12966
12967 @item yuv444
12968 force YUV444 output
12969
12970 @item rgb
12971 force packed RGB output
12972
12973 @item gbrp
12974 force planar RGB output
12975
12976 @item auto
12977 automatically pick format
12978 @end table
12979
12980 Default value is @samp{yuv420}.
12981
12982 @item repeatlast
12983 See @ref{framesync}.
12984
12985 @item alpha
12986 Set format of alpha of the overlaid video, it can be @var{straight} or
12987 @var{premultiplied}. Default is @var{straight}.
12988 @end table
12989
12990 The @option{x}, and @option{y} expressions can contain the following
12991 parameters.
12992
12993 @table @option
12994 @item main_w, W
12995 @item main_h, H
12996 The main input width and height.
12997
12998 @item overlay_w, w
12999 @item overlay_h, h
13000 The overlay input width and height.
13001
13002 @item x
13003 @item y
13004 The computed values for @var{x} and @var{y}. They are evaluated for
13005 each new frame.
13006
13007 @item hsub
13008 @item vsub
13009 horizontal and vertical chroma subsample values of the output
13010 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
13011 @var{vsub} is 1.
13012
13013 @item n
13014 the number of input frame, starting from 0
13015
13016 @item pos
13017 the position in the file of the input frame, NAN if unknown
13018
13019 @item t
13020 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
13021
13022 @end table
13023
13024 This filter also supports the @ref{framesync} options.
13025
13026 Note that the @var{n}, @var{pos}, @var{t} variables are available only
13027 when evaluation is done @emph{per frame}, and will evaluate to NAN
13028 when @option{eval} is set to @samp{init}.
13029
13030 Be aware that frames are taken from each input video in timestamp
13031 order, hence, if their initial timestamps differ, it is a good idea
13032 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
13033 have them begin in the same zero timestamp, as the example for
13034 the @var{movie} filter does.
13035
13036 You can chain together more overlays but you should test the
13037 efficiency of such approach.
13038
13039 @subsection Commands
13040
13041 This filter supports the following commands:
13042 @table @option
13043 @item x
13044 @item y
13045 Modify the x and y of the overlay input.
13046 The command accepts the same syntax of the corresponding option.
13047
13048 If the specified expression is not valid, it is kept at its current
13049 value.
13050 @end table
13051
13052 @subsection Examples
13053
13054 @itemize
13055 @item
13056 Draw the overlay at 10 pixels from the bottom right corner of the main
13057 video:
13058 @example
13059 overlay=main_w-overlay_w-10:main_h-overlay_h-10
13060 @end example
13061
13062 Using named options the example above becomes:
13063 @example
13064 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
13065 @end example
13066
13067 @item
13068 Insert a transparent PNG logo in the bottom left corner of the input,
13069 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
13070 @example
13071 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
13072 @end example
13073
13074 @item
13075 Insert 2 different transparent PNG logos (second logo on bottom
13076 right corner) using the @command{ffmpeg} tool:
13077 @example
13078 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
13079 @end example
13080
13081 @item
13082 Add a transparent color layer on top of the main video; @code{WxH}
13083 must specify the size of the main input to the overlay filter:
13084 @example
13085 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
13086 @end example
13087
13088 @item
13089 Play an original video and a filtered version (here with the deshake
13090 filter) side by side using the @command{ffplay} tool:
13091 @example
13092 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
13093 @end example
13094
13095 The above command is the same as:
13096 @example
13097 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
13098 @end example
13099
13100 @item
13101 Make a sliding overlay appearing from the left to the right top part of the
13102 screen starting since time 2:
13103 @example
13104 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
13105 @end example
13106
13107 @item
13108 Compose output by putting two input videos side to side:
13109 @example
13110 ffmpeg -i left.avi -i right.avi -filter_complex "
13111 nullsrc=size=200x100 [background];
13112 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
13113 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
13114 [background][left]       overlay=shortest=1       [background+left];
13115 [background+left][right] overlay=shortest=1:x=100 [left+right]
13116 "
13117 @end example
13118
13119 @item
13120 Mask 10-20 seconds of a video by applying the delogo filter to a section
13121 @example
13122 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
13123 -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]'
13124 masked.avi
13125 @end example
13126
13127 @item
13128 Chain several overlays in cascade:
13129 @example
13130 nullsrc=s=200x200 [bg];
13131 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
13132 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
13133 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
13134 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
13135 [in3] null,       [mid2] overlay=100:100 [out0]
13136 @end example
13137
13138 @end itemize
13139
13140 @section owdenoise
13141
13142 Apply Overcomplete Wavelet denoiser.
13143
13144 The filter accepts the following options:
13145
13146 @table @option
13147 @item depth
13148 Set depth.
13149
13150 Larger depth values will denoise lower frequency components more, but
13151 slow down filtering.
13152
13153 Must be an int in the range 8-16, default is @code{8}.
13154
13155 @item luma_strength, ls
13156 Set luma strength.
13157
13158 Must be a double value in the range 0-1000, default is @code{1.0}.
13159
13160 @item chroma_strength, cs
13161 Set chroma strength.
13162
13163 Must be a double value in the range 0-1000, default is @code{1.0}.
13164 @end table
13165
13166 @anchor{pad}
13167 @section pad
13168
13169 Add paddings to the input image, and place the original input at the
13170 provided @var{x}, @var{y} coordinates.
13171
13172 It accepts the following parameters:
13173
13174 @table @option
13175 @item width, w
13176 @item height, h
13177 Specify an expression for the size of the output image with the
13178 paddings added. If the value for @var{width} or @var{height} is 0, the
13179 corresponding input size is used for the output.
13180
13181 The @var{width} expression can reference the value set by the
13182 @var{height} expression, and vice versa.
13183
13184 The default value of @var{width} and @var{height} is 0.
13185
13186 @item x
13187 @item y
13188 Specify the offsets to place the input image at within the padded area,
13189 with respect to the top/left border of the output image.
13190
13191 The @var{x} expression can reference the value set by the @var{y}
13192 expression, and vice versa.
13193
13194 The default value of @var{x} and @var{y} is 0.
13195
13196 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
13197 so the input image is centered on the padded area.
13198
13199 @item color
13200 Specify the color of the padded area. For the syntax of this option,
13201 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13202 manual,ffmpeg-utils}.
13203
13204 The default value of @var{color} is "black".
13205
13206 @item eval
13207 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
13208
13209 It accepts the following values:
13210
13211 @table @samp
13212 @item init
13213 Only evaluate expressions once during the filter initialization or when
13214 a command is processed.
13215
13216 @item frame
13217 Evaluate expressions for each incoming frame.
13218
13219 @end table
13220
13221 Default value is @samp{init}.
13222
13223 @item aspect
13224 Pad to aspect instead to a resolution.
13225
13226 @end table
13227
13228 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
13229 options are expressions containing the following constants:
13230
13231 @table @option
13232 @item in_w
13233 @item in_h
13234 The input video width and height.
13235
13236 @item iw
13237 @item ih
13238 These are the same as @var{in_w} and @var{in_h}.
13239
13240 @item out_w
13241 @item out_h
13242 The output width and height (the size of the padded area), as
13243 specified by the @var{width} and @var{height} expressions.
13244
13245 @item ow
13246 @item oh
13247 These are the same as @var{out_w} and @var{out_h}.
13248
13249 @item x
13250 @item y
13251 The x and y offsets as specified by the @var{x} and @var{y}
13252 expressions, or NAN if not yet specified.
13253
13254 @item a
13255 same as @var{iw} / @var{ih}
13256
13257 @item sar
13258 input sample aspect ratio
13259
13260 @item dar
13261 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
13262
13263 @item hsub
13264 @item vsub
13265 The horizontal and vertical chroma subsample values. For example for the
13266 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13267 @end table
13268
13269 @subsection Examples
13270
13271 @itemize
13272 @item
13273 Add paddings with the color "violet" to the input video. The output video
13274 size is 640x480, and the top-left corner of the input video is placed at
13275 column 0, row 40
13276 @example
13277 pad=640:480:0:40:violet
13278 @end example
13279
13280 The example above is equivalent to the following command:
13281 @example
13282 pad=width=640:height=480:x=0:y=40:color=violet
13283 @end example
13284
13285 @item
13286 Pad the input to get an output with dimensions increased by 3/2,
13287 and put the input video at the center of the padded area:
13288 @example
13289 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
13290 @end example
13291
13292 @item
13293 Pad the input to get a squared output with size equal to the maximum
13294 value between the input width and height, and put the input video at
13295 the center of the padded area:
13296 @example
13297 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
13298 @end example
13299
13300 @item
13301 Pad the input to get a final w/h ratio of 16:9:
13302 @example
13303 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
13304 @end example
13305
13306 @item
13307 In case of anamorphic video, in order to set the output display aspect
13308 correctly, it is necessary to use @var{sar} in the expression,
13309 according to the relation:
13310 @example
13311 (ih * X / ih) * sar = output_dar
13312 X = output_dar / sar
13313 @end example
13314
13315 Thus the previous example needs to be modified to:
13316 @example
13317 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
13318 @end example
13319
13320 @item
13321 Double the output size and put the input video in the bottom-right
13322 corner of the output padded area:
13323 @example
13324 pad="2*iw:2*ih:ow-iw:oh-ih"
13325 @end example
13326 @end itemize
13327
13328 @anchor{palettegen}
13329 @section palettegen
13330
13331 Generate one palette for a whole video stream.
13332
13333 It accepts the following options:
13334
13335 @table @option
13336 @item max_colors
13337 Set the maximum number of colors to quantize in the palette.
13338 Note: the palette will still contain 256 colors; the unused palette entries
13339 will be black.
13340
13341 @item reserve_transparent
13342 Create a palette of 255 colors maximum and reserve the last one for
13343 transparency. Reserving the transparency color is useful for GIF optimization.
13344 If not set, the maximum of colors in the palette will be 256. You probably want
13345 to disable this option for a standalone image.
13346 Set by default.
13347
13348 @item transparency_color
13349 Set the color that will be used as background for transparency.
13350
13351 @item stats_mode
13352 Set statistics mode.
13353
13354 It accepts the following values:
13355 @table @samp
13356 @item full
13357 Compute full frame histograms.
13358 @item diff
13359 Compute histograms only for the part that differs from previous frame. This
13360 might be relevant to give more importance to the moving part of your input if
13361 the background is static.
13362 @item single
13363 Compute new histogram for each frame.
13364 @end table
13365
13366 Default value is @var{full}.
13367 @end table
13368
13369 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
13370 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
13371 color quantization of the palette. This information is also visible at
13372 @var{info} logging level.
13373
13374 @subsection Examples
13375
13376 @itemize
13377 @item
13378 Generate a representative palette of a given video using @command{ffmpeg}:
13379 @example
13380 ffmpeg -i input.mkv -vf palettegen palette.png
13381 @end example
13382 @end itemize
13383
13384 @section paletteuse
13385
13386 Use a palette to downsample an input video stream.
13387
13388 The filter takes two inputs: one video stream and a palette. The palette must
13389 be a 256 pixels image.
13390
13391 It accepts the following options:
13392
13393 @table @option
13394 @item dither
13395 Select dithering mode. Available algorithms are:
13396 @table @samp
13397 @item bayer
13398 Ordered 8x8 bayer dithering (deterministic)
13399 @item heckbert
13400 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
13401 Note: this dithering is sometimes considered "wrong" and is included as a
13402 reference.
13403 @item floyd_steinberg
13404 Floyd and Steingberg dithering (error diffusion)
13405 @item sierra2
13406 Frankie Sierra dithering v2 (error diffusion)
13407 @item sierra2_4a
13408 Frankie Sierra dithering v2 "Lite" (error diffusion)
13409 @end table
13410
13411 Default is @var{sierra2_4a}.
13412
13413 @item bayer_scale
13414 When @var{bayer} dithering is selected, this option defines the scale of the
13415 pattern (how much the crosshatch pattern is visible). A low value means more
13416 visible pattern for less banding, and higher value means less visible pattern
13417 at the cost of more banding.
13418
13419 The option must be an integer value in the range [0,5]. Default is @var{2}.
13420
13421 @item diff_mode
13422 If set, define the zone to process
13423
13424 @table @samp
13425 @item rectangle
13426 Only the changing rectangle will be reprocessed. This is similar to GIF
13427 cropping/offsetting compression mechanism. This option can be useful for speed
13428 if only a part of the image is changing, and has use cases such as limiting the
13429 scope of the error diffusal @option{dither} to the rectangle that bounds the
13430 moving scene (it leads to more deterministic output if the scene doesn't change
13431 much, and as a result less moving noise and better GIF compression).
13432 @end table
13433
13434 Default is @var{none}.
13435
13436 @item new
13437 Take new palette for each output frame.
13438
13439 @item alpha_threshold
13440 Sets the alpha threshold for transparency. Alpha values above this threshold
13441 will be treated as completely opaque, and values below this threshold will be
13442 treated as completely transparent.
13443
13444 The option must be an integer value in the range [0,255]. Default is @var{128}.
13445 @end table
13446
13447 @subsection Examples
13448
13449 @itemize
13450 @item
13451 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
13452 using @command{ffmpeg}:
13453 @example
13454 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
13455 @end example
13456 @end itemize
13457
13458 @section perspective
13459
13460 Correct perspective of video not recorded perpendicular to the screen.
13461
13462 A description of the accepted parameters follows.
13463
13464 @table @option
13465 @item x0
13466 @item y0
13467 @item x1
13468 @item y1
13469 @item x2
13470 @item y2
13471 @item x3
13472 @item y3
13473 Set coordinates expression for top left, top right, bottom left and bottom right corners.
13474 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
13475 If the @code{sense} option is set to @code{source}, then the specified points will be sent
13476 to the corners of the destination. If the @code{sense} option is set to @code{destination},
13477 then the corners of the source will be sent to the specified coordinates.
13478
13479 The expressions can use the following variables:
13480
13481 @table @option
13482 @item W
13483 @item H
13484 the width and height of video frame.
13485 @item in
13486 Input frame count.
13487 @item on
13488 Output frame count.
13489 @end table
13490
13491 @item interpolation
13492 Set interpolation for perspective correction.
13493
13494 It accepts the following values:
13495 @table @samp
13496 @item linear
13497 @item cubic
13498 @end table
13499
13500 Default value is @samp{linear}.
13501
13502 @item sense
13503 Set interpretation of coordinate options.
13504
13505 It accepts the following values:
13506 @table @samp
13507 @item 0, source
13508
13509 Send point in the source specified by the given coordinates to
13510 the corners of the destination.
13511
13512 @item 1, destination
13513
13514 Send the corners of the source to the point in the destination specified
13515 by the given coordinates.
13516
13517 Default value is @samp{source}.
13518 @end table
13519
13520 @item eval
13521 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
13522
13523 It accepts the following values:
13524 @table @samp
13525 @item init
13526 only evaluate expressions once during the filter initialization or
13527 when a command is processed
13528
13529 @item frame
13530 evaluate expressions for each incoming frame
13531 @end table
13532
13533 Default value is @samp{init}.
13534 @end table
13535
13536 @section phase
13537
13538 Delay interlaced video by one field time so that the field order changes.
13539
13540 The intended use is to fix PAL movies that have been captured with the
13541 opposite field order to the film-to-video transfer.
13542
13543 A description of the accepted parameters follows.
13544
13545 @table @option
13546 @item mode
13547 Set phase mode.
13548
13549 It accepts the following values:
13550 @table @samp
13551 @item t
13552 Capture field order top-first, transfer bottom-first.
13553 Filter will delay the bottom field.
13554
13555 @item b
13556 Capture field order bottom-first, transfer top-first.
13557 Filter will delay the top field.
13558
13559 @item p
13560 Capture and transfer with the same field order. This mode only exists
13561 for the documentation of the other options to refer to, but if you
13562 actually select it, the filter will faithfully do nothing.
13563
13564 @item a
13565 Capture field order determined automatically by field flags, transfer
13566 opposite.
13567 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
13568 basis using field flags. If no field information is available,
13569 then this works just like @samp{u}.
13570
13571 @item u
13572 Capture unknown or varying, transfer opposite.
13573 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
13574 analyzing the images and selecting the alternative that produces best
13575 match between the fields.
13576
13577 @item T
13578 Capture top-first, transfer unknown or varying.
13579 Filter selects among @samp{t} and @samp{p} using image analysis.
13580
13581 @item B
13582 Capture bottom-first, transfer unknown or varying.
13583 Filter selects among @samp{b} and @samp{p} using image analysis.
13584
13585 @item A
13586 Capture determined by field flags, transfer unknown or varying.
13587 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
13588 image analysis. If no field information is available, then this works just
13589 like @samp{U}. This is the default mode.
13590
13591 @item U
13592 Both capture and transfer unknown or varying.
13593 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
13594 @end table
13595 @end table
13596
13597 @section pixdesctest
13598
13599 Pixel format descriptor test filter, mainly useful for internal
13600 testing. The output video should be equal to the input video.
13601
13602 For example:
13603 @example
13604 format=monow, pixdesctest
13605 @end example
13606
13607 can be used to test the monowhite pixel format descriptor definition.
13608
13609 @section pixscope
13610
13611 Display sample values of color channels. Mainly useful for checking color
13612 and levels. Minimum supported resolution is 640x480.
13613
13614 The filters accept the following options:
13615
13616 @table @option
13617 @item x
13618 Set scope X position, relative offset on X axis.
13619
13620 @item y
13621 Set scope Y position, relative offset on Y axis.
13622
13623 @item w
13624 Set scope width.
13625
13626 @item h
13627 Set scope height.
13628
13629 @item o
13630 Set window opacity. This window also holds statistics about pixel area.
13631
13632 @item wx
13633 Set window X position, relative offset on X axis.
13634
13635 @item wy
13636 Set window Y position, relative offset on Y axis.
13637 @end table
13638
13639 @section pp
13640
13641 Enable the specified chain of postprocessing subfilters using libpostproc. This
13642 library should be automatically selected with a GPL build (@code{--enable-gpl}).
13643 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
13644 Each subfilter and some options have a short and a long name that can be used
13645 interchangeably, i.e. dr/dering are the same.
13646
13647 The filters accept the following options:
13648
13649 @table @option
13650 @item subfilters
13651 Set postprocessing subfilters string.
13652 @end table
13653
13654 All subfilters share common options to determine their scope:
13655
13656 @table @option
13657 @item a/autoq
13658 Honor the quality commands for this subfilter.
13659
13660 @item c/chrom
13661 Do chrominance filtering, too (default).
13662
13663 @item y/nochrom
13664 Do luminance filtering only (no chrominance).
13665
13666 @item n/noluma
13667 Do chrominance filtering only (no luminance).
13668 @end table
13669
13670 These options can be appended after the subfilter name, separated by a '|'.
13671
13672 Available subfilters are:
13673
13674 @table @option
13675 @item hb/hdeblock[|difference[|flatness]]
13676 Horizontal deblocking filter
13677 @table @option
13678 @item difference
13679 Difference factor where higher values mean more deblocking (default: @code{32}).
13680 @item flatness
13681 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13682 @end table
13683
13684 @item vb/vdeblock[|difference[|flatness]]
13685 Vertical deblocking filter
13686 @table @option
13687 @item difference
13688 Difference factor where higher values mean more deblocking (default: @code{32}).
13689 @item flatness
13690 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13691 @end table
13692
13693 @item ha/hadeblock[|difference[|flatness]]
13694 Accurate horizontal deblocking filter
13695 @table @option
13696 @item difference
13697 Difference factor where higher values mean more deblocking (default: @code{32}).
13698 @item flatness
13699 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13700 @end table
13701
13702 @item va/vadeblock[|difference[|flatness]]
13703 Accurate vertical deblocking filter
13704 @table @option
13705 @item difference
13706 Difference factor where higher values mean more deblocking (default: @code{32}).
13707 @item flatness
13708 Flatness threshold where lower values mean more deblocking (default: @code{39}).
13709 @end table
13710 @end table
13711
13712 The horizontal and vertical deblocking filters share the difference and
13713 flatness values so you cannot set different horizontal and vertical
13714 thresholds.
13715
13716 @table @option
13717 @item h1/x1hdeblock
13718 Experimental horizontal deblocking filter
13719
13720 @item v1/x1vdeblock
13721 Experimental vertical deblocking filter
13722
13723 @item dr/dering
13724 Deringing filter
13725
13726 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
13727 @table @option
13728 @item threshold1
13729 larger -> stronger filtering
13730 @item threshold2
13731 larger -> stronger filtering
13732 @item threshold3
13733 larger -> stronger filtering
13734 @end table
13735
13736 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
13737 @table @option
13738 @item f/fullyrange
13739 Stretch luminance to @code{0-255}.
13740 @end table
13741
13742 @item lb/linblenddeint
13743 Linear blend deinterlacing filter that deinterlaces the given block by
13744 filtering all lines with a @code{(1 2 1)} filter.
13745
13746 @item li/linipoldeint
13747 Linear interpolating deinterlacing filter that deinterlaces the given block by
13748 linearly interpolating every second line.
13749
13750 @item ci/cubicipoldeint
13751 Cubic interpolating deinterlacing filter deinterlaces the given block by
13752 cubically interpolating every second line.
13753
13754 @item md/mediandeint
13755 Median deinterlacing filter that deinterlaces the given block by applying a
13756 median filter to every second line.
13757
13758 @item fd/ffmpegdeint
13759 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
13760 second line with a @code{(-1 4 2 4 -1)} filter.
13761
13762 @item l5/lowpass5
13763 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
13764 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
13765
13766 @item fq/forceQuant[|quantizer]
13767 Overrides the quantizer table from the input with the constant quantizer you
13768 specify.
13769 @table @option
13770 @item quantizer
13771 Quantizer to use
13772 @end table
13773
13774 @item de/default
13775 Default pp filter combination (@code{hb|a,vb|a,dr|a})
13776
13777 @item fa/fast
13778 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
13779
13780 @item ac
13781 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
13782 @end table
13783
13784 @subsection Examples
13785
13786 @itemize
13787 @item
13788 Apply horizontal and vertical deblocking, deringing and automatic
13789 brightness/contrast:
13790 @example
13791 pp=hb/vb/dr/al
13792 @end example
13793
13794 @item
13795 Apply default filters without brightness/contrast correction:
13796 @example
13797 pp=de/-al
13798 @end example
13799
13800 @item
13801 Apply default filters and temporal denoiser:
13802 @example
13803 pp=default/tmpnoise|1|2|3
13804 @end example
13805
13806 @item
13807 Apply deblocking on luminance only, and switch vertical deblocking on or off
13808 automatically depending on available CPU time:
13809 @example
13810 pp=hb|y/vb|a
13811 @end example
13812 @end itemize
13813
13814 @section pp7
13815 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
13816 similar to spp = 6 with 7 point DCT, where only the center sample is
13817 used after IDCT.
13818
13819 The filter accepts the following options:
13820
13821 @table @option
13822 @item qp
13823 Force a constant quantization parameter. It accepts an integer in range
13824 0 to 63. If not set, the filter will use the QP from the video stream
13825 (if available).
13826
13827 @item mode
13828 Set thresholding mode. Available modes are:
13829
13830 @table @samp
13831 @item hard
13832 Set hard thresholding.
13833 @item soft
13834 Set soft thresholding (better de-ringing effect, but likely blurrier).
13835 @item medium
13836 Set medium thresholding (good results, default).
13837 @end table
13838 @end table
13839
13840 @section premultiply
13841 Apply alpha premultiply effect to input video stream using first plane
13842 of second stream as alpha.
13843
13844 Both streams must have same dimensions and same pixel format.
13845
13846 The filter accepts the following option:
13847
13848 @table @option
13849 @item planes
13850 Set which planes will be processed, unprocessed planes will be copied.
13851 By default value 0xf, all planes will be processed.
13852
13853 @item inplace
13854 Do not require 2nd input for processing, instead use alpha plane from input stream.
13855 @end table
13856
13857 @section prewitt
13858 Apply prewitt operator to input video stream.
13859
13860 The filter accepts the following option:
13861
13862 @table @option
13863 @item planes
13864 Set which planes will be processed, unprocessed planes will be copied.
13865 By default value 0xf, all planes will be processed.
13866
13867 @item scale
13868 Set value which will be multiplied with filtered result.
13869
13870 @item delta
13871 Set value which will be added to filtered result.
13872 @end table
13873
13874 @anchor{program_opencl}
13875 @section program_opencl
13876
13877 Filter video using an OpenCL program.
13878
13879 @table @option
13880
13881 @item source
13882 OpenCL program source file.
13883
13884 @item kernel
13885 Kernel name in program.
13886
13887 @item inputs
13888 Number of inputs to the filter.  Defaults to 1.
13889
13890 @item size, s
13891 Size of output frames.  Defaults to the same as the first input.
13892
13893 @end table
13894
13895 The program source file must contain a kernel function with the given name,
13896 which will be run once for each plane of the output.  Each run on a plane
13897 gets enqueued as a separate 2D global NDRange with one work-item for each
13898 pixel to be generated.  The global ID offset for each work-item is therefore
13899 the coordinates of a pixel in the destination image.
13900
13901 The kernel function needs to take the following arguments:
13902 @itemize
13903 @item
13904 Destination image, @var{__write_only image2d_t}.
13905
13906 This image will become the output; the kernel should write all of it.
13907 @item
13908 Frame index, @var{unsigned int}.
13909
13910 This is a counter starting from zero and increasing by one for each frame.
13911 @item
13912 Source images, @var{__read_only image2d_t}.
13913
13914 These are the most recent images on each input.  The kernel may read from
13915 them to generate the output, but they can't be written to.
13916 @end itemize
13917
13918 Example programs:
13919
13920 @itemize
13921 @item
13922 Copy the input to the output (output must be the same size as the input).
13923 @verbatim
13924 __kernel void copy(__write_only image2d_t destination,
13925                    unsigned int index,
13926                    __read_only  image2d_t source)
13927 {
13928     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
13929
13930     int2 location = (int2)(get_global_id(0), get_global_id(1));
13931
13932     float4 value = read_imagef(source, sampler, location);
13933
13934     write_imagef(destination, location, value);
13935 }
13936 @end verbatim
13937
13938 @item
13939 Apply a simple transformation, rotating the input by an amount increasing
13940 with the index counter.  Pixel values are linearly interpolated by the
13941 sampler, and the output need not have the same dimensions as the input.
13942 @verbatim
13943 __kernel void rotate_image(__write_only image2d_t dst,
13944                            unsigned int index,
13945                            __read_only  image2d_t src)
13946 {
13947     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
13948                                CLK_FILTER_LINEAR);
13949
13950     float angle = (float)index / 100.0f;
13951
13952     float2 dst_dim = convert_float2(get_image_dim(dst));
13953     float2 src_dim = convert_float2(get_image_dim(src));
13954
13955     float2 dst_cen = dst_dim / 2.0f;
13956     float2 src_cen = src_dim / 2.0f;
13957
13958     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
13959
13960     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
13961     float2 src_pos = {
13962         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
13963         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
13964     };
13965     src_pos = src_pos * src_dim / dst_dim;
13966
13967     float2 src_loc = src_pos + src_cen;
13968
13969     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
13970         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
13971         write_imagef(dst, dst_loc, 0.5f);
13972     else
13973         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
13974 }
13975 @end verbatim
13976
13977 @item
13978 Blend two inputs together, with the amount of each input used varying
13979 with the index counter.
13980 @verbatim
13981 __kernel void blend_images(__write_only image2d_t dst,
13982                            unsigned int index,
13983                            __read_only  image2d_t src1,
13984                            __read_only  image2d_t src2)
13985 {
13986     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
13987                                CLK_FILTER_LINEAR);
13988
13989     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
13990
13991     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
13992     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
13993     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
13994
13995     float4 val1 = read_imagef(src1, sampler, src1_loc);
13996     float4 val2 = read_imagef(src2, sampler, src2_loc);
13997
13998     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
13999 }
14000 @end verbatim
14001
14002 @end itemize
14003
14004 @section pseudocolor
14005
14006 Alter frame colors in video with pseudocolors.
14007
14008 This filter accept the following options:
14009
14010 @table @option
14011 @item c0
14012 set pixel first component expression
14013
14014 @item c1
14015 set pixel second component expression
14016
14017 @item c2
14018 set pixel third component expression
14019
14020 @item c3
14021 set pixel fourth component expression, corresponds to the alpha component
14022
14023 @item i
14024 set component to use as base for altering colors
14025 @end table
14026
14027 Each of them specifies the expression to use for computing the lookup table for
14028 the corresponding pixel component values.
14029
14030 The expressions can contain the following constants and functions:
14031
14032 @table @option
14033 @item w
14034 @item h
14035 The input width and height.
14036
14037 @item val
14038 The input value for the pixel component.
14039
14040 @item ymin, umin, vmin, amin
14041 The minimum allowed component value.
14042
14043 @item ymax, umax, vmax, amax
14044 The maximum allowed component value.
14045 @end table
14046
14047 All expressions default to "val".
14048
14049 @subsection Examples
14050
14051 @itemize
14052 @item
14053 Change too high luma values to gradient:
14054 @example
14055 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'"
14056 @end example
14057 @end itemize
14058
14059 @section psnr
14060
14061 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
14062 Ratio) between two input videos.
14063
14064 This filter takes in input two input videos, the first input is
14065 considered the "main" source and is passed unchanged to the
14066 output. The second input is used as a "reference" video for computing
14067 the PSNR.
14068
14069 Both video inputs must have the same resolution and pixel format for
14070 this filter to work correctly. Also it assumes that both inputs
14071 have the same number of frames, which are compared one by one.
14072
14073 The obtained average PSNR is printed through the logging system.
14074
14075 The filter stores the accumulated MSE (mean squared error) of each
14076 frame, and at the end of the processing it is averaged across all frames
14077 equally, and the following formula is applied to obtain the PSNR:
14078
14079 @example
14080 PSNR = 10*log10(MAX^2/MSE)
14081 @end example
14082
14083 Where MAX is the average of the maximum values of each component of the
14084 image.
14085
14086 The description of the accepted parameters follows.
14087
14088 @table @option
14089 @item stats_file, f
14090 If specified the filter will use the named file to save the PSNR of
14091 each individual frame. When filename equals "-" the data is sent to
14092 standard output.
14093
14094 @item stats_version
14095 Specifies which version of the stats file format to use. Details of
14096 each format are written below.
14097 Default value is 1.
14098
14099 @item stats_add_max
14100 Determines whether the max value is output to the stats log.
14101 Default value is 0.
14102 Requires stats_version >= 2. If this is set and stats_version < 2,
14103 the filter will return an error.
14104 @end table
14105
14106 This filter also supports the @ref{framesync} options.
14107
14108 The file printed if @var{stats_file} is selected, contains a sequence of
14109 key/value pairs of the form @var{key}:@var{value} for each compared
14110 couple of frames.
14111
14112 If a @var{stats_version} greater than 1 is specified, a header line precedes
14113 the list of per-frame-pair stats, with key value pairs following the frame
14114 format with the following parameters:
14115
14116 @table @option
14117 @item psnr_log_version
14118 The version of the log file format. Will match @var{stats_version}.
14119
14120 @item fields
14121 A comma separated list of the per-frame-pair parameters included in
14122 the log.
14123 @end table
14124
14125 A description of each shown per-frame-pair parameter follows:
14126
14127 @table @option
14128 @item n
14129 sequential number of the input frame, starting from 1
14130
14131 @item mse_avg
14132 Mean Square Error pixel-by-pixel average difference of the compared
14133 frames, averaged over all the image components.
14134
14135 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
14136 Mean Square Error pixel-by-pixel average difference of the compared
14137 frames for the component specified by the suffix.
14138
14139 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
14140 Peak Signal to Noise ratio of the compared frames for the component
14141 specified by the suffix.
14142
14143 @item max_avg, max_y, max_u, max_v
14144 Maximum allowed value for each channel, and average over all
14145 channels.
14146 @end table
14147
14148 For example:
14149 @example
14150 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14151 [main][ref] psnr="stats_file=stats.log" [out]
14152 @end example
14153
14154 On this example the input file being processed is compared with the
14155 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
14156 is stored in @file{stats.log}.
14157
14158 @anchor{pullup}
14159 @section pullup
14160
14161 Pulldown reversal (inverse telecine) filter, capable of handling mixed
14162 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
14163 content.
14164
14165 The pullup filter is designed to take advantage of future context in making
14166 its decisions. This filter is stateless in the sense that it does not lock
14167 onto a pattern to follow, but it instead looks forward to the following
14168 fields in order to identify matches and rebuild progressive frames.
14169
14170 To produce content with an even framerate, insert the fps filter after
14171 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
14172 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
14173
14174 The filter accepts the following options:
14175
14176 @table @option
14177 @item jl
14178 @item jr
14179 @item jt
14180 @item jb
14181 These options set the amount of "junk" to ignore at the left, right, top, and
14182 bottom of the image, respectively. Left and right are in units of 8 pixels,
14183 while top and bottom are in units of 2 lines.
14184 The default is 8 pixels on each side.
14185
14186 @item sb
14187 Set the strict breaks. Setting this option to 1 will reduce the chances of
14188 filter generating an occasional mismatched frame, but it may also cause an
14189 excessive number of frames to be dropped during high motion sequences.
14190 Conversely, setting it to -1 will make filter match fields more easily.
14191 This may help processing of video where there is slight blurring between
14192 the fields, but may also cause there to be interlaced frames in the output.
14193 Default value is @code{0}.
14194
14195 @item mp
14196 Set the metric plane to use. It accepts the following values:
14197 @table @samp
14198 @item l
14199 Use luma plane.
14200
14201 @item u
14202 Use chroma blue plane.
14203
14204 @item v
14205 Use chroma red plane.
14206 @end table
14207
14208 This option may be set to use chroma plane instead of the default luma plane
14209 for doing filter's computations. This may improve accuracy on very clean
14210 source material, but more likely will decrease accuracy, especially if there
14211 is chroma noise (rainbow effect) or any grayscale video.
14212 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
14213 load and make pullup usable in realtime on slow machines.
14214 @end table
14215
14216 For best results (without duplicated frames in the output file) it is
14217 necessary to change the output frame rate. For example, to inverse
14218 telecine NTSC input:
14219 @example
14220 ffmpeg -i input -vf pullup -r 24000/1001 ...
14221 @end example
14222
14223 @section qp
14224
14225 Change video quantization parameters (QP).
14226
14227 The filter accepts the following option:
14228
14229 @table @option
14230 @item qp
14231 Set expression for quantization parameter.
14232 @end table
14233
14234 The expression is evaluated through the eval API and can contain, among others,
14235 the following constants:
14236
14237 @table @var
14238 @item known
14239 1 if index is not 129, 0 otherwise.
14240
14241 @item qp
14242 Sequential index starting from -129 to 128.
14243 @end table
14244
14245 @subsection Examples
14246
14247 @itemize
14248 @item
14249 Some equation like:
14250 @example
14251 qp=2+2*sin(PI*qp)
14252 @end example
14253 @end itemize
14254
14255 @section random
14256
14257 Flush video frames from internal cache of frames into a random order.
14258 No frame is discarded.
14259 Inspired by @ref{frei0r} nervous filter.
14260
14261 @table @option
14262 @item frames
14263 Set size in number of frames of internal cache, in range from @code{2} to
14264 @code{512}. Default is @code{30}.
14265
14266 @item seed
14267 Set seed for random number generator, must be an integer included between
14268 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14269 less than @code{0}, the filter will try to use a good random seed on a
14270 best effort basis.
14271 @end table
14272
14273 @section readeia608
14274
14275 Read closed captioning (EIA-608) information from the top lines of a video frame.
14276
14277 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
14278 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
14279 with EIA-608 data (starting from 0). A description of each metadata value follows:
14280
14281 @table @option
14282 @item lavfi.readeia608.X.cc
14283 The two bytes stored as EIA-608 data (printed in hexadecimal).
14284
14285 @item lavfi.readeia608.X.line
14286 The number of the line on which the EIA-608 data was identified and read.
14287 @end table
14288
14289 This filter accepts the following options:
14290
14291 @table @option
14292 @item scan_min
14293 Set the line to start scanning for EIA-608 data. Default is @code{0}.
14294
14295 @item scan_max
14296 Set the line to end scanning for EIA-608 data. Default is @code{29}.
14297
14298 @item mac
14299 Set minimal acceptable amplitude change for sync codes detection.
14300 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
14301
14302 @item spw
14303 Set the ratio of width reserved for sync code detection.
14304 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
14305
14306 @item mhd
14307 Set the max peaks height difference for sync code detection.
14308 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14309
14310 @item mpd
14311 Set max peaks period difference for sync code detection.
14312 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14313
14314 @item msd
14315 Set the first two max start code bits differences.
14316 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
14317
14318 @item bhd
14319 Set the minimum ratio of bits height compared to 3rd start code bit.
14320 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
14321
14322 @item th_w
14323 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
14324
14325 @item th_b
14326 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
14327
14328 @item chp
14329 Enable checking the parity bit. In the event of a parity error, the filter will output
14330 @code{0x00} for that character. Default is false.
14331 @end table
14332
14333 @subsection Examples
14334
14335 @itemize
14336 @item
14337 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
14338 @example
14339 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
14340 @end example
14341 @end itemize
14342
14343 @section readvitc
14344
14345 Read vertical interval timecode (VITC) information from the top lines of a
14346 video frame.
14347
14348 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
14349 timecode value, if a valid timecode has been detected. Further metadata key
14350 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
14351 timecode data has been found or not.
14352
14353 This filter accepts the following options:
14354
14355 @table @option
14356 @item scan_max
14357 Set the maximum number of lines to scan for VITC data. If the value is set to
14358 @code{-1} the full video frame is scanned. Default is @code{45}.
14359
14360 @item thr_b
14361 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
14362 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
14363
14364 @item thr_w
14365 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
14366 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
14367 @end table
14368
14369 @subsection Examples
14370
14371 @itemize
14372 @item
14373 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
14374 draw @code{--:--:--:--} as a placeholder:
14375 @example
14376 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
14377 @end example
14378 @end itemize
14379
14380 @section remap
14381
14382 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
14383
14384 Destination pixel at position (X, Y) will be picked from source (x, y) position
14385 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
14386 value for pixel will be used for destination pixel.
14387
14388 Xmap and Ymap input video streams must be of same dimensions. Output video stream
14389 will have Xmap/Ymap video stream dimensions.
14390 Xmap and Ymap input video streams are 16bit depth, single channel.
14391
14392 @section removegrain
14393
14394 The removegrain filter is a spatial denoiser for progressive video.
14395
14396 @table @option
14397 @item m0
14398 Set mode for the first plane.
14399
14400 @item m1
14401 Set mode for the second plane.
14402
14403 @item m2
14404 Set mode for the third plane.
14405
14406 @item m3
14407 Set mode for the fourth plane.
14408 @end table
14409
14410 Range of mode is from 0 to 24. Description of each mode follows:
14411
14412 @table @var
14413 @item 0
14414 Leave input plane unchanged. Default.
14415
14416 @item 1
14417 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
14418
14419 @item 2
14420 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
14421
14422 @item 3
14423 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
14424
14425 @item 4
14426 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
14427 This is equivalent to a median filter.
14428
14429 @item 5
14430 Line-sensitive clipping giving the minimal change.
14431
14432 @item 6
14433 Line-sensitive clipping, intermediate.
14434
14435 @item 7
14436 Line-sensitive clipping, intermediate.
14437
14438 @item 8
14439 Line-sensitive clipping, intermediate.
14440
14441 @item 9
14442 Line-sensitive clipping on a line where the neighbours pixels are the closest.
14443
14444 @item 10
14445 Replaces the target pixel with the closest neighbour.
14446
14447 @item 11
14448 [1 2 1] horizontal and vertical kernel blur.
14449
14450 @item 12
14451 Same as mode 11.
14452
14453 @item 13
14454 Bob mode, interpolates top field from the line where the neighbours
14455 pixels are the closest.
14456
14457 @item 14
14458 Bob mode, interpolates bottom field from the line where the neighbours
14459 pixels are the closest.
14460
14461 @item 15
14462 Bob mode, interpolates top field. Same as 13 but with a more complicated
14463 interpolation formula.
14464
14465 @item 16
14466 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
14467 interpolation formula.
14468
14469 @item 17
14470 Clips the pixel with the minimum and maximum of respectively the maximum and
14471 minimum of each pair of opposite neighbour pixels.
14472
14473 @item 18
14474 Line-sensitive clipping using opposite neighbours whose greatest distance from
14475 the current pixel is minimal.
14476
14477 @item 19
14478 Replaces the pixel with the average of its 8 neighbours.
14479
14480 @item 20
14481 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
14482
14483 @item 21
14484 Clips pixels using the averages of opposite neighbour.
14485
14486 @item 22
14487 Same as mode 21 but simpler and faster.
14488
14489 @item 23
14490 Small edge and halo removal, but reputed useless.
14491
14492 @item 24
14493 Similar as 23.
14494 @end table
14495
14496 @section removelogo
14497
14498 Suppress a TV station logo, using an image file to determine which
14499 pixels comprise the logo. It works by filling in the pixels that
14500 comprise the logo with neighboring pixels.
14501
14502 The filter accepts the following options:
14503
14504 @table @option
14505 @item filename, f
14506 Set the filter bitmap file, which can be any image format supported by
14507 libavformat. The width and height of the image file must match those of the
14508 video stream being processed.
14509 @end table
14510
14511 Pixels in the provided bitmap image with a value of zero are not
14512 considered part of the logo, non-zero pixels are considered part of
14513 the logo. If you use white (255) for the logo and black (0) for the
14514 rest, you will be safe. For making the filter bitmap, it is
14515 recommended to take a screen capture of a black frame with the logo
14516 visible, and then using a threshold filter followed by the erode
14517 filter once or twice.
14518
14519 If needed, little splotches can be fixed manually. Remember that if
14520 logo pixels are not covered, the filter quality will be much
14521 reduced. Marking too many pixels as part of the logo does not hurt as
14522 much, but it will increase the amount of blurring needed to cover over
14523 the image and will destroy more information than necessary, and extra
14524 pixels will slow things down on a large logo.
14525
14526 @section repeatfields
14527
14528 This filter uses the repeat_field flag from the Video ES headers and hard repeats
14529 fields based on its value.
14530
14531 @section reverse
14532
14533 Reverse a video clip.
14534
14535 Warning: This filter requires memory to buffer the entire clip, so trimming
14536 is suggested.
14537
14538 @subsection Examples
14539
14540 @itemize
14541 @item
14542 Take the first 5 seconds of a clip, and reverse it.
14543 @example
14544 trim=end=5,reverse
14545 @end example
14546 @end itemize
14547
14548 @section rgbashift
14549 Shift R/G/B/A pixels horizontally and/or vertically.
14550
14551 The filter accepts the following options:
14552 @table @option
14553 @item rh
14554 Set amount to shift red horizontally.
14555 @item rv
14556 Set amount to shift red vertically.
14557 @item gh
14558 Set amount to shift green horizontally.
14559 @item gv
14560 Set amount to shift green vertically.
14561 @item bh
14562 Set amount to shift blue horizontally.
14563 @item bv
14564 Set amount to shift blue vertically.
14565 @item ah
14566 Set amount to shift alpha horizontally.
14567 @item av
14568 Set amount to shift alpha vertically.
14569 @item edge
14570 Set edge mode, can be @var{smear}, default, or @var{warp}.
14571 @end table
14572
14573 @section roberts
14574 Apply roberts cross operator to input video stream.
14575
14576 The filter accepts the following option:
14577
14578 @table @option
14579 @item planes
14580 Set which planes will be processed, unprocessed planes will be copied.
14581 By default value 0xf, all planes will be processed.
14582
14583 @item scale
14584 Set value which will be multiplied with filtered result.
14585
14586 @item delta
14587 Set value which will be added to filtered result.
14588 @end table
14589
14590 @section rotate
14591
14592 Rotate video by an arbitrary angle expressed in radians.
14593
14594 The filter accepts the following options:
14595
14596 A description of the optional parameters follows.
14597 @table @option
14598 @item angle, a
14599 Set an expression for the angle by which to rotate the input video
14600 clockwise, expressed as a number of radians. A negative value will
14601 result in a counter-clockwise rotation. By default it is set to "0".
14602
14603 This expression is evaluated for each frame.
14604
14605 @item out_w, ow
14606 Set the output width expression, default value is "iw".
14607 This expression is evaluated just once during configuration.
14608
14609 @item out_h, oh
14610 Set the output height expression, default value is "ih".
14611 This expression is evaluated just once during configuration.
14612
14613 @item bilinear
14614 Enable bilinear interpolation if set to 1, a value of 0 disables
14615 it. Default value is 1.
14616
14617 @item fillcolor, c
14618 Set the color used to fill the output area not covered by the rotated
14619 image. For the general syntax of this option, check the
14620 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
14621 If the special value "none" is selected then no
14622 background is printed (useful for example if the background is never shown).
14623
14624 Default value is "black".
14625 @end table
14626
14627 The expressions for the angle and the output size can contain the
14628 following constants and functions:
14629
14630 @table @option
14631 @item n
14632 sequential number of the input frame, starting from 0. It is always NAN
14633 before the first frame is filtered.
14634
14635 @item t
14636 time in seconds of the input frame, it is set to 0 when the filter is
14637 configured. It is always NAN before the first frame is filtered.
14638
14639 @item hsub
14640 @item vsub
14641 horizontal and vertical chroma subsample values. For example for the
14642 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14643
14644 @item in_w, iw
14645 @item in_h, ih
14646 the input video width and height
14647
14648 @item out_w, ow
14649 @item out_h, oh
14650 the output width and height, that is the size of the padded area as
14651 specified by the @var{width} and @var{height} expressions
14652
14653 @item rotw(a)
14654 @item roth(a)
14655 the minimal width/height required for completely containing the input
14656 video rotated by @var{a} radians.
14657
14658 These are only available when computing the @option{out_w} and
14659 @option{out_h} expressions.
14660 @end table
14661
14662 @subsection Examples
14663
14664 @itemize
14665 @item
14666 Rotate the input by PI/6 radians clockwise:
14667 @example
14668 rotate=PI/6
14669 @end example
14670
14671 @item
14672 Rotate the input by PI/6 radians counter-clockwise:
14673 @example
14674 rotate=-PI/6
14675 @end example
14676
14677 @item
14678 Rotate the input by 45 degrees clockwise:
14679 @example
14680 rotate=45*PI/180
14681 @end example
14682
14683 @item
14684 Apply a constant rotation with period T, starting from an angle of PI/3:
14685 @example
14686 rotate=PI/3+2*PI*t/T
14687 @end example
14688
14689 @item
14690 Make the input video rotation oscillating with a period of T
14691 seconds and an amplitude of A radians:
14692 @example
14693 rotate=A*sin(2*PI/T*t)
14694 @end example
14695
14696 @item
14697 Rotate the video, output size is chosen so that the whole rotating
14698 input video is always completely contained in the output:
14699 @example
14700 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
14701 @end example
14702
14703 @item
14704 Rotate the video, reduce the output size so that no background is ever
14705 shown:
14706 @example
14707 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
14708 @end example
14709 @end itemize
14710
14711 @subsection Commands
14712
14713 The filter supports the following commands:
14714
14715 @table @option
14716 @item a, angle
14717 Set the angle expression.
14718 The command accepts the same syntax of the corresponding option.
14719
14720 If the specified expression is not valid, it is kept at its current
14721 value.
14722 @end table
14723
14724 @section sab
14725
14726 Apply Shape Adaptive Blur.
14727
14728 The filter accepts the following options:
14729
14730 @table @option
14731 @item luma_radius, lr
14732 Set luma blur filter strength, must be a value in range 0.1-4.0, default
14733 value is 1.0. A greater value will result in a more blurred image, and
14734 in slower processing.
14735
14736 @item luma_pre_filter_radius, lpfr
14737 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
14738 value is 1.0.
14739
14740 @item luma_strength, ls
14741 Set luma maximum difference between pixels to still be considered, must
14742 be a value in the 0.1-100.0 range, default value is 1.0.
14743
14744 @item chroma_radius, cr
14745 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
14746 greater value will result in a more blurred image, and in slower
14747 processing.
14748
14749 @item chroma_pre_filter_radius, cpfr
14750 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
14751
14752 @item chroma_strength, cs
14753 Set chroma maximum difference between pixels to still be considered,
14754 must be a value in the -0.9-100.0 range.
14755 @end table
14756
14757 Each chroma option value, if not explicitly specified, is set to the
14758 corresponding luma option value.
14759
14760 @anchor{scale}
14761 @section scale
14762
14763 Scale (resize) the input video, using the libswscale library.
14764
14765 The scale filter forces the output display aspect ratio to be the same
14766 of the input, by changing the output sample aspect ratio.
14767
14768 If the input image format is different from the format requested by
14769 the next filter, the scale filter will convert the input to the
14770 requested format.
14771
14772 @subsection Options
14773 The filter accepts the following options, or any of the options
14774 supported by the libswscale scaler.
14775
14776 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
14777 the complete list of scaler options.
14778
14779 @table @option
14780 @item width, w
14781 @item height, h
14782 Set the output video dimension expression. Default value is the input
14783 dimension.
14784
14785 If the @var{width} or @var{w} value is 0, the input width is used for
14786 the output. If the @var{height} or @var{h} value is 0, the input height
14787 is used for the output.
14788
14789 If one and only one of the values is -n with n >= 1, the scale filter
14790 will use a value that maintains the aspect ratio of the input image,
14791 calculated from the other specified dimension. After that it will,
14792 however, make sure that the calculated dimension is divisible by n and
14793 adjust the value if necessary.
14794
14795 If both values are -n with n >= 1, the behavior will be identical to
14796 both values being set to 0 as previously detailed.
14797
14798 See below for the list of accepted constants for use in the dimension
14799 expression.
14800
14801 @item eval
14802 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
14803
14804 @table @samp
14805 @item init
14806 Only evaluate expressions once during the filter initialization or when a command is processed.
14807
14808 @item frame
14809 Evaluate expressions for each incoming frame.
14810
14811 @end table
14812
14813 Default value is @samp{init}.
14814
14815
14816 @item interl
14817 Set the interlacing mode. It accepts the following values:
14818
14819 @table @samp
14820 @item 1
14821 Force interlaced aware scaling.
14822
14823 @item 0
14824 Do not apply interlaced scaling.
14825
14826 @item -1
14827 Select interlaced aware scaling depending on whether the source frames
14828 are flagged as interlaced or not.
14829 @end table
14830
14831 Default value is @samp{0}.
14832
14833 @item flags
14834 Set libswscale scaling flags. See
14835 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
14836 complete list of values. If not explicitly specified the filter applies
14837 the default flags.
14838
14839
14840 @item param0, param1
14841 Set libswscale input parameters for scaling algorithms that need them. See
14842 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
14843 complete documentation. If not explicitly specified the filter applies
14844 empty parameters.
14845
14846
14847
14848 @item size, s
14849 Set the video size. For the syntax of this option, check the
14850 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14851
14852 @item in_color_matrix
14853 @item out_color_matrix
14854 Set in/output YCbCr color space type.
14855
14856 This allows the autodetected value to be overridden as well as allows forcing
14857 a specific value used for the output and encoder.
14858
14859 If not specified, the color space type depends on the pixel format.
14860
14861 Possible values:
14862
14863 @table @samp
14864 @item auto
14865 Choose automatically.
14866
14867 @item bt709
14868 Format conforming to International Telecommunication Union (ITU)
14869 Recommendation BT.709.
14870
14871 @item fcc
14872 Set color space conforming to the United States Federal Communications
14873 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
14874
14875 @item bt601
14876 Set color space conforming to:
14877
14878 @itemize
14879 @item
14880 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
14881
14882 @item
14883 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
14884
14885 @item
14886 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
14887
14888 @end itemize
14889
14890 @item smpte240m
14891 Set color space conforming to SMPTE ST 240:1999.
14892 @end table
14893
14894 @item in_range
14895 @item out_range
14896 Set in/output YCbCr sample range.
14897
14898 This allows the autodetected value to be overridden as well as allows forcing
14899 a specific value used for the output and encoder. If not specified, the
14900 range depends on the pixel format. Possible values:
14901
14902 @table @samp
14903 @item auto/unknown
14904 Choose automatically.
14905
14906 @item jpeg/full/pc
14907 Set full range (0-255 in case of 8-bit luma).
14908
14909 @item mpeg/limited/tv
14910 Set "MPEG" range (16-235 in case of 8-bit luma).
14911 @end table
14912
14913 @item force_original_aspect_ratio
14914 Enable decreasing or increasing output video width or height if necessary to
14915 keep the original aspect ratio. Possible values:
14916
14917 @table @samp
14918 @item disable
14919 Scale the video as specified and disable this feature.
14920
14921 @item decrease
14922 The output video dimensions will automatically be decreased if needed.
14923
14924 @item increase
14925 The output video dimensions will automatically be increased if needed.
14926
14927 @end table
14928
14929 One useful instance of this option is that when you know a specific device's
14930 maximum allowed resolution, you can use this to limit the output video to
14931 that, while retaining the aspect ratio. For example, device A allows
14932 1280x720 playback, and your video is 1920x800. Using this option (set it to
14933 decrease) and specifying 1280x720 to the command line makes the output
14934 1280x533.
14935
14936 Please note that this is a different thing than specifying -1 for @option{w}
14937 or @option{h}, you still need to specify the output resolution for this option
14938 to work.
14939
14940 @end table
14941
14942 The values of the @option{w} and @option{h} options are expressions
14943 containing the following constants:
14944
14945 @table @var
14946 @item in_w
14947 @item in_h
14948 The input width and height
14949
14950 @item iw
14951 @item ih
14952 These are the same as @var{in_w} and @var{in_h}.
14953
14954 @item out_w
14955 @item out_h
14956 The output (scaled) width and height
14957
14958 @item ow
14959 @item oh
14960 These are the same as @var{out_w} and @var{out_h}
14961
14962 @item a
14963 The same as @var{iw} / @var{ih}
14964
14965 @item sar
14966 input sample aspect ratio
14967
14968 @item dar
14969 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
14970
14971 @item hsub
14972 @item vsub
14973 horizontal and vertical input chroma subsample values. For example for the
14974 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14975
14976 @item ohsub
14977 @item ovsub
14978 horizontal and vertical output chroma subsample values. For example for the
14979 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14980 @end table
14981
14982 @subsection Examples
14983
14984 @itemize
14985 @item
14986 Scale the input video to a size of 200x100
14987 @example
14988 scale=w=200:h=100
14989 @end example
14990
14991 This is equivalent to:
14992 @example
14993 scale=200:100
14994 @end example
14995
14996 or:
14997 @example
14998 scale=200x100
14999 @end example
15000
15001 @item
15002 Specify a size abbreviation for the output size:
15003 @example
15004 scale=qcif
15005 @end example
15006
15007 which can also be written as:
15008 @example
15009 scale=size=qcif
15010 @end example
15011
15012 @item
15013 Scale the input to 2x:
15014 @example
15015 scale=w=2*iw:h=2*ih
15016 @end example
15017
15018 @item
15019 The above is the same as:
15020 @example
15021 scale=2*in_w:2*in_h
15022 @end example
15023
15024 @item
15025 Scale the input to 2x with forced interlaced scaling:
15026 @example
15027 scale=2*iw:2*ih:interl=1
15028 @end example
15029
15030 @item
15031 Scale the input to half size:
15032 @example
15033 scale=w=iw/2:h=ih/2
15034 @end example
15035
15036 @item
15037 Increase the width, and set the height to the same size:
15038 @example
15039 scale=3/2*iw:ow
15040 @end example
15041
15042 @item
15043 Seek Greek harmony:
15044 @example
15045 scale=iw:1/PHI*iw
15046 scale=ih*PHI:ih
15047 @end example
15048
15049 @item
15050 Increase the height, and set the width to 3/2 of the height:
15051 @example
15052 scale=w=3/2*oh:h=3/5*ih
15053 @end example
15054
15055 @item
15056 Increase the size, making the size a multiple of the chroma
15057 subsample values:
15058 @example
15059 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
15060 @end example
15061
15062 @item
15063 Increase the width to a maximum of 500 pixels,
15064 keeping the same aspect ratio as the input:
15065 @example
15066 scale=w='min(500\, iw*3/2):h=-1'
15067 @end example
15068
15069 @item
15070 Make pixels square by combining scale and setsar:
15071 @example
15072 scale='trunc(ih*dar):ih',setsar=1/1
15073 @end example
15074
15075 @item
15076 Make pixels square by combining scale and setsar,
15077 making sure the resulting resolution is even (required by some codecs):
15078 @example
15079 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
15080 @end example
15081 @end itemize
15082
15083 @subsection Commands
15084
15085 This filter supports the following commands:
15086 @table @option
15087 @item width, w
15088 @item height, h
15089 Set the output video dimension expression.
15090 The command accepts the same syntax of the corresponding option.
15091
15092 If the specified expression is not valid, it is kept at its current
15093 value.
15094 @end table
15095
15096 @section scale_npp
15097
15098 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
15099 format conversion on CUDA video frames. Setting the output width and height
15100 works in the same way as for the @var{scale} filter.
15101
15102 The following additional options are accepted:
15103 @table @option
15104 @item format
15105 The pixel format of the output CUDA frames. If set to the string "same" (the
15106 default), the input format will be kept. Note that automatic format negotiation
15107 and conversion is not yet supported for hardware frames
15108
15109 @item interp_algo
15110 The interpolation algorithm used for resizing. One of the following:
15111 @table @option
15112 @item nn
15113 Nearest neighbour.
15114
15115 @item linear
15116 @item cubic
15117 @item cubic2p_bspline
15118 2-parameter cubic (B=1, C=0)
15119
15120 @item cubic2p_catmullrom
15121 2-parameter cubic (B=0, C=1/2)
15122
15123 @item cubic2p_b05c03
15124 2-parameter cubic (B=1/2, C=3/10)
15125
15126 @item super
15127 Supersampling
15128
15129 @item lanczos
15130 @end table
15131
15132 @end table
15133
15134 @section scale2ref
15135
15136 Scale (resize) the input video, based on a reference video.
15137
15138 See the scale filter for available options, scale2ref supports the same but
15139 uses the reference video instead of the main input as basis. scale2ref also
15140 supports the following additional constants for the @option{w} and
15141 @option{h} options:
15142
15143 @table @var
15144 @item main_w
15145 @item main_h
15146 The main input video's width and height
15147
15148 @item main_a
15149 The same as @var{main_w} / @var{main_h}
15150
15151 @item main_sar
15152 The main input video's sample aspect ratio
15153
15154 @item main_dar, mdar
15155 The main input video's display aspect ratio. Calculated from
15156 @code{(main_w / main_h) * main_sar}.
15157
15158 @item main_hsub
15159 @item main_vsub
15160 The main input video's horizontal and vertical chroma subsample values.
15161 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
15162 is 1.
15163 @end table
15164
15165 @subsection Examples
15166
15167 @itemize
15168 @item
15169 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
15170 @example
15171 'scale2ref[b][a];[a][b]overlay'
15172 @end example
15173 @end itemize
15174
15175 @anchor{selectivecolor}
15176 @section selectivecolor
15177
15178 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
15179 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
15180 by the "purity" of the color (that is, how saturated it already is).
15181
15182 This filter is similar to the Adobe Photoshop Selective Color tool.
15183
15184 The filter accepts the following options:
15185
15186 @table @option
15187 @item correction_method
15188 Select color correction method.
15189
15190 Available values are:
15191 @table @samp
15192 @item absolute
15193 Specified adjustments are applied "as-is" (added/subtracted to original pixel
15194 component value).
15195 @item relative
15196 Specified adjustments are relative to the original component value.
15197 @end table
15198 Default is @code{absolute}.
15199 @item reds
15200 Adjustments for red pixels (pixels where the red component is the maximum)
15201 @item yellows
15202 Adjustments for yellow pixels (pixels where the blue component is the minimum)
15203 @item greens
15204 Adjustments for green pixels (pixels where the green component is the maximum)
15205 @item cyans
15206 Adjustments for cyan pixels (pixels where the red component is the minimum)
15207 @item blues
15208 Adjustments for blue pixels (pixels where the blue component is the maximum)
15209 @item magentas
15210 Adjustments for magenta pixels (pixels where the green component is the minimum)
15211 @item whites
15212 Adjustments for white pixels (pixels where all components are greater than 128)
15213 @item neutrals
15214 Adjustments for all pixels except pure black and pure white
15215 @item blacks
15216 Adjustments for black pixels (pixels where all components are lesser than 128)
15217 @item psfile
15218 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
15219 @end table
15220
15221 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
15222 4 space separated floating point adjustment values in the [-1,1] range,
15223 respectively to adjust the amount of cyan, magenta, yellow and black for the
15224 pixels of its range.
15225
15226 @subsection Examples
15227
15228 @itemize
15229 @item
15230 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
15231 increase magenta by 27% in blue areas:
15232 @example
15233 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
15234 @end example
15235
15236 @item
15237 Use a Photoshop selective color preset:
15238 @example
15239 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
15240 @end example
15241 @end itemize
15242
15243 @anchor{separatefields}
15244 @section separatefields
15245
15246 The @code{separatefields} takes a frame-based video input and splits
15247 each frame into its components fields, producing a new half height clip
15248 with twice the frame rate and twice the frame count.
15249
15250 This filter use field-dominance information in frame to decide which
15251 of each pair of fields to place first in the output.
15252 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
15253
15254 @section setdar, setsar
15255
15256 The @code{setdar} filter sets the Display Aspect Ratio for the filter
15257 output video.
15258
15259 This is done by changing the specified Sample (aka Pixel) Aspect
15260 Ratio, according to the following equation:
15261 @example
15262 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
15263 @end example
15264
15265 Keep in mind that the @code{setdar} filter does not modify the pixel
15266 dimensions of the video frame. Also, the display aspect ratio set by
15267 this filter may be changed by later filters in the filterchain,
15268 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
15269 applied.
15270
15271 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
15272 the filter output video.
15273
15274 Note that as a consequence of the application of this filter, the
15275 output display aspect ratio will change according to the equation
15276 above.
15277
15278 Keep in mind that the sample aspect ratio set by the @code{setsar}
15279 filter may be changed by later filters in the filterchain, e.g. if
15280 another "setsar" or a "setdar" filter is applied.
15281
15282 It accepts the following parameters:
15283
15284 @table @option
15285 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
15286 Set the aspect ratio used by the filter.
15287
15288 The parameter can be a floating point number string, an expression, or
15289 a string of the form @var{num}:@var{den}, where @var{num} and
15290 @var{den} are the numerator and denominator of the aspect ratio. If
15291 the parameter is not specified, it is assumed the value "0".
15292 In case the form "@var{num}:@var{den}" is used, the @code{:} character
15293 should be escaped.
15294
15295 @item max
15296 Set the maximum integer value to use for expressing numerator and
15297 denominator when reducing the expressed aspect ratio to a rational.
15298 Default value is @code{100}.
15299
15300 @end table
15301
15302 The parameter @var{sar} is an expression containing
15303 the following constants:
15304
15305 @table @option
15306 @item E, PI, PHI
15307 These are approximated values for the mathematical constants e
15308 (Euler's number), pi (Greek pi), and phi (the golden ratio).
15309
15310 @item w, h
15311 The input width and height.
15312
15313 @item a
15314 These are the same as @var{w} / @var{h}.
15315
15316 @item sar
15317 The input sample aspect ratio.
15318
15319 @item dar
15320 The input display aspect ratio. It is the same as
15321 (@var{w} / @var{h}) * @var{sar}.
15322
15323 @item hsub, vsub
15324 Horizontal and vertical chroma subsample values. For example, for the
15325 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15326 @end table
15327
15328 @subsection Examples
15329
15330 @itemize
15331
15332 @item
15333 To change the display aspect ratio to 16:9, specify one of the following:
15334 @example
15335 setdar=dar=1.77777
15336 setdar=dar=16/9
15337 @end example
15338
15339 @item
15340 To change the sample aspect ratio to 10:11, specify:
15341 @example
15342 setsar=sar=10/11
15343 @end example
15344
15345 @item
15346 To set a display aspect ratio of 16:9, and specify a maximum integer value of
15347 1000 in the aspect ratio reduction, use the command:
15348 @example
15349 setdar=ratio=16/9:max=1000
15350 @end example
15351
15352 @end itemize
15353
15354 @anchor{setfield}
15355 @section setfield
15356
15357 Force field for the output video frame.
15358
15359 The @code{setfield} filter marks the interlace type field for the
15360 output frames. It does not change the input frame, but only sets the
15361 corresponding property, which affects how the frame is treated by
15362 following filters (e.g. @code{fieldorder} or @code{yadif}).
15363
15364 The filter accepts the following options:
15365
15366 @table @option
15367
15368 @item mode
15369 Available values are:
15370
15371 @table @samp
15372 @item auto
15373 Keep the same field property.
15374
15375 @item bff
15376 Mark the frame as bottom-field-first.
15377
15378 @item tff
15379 Mark the frame as top-field-first.
15380
15381 @item prog
15382 Mark the frame as progressive.
15383 @end table
15384 @end table
15385
15386 @anchor{setparams}
15387 @section setparams
15388
15389 Force frame parameter for the output video frame.
15390
15391 The @code{setparams} filter marks interlace and color range for the
15392 output frames. It does not change the input frame, but only sets the
15393 corresponding property, which affects how the frame is treated by
15394 filters/encoders.
15395
15396 @table @option
15397 @item field_mode
15398 Available values are:
15399
15400 @table @samp
15401 @item auto
15402 Keep the same field property (default).
15403
15404 @item bff
15405 Mark the frame as bottom-field-first.
15406
15407 @item tff
15408 Mark the frame as top-field-first.
15409
15410 @item prog
15411 Mark the frame as progressive.
15412 @end table
15413
15414 @item range
15415 Available values are:
15416
15417 @table @samp
15418 @item auto
15419 Keep the same color range property (default).
15420
15421 @item unspecified, unknown
15422 Mark the frame as unspecified color range.
15423
15424 @item limited, tv, mpeg
15425 Mark the frame as limited range.
15426
15427 @item full, pc, jpeg
15428 Mark the frame as full range.
15429 @end table
15430
15431 @item color_primaries
15432 Set the color primaries.
15433 Available values are:
15434
15435 @table @samp
15436 @item auto
15437 Keep the same color primaries property (default).
15438
15439 @item bt709
15440 @item unknown
15441 @item bt470m
15442 @item bt470bg
15443 @item smpte170m
15444 @item smpte240m
15445 @item film
15446 @item bt2020
15447 @item smpte428
15448 @item smpte431
15449 @item smpte432
15450 @item jedec-p22
15451 @end table
15452
15453 @item color_trc
15454 Set the color transfer.
15455 Available values are:
15456
15457 @table @samp
15458 @item auto
15459 Keep the same color trc property (default).
15460
15461 @item bt709
15462 @item unknown
15463 @item bt470m
15464 @item bt470bg
15465 @item smpte170m
15466 @item smpte240m
15467 @item linear
15468 @item log100
15469 @item log316
15470 @item iec61966-2-4
15471 @item bt1361e
15472 @item iec61966-2-1
15473 @item bt2020-10
15474 @item bt2020-12
15475 @item smpte2084
15476 @item smpte428
15477 @item arib-std-b67
15478 @end table
15479
15480 @item colorspace
15481 Set the colorspace.
15482 Available values are:
15483
15484 @table @samp
15485 @item auto
15486 Keep the same colorspace property (default).
15487
15488 @item gbr
15489 @item bt709
15490 @item unknown
15491 @item fcc
15492 @item bt470bg
15493 @item smpte170m
15494 @item smpte240m
15495 @item ycgco
15496 @item bt2020nc
15497 @item bt2020c
15498 @item smpte2085
15499 @item chroma-derived-nc
15500 @item chroma-derived-c
15501 @item ictcp
15502 @end table
15503 @end table
15504
15505 @section showinfo
15506
15507 Show a line containing various information for each input video frame.
15508 The input video is not modified.
15509
15510 This filter supports the following options:
15511
15512 @table @option
15513 @item checksum
15514 Calculate checksums of each plane. By default enabled.
15515 @end table
15516
15517 The shown line contains a sequence of key/value pairs of the form
15518 @var{key}:@var{value}.
15519
15520 The following values are shown in the output:
15521
15522 @table @option
15523 @item n
15524 The (sequential) number of the input frame, starting from 0.
15525
15526 @item pts
15527 The Presentation TimeStamp of the input frame, expressed as a number of
15528 time base units. The time base unit depends on the filter input pad.
15529
15530 @item pts_time
15531 The Presentation TimeStamp of the input frame, expressed as a number of
15532 seconds.
15533
15534 @item pos
15535 The position of the frame in the input stream, or -1 if this information is
15536 unavailable and/or meaningless (for example in case of synthetic video).
15537
15538 @item fmt
15539 The pixel format name.
15540
15541 @item sar
15542 The sample aspect ratio of the input frame, expressed in the form
15543 @var{num}/@var{den}.
15544
15545 @item s
15546 The size of the input frame. For the syntax of this option, check the
15547 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15548
15549 @item i
15550 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
15551 for bottom field first).
15552
15553 @item iskey
15554 This is 1 if the frame is a key frame, 0 otherwise.
15555
15556 @item type
15557 The picture type of the input frame ("I" for an I-frame, "P" for a
15558 P-frame, "B" for a B-frame, or "?" for an unknown type).
15559 Also refer to the documentation of the @code{AVPictureType} enum and of
15560 the @code{av_get_picture_type_char} function defined in
15561 @file{libavutil/avutil.h}.
15562
15563 @item checksum
15564 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
15565
15566 @item plane_checksum
15567 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
15568 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
15569 @end table
15570
15571 @section showpalette
15572
15573 Displays the 256 colors palette of each frame. This filter is only relevant for
15574 @var{pal8} pixel format frames.
15575
15576 It accepts the following option:
15577
15578 @table @option
15579 @item s
15580 Set the size of the box used to represent one palette color entry. Default is
15581 @code{30} (for a @code{30x30} pixel box).
15582 @end table
15583
15584 @section shuffleframes
15585
15586 Reorder and/or duplicate and/or drop video frames.
15587
15588 It accepts the following parameters:
15589
15590 @table @option
15591 @item mapping
15592 Set the destination indexes of input frames.
15593 This is space or '|' separated list of indexes that maps input frames to output
15594 frames. Number of indexes also sets maximal value that each index may have.
15595 '-1' index have special meaning and that is to drop frame.
15596 @end table
15597
15598 The first frame has the index 0. The default is to keep the input unchanged.
15599
15600 @subsection Examples
15601
15602 @itemize
15603 @item
15604 Swap second and third frame of every three frames of the input:
15605 @example
15606 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
15607 @end example
15608
15609 @item
15610 Swap 10th and 1st frame of every ten frames of the input:
15611 @example
15612 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
15613 @end example
15614 @end itemize
15615
15616 @section shuffleplanes
15617
15618 Reorder and/or duplicate video planes.
15619
15620 It accepts the following parameters:
15621
15622 @table @option
15623
15624 @item map0
15625 The index of the input plane to be used as the first output plane.
15626
15627 @item map1
15628 The index of the input plane to be used as the second output plane.
15629
15630 @item map2
15631 The index of the input plane to be used as the third output plane.
15632
15633 @item map3
15634 The index of the input plane to be used as the fourth output plane.
15635
15636 @end table
15637
15638 The first plane has the index 0. The default is to keep the input unchanged.
15639
15640 @subsection Examples
15641
15642 @itemize
15643 @item
15644 Swap the second and third planes of the input:
15645 @example
15646 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
15647 @end example
15648 @end itemize
15649
15650 @anchor{signalstats}
15651 @section signalstats
15652 Evaluate various visual metrics that assist in determining issues associated
15653 with the digitization of analog video media.
15654
15655 By default the filter will log these metadata values:
15656
15657 @table @option
15658 @item YMIN
15659 Display the minimal Y value contained within the input frame. Expressed in
15660 range of [0-255].
15661
15662 @item YLOW
15663 Display the Y value at the 10% percentile within the input frame. Expressed in
15664 range of [0-255].
15665
15666 @item YAVG
15667 Display the average Y value within the input frame. Expressed in range of
15668 [0-255].
15669
15670 @item YHIGH
15671 Display the Y value at the 90% percentile within the input frame. Expressed in
15672 range of [0-255].
15673
15674 @item YMAX
15675 Display the maximum Y value contained within the input frame. Expressed in
15676 range of [0-255].
15677
15678 @item UMIN
15679 Display the minimal U value contained within the input frame. Expressed in
15680 range of [0-255].
15681
15682 @item ULOW
15683 Display the U value at the 10% percentile within the input frame. Expressed in
15684 range of [0-255].
15685
15686 @item UAVG
15687 Display the average U value within the input frame. Expressed in range of
15688 [0-255].
15689
15690 @item UHIGH
15691 Display the U value at the 90% percentile within the input frame. Expressed in
15692 range of [0-255].
15693
15694 @item UMAX
15695 Display the maximum U value contained within the input frame. Expressed in
15696 range of [0-255].
15697
15698 @item VMIN
15699 Display the minimal V value contained within the input frame. Expressed in
15700 range of [0-255].
15701
15702 @item VLOW
15703 Display the V value at the 10% percentile within the input frame. Expressed in
15704 range of [0-255].
15705
15706 @item VAVG
15707 Display the average V value within the input frame. Expressed in range of
15708 [0-255].
15709
15710 @item VHIGH
15711 Display the V value at the 90% percentile within the input frame. Expressed in
15712 range of [0-255].
15713
15714 @item VMAX
15715 Display the maximum V value contained within the input frame. Expressed in
15716 range of [0-255].
15717
15718 @item SATMIN
15719 Display the minimal saturation value contained within the input frame.
15720 Expressed in range of [0-~181.02].
15721
15722 @item SATLOW
15723 Display the saturation value at the 10% percentile within the input frame.
15724 Expressed in range of [0-~181.02].
15725
15726 @item SATAVG
15727 Display the average saturation value within the input frame. Expressed in range
15728 of [0-~181.02].
15729
15730 @item SATHIGH
15731 Display the saturation value at the 90% percentile within the input frame.
15732 Expressed in range of [0-~181.02].
15733
15734 @item SATMAX
15735 Display the maximum saturation value contained within the input frame.
15736 Expressed in range of [0-~181.02].
15737
15738 @item HUEMED
15739 Display the median value for hue within the input frame. Expressed in range of
15740 [0-360].
15741
15742 @item HUEAVG
15743 Display the average value for hue within the input frame. Expressed in range of
15744 [0-360].
15745
15746 @item YDIF
15747 Display the average of sample value difference between all values of the Y
15748 plane in the current frame and corresponding values of the previous input frame.
15749 Expressed in range of [0-255].
15750
15751 @item UDIF
15752 Display the average of sample value difference between all values of the U
15753 plane in the current frame and corresponding values of the previous input frame.
15754 Expressed in range of [0-255].
15755
15756 @item VDIF
15757 Display the average of sample value difference between all values of the V
15758 plane in the current frame and corresponding values of the previous input frame.
15759 Expressed in range of [0-255].
15760
15761 @item YBITDEPTH
15762 Display bit depth of Y plane in current frame.
15763 Expressed in range of [0-16].
15764
15765 @item UBITDEPTH
15766 Display bit depth of U plane in current frame.
15767 Expressed in range of [0-16].
15768
15769 @item VBITDEPTH
15770 Display bit depth of V plane in current frame.
15771 Expressed in range of [0-16].
15772 @end table
15773
15774 The filter accepts the following options:
15775
15776 @table @option
15777 @item stat
15778 @item out
15779
15780 @option{stat} specify an additional form of image analysis.
15781 @option{out} output video with the specified type of pixel highlighted.
15782
15783 Both options accept the following values:
15784
15785 @table @samp
15786 @item tout
15787 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
15788 unlike the neighboring pixels of the same field. Examples of temporal outliers
15789 include the results of video dropouts, head clogs, or tape tracking issues.
15790
15791 @item vrep
15792 Identify @var{vertical line repetition}. Vertical line repetition includes
15793 similar rows of pixels within a frame. In born-digital video vertical line
15794 repetition is common, but this pattern is uncommon in video digitized from an
15795 analog source. When it occurs in video that results from the digitization of an
15796 analog source it can indicate concealment from a dropout compensator.
15797
15798 @item brng
15799 Identify pixels that fall outside of legal broadcast range.
15800 @end table
15801
15802 @item color, c
15803 Set the highlight color for the @option{out} option. The default color is
15804 yellow.
15805 @end table
15806
15807 @subsection Examples
15808
15809 @itemize
15810 @item
15811 Output data of various video metrics:
15812 @example
15813 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
15814 @end example
15815
15816 @item
15817 Output specific data about the minimum and maximum values of the Y plane per frame:
15818 @example
15819 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
15820 @end example
15821
15822 @item
15823 Playback video while highlighting pixels that are outside of broadcast range in red.
15824 @example
15825 ffplay example.mov -vf signalstats="out=brng:color=red"
15826 @end example
15827
15828 @item
15829 Playback video with signalstats metadata drawn over the frame.
15830 @example
15831 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
15832 @end example
15833
15834 The contents of signalstat_drawtext.txt used in the command are:
15835 @example
15836 time %@{pts:hms@}
15837 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
15838 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
15839 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
15840 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
15841
15842 @end example
15843 @end itemize
15844
15845 @anchor{signature}
15846 @section signature
15847
15848 Calculates the MPEG-7 Video Signature. The filter can handle more than one
15849 input. In this case the matching between the inputs can be calculated additionally.
15850 The filter always passes through the first input. The signature of each stream can
15851 be written into a file.
15852
15853 It accepts the following options:
15854
15855 @table @option
15856 @item detectmode
15857 Enable or disable the matching process.
15858
15859 Available values are:
15860
15861 @table @samp
15862 @item off
15863 Disable the calculation of a matching (default).
15864 @item full
15865 Calculate the matching for the whole video and output whether the whole video
15866 matches or only parts.
15867 @item fast
15868 Calculate only until a matching is found or the video ends. Should be faster in
15869 some cases.
15870 @end table
15871
15872 @item nb_inputs
15873 Set the number of inputs. The option value must be a non negative integer.
15874 Default value is 1.
15875
15876 @item filename
15877 Set the path to which the output is written. If there is more than one input,
15878 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
15879 integer), that will be replaced with the input number. If no filename is
15880 specified, no output will be written. This is the default.
15881
15882 @item format
15883 Choose the output format.
15884
15885 Available values are:
15886
15887 @table @samp
15888 @item binary
15889 Use the specified binary representation (default).
15890 @item xml
15891 Use the specified xml representation.
15892 @end table
15893
15894 @item th_d
15895 Set threshold to detect one word as similar. The option value must be an integer
15896 greater than zero. The default value is 9000.
15897
15898 @item th_dc
15899 Set threshold to detect all words as similar. The option value must be an integer
15900 greater than zero. The default value is 60000.
15901
15902 @item th_xh
15903 Set threshold to detect frames as similar. The option value must be an integer
15904 greater than zero. The default value is 116.
15905
15906 @item th_di
15907 Set the minimum length of a sequence in frames to recognize it as matching
15908 sequence. The option value must be a non negative integer value.
15909 The default value is 0.
15910
15911 @item th_it
15912 Set the minimum relation, that matching frames to all frames must have.
15913 The option value must be a double value between 0 and 1. The default value is 0.5.
15914 @end table
15915
15916 @subsection Examples
15917
15918 @itemize
15919 @item
15920 To calculate the signature of an input video and store it in signature.bin:
15921 @example
15922 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
15923 @end example
15924
15925 @item
15926 To detect whether two videos match and store the signatures in XML format in
15927 signature0.xml and signature1.xml:
15928 @example
15929 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 -
15930 @end example
15931
15932 @end itemize
15933
15934 @anchor{smartblur}
15935 @section smartblur
15936
15937 Blur the input video without impacting the outlines.
15938
15939 It accepts the following options:
15940
15941 @table @option
15942 @item luma_radius, lr
15943 Set the luma radius. The option value must be a float number in
15944 the range [0.1,5.0] that specifies the variance of the gaussian filter
15945 used to blur the image (slower if larger). Default value is 1.0.
15946
15947 @item luma_strength, ls
15948 Set the luma strength. The option value must be a float number
15949 in the range [-1.0,1.0] that configures the blurring. A value included
15950 in [0.0,1.0] will blur the image whereas a value included in
15951 [-1.0,0.0] will sharpen the image. Default value is 1.0.
15952
15953 @item luma_threshold, lt
15954 Set the luma threshold used as a coefficient to determine
15955 whether a pixel should be blurred or not. The option value must be an
15956 integer in the range [-30,30]. A value of 0 will filter all the image,
15957 a value included in [0,30] will filter flat areas and a value included
15958 in [-30,0] will filter edges. Default value is 0.
15959
15960 @item chroma_radius, cr
15961 Set the chroma radius. The option value must be a float number in
15962 the range [0.1,5.0] that specifies the variance of the gaussian filter
15963 used to blur the image (slower if larger). Default value is @option{luma_radius}.
15964
15965 @item chroma_strength, cs
15966 Set the chroma strength. The option value must be a float number
15967 in the range [-1.0,1.0] that configures the blurring. A value included
15968 in [0.0,1.0] will blur the image whereas a value included in
15969 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
15970
15971 @item chroma_threshold, ct
15972 Set the chroma threshold used as a coefficient to determine
15973 whether a pixel should be blurred or not. The option value must be an
15974 integer in the range [-30,30]. A value of 0 will filter all the image,
15975 a value included in [0,30] will filter flat areas and a value included
15976 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
15977 @end table
15978
15979 If a chroma option is not explicitly set, the corresponding luma value
15980 is set.
15981
15982 @section ssim
15983
15984 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
15985
15986 This filter takes in input two input videos, the first input is
15987 considered the "main" source and is passed unchanged to the
15988 output. The second input is used as a "reference" video for computing
15989 the SSIM.
15990
15991 Both video inputs must have the same resolution and pixel format for
15992 this filter to work correctly. Also it assumes that both inputs
15993 have the same number of frames, which are compared one by one.
15994
15995 The filter stores the calculated SSIM of each frame.
15996
15997 The description of the accepted parameters follows.
15998
15999 @table @option
16000 @item stats_file, f
16001 If specified the filter will use the named file to save the SSIM of
16002 each individual frame. When filename equals "-" the data is sent to
16003 standard output.
16004 @end table
16005
16006 The file printed if @var{stats_file} is selected, contains a sequence of
16007 key/value pairs of the form @var{key}:@var{value} for each compared
16008 couple of frames.
16009
16010 A description of each shown parameter follows:
16011
16012 @table @option
16013 @item n
16014 sequential number of the input frame, starting from 1
16015
16016 @item Y, U, V, R, G, B
16017 SSIM of the compared frames for the component specified by the suffix.
16018
16019 @item All
16020 SSIM of the compared frames for the whole frame.
16021
16022 @item dB
16023 Same as above but in dB representation.
16024 @end table
16025
16026 This filter also supports the @ref{framesync} options.
16027
16028 For example:
16029 @example
16030 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16031 [main][ref] ssim="stats_file=stats.log" [out]
16032 @end example
16033
16034 On this example the input file being processed is compared with the
16035 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
16036 is stored in @file{stats.log}.
16037
16038 Another example with both psnr and ssim at same time:
16039 @example
16040 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
16041 @end example
16042
16043 @section stereo3d
16044
16045 Convert between different stereoscopic image formats.
16046
16047 The filters accept the following options:
16048
16049 @table @option
16050 @item in
16051 Set stereoscopic image format of input.
16052
16053 Available values for input image formats are:
16054 @table @samp
16055 @item sbsl
16056 side by side parallel (left eye left, right eye right)
16057
16058 @item sbsr
16059 side by side crosseye (right eye left, left eye right)
16060
16061 @item sbs2l
16062 side by side parallel with half width resolution
16063 (left eye left, right eye right)
16064
16065 @item sbs2r
16066 side by side crosseye with half width resolution
16067 (right eye left, left eye right)
16068
16069 @item abl
16070 above-below (left eye above, right eye below)
16071
16072 @item abr
16073 above-below (right eye above, left eye below)
16074
16075 @item ab2l
16076 above-below with half height resolution
16077 (left eye above, right eye below)
16078
16079 @item ab2r
16080 above-below with half height resolution
16081 (right eye above, left eye below)
16082
16083 @item al
16084 alternating frames (left eye first, right eye second)
16085
16086 @item ar
16087 alternating frames (right eye first, left eye second)
16088
16089 @item irl
16090 interleaved rows (left eye has top row, right eye starts on next row)
16091
16092 @item irr
16093 interleaved rows (right eye has top row, left eye starts on next row)
16094
16095 @item icl
16096 interleaved columns, left eye first
16097
16098 @item icr
16099 interleaved columns, right eye first
16100
16101 Default value is @samp{sbsl}.
16102 @end table
16103
16104 @item out
16105 Set stereoscopic image format of output.
16106
16107 @table @samp
16108 @item sbsl
16109 side by side parallel (left eye left, right eye right)
16110
16111 @item sbsr
16112 side by side crosseye (right eye left, left eye right)
16113
16114 @item sbs2l
16115 side by side parallel with half width resolution
16116 (left eye left, right eye right)
16117
16118 @item sbs2r
16119 side by side crosseye with half width resolution
16120 (right eye left, left eye right)
16121
16122 @item abl
16123 above-below (left eye above, right eye below)
16124
16125 @item abr
16126 above-below (right eye above, left eye below)
16127
16128 @item ab2l
16129 above-below with half height resolution
16130 (left eye above, right eye below)
16131
16132 @item ab2r
16133 above-below with half height resolution
16134 (right eye above, left eye below)
16135
16136 @item al
16137 alternating frames (left eye first, right eye second)
16138
16139 @item ar
16140 alternating frames (right eye first, left eye second)
16141
16142 @item irl
16143 interleaved rows (left eye has top row, right eye starts on next row)
16144
16145 @item irr
16146 interleaved rows (right eye has top row, left eye starts on next row)
16147
16148 @item arbg
16149 anaglyph red/blue gray
16150 (red filter on left eye, blue filter on right eye)
16151
16152 @item argg
16153 anaglyph red/green gray
16154 (red filter on left eye, green filter on right eye)
16155
16156 @item arcg
16157 anaglyph red/cyan gray
16158 (red filter on left eye, cyan filter on right eye)
16159
16160 @item arch
16161 anaglyph red/cyan half colored
16162 (red filter on left eye, cyan filter on right eye)
16163
16164 @item arcc
16165 anaglyph red/cyan color
16166 (red filter on left eye, cyan filter on right eye)
16167
16168 @item arcd
16169 anaglyph red/cyan color optimized with the least squares projection of dubois
16170 (red filter on left eye, cyan filter on right eye)
16171
16172 @item agmg
16173 anaglyph green/magenta gray
16174 (green filter on left eye, magenta filter on right eye)
16175
16176 @item agmh
16177 anaglyph green/magenta half colored
16178 (green filter on left eye, magenta filter on right eye)
16179
16180 @item agmc
16181 anaglyph green/magenta colored
16182 (green filter on left eye, magenta filter on right eye)
16183
16184 @item agmd
16185 anaglyph green/magenta color optimized with the least squares projection of dubois
16186 (green filter on left eye, magenta filter on right eye)
16187
16188 @item aybg
16189 anaglyph yellow/blue gray
16190 (yellow filter on left eye, blue filter on right eye)
16191
16192 @item aybh
16193 anaglyph yellow/blue half colored
16194 (yellow filter on left eye, blue filter on right eye)
16195
16196 @item aybc
16197 anaglyph yellow/blue colored
16198 (yellow filter on left eye, blue filter on right eye)
16199
16200 @item aybd
16201 anaglyph yellow/blue color optimized with the least squares projection of dubois
16202 (yellow filter on left eye, blue filter on right eye)
16203
16204 @item ml
16205 mono output (left eye only)
16206
16207 @item mr
16208 mono output (right eye only)
16209
16210 @item chl
16211 checkerboard, left eye first
16212
16213 @item chr
16214 checkerboard, right eye first
16215
16216 @item icl
16217 interleaved columns, left eye first
16218
16219 @item icr
16220 interleaved columns, right eye first
16221
16222 @item hdmi
16223 HDMI frame pack
16224 @end table
16225
16226 Default value is @samp{arcd}.
16227 @end table
16228
16229 @subsection Examples
16230
16231 @itemize
16232 @item
16233 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
16234 @example
16235 stereo3d=sbsl:aybd
16236 @end example
16237
16238 @item
16239 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
16240 @example
16241 stereo3d=abl:sbsr
16242 @end example
16243 @end itemize
16244
16245 @section streamselect, astreamselect
16246 Select video or audio streams.
16247
16248 The filter accepts the following options:
16249
16250 @table @option
16251 @item inputs
16252 Set number of inputs. Default is 2.
16253
16254 @item map
16255 Set input indexes to remap to outputs.
16256 @end table
16257
16258 @subsection Commands
16259
16260 The @code{streamselect} and @code{astreamselect} filter supports the following
16261 commands:
16262
16263 @table @option
16264 @item map
16265 Set input indexes to remap to outputs.
16266 @end table
16267
16268 @subsection Examples
16269
16270 @itemize
16271 @item
16272 Select first 5 seconds 1st stream and rest of time 2nd stream:
16273 @example
16274 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
16275 @end example
16276
16277 @item
16278 Same as above, but for audio:
16279 @example
16280 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
16281 @end example
16282 @end itemize
16283
16284 @section sobel
16285 Apply sobel operator to input video stream.
16286
16287 The filter accepts the following option:
16288
16289 @table @option
16290 @item planes
16291 Set which planes will be processed, unprocessed planes will be copied.
16292 By default value 0xf, all planes will be processed.
16293
16294 @item scale
16295 Set value which will be multiplied with filtered result.
16296
16297 @item delta
16298 Set value which will be added to filtered result.
16299 @end table
16300
16301 @anchor{spp}
16302 @section spp
16303
16304 Apply a simple postprocessing filter that compresses and decompresses the image
16305 at several (or - in the case of @option{quality} level @code{6} - all) shifts
16306 and average the results.
16307
16308 The filter accepts the following options:
16309
16310 @table @option
16311 @item quality
16312 Set quality. This option defines the number of levels for averaging. It accepts
16313 an integer in the range 0-6. If set to @code{0}, the filter will have no
16314 effect. A value of @code{6} means the higher quality. For each increment of
16315 that value the speed drops by a factor of approximately 2.  Default value is
16316 @code{3}.
16317
16318 @item qp
16319 Force a constant quantization parameter. If not set, the filter will use the QP
16320 from the video stream (if available).
16321
16322 @item mode
16323 Set thresholding mode. Available modes are:
16324
16325 @table @samp
16326 @item hard
16327 Set hard thresholding (default).
16328 @item soft
16329 Set soft thresholding (better de-ringing effect, but likely blurrier).
16330 @end table
16331
16332 @item use_bframe_qp
16333 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
16334 option may cause flicker since the B-Frames have often larger QP. Default is
16335 @code{0} (not enabled).
16336 @end table
16337
16338 @section sr
16339
16340 Scale the input by applying one of the super-resolution methods based on
16341 convolutional neural networks. Supported models:
16342
16343 @itemize
16344 @item
16345 Super-Resolution Convolutional Neural Network model (SRCNN).
16346 See @url{https://arxiv.org/abs/1501.00092}.
16347
16348 @item
16349 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
16350 See @url{https://arxiv.org/abs/1609.05158}.
16351 @end itemize
16352
16353 Training scripts as well as scripts for model generation are provided in
16354 the repository at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
16355
16356 The filter accepts the following options:
16357
16358 @table @option
16359 @item dnn_backend
16360 Specify which DNN backend to use for model loading and execution. This option accepts
16361 the following values:
16362
16363 @table @samp
16364 @item native
16365 Native implementation of DNN loading and execution.
16366
16367 @item tensorflow
16368 TensorFlow backend. To enable this backend you
16369 need to install the TensorFlow for C library (see
16370 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
16371 @code{--enable-libtensorflow}
16372 @end table
16373
16374 Default value is @samp{native}.
16375
16376 @item model
16377 Set path to model file specifying network architecture and its parameters.
16378 Note that different backends use different file formats. TensorFlow backend
16379 can load files for both formats, while native backend can load files for only
16380 its format.
16381
16382 @item scale_factor
16383 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
16384 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
16385 input upscaled using bicubic upscaling with proper scale factor.
16386 @end table
16387
16388 @anchor{subtitles}
16389 @section subtitles
16390
16391 Draw subtitles on top of input video using the libass library.
16392
16393 To enable compilation of this filter you need to configure FFmpeg with
16394 @code{--enable-libass}. This filter also requires a build with libavcodec and
16395 libavformat to convert the passed subtitles file to ASS (Advanced Substation
16396 Alpha) subtitles format.
16397
16398 The filter accepts the following options:
16399
16400 @table @option
16401 @item filename, f
16402 Set the filename of the subtitle file to read. It must be specified.
16403
16404 @item original_size
16405 Specify the size of the original video, the video for which the ASS file
16406 was composed. For the syntax of this option, check the
16407 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16408 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
16409 correctly scale the fonts if the aspect ratio has been changed.
16410
16411 @item fontsdir
16412 Set a directory path containing fonts that can be used by the filter.
16413 These fonts will be used in addition to whatever the font provider uses.
16414
16415 @item alpha
16416 Process alpha channel, by default alpha channel is untouched.
16417
16418 @item charenc
16419 Set subtitles input character encoding. @code{subtitles} filter only. Only
16420 useful if not UTF-8.
16421
16422 @item stream_index, si
16423 Set subtitles stream index. @code{subtitles} filter only.
16424
16425 @item force_style
16426 Override default style or script info parameters of the subtitles. It accepts a
16427 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
16428 @end table
16429
16430 If the first key is not specified, it is assumed that the first value
16431 specifies the @option{filename}.
16432
16433 For example, to render the file @file{sub.srt} on top of the input
16434 video, use the command:
16435 @example
16436 subtitles=sub.srt
16437 @end example
16438
16439 which is equivalent to:
16440 @example
16441 subtitles=filename=sub.srt
16442 @end example
16443
16444 To render the default subtitles stream from file @file{video.mkv}, use:
16445 @example
16446 subtitles=video.mkv
16447 @end example
16448
16449 To render the second subtitles stream from that file, use:
16450 @example
16451 subtitles=video.mkv:si=1
16452 @end example
16453
16454 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
16455 @code{DejaVu Serif}, use:
16456 @example
16457 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
16458 @end example
16459
16460 @section super2xsai
16461
16462 Scale the input by 2x and smooth using the Super2xSaI (Scale and
16463 Interpolate) pixel art scaling algorithm.
16464
16465 Useful for enlarging pixel art images without reducing sharpness.
16466
16467 @section swaprect
16468
16469 Swap two rectangular objects in video.
16470
16471 This filter accepts the following options:
16472
16473 @table @option
16474 @item w
16475 Set object width.
16476
16477 @item h
16478 Set object height.
16479
16480 @item x1
16481 Set 1st rect x coordinate.
16482
16483 @item y1
16484 Set 1st rect y coordinate.
16485
16486 @item x2
16487 Set 2nd rect x coordinate.
16488
16489 @item y2
16490 Set 2nd rect y coordinate.
16491
16492 All expressions are evaluated once for each frame.
16493 @end table
16494
16495 The all options are expressions containing the following constants:
16496
16497 @table @option
16498 @item w
16499 @item h
16500 The input width and height.
16501
16502 @item a
16503 same as @var{w} / @var{h}
16504
16505 @item sar
16506 input sample aspect ratio
16507
16508 @item dar
16509 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
16510
16511 @item n
16512 The number of the input frame, starting from 0.
16513
16514 @item t
16515 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
16516
16517 @item pos
16518 the position in the file of the input frame, NAN if unknown
16519 @end table
16520
16521 @section swapuv
16522 Swap U & V plane.
16523
16524 @section telecine
16525
16526 Apply telecine process to the video.
16527
16528 This filter accepts the following options:
16529
16530 @table @option
16531 @item first_field
16532 @table @samp
16533 @item top, t
16534 top field first
16535 @item bottom, b
16536 bottom field first
16537 The default value is @code{top}.
16538 @end table
16539
16540 @item pattern
16541 A string of numbers representing the pulldown pattern you wish to apply.
16542 The default value is @code{23}.
16543 @end table
16544
16545 @example
16546 Some typical patterns:
16547
16548 NTSC output (30i):
16549 27.5p: 32222
16550 24p: 23 (classic)
16551 24p: 2332 (preferred)
16552 20p: 33
16553 18p: 334
16554 16p: 3444
16555
16556 PAL output (25i):
16557 27.5p: 12222
16558 24p: 222222222223 ("Euro pulldown")
16559 16.67p: 33
16560 16p: 33333334
16561 @end example
16562
16563 @section threshold
16564
16565 Apply threshold effect to video stream.
16566
16567 This filter needs four video streams to perform thresholding.
16568 First stream is stream we are filtering.
16569 Second stream is holding threshold values, third stream is holding min values,
16570 and last, fourth stream is holding max values.
16571
16572 The filter accepts the following option:
16573
16574 @table @option
16575 @item planes
16576 Set which planes will be processed, unprocessed planes will be copied.
16577 By default value 0xf, all planes will be processed.
16578 @end table
16579
16580 For example if first stream pixel's component value is less then threshold value
16581 of pixel component from 2nd threshold stream, third stream value will picked,
16582 otherwise fourth stream pixel component value will be picked.
16583
16584 Using color source filter one can perform various types of thresholding:
16585
16586 @subsection Examples
16587
16588 @itemize
16589 @item
16590 Binary threshold, using gray color as threshold:
16591 @example
16592 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
16593 @end example
16594
16595 @item
16596 Inverted binary threshold, using gray color as threshold:
16597 @example
16598 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
16599 @end example
16600
16601 @item
16602 Truncate binary threshold, using gray color as threshold:
16603 @example
16604 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
16605 @end example
16606
16607 @item
16608 Threshold to zero, using gray color as threshold:
16609 @example
16610 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
16611 @end example
16612
16613 @item
16614 Inverted threshold to zero, using gray color as threshold:
16615 @example
16616 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
16617 @end example
16618 @end itemize
16619
16620 @section thumbnail
16621 Select the most representative frame in a given sequence of consecutive frames.
16622
16623 The filter accepts the following options:
16624
16625 @table @option
16626 @item n
16627 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
16628 will pick one of them, and then handle the next batch of @var{n} frames until
16629 the end. Default is @code{100}.
16630 @end table
16631
16632 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
16633 value will result in a higher memory usage, so a high value is not recommended.
16634
16635 @subsection Examples
16636
16637 @itemize
16638 @item
16639 Extract one picture each 50 frames:
16640 @example
16641 thumbnail=50
16642 @end example
16643
16644 @item
16645 Complete example of a thumbnail creation with @command{ffmpeg}:
16646 @example
16647 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
16648 @end example
16649 @end itemize
16650
16651 @section tile
16652
16653 Tile several successive frames together.
16654
16655 The filter accepts the following options:
16656
16657 @table @option
16658
16659 @item layout
16660 Set the grid size (i.e. the number of lines and columns). For the syntax of
16661 this option, check the
16662 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16663
16664 @item nb_frames
16665 Set the maximum number of frames to render in the given area. It must be less
16666 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
16667 the area will be used.
16668
16669 @item margin
16670 Set the outer border margin in pixels.
16671
16672 @item padding
16673 Set the inner border thickness (i.e. the number of pixels between frames). For
16674 more advanced padding options (such as having different values for the edges),
16675 refer to the pad video filter.
16676
16677 @item color
16678 Specify the color of the unused area. For the syntax of this option, check the
16679 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
16680 The default value of @var{color} is "black".
16681
16682 @item overlap
16683 Set the number of frames to overlap when tiling several successive frames together.
16684 The value must be between @code{0} and @var{nb_frames - 1}.
16685
16686 @item init_padding
16687 Set the number of frames to initially be empty before displaying first output frame.
16688 This controls how soon will one get first output frame.
16689 The value must be between @code{0} and @var{nb_frames - 1}.
16690 @end table
16691
16692 @subsection Examples
16693
16694 @itemize
16695 @item
16696 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
16697 @example
16698 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
16699 @end example
16700 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
16701 duplicating each output frame to accommodate the originally detected frame
16702 rate.
16703
16704 @item
16705 Display @code{5} pictures in an area of @code{3x2} frames,
16706 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
16707 mixed flat and named options:
16708 @example
16709 tile=3x2:nb_frames=5:padding=7:margin=2
16710 @end example
16711 @end itemize
16712
16713 @section tinterlace
16714
16715 Perform various types of temporal field interlacing.
16716
16717 Frames are counted starting from 1, so the first input frame is
16718 considered odd.
16719
16720 The filter accepts the following options:
16721
16722 @table @option
16723
16724 @item mode
16725 Specify the mode of the interlacing. This option can also be specified
16726 as a value alone. See below for a list of values for this option.
16727
16728 Available values are:
16729
16730 @table @samp
16731 @item merge, 0
16732 Move odd frames into the upper field, even into the lower field,
16733 generating a double height frame at half frame rate.
16734 @example
16735  ------> time
16736 Input:
16737 Frame 1         Frame 2         Frame 3         Frame 4
16738
16739 11111           22222           33333           44444
16740 11111           22222           33333           44444
16741 11111           22222           33333           44444
16742 11111           22222           33333           44444
16743
16744 Output:
16745 11111                           33333
16746 22222                           44444
16747 11111                           33333
16748 22222                           44444
16749 11111                           33333
16750 22222                           44444
16751 11111                           33333
16752 22222                           44444
16753 @end example
16754
16755 @item drop_even, 1
16756 Only output odd frames, even frames are dropped, generating a frame with
16757 unchanged height at half frame rate.
16758
16759 @example
16760  ------> time
16761 Input:
16762 Frame 1         Frame 2         Frame 3         Frame 4
16763
16764 11111           22222           33333           44444
16765 11111           22222           33333           44444
16766 11111           22222           33333           44444
16767 11111           22222           33333           44444
16768
16769 Output:
16770 11111                           33333
16771 11111                           33333
16772 11111                           33333
16773 11111                           33333
16774 @end example
16775
16776 @item drop_odd, 2
16777 Only output even frames, odd frames are dropped, generating a frame with
16778 unchanged height at half frame rate.
16779
16780 @example
16781  ------> time
16782 Input:
16783 Frame 1         Frame 2         Frame 3         Frame 4
16784
16785 11111           22222           33333           44444
16786 11111           22222           33333           44444
16787 11111           22222           33333           44444
16788 11111           22222           33333           44444
16789
16790 Output:
16791                 22222                           44444
16792                 22222                           44444
16793                 22222                           44444
16794                 22222                           44444
16795 @end example
16796
16797 @item pad, 3
16798 Expand each frame to full height, but pad alternate lines with black,
16799 generating a frame with double height at the same input frame rate.
16800
16801 @example
16802  ------> time
16803 Input:
16804 Frame 1         Frame 2         Frame 3         Frame 4
16805
16806 11111           22222           33333           44444
16807 11111           22222           33333           44444
16808 11111           22222           33333           44444
16809 11111           22222           33333           44444
16810
16811 Output:
16812 11111           .....           33333           .....
16813 .....           22222           .....           44444
16814 11111           .....           33333           .....
16815 .....           22222           .....           44444
16816 11111           .....           33333           .....
16817 .....           22222           .....           44444
16818 11111           .....           33333           .....
16819 .....           22222           .....           44444
16820 @end example
16821
16822
16823 @item interleave_top, 4
16824 Interleave the upper field from odd frames with the lower field from
16825 even frames, generating a frame with unchanged height at half frame rate.
16826
16827 @example
16828  ------> time
16829 Input:
16830 Frame 1         Frame 2         Frame 3         Frame 4
16831
16832 11111<-         22222           33333<-         44444
16833 11111           22222<-         33333           44444<-
16834 11111<-         22222           33333<-         44444
16835 11111           22222<-         33333           44444<-
16836
16837 Output:
16838 11111                           33333
16839 22222                           44444
16840 11111                           33333
16841 22222                           44444
16842 @end example
16843
16844
16845 @item interleave_bottom, 5
16846 Interleave the lower field from odd frames with the upper field from
16847 even frames, generating a frame with unchanged height at half frame rate.
16848
16849 @example
16850  ------> time
16851 Input:
16852 Frame 1         Frame 2         Frame 3         Frame 4
16853
16854 11111           22222<-         33333           44444<-
16855 11111<-         22222           33333<-         44444
16856 11111           22222<-         33333           44444<-
16857 11111<-         22222           33333<-         44444
16858
16859 Output:
16860 22222                           44444
16861 11111                           33333
16862 22222                           44444
16863 11111                           33333
16864 @end example
16865
16866
16867 @item interlacex2, 6
16868 Double frame rate with unchanged height. Frames are inserted each
16869 containing the second temporal field from the previous input frame and
16870 the first temporal field from the next input frame. This mode relies on
16871 the top_field_first flag. Useful for interlaced video displays with no
16872 field synchronisation.
16873
16874 @example
16875  ------> time
16876 Input:
16877 Frame 1         Frame 2         Frame 3         Frame 4
16878
16879 11111           22222           33333           44444
16880  11111           22222           33333           44444
16881 11111           22222           33333           44444
16882  11111           22222           33333           44444
16883
16884 Output:
16885 11111   22222   22222   33333   33333   44444   44444
16886  11111   11111   22222   22222   33333   33333   44444
16887 11111   22222   22222   33333   33333   44444   44444
16888  11111   11111   22222   22222   33333   33333   44444
16889 @end example
16890
16891
16892 @item mergex2, 7
16893 Move odd frames into the upper field, even into the lower field,
16894 generating a double height frame at same frame rate.
16895
16896 @example
16897  ------> time
16898 Input:
16899 Frame 1         Frame 2         Frame 3         Frame 4
16900
16901 11111           22222           33333           44444
16902 11111           22222           33333           44444
16903 11111           22222           33333           44444
16904 11111           22222           33333           44444
16905
16906 Output:
16907 11111           33333           33333           55555
16908 22222           22222           44444           44444
16909 11111           33333           33333           55555
16910 22222           22222           44444           44444
16911 11111           33333           33333           55555
16912 22222           22222           44444           44444
16913 11111           33333           33333           55555
16914 22222           22222           44444           44444
16915 @end example
16916
16917 @end table
16918
16919 Numeric values are deprecated but are accepted for backward
16920 compatibility reasons.
16921
16922 Default mode is @code{merge}.
16923
16924 @item flags
16925 Specify flags influencing the filter process.
16926
16927 Available value for @var{flags} is:
16928
16929 @table @option
16930 @item low_pass_filter, vlfp
16931 Enable linear vertical low-pass filtering in the filter.
16932 Vertical low-pass filtering is required when creating an interlaced
16933 destination from a progressive source which contains high-frequency
16934 vertical detail. Filtering will reduce interlace 'twitter' and Moire
16935 patterning.
16936
16937 @item complex_filter, cvlfp
16938 Enable complex vertical low-pass filtering.
16939 This will slightly less reduce interlace 'twitter' and Moire
16940 patterning but better retain detail and subjective sharpness impression.
16941
16942 @end table
16943
16944 Vertical low-pass filtering can only be enabled for @option{mode}
16945 @var{interleave_top} and @var{interleave_bottom}.
16946
16947 @end table
16948
16949 @section tmix
16950
16951 Mix successive video frames.
16952
16953 A description of the accepted options follows.
16954
16955 @table @option
16956 @item frames
16957 The number of successive frames to mix. If unspecified, it defaults to 3.
16958
16959 @item weights
16960 Specify weight of each input video frame.
16961 Each weight is separated by space. If number of weights is smaller than
16962 number of @var{frames} last specified weight will be used for all remaining
16963 unset weights.
16964
16965 @item scale
16966 Specify scale, if it is set it will be multiplied with sum
16967 of each weight multiplied with pixel values to give final destination
16968 pixel value. By default @var{scale} is auto scaled to sum of weights.
16969 @end table
16970
16971 @subsection Examples
16972
16973 @itemize
16974 @item
16975 Average 7 successive frames:
16976 @example
16977 tmix=frames=7:weights="1 1 1 1 1 1 1"
16978 @end example
16979
16980 @item
16981 Apply simple temporal convolution:
16982 @example
16983 tmix=frames=3:weights="-1 3 -1"
16984 @end example
16985
16986 @item
16987 Similar as above but only showing temporal differences:
16988 @example
16989 tmix=frames=3:weights="-1 2 -1":scale=1
16990 @end example
16991 @end itemize
16992
16993 @anchor{tonemap}
16994 @section tonemap
16995 Tone map colors from different dynamic ranges.
16996
16997 This filter expects data in single precision floating point, as it needs to
16998 operate on (and can output) out-of-range values. Another filter, such as
16999 @ref{zscale}, is needed to convert the resulting frame to a usable format.
17000
17001 The tonemapping algorithms implemented only work on linear light, so input
17002 data should be linearized beforehand (and possibly correctly tagged).
17003
17004 @example
17005 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
17006 @end example
17007
17008 @subsection Options
17009 The filter accepts the following options.
17010
17011 @table @option
17012 @item tonemap
17013 Set the tone map algorithm to use.
17014
17015 Possible values are:
17016 @table @var
17017 @item none
17018 Do not apply any tone map, only desaturate overbright pixels.
17019
17020 @item clip
17021 Hard-clip any out-of-range values. Use it for perfect color accuracy for
17022 in-range values, while distorting out-of-range values.
17023
17024 @item linear
17025 Stretch the entire reference gamut to a linear multiple of the display.
17026
17027 @item gamma
17028 Fit a logarithmic transfer between the tone curves.
17029
17030 @item reinhard
17031 Preserve overall image brightness with a simple curve, using nonlinear
17032 contrast, which results in flattening details and degrading color accuracy.
17033
17034 @item hable
17035 Preserve both dark and bright details better than @var{reinhard}, at the cost
17036 of slightly darkening everything. Use it when detail preservation is more
17037 important than color and brightness accuracy.
17038
17039 @item mobius
17040 Smoothly map out-of-range values, while retaining contrast and colors for
17041 in-range material as much as possible. Use it when color accuracy is more
17042 important than detail preservation.
17043 @end table
17044
17045 Default is none.
17046
17047 @item param
17048 Tune the tone mapping algorithm.
17049
17050 This affects the following algorithms:
17051 @table @var
17052 @item none
17053 Ignored.
17054
17055 @item linear
17056 Specifies the scale factor to use while stretching.
17057 Default to 1.0.
17058
17059 @item gamma
17060 Specifies the exponent of the function.
17061 Default to 1.8.
17062
17063 @item clip
17064 Specify an extra linear coefficient to multiply into the signal before clipping.
17065 Default to 1.0.
17066
17067 @item reinhard
17068 Specify the local contrast coefficient at the display peak.
17069 Default to 0.5, which means that in-gamut values will be about half as bright
17070 as when clipping.
17071
17072 @item hable
17073 Ignored.
17074
17075 @item mobius
17076 Specify the transition point from linear to mobius transform. Every value
17077 below this point is guaranteed to be mapped 1:1. The higher the value, the
17078 more accurate the result will be, at the cost of losing bright details.
17079 Default to 0.3, which due to the steep initial slope still preserves in-range
17080 colors fairly accurately.
17081 @end table
17082
17083 @item desat
17084 Apply desaturation for highlights that exceed this level of brightness. The
17085 higher the parameter, the more color information will be preserved. This
17086 setting helps prevent unnaturally blown-out colors for super-highlights, by
17087 (smoothly) turning into white instead. This makes images feel more natural,
17088 at the cost of reducing information about out-of-range colors.
17089
17090 The default of 2.0 is somewhat conservative and will mostly just apply to
17091 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
17092
17093 This option works only if the input frame has a supported color tag.
17094
17095 @item peak
17096 Override signal/nominal/reference peak with this value. Useful when the
17097 embedded peak information in display metadata is not reliable or when tone
17098 mapping from a lower range to a higher range.
17099 @end table
17100
17101 @section tpad
17102
17103 Temporarily pad video frames.
17104
17105 The filter accepts the following options:
17106
17107 @table @option
17108 @item start
17109 Specify number of delay frames before input video stream.
17110
17111 @item stop
17112 Specify number of padding frames after input video stream.
17113 Set to -1 to pad indefinitely.
17114
17115 @item start_mode
17116 Set kind of frames added to beginning of stream.
17117 Can be either @var{add} or @var{clone}.
17118 With @var{add} frames of solid-color are added.
17119 With @var{clone} frames are clones of first frame.
17120
17121 @item stop_mode
17122 Set kind of frames added to end of stream.
17123 Can be either @var{add} or @var{clone}.
17124 With @var{add} frames of solid-color are added.
17125 With @var{clone} frames are clones of last frame.
17126
17127 @item start_duration, stop_duration
17128 Specify the duration of the start/stop delay. See
17129 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17130 for the accepted syntax.
17131 These options override @var{start} and @var{stop}.
17132
17133 @item color
17134 Specify the color of the padded area. For the syntax of this option,
17135 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
17136 manual,ffmpeg-utils}.
17137
17138 The default value of @var{color} is "black".
17139 @end table
17140
17141 @anchor{transpose}
17142 @section transpose
17143
17144 Transpose rows with columns in the input video and optionally flip it.
17145
17146 It accepts the following parameters:
17147
17148 @table @option
17149
17150 @item dir
17151 Specify the transposition direction.
17152
17153 Can assume the following values:
17154 @table @samp
17155 @item 0, 4, cclock_flip
17156 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
17157 @example
17158 L.R     L.l
17159 . . ->  . .
17160 l.r     R.r
17161 @end example
17162
17163 @item 1, 5, clock
17164 Rotate by 90 degrees clockwise, that is:
17165 @example
17166 L.R     l.L
17167 . . ->  . .
17168 l.r     r.R
17169 @end example
17170
17171 @item 2, 6, cclock
17172 Rotate by 90 degrees counterclockwise, that is:
17173 @example
17174 L.R     R.r
17175 . . ->  . .
17176 l.r     L.l
17177 @end example
17178
17179 @item 3, 7, clock_flip
17180 Rotate by 90 degrees clockwise and vertically flip, that is:
17181 @example
17182 L.R     r.R
17183 . . ->  . .
17184 l.r     l.L
17185 @end example
17186 @end table
17187
17188 For values between 4-7, the transposition is only done if the input
17189 video geometry is portrait and not landscape. These values are
17190 deprecated, the @code{passthrough} option should be used instead.
17191
17192 Numerical values are deprecated, and should be dropped in favor of
17193 symbolic constants.
17194
17195 @item passthrough
17196 Do not apply the transposition if the input geometry matches the one
17197 specified by the specified value. It accepts the following values:
17198 @table @samp
17199 @item none
17200 Always apply transposition.
17201 @item portrait
17202 Preserve portrait geometry (when @var{height} >= @var{width}).
17203 @item landscape
17204 Preserve landscape geometry (when @var{width} >= @var{height}).
17205 @end table
17206
17207 Default value is @code{none}.
17208 @end table
17209
17210 For example to rotate by 90 degrees clockwise and preserve portrait
17211 layout:
17212 @example
17213 transpose=dir=1:passthrough=portrait
17214 @end example
17215
17216 The command above can also be specified as:
17217 @example
17218 transpose=1:portrait
17219 @end example
17220
17221 @section transpose_npp
17222
17223 Transpose rows with columns in the input video and optionally flip it.
17224 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
17225
17226 It accepts the following parameters:
17227
17228 @table @option
17229
17230 @item dir
17231 Specify the transposition direction.
17232
17233 Can assume the following values:
17234 @table @samp
17235 @item cclock_flip
17236 Rotate by 90 degrees counterclockwise and vertically flip. (default)
17237
17238 @item clock
17239 Rotate by 90 degrees clockwise.
17240
17241 @item cclock
17242 Rotate by 90 degrees counterclockwise.
17243
17244 @item clock_flip
17245 Rotate by 90 degrees clockwise and vertically flip.
17246 @end table
17247
17248 @item passthrough
17249 Do not apply the transposition if the input geometry matches the one
17250 specified by the specified value. It accepts the following values:
17251 @table @samp
17252 @item none
17253 Always apply transposition. (default)
17254 @item portrait
17255 Preserve portrait geometry (when @var{height} >= @var{width}).
17256 @item landscape
17257 Preserve landscape geometry (when @var{width} >= @var{height}).
17258 @end table
17259
17260 @end table
17261
17262 @section trim
17263 Trim the input so that the output contains one continuous subpart of the input.
17264
17265 It accepts the following parameters:
17266 @table @option
17267 @item start
17268 Specify the time of the start of the kept section, i.e. the frame with the
17269 timestamp @var{start} will be the first frame in the output.
17270
17271 @item end
17272 Specify the time of the first frame that will be dropped, i.e. the frame
17273 immediately preceding the one with the timestamp @var{end} will be the last
17274 frame in the output.
17275
17276 @item start_pts
17277 This is the same as @var{start}, except this option sets the start timestamp
17278 in timebase units instead of seconds.
17279
17280 @item end_pts
17281 This is the same as @var{end}, except this option sets the end timestamp
17282 in timebase units instead of seconds.
17283
17284 @item duration
17285 The maximum duration of the output in seconds.
17286
17287 @item start_frame
17288 The number of the first frame that should be passed to the output.
17289
17290 @item end_frame
17291 The number of the first frame that should be dropped.
17292 @end table
17293
17294 @option{start}, @option{end}, and @option{duration} are expressed as time
17295 duration specifications; see
17296 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17297 for the accepted syntax.
17298
17299 Note that the first two sets of the start/end options and the @option{duration}
17300 option look at the frame timestamp, while the _frame variants simply count the
17301 frames that pass through the filter. Also note that this filter does not modify
17302 the timestamps. If you wish for the output timestamps to start at zero, insert a
17303 setpts filter after the trim filter.
17304
17305 If multiple start or end options are set, this filter tries to be greedy and
17306 keep all the frames that match at least one of the specified constraints. To keep
17307 only the part that matches all the constraints at once, chain multiple trim
17308 filters.
17309
17310 The defaults are such that all the input is kept. So it is possible to set e.g.
17311 just the end values to keep everything before the specified time.
17312
17313 Examples:
17314 @itemize
17315 @item
17316 Drop everything except the second minute of input:
17317 @example
17318 ffmpeg -i INPUT -vf trim=60:120
17319 @end example
17320
17321 @item
17322 Keep only the first second:
17323 @example
17324 ffmpeg -i INPUT -vf trim=duration=1
17325 @end example
17326
17327 @end itemize
17328
17329 @section unpremultiply
17330 Apply alpha unpremultiply effect to input video stream using first plane
17331 of second stream as alpha.
17332
17333 Both streams must have same dimensions and same pixel format.
17334
17335 The filter accepts the following option:
17336
17337 @table @option
17338 @item planes
17339 Set which planes will be processed, unprocessed planes will be copied.
17340 By default value 0xf, all planes will be processed.
17341
17342 If the format has 1 or 2 components, then luma is bit 0.
17343 If the format has 3 or 4 components:
17344 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
17345 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
17346 If present, the alpha channel is always the last bit.
17347
17348 @item inplace
17349 Do not require 2nd input for processing, instead use alpha plane from input stream.
17350 @end table
17351
17352 @anchor{unsharp}
17353 @section unsharp
17354
17355 Sharpen or blur the input video.
17356
17357 It accepts the following parameters:
17358
17359 @table @option
17360 @item luma_msize_x, lx
17361 Set the luma matrix horizontal size. It must be an odd integer between
17362 3 and 23. The default value is 5.
17363
17364 @item luma_msize_y, ly
17365 Set the luma matrix vertical size. It must be an odd integer between 3
17366 and 23. The default value is 5.
17367
17368 @item luma_amount, la
17369 Set the luma effect strength. It must be a floating point number, reasonable
17370 values lay between -1.5 and 1.5.
17371
17372 Negative values will blur the input video, while positive values will
17373 sharpen it, a value of zero will disable the effect.
17374
17375 Default value is 1.0.
17376
17377 @item chroma_msize_x, cx
17378 Set the chroma matrix horizontal size. It must be an odd integer
17379 between 3 and 23. The default value is 5.
17380
17381 @item chroma_msize_y, cy
17382 Set the chroma matrix vertical size. It must be an odd integer
17383 between 3 and 23. The default value is 5.
17384
17385 @item chroma_amount, ca
17386 Set the chroma effect strength. It must be a floating point number, reasonable
17387 values lay between -1.5 and 1.5.
17388
17389 Negative values will blur the input video, while positive values will
17390 sharpen it, a value of zero will disable the effect.
17391
17392 Default value is 0.0.
17393
17394 @end table
17395
17396 All parameters are optional and default to the equivalent of the
17397 string '5:5:1.0:5:5:0.0'.
17398
17399 @subsection Examples
17400
17401 @itemize
17402 @item
17403 Apply strong luma sharpen effect:
17404 @example
17405 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
17406 @end example
17407
17408 @item
17409 Apply a strong blur of both luma and chroma parameters:
17410 @example
17411 unsharp=7:7:-2:7:7:-2
17412 @end example
17413 @end itemize
17414
17415 @section uspp
17416
17417 Apply ultra slow/simple postprocessing filter that compresses and decompresses
17418 the image at several (or - in the case of @option{quality} level @code{8} - all)
17419 shifts and average the results.
17420
17421 The way this differs from the behavior of spp is that uspp actually encodes &
17422 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
17423 DCT similar to MJPEG.
17424
17425 The filter accepts the following options:
17426
17427 @table @option
17428 @item quality
17429 Set quality. This option defines the number of levels for averaging. It accepts
17430 an integer in the range 0-8. If set to @code{0}, the filter will have no
17431 effect. A value of @code{8} means the higher quality. For each increment of
17432 that value the speed drops by a factor of approximately 2.  Default value is
17433 @code{3}.
17434
17435 @item qp
17436 Force a constant quantization parameter. If not set, the filter will use the QP
17437 from the video stream (if available).
17438 @end table
17439
17440 @section vaguedenoiser
17441
17442 Apply a wavelet based denoiser.
17443
17444 It transforms each frame from the video input into the wavelet domain,
17445 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
17446 the obtained coefficients. It does an inverse wavelet transform after.
17447 Due to wavelet properties, it should give a nice smoothed result, and
17448 reduced noise, without blurring picture features.
17449
17450 This filter accepts the following options:
17451
17452 @table @option
17453 @item threshold
17454 The filtering strength. The higher, the more filtered the video will be.
17455 Hard thresholding can use a higher threshold than soft thresholding
17456 before the video looks overfiltered. Default value is 2.
17457
17458 @item method
17459 The filtering method the filter will use.
17460
17461 It accepts the following values:
17462 @table @samp
17463 @item hard
17464 All values under the threshold will be zeroed.
17465
17466 @item soft
17467 All values under the threshold will be zeroed. All values above will be
17468 reduced by the threshold.
17469
17470 @item garrote
17471 Scales or nullifies coefficients - intermediary between (more) soft and
17472 (less) hard thresholding.
17473 @end table
17474
17475 Default is garrote.
17476
17477 @item nsteps
17478 Number of times, the wavelet will decompose the picture. Picture can't
17479 be decomposed beyond a particular point (typically, 8 for a 640x480
17480 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
17481
17482 @item percent
17483 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
17484
17485 @item planes
17486 A list of the planes to process. By default all planes are processed.
17487 @end table
17488
17489 @section vectorscope
17490
17491 Display 2 color component values in the two dimensional graph (which is called
17492 a vectorscope).
17493
17494 This filter accepts the following options:
17495
17496 @table @option
17497 @item mode, m
17498 Set vectorscope mode.
17499
17500 It accepts the following values:
17501 @table @samp
17502 @item gray
17503 Gray values are displayed on graph, higher brightness means more pixels have
17504 same component color value on location in graph. This is the default mode.
17505
17506 @item color
17507 Gray values are displayed on graph. Surrounding pixels values which are not
17508 present in video frame are drawn in gradient of 2 color components which are
17509 set by option @code{x} and @code{y}. The 3rd color component is static.
17510
17511 @item color2
17512 Actual color components values present in video frame are displayed on graph.
17513
17514 @item color3
17515 Similar as color2 but higher frequency of same values @code{x} and @code{y}
17516 on graph increases value of another color component, which is luminance by
17517 default values of @code{x} and @code{y}.
17518
17519 @item color4
17520 Actual colors present in video frame are displayed on graph. If two different
17521 colors map to same position on graph then color with higher value of component
17522 not present in graph is picked.
17523
17524 @item color5
17525 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
17526 component picked from radial gradient.
17527 @end table
17528
17529 @item x
17530 Set which color component will be represented on X-axis. Default is @code{1}.
17531
17532 @item y
17533 Set which color component will be represented on Y-axis. Default is @code{2}.
17534
17535 @item intensity, i
17536 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
17537 of color component which represents frequency of (X, Y) location in graph.
17538
17539 @item envelope, e
17540 @table @samp
17541 @item none
17542 No envelope, this is default.
17543
17544 @item instant
17545 Instant envelope, even darkest single pixel will be clearly highlighted.
17546
17547 @item peak
17548 Hold maximum and minimum values presented in graph over time. This way you
17549 can still spot out of range values without constantly looking at vectorscope.
17550
17551 @item peak+instant
17552 Peak and instant envelope combined together.
17553 @end table
17554
17555 @item graticule, g
17556 Set what kind of graticule to draw.
17557 @table @samp
17558 @item none
17559 @item green
17560 @item color
17561 @end table
17562
17563 @item opacity, o
17564 Set graticule opacity.
17565
17566 @item flags, f
17567 Set graticule flags.
17568
17569 @table @samp
17570 @item white
17571 Draw graticule for white point.
17572
17573 @item black
17574 Draw graticule for black point.
17575
17576 @item name
17577 Draw color points short names.
17578 @end table
17579
17580 @item bgopacity, b
17581 Set background opacity.
17582
17583 @item lthreshold, l
17584 Set low threshold for color component not represented on X or Y axis.
17585 Values lower than this value will be ignored. Default is 0.
17586 Note this value is multiplied with actual max possible value one pixel component
17587 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
17588 is 0.1 * 255 = 25.
17589
17590 @item hthreshold, h
17591 Set high threshold for color component not represented on X or Y axis.
17592 Values higher than this value will be ignored. Default is 1.
17593 Note this value is multiplied with actual max possible value one pixel component
17594 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
17595 is 0.9 * 255 = 230.
17596
17597 @item colorspace, c
17598 Set what kind of colorspace to use when drawing graticule.
17599 @table @samp
17600 @item auto
17601 @item 601
17602 @item 709
17603 @end table
17604 Default is auto.
17605 @end table
17606
17607 @anchor{vidstabdetect}
17608 @section vidstabdetect
17609
17610 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
17611 @ref{vidstabtransform} for pass 2.
17612
17613 This filter generates a file with relative translation and rotation
17614 transform information about subsequent frames, which is then used by
17615 the @ref{vidstabtransform} filter.
17616
17617 To enable compilation of this filter you need to configure FFmpeg with
17618 @code{--enable-libvidstab}.
17619
17620 This filter accepts the following options:
17621
17622 @table @option
17623 @item result
17624 Set the path to the file used to write the transforms information.
17625 Default value is @file{transforms.trf}.
17626
17627 @item shakiness
17628 Set how shaky the video is and how quick the camera is. It accepts an
17629 integer in the range 1-10, a value of 1 means little shakiness, a
17630 value of 10 means strong shakiness. Default value is 5.
17631
17632 @item accuracy
17633 Set the accuracy of the detection process. It must be a value in the
17634 range 1-15. A value of 1 means low accuracy, a value of 15 means high
17635 accuracy. Default value is 15.
17636
17637 @item stepsize
17638 Set stepsize of the search process. The region around minimum is
17639 scanned with 1 pixel resolution. Default value is 6.
17640
17641 @item mincontrast
17642 Set minimum contrast. Below this value a local measurement field is
17643 discarded. Must be a floating point value in the range 0-1. Default
17644 value is 0.3.
17645
17646 @item tripod
17647 Set reference frame number for tripod mode.
17648
17649 If enabled, the motion of the frames is compared to a reference frame
17650 in the filtered stream, identified by the specified number. The idea
17651 is to compensate all movements in a more-or-less static scene and keep
17652 the camera view absolutely still.
17653
17654 If set to 0, it is disabled. The frames are counted starting from 1.
17655
17656 @item show
17657 Show fields and transforms in the resulting frames. It accepts an
17658 integer in the range 0-2. Default value is 0, which disables any
17659 visualization.
17660 @end table
17661
17662 @subsection Examples
17663
17664 @itemize
17665 @item
17666 Use default values:
17667 @example
17668 vidstabdetect
17669 @end example
17670
17671 @item
17672 Analyze strongly shaky movie and put the results in file
17673 @file{mytransforms.trf}:
17674 @example
17675 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
17676 @end example
17677
17678 @item
17679 Visualize the result of internal transformations in the resulting
17680 video:
17681 @example
17682 vidstabdetect=show=1
17683 @end example
17684
17685 @item
17686 Analyze a video with medium shakiness using @command{ffmpeg}:
17687 @example
17688 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
17689 @end example
17690 @end itemize
17691
17692 @anchor{vidstabtransform}
17693 @section vidstabtransform
17694
17695 Video stabilization/deshaking: pass 2 of 2,
17696 see @ref{vidstabdetect} for pass 1.
17697
17698 Read a file with transform information for each frame and
17699 apply/compensate them. Together with the @ref{vidstabdetect}
17700 filter this can be used to deshake videos. See also
17701 @url{http://public.hronopik.de/vid.stab}. It is important to also use
17702 the @ref{unsharp} filter, see below.
17703
17704 To enable compilation of this filter you need to configure FFmpeg with
17705 @code{--enable-libvidstab}.
17706
17707 @subsection Options
17708
17709 @table @option
17710 @item input
17711 Set path to the file used to read the transforms. Default value is
17712 @file{transforms.trf}.
17713
17714 @item smoothing
17715 Set the number of frames (value*2 + 1) used for lowpass filtering the
17716 camera movements. Default value is 10.
17717
17718 For example a number of 10 means that 21 frames are used (10 in the
17719 past and 10 in the future) to smoothen the motion in the video. A
17720 larger value leads to a smoother video, but limits the acceleration of
17721 the camera (pan/tilt movements). 0 is a special case where a static
17722 camera is simulated.
17723
17724 @item optalgo
17725 Set the camera path optimization algorithm.
17726
17727 Accepted values are:
17728 @table @samp
17729 @item gauss
17730 gaussian kernel low-pass filter on camera motion (default)
17731 @item avg
17732 averaging on transformations
17733 @end table
17734
17735 @item maxshift
17736 Set maximal number of pixels to translate frames. Default value is -1,
17737 meaning no limit.
17738
17739 @item maxangle
17740 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
17741 value is -1, meaning no limit.
17742
17743 @item crop
17744 Specify how to deal with borders that may be visible due to movement
17745 compensation.
17746
17747 Available values are:
17748 @table @samp
17749 @item keep
17750 keep image information from previous frame (default)
17751 @item black
17752 fill the border black
17753 @end table
17754
17755 @item invert
17756 Invert transforms if set to 1. Default value is 0.
17757
17758 @item relative
17759 Consider transforms as relative to previous frame if set to 1,
17760 absolute if set to 0. Default value is 0.
17761
17762 @item zoom
17763 Set percentage to zoom. A positive value will result in a zoom-in
17764 effect, a negative value in a zoom-out effect. Default value is 0 (no
17765 zoom).
17766
17767 @item optzoom
17768 Set optimal zooming to avoid borders.
17769
17770 Accepted values are:
17771 @table @samp
17772 @item 0
17773 disabled
17774 @item 1
17775 optimal static zoom value is determined (only very strong movements
17776 will lead to visible borders) (default)
17777 @item 2
17778 optimal adaptive zoom value is determined (no borders will be
17779 visible), see @option{zoomspeed}
17780 @end table
17781
17782 Note that the value given at zoom is added to the one calculated here.
17783
17784 @item zoomspeed
17785 Set percent to zoom maximally each frame (enabled when
17786 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
17787 0.25.
17788
17789 @item interpol
17790 Specify type of interpolation.
17791
17792 Available values are:
17793 @table @samp
17794 @item no
17795 no interpolation
17796 @item linear
17797 linear only horizontal
17798 @item bilinear
17799 linear in both directions (default)
17800 @item bicubic
17801 cubic in both directions (slow)
17802 @end table
17803
17804 @item tripod
17805 Enable virtual tripod mode if set to 1, which is equivalent to
17806 @code{relative=0:smoothing=0}. Default value is 0.
17807
17808 Use also @code{tripod} option of @ref{vidstabdetect}.
17809
17810 @item debug
17811 Increase log verbosity if set to 1. Also the detected global motions
17812 are written to the temporary file @file{global_motions.trf}. Default
17813 value is 0.
17814 @end table
17815
17816 @subsection Examples
17817
17818 @itemize
17819 @item
17820 Use @command{ffmpeg} for a typical stabilization with default values:
17821 @example
17822 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
17823 @end example
17824
17825 Note the use of the @ref{unsharp} filter which is always recommended.
17826
17827 @item
17828 Zoom in a bit more and load transform data from a given file:
17829 @example
17830 vidstabtransform=zoom=5:input="mytransforms.trf"
17831 @end example
17832
17833 @item
17834 Smoothen the video even more:
17835 @example
17836 vidstabtransform=smoothing=30
17837 @end example
17838 @end itemize
17839
17840 @section vflip
17841
17842 Flip the input video vertically.
17843
17844 For example, to vertically flip a video with @command{ffmpeg}:
17845 @example
17846 ffmpeg -i in.avi -vf "vflip" out.avi
17847 @end example
17848
17849 @section vfrdet
17850
17851 Detect variable frame rate video.
17852
17853 This filter tries to detect if the input is variable or constant frame rate.
17854
17855 At end it will output number of frames detected as having variable delta pts,
17856 and ones with constant delta pts.
17857 If there was frames with variable delta, than it will also show min and max delta
17858 encountered.
17859
17860 @section vibrance
17861
17862 Boost or alter saturation.
17863
17864 The filter accepts the following options:
17865 @table @option
17866 @item intensity
17867 Set strength of boost if positive value or strength of alter if negative value.
17868 Default is 0. Allowed range is from -2 to 2.
17869
17870 @item rbal
17871 Set the red balance. Default is 1. Allowed range is from -10 to 10.
17872
17873 @item gbal
17874 Set the green balance. Default is 1. Allowed range is from -10 to 10.
17875
17876 @item bbal
17877 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
17878
17879 @item rlum
17880 Set the red luma coefficient.
17881
17882 @item glum
17883 Set the green luma coefficient.
17884
17885 @item blum
17886 Set the blue luma coefficient.
17887 @end table
17888
17889 @anchor{vignette}
17890 @section vignette
17891
17892 Make or reverse a natural vignetting effect.
17893
17894 The filter accepts the following options:
17895
17896 @table @option
17897 @item angle, a
17898 Set lens angle expression as a number of radians.
17899
17900 The value is clipped in the @code{[0,PI/2]} range.
17901
17902 Default value: @code{"PI/5"}
17903
17904 @item x0
17905 @item y0
17906 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
17907 by default.
17908
17909 @item mode
17910 Set forward/backward mode.
17911
17912 Available modes are:
17913 @table @samp
17914 @item forward
17915 The larger the distance from the central point, the darker the image becomes.
17916
17917 @item backward
17918 The larger the distance from the central point, the brighter the image becomes.
17919 This can be used to reverse a vignette effect, though there is no automatic
17920 detection to extract the lens @option{angle} and other settings (yet). It can
17921 also be used to create a burning effect.
17922 @end table
17923
17924 Default value is @samp{forward}.
17925
17926 @item eval
17927 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
17928
17929 It accepts the following values:
17930 @table @samp
17931 @item init
17932 Evaluate expressions only once during the filter initialization.
17933
17934 @item frame
17935 Evaluate expressions for each incoming frame. This is way slower than the
17936 @samp{init} mode since it requires all the scalers to be re-computed, but it
17937 allows advanced dynamic expressions.
17938 @end table
17939
17940 Default value is @samp{init}.
17941
17942 @item dither
17943 Set dithering to reduce the circular banding effects. Default is @code{1}
17944 (enabled).
17945
17946 @item aspect
17947 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
17948 Setting this value to the SAR of the input will make a rectangular vignetting
17949 following the dimensions of the video.
17950
17951 Default is @code{1/1}.
17952 @end table
17953
17954 @subsection Expressions
17955
17956 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
17957 following parameters.
17958
17959 @table @option
17960 @item w
17961 @item h
17962 input width and height
17963
17964 @item n
17965 the number of input frame, starting from 0
17966
17967 @item pts
17968 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
17969 @var{TB} units, NAN if undefined
17970
17971 @item r
17972 frame rate of the input video, NAN if the input frame rate is unknown
17973
17974 @item t
17975 the PTS (Presentation TimeStamp) of the filtered video frame,
17976 expressed in seconds, NAN if undefined
17977
17978 @item tb
17979 time base of the input video
17980 @end table
17981
17982
17983 @subsection Examples
17984
17985 @itemize
17986 @item
17987 Apply simple strong vignetting effect:
17988 @example
17989 vignette=PI/4
17990 @end example
17991
17992 @item
17993 Make a flickering vignetting:
17994 @example
17995 vignette='PI/4+random(1)*PI/50':eval=frame
17996 @end example
17997
17998 @end itemize
17999
18000 @section vmafmotion
18001
18002 Obtain the average vmaf motion score of a video.
18003 It is one of the component filters of VMAF.
18004
18005 The obtained average motion score is printed through the logging system.
18006
18007 In the below example the input file @file{ref.mpg} is being processed and score
18008 is computed.
18009
18010 @example
18011 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
18012 @end example
18013
18014 @section vstack
18015 Stack input videos vertically.
18016
18017 All streams must be of same pixel format and of same width.
18018
18019 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
18020 to create same output.
18021
18022 The filter accept the following option:
18023
18024 @table @option
18025 @item inputs
18026 Set number of input streams. Default is 2.
18027
18028 @item shortest
18029 If set to 1, force the output to terminate when the shortest input
18030 terminates. Default value is 0.
18031 @end table
18032
18033 @section w3fdif
18034
18035 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
18036 Deinterlacing Filter").
18037
18038 Based on the process described by Martin Weston for BBC R&D, and
18039 implemented based on the de-interlace algorithm written by Jim
18040 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
18041 uses filter coefficients calculated by BBC R&D.
18042
18043 There are two sets of filter coefficients, so called "simple":
18044 and "complex". Which set of filter coefficients is used can
18045 be set by passing an optional parameter:
18046
18047 @table @option
18048 @item filter
18049 Set the interlacing filter coefficients. Accepts one of the following values:
18050
18051 @table @samp
18052 @item simple
18053 Simple filter coefficient set.
18054 @item complex
18055 More-complex filter coefficient set.
18056 @end table
18057 Default value is @samp{complex}.
18058
18059 @item deint
18060 Specify which frames to deinterlace. Accept one of the following values:
18061
18062 @table @samp
18063 @item all
18064 Deinterlace all frames,
18065 @item interlaced
18066 Only deinterlace frames marked as interlaced.
18067 @end table
18068
18069 Default value is @samp{all}.
18070 @end table
18071
18072 @section waveform
18073 Video waveform monitor.
18074
18075 The waveform monitor plots color component intensity. By default luminance
18076 only. Each column of the waveform corresponds to a column of pixels in the
18077 source video.
18078
18079 It accepts the following options:
18080
18081 @table @option
18082 @item mode, m
18083 Can be either @code{row}, or @code{column}. Default is @code{column}.
18084 In row mode, the graph on the left side represents color component value 0 and
18085 the right side represents value = 255. In column mode, the top side represents
18086 color component value = 0 and bottom side represents value = 255.
18087
18088 @item intensity, i
18089 Set intensity. Smaller values are useful to find out how many values of the same
18090 luminance are distributed across input rows/columns.
18091 Default value is @code{0.04}. Allowed range is [0, 1].
18092
18093 @item mirror, r
18094 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
18095 In mirrored mode, higher values will be represented on the left
18096 side for @code{row} mode and at the top for @code{column} mode. Default is
18097 @code{1} (mirrored).
18098
18099 @item display, d
18100 Set display mode.
18101 It accepts the following values:
18102 @table @samp
18103 @item overlay
18104 Presents information identical to that in the @code{parade}, except
18105 that the graphs representing color components are superimposed directly
18106 over one another.
18107
18108 This display mode makes it easier to spot relative differences or similarities
18109 in overlapping areas of the color components that are supposed to be identical,
18110 such as neutral whites, grays, or blacks.
18111
18112 @item stack
18113 Display separate graph for the color components side by side in
18114 @code{row} mode or one below the other in @code{column} mode.
18115
18116 @item parade
18117 Display separate graph for the color components side by side in
18118 @code{column} mode or one below the other in @code{row} mode.
18119
18120 Using this display mode makes it easy to spot color casts in the highlights
18121 and shadows of an image, by comparing the contours of the top and the bottom
18122 graphs of each waveform. Since whites, grays, and blacks are characterized
18123 by exactly equal amounts of red, green, and blue, neutral areas of the picture
18124 should display three waveforms of roughly equal width/height. If not, the
18125 correction is easy to perform by making level adjustments the three waveforms.
18126 @end table
18127 Default is @code{stack}.
18128
18129 @item components, c
18130 Set which color components to display. Default is 1, which means only luminance
18131 or red color component if input is in RGB colorspace. If is set for example to
18132 7 it will display all 3 (if) available color components.
18133
18134 @item envelope, e
18135 @table @samp
18136 @item none
18137 No envelope, this is default.
18138
18139 @item instant
18140 Instant envelope, minimum and maximum values presented in graph will be easily
18141 visible even with small @code{step} value.
18142
18143 @item peak
18144 Hold minimum and maximum values presented in graph across time. This way you
18145 can still spot out of range values without constantly looking at waveforms.
18146
18147 @item peak+instant
18148 Peak and instant envelope combined together.
18149 @end table
18150
18151 @item filter, f
18152 @table @samp
18153 @item lowpass
18154 No filtering, this is default.
18155
18156 @item flat
18157 Luma and chroma combined together.
18158
18159 @item aflat
18160 Similar as above, but shows difference between blue and red chroma.
18161
18162 @item xflat
18163 Similar as above, but use different colors.
18164
18165 @item chroma
18166 Displays only chroma.
18167
18168 @item color
18169 Displays actual color value on waveform.
18170
18171 @item acolor
18172 Similar as above, but with luma showing frequency of chroma values.
18173 @end table
18174
18175 @item graticule, g
18176 Set which graticule to display.
18177
18178 @table @samp
18179 @item none
18180 Do not display graticule.
18181
18182 @item green
18183 Display green graticule showing legal broadcast ranges.
18184
18185 @item orange
18186 Display orange graticule showing legal broadcast ranges.
18187 @end table
18188
18189 @item opacity, o
18190 Set graticule opacity.
18191
18192 @item flags, fl
18193 Set graticule flags.
18194
18195 @table @samp
18196 @item numbers
18197 Draw numbers above lines. By default enabled.
18198
18199 @item dots
18200 Draw dots instead of lines.
18201 @end table
18202
18203 @item scale, s
18204 Set scale used for displaying graticule.
18205
18206 @table @samp
18207 @item digital
18208 @item millivolts
18209 @item ire
18210 @end table
18211 Default is digital.
18212
18213 @item bgopacity, b
18214 Set background opacity.
18215 @end table
18216
18217 @section weave, doubleweave
18218
18219 The @code{weave} takes a field-based video input and join
18220 each two sequential fields into single frame, producing a new double
18221 height clip with half the frame rate and half the frame count.
18222
18223 The @code{doubleweave} works same as @code{weave} but without
18224 halving frame rate and frame count.
18225
18226 It accepts the following option:
18227
18228 @table @option
18229 @item first_field
18230 Set first field. Available values are:
18231
18232 @table @samp
18233 @item top, t
18234 Set the frame as top-field-first.
18235
18236 @item bottom, b
18237 Set the frame as bottom-field-first.
18238 @end table
18239 @end table
18240
18241 @subsection Examples
18242
18243 @itemize
18244 @item
18245 Interlace video using @ref{select} and @ref{separatefields} filter:
18246 @example
18247 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
18248 @end example
18249 @end itemize
18250
18251 @section xbr
18252 Apply the xBR high-quality magnification filter which is designed for pixel
18253 art. It follows a set of edge-detection rules, see
18254 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
18255
18256 It accepts the following option:
18257
18258 @table @option
18259 @item n
18260 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
18261 @code{3xBR} and @code{4} for @code{4xBR}.
18262 Default is @code{3}.
18263 @end table
18264
18265 @section xstack
18266 Stack video inputs into custom layout.
18267
18268 All streams must be of same pixel format.
18269
18270 The filter accept the following option:
18271
18272 @table @option
18273 @item inputs
18274 Set number of input streams. Default is 2.
18275
18276 @item layout
18277 Specify layout of inputs.
18278 This option requires the desired layout configuration to be explicitly set by the user.
18279 This sets position of each video input in output. Each input
18280 is separated by '|'.
18281 The first number represents the column, and the second number represents the row.
18282 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
18283 where X is video input from which to take width or height.
18284 Multiple values can be used when separated by '+'. In such
18285 case values are summed together.
18286
18287 @item shortest
18288 If set to 1, force the output to terminate when the shortest input
18289 terminates. Default value is 0.
18290 @end table
18291
18292 @subsection Examples
18293
18294 @itemize
18295 @item
18296 Display 4 inputs into 2x2 grid,
18297 note that if inputs are of different sizes unused gaps might appear,
18298 as not all of output video is used.
18299 @example
18300 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
18301 @end example
18302
18303 @item
18304 Display 4 inputs into 1x4 grid,
18305 note that if inputs are of different sizes unused gaps might appear,
18306 as not all of output video is used.
18307 @example
18308 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
18309 @end example
18310
18311 @item
18312 Display 9 inputs into 3x3 grid,
18313 note that if inputs are of different sizes unused gaps might appear,
18314 as not all of output video is used.
18315 @example
18316 xstack=inputs=9:layout=w3_0|w3_h0+h2|w3_h0|0_h4|0_0|w3+w1_0|0_h1+h2|w3+w1_h0|w3+w1_h1+h2
18317 @end example
18318 @end itemize
18319
18320 @anchor{yadif}
18321 @section yadif
18322
18323 Deinterlace the input video ("yadif" means "yet another deinterlacing
18324 filter").
18325
18326 It accepts the following parameters:
18327
18328
18329 @table @option
18330
18331 @item mode
18332 The interlacing mode to adopt. It accepts one of the following values:
18333
18334 @table @option
18335 @item 0, send_frame
18336 Output one frame for each frame.
18337 @item 1, send_field
18338 Output one frame for each field.
18339 @item 2, send_frame_nospatial
18340 Like @code{send_frame}, but it skips the spatial interlacing check.
18341 @item 3, send_field_nospatial
18342 Like @code{send_field}, but it skips the spatial interlacing check.
18343 @end table
18344
18345 The default value is @code{send_frame}.
18346
18347 @item parity
18348 The picture field parity assumed for the input interlaced video. It accepts one
18349 of the following values:
18350
18351 @table @option
18352 @item 0, tff
18353 Assume the top field is first.
18354 @item 1, bff
18355 Assume the bottom field is first.
18356 @item -1, auto
18357 Enable automatic detection of field parity.
18358 @end table
18359
18360 The default value is @code{auto}.
18361 If the interlacing is unknown or the decoder does not export this information,
18362 top field first will be assumed.
18363
18364 @item deint
18365 Specify which frames to deinterlace. Accept one of the following
18366 values:
18367
18368 @table @option
18369 @item 0, all
18370 Deinterlace all frames.
18371 @item 1, interlaced
18372 Only deinterlace frames marked as interlaced.
18373 @end table
18374
18375 The default value is @code{all}.
18376 @end table
18377
18378 @section yadif_cuda
18379
18380 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
18381 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
18382 and/or nvenc.
18383
18384 It accepts the following parameters:
18385
18386
18387 @table @option
18388
18389 @item mode
18390 The interlacing mode to adopt. It accepts one of the following values:
18391
18392 @table @option
18393 @item 0, send_frame
18394 Output one frame for each frame.
18395 @item 1, send_field
18396 Output one frame for each field.
18397 @item 2, send_frame_nospatial
18398 Like @code{send_frame}, but it skips the spatial interlacing check.
18399 @item 3, send_field_nospatial
18400 Like @code{send_field}, but it skips the spatial interlacing check.
18401 @end table
18402
18403 The default value is @code{send_frame}.
18404
18405 @item parity
18406 The picture field parity assumed for the input interlaced video. It accepts one
18407 of the following values:
18408
18409 @table @option
18410 @item 0, tff
18411 Assume the top field is first.
18412 @item 1, bff
18413 Assume the bottom field is first.
18414 @item -1, auto
18415 Enable automatic detection of field parity.
18416 @end table
18417
18418 The default value is @code{auto}.
18419 If the interlacing is unknown or the decoder does not export this information,
18420 top field first will be assumed.
18421
18422 @item deint
18423 Specify which frames to deinterlace. Accept one of the following
18424 values:
18425
18426 @table @option
18427 @item 0, all
18428 Deinterlace all frames.
18429 @item 1, interlaced
18430 Only deinterlace frames marked as interlaced.
18431 @end table
18432
18433 The default value is @code{all}.
18434 @end table
18435
18436 @section zoompan
18437
18438 Apply Zoom & Pan effect.
18439
18440 This filter accepts the following options:
18441
18442 @table @option
18443 @item zoom, z
18444 Set the zoom expression. Range is 1-10. Default is 1.
18445
18446 @item x
18447 @item y
18448 Set the x and y expression. Default is 0.
18449
18450 @item d
18451 Set the duration expression in number of frames.
18452 This sets for how many number of frames effect will last for
18453 single input image.
18454
18455 @item s
18456 Set the output image size, default is 'hd720'.
18457
18458 @item fps
18459 Set the output frame rate, default is '25'.
18460 @end table
18461
18462 Each expression can contain the following constants:
18463
18464 @table @option
18465 @item in_w, iw
18466 Input width.
18467
18468 @item in_h, ih
18469 Input height.
18470
18471 @item out_w, ow
18472 Output width.
18473
18474 @item out_h, oh
18475 Output height.
18476
18477 @item in
18478 Input frame count.
18479
18480 @item on
18481 Output frame count.
18482
18483 @item x
18484 @item y
18485 Last calculated 'x' and 'y' position from 'x' and 'y' expression
18486 for current input frame.
18487
18488 @item px
18489 @item py
18490 'x' and 'y' of last output frame of previous input frame or 0 when there was
18491 not yet such frame (first input frame).
18492
18493 @item zoom
18494 Last calculated zoom from 'z' expression for current input frame.
18495
18496 @item pzoom
18497 Last calculated zoom of last output frame of previous input frame.
18498
18499 @item duration
18500 Number of output frames for current input frame. Calculated from 'd' expression
18501 for each input frame.
18502
18503 @item pduration
18504 number of output frames created for previous input frame
18505
18506 @item a
18507 Rational number: input width / input height
18508
18509 @item sar
18510 sample aspect ratio
18511
18512 @item dar
18513 display aspect ratio
18514
18515 @end table
18516
18517 @subsection Examples
18518
18519 @itemize
18520 @item
18521 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
18522 @example
18523 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
18524 @end example
18525
18526 @item
18527 Zoom-in up to 1.5 and pan always at center of picture:
18528 @example
18529 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18530 @end example
18531
18532 @item
18533 Same as above but without pausing:
18534 @example
18535 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18536 @end example
18537 @end itemize
18538
18539 @anchor{zscale}
18540 @section zscale
18541 Scale (resize) the input video, using the z.lib library:
18542 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
18543 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
18544
18545 The zscale filter forces the output display aspect ratio to be the same
18546 as the input, by changing the output sample aspect ratio.
18547
18548 If the input image format is different from the format requested by
18549 the next filter, the zscale filter will convert the input to the
18550 requested format.
18551
18552 @subsection Options
18553 The filter accepts the following options.
18554
18555 @table @option
18556 @item width, w
18557 @item height, h
18558 Set the output video dimension expression. Default value is the input
18559 dimension.
18560
18561 If the @var{width} or @var{w} value is 0, the input width is used for
18562 the output. If the @var{height} or @var{h} value is 0, the input height
18563 is used for the output.
18564
18565 If one and only one of the values is -n with n >= 1, the zscale filter
18566 will use a value that maintains the aspect ratio of the input image,
18567 calculated from the other specified dimension. After that it will,
18568 however, make sure that the calculated dimension is divisible by n and
18569 adjust the value if necessary.
18570
18571 If both values are -n with n >= 1, the behavior will be identical to
18572 both values being set to 0 as previously detailed.
18573
18574 See below for the list of accepted constants for use in the dimension
18575 expression.
18576
18577 @item size, s
18578 Set the video size. For the syntax of this option, check the
18579 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18580
18581 @item dither, d
18582 Set the dither type.
18583
18584 Possible values are:
18585 @table @var
18586 @item none
18587 @item ordered
18588 @item random
18589 @item error_diffusion
18590 @end table
18591
18592 Default is none.
18593
18594 @item filter, f
18595 Set the resize filter type.
18596
18597 Possible values are:
18598 @table @var
18599 @item point
18600 @item bilinear
18601 @item bicubic
18602 @item spline16
18603 @item spline36
18604 @item lanczos
18605 @end table
18606
18607 Default is bilinear.
18608
18609 @item range, r
18610 Set the color range.
18611
18612 Possible values are:
18613 @table @var
18614 @item input
18615 @item limited
18616 @item full
18617 @end table
18618
18619 Default is same as input.
18620
18621 @item primaries, p
18622 Set the color primaries.
18623
18624 Possible values are:
18625 @table @var
18626 @item input
18627 @item 709
18628 @item unspecified
18629 @item 170m
18630 @item 240m
18631 @item 2020
18632 @end table
18633
18634 Default is same as input.
18635
18636 @item transfer, t
18637 Set the transfer characteristics.
18638
18639 Possible values are:
18640 @table @var
18641 @item input
18642 @item 709
18643 @item unspecified
18644 @item 601
18645 @item linear
18646 @item 2020_10
18647 @item 2020_12
18648 @item smpte2084
18649 @item iec61966-2-1
18650 @item arib-std-b67
18651 @end table
18652
18653 Default is same as input.
18654
18655 @item matrix, m
18656 Set the colorspace matrix.
18657
18658 Possible value are:
18659 @table @var
18660 @item input
18661 @item 709
18662 @item unspecified
18663 @item 470bg
18664 @item 170m
18665 @item 2020_ncl
18666 @item 2020_cl
18667 @end table
18668
18669 Default is same as input.
18670
18671 @item rangein, rin
18672 Set the input color range.
18673
18674 Possible values are:
18675 @table @var
18676 @item input
18677 @item limited
18678 @item full
18679 @end table
18680
18681 Default is same as input.
18682
18683 @item primariesin, pin
18684 Set the input color primaries.
18685
18686 Possible values are:
18687 @table @var
18688 @item input
18689 @item 709
18690 @item unspecified
18691 @item 170m
18692 @item 240m
18693 @item 2020
18694 @end table
18695
18696 Default is same as input.
18697
18698 @item transferin, tin
18699 Set the input transfer characteristics.
18700
18701 Possible values are:
18702 @table @var
18703 @item input
18704 @item 709
18705 @item unspecified
18706 @item 601
18707 @item linear
18708 @item 2020_10
18709 @item 2020_12
18710 @end table
18711
18712 Default is same as input.
18713
18714 @item matrixin, min
18715 Set the input colorspace matrix.
18716
18717 Possible value are:
18718 @table @var
18719 @item input
18720 @item 709
18721 @item unspecified
18722 @item 470bg
18723 @item 170m
18724 @item 2020_ncl
18725 @item 2020_cl
18726 @end table
18727
18728 @item chromal, c
18729 Set the output chroma location.
18730
18731 Possible values are:
18732 @table @var
18733 @item input
18734 @item left
18735 @item center
18736 @item topleft
18737 @item top
18738 @item bottomleft
18739 @item bottom
18740 @end table
18741
18742 @item chromalin, cin
18743 Set the input chroma location.
18744
18745 Possible values are:
18746 @table @var
18747 @item input
18748 @item left
18749 @item center
18750 @item topleft
18751 @item top
18752 @item bottomleft
18753 @item bottom
18754 @end table
18755
18756 @item npl
18757 Set the nominal peak luminance.
18758 @end table
18759
18760 The values of the @option{w} and @option{h} options are expressions
18761 containing the following constants:
18762
18763 @table @var
18764 @item in_w
18765 @item in_h
18766 The input width and height
18767
18768 @item iw
18769 @item ih
18770 These are the same as @var{in_w} and @var{in_h}.
18771
18772 @item out_w
18773 @item out_h
18774 The output (scaled) width and height
18775
18776 @item ow
18777 @item oh
18778 These are the same as @var{out_w} and @var{out_h}
18779
18780 @item a
18781 The same as @var{iw} / @var{ih}
18782
18783 @item sar
18784 input sample aspect ratio
18785
18786 @item dar
18787 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
18788
18789 @item hsub
18790 @item vsub
18791 horizontal and vertical input chroma subsample values. For example for the
18792 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
18793
18794 @item ohsub
18795 @item ovsub
18796 horizontal and vertical output chroma subsample values. For example for the
18797 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
18798 @end table
18799
18800 @table @option
18801 @end table
18802
18803 @c man end VIDEO FILTERS
18804
18805 @chapter OpenCL Video Filters
18806 @c man begin OPENCL VIDEO FILTERS
18807
18808 Below is a description of the currently available OpenCL video filters.
18809
18810 To enable compilation of these filters you need to configure FFmpeg with
18811 @code{--enable-opencl}.
18812
18813 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
18814 @table @option
18815
18816 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
18817 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
18818 given device parameters.
18819
18820 @item -filter_hw_device @var{name}
18821 Pass the hardware device called @var{name} to all filters in any filter graph.
18822
18823 @end table
18824
18825 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
18826
18827 @itemize
18828 @item
18829 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
18830 @example
18831 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
18832 @end example
18833 @end itemize
18834
18835 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.
18836
18837 @section avgblur_opencl
18838
18839 Apply average blur filter.
18840
18841 The filter accepts the following options:
18842
18843 @table @option
18844 @item sizeX
18845 Set horizontal radius size.
18846 Range is @code{[1, 1024]} and default value is @code{1}.
18847
18848 @item planes
18849 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
18850
18851 @item sizeY
18852 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
18853 @end table
18854
18855 @subsection Example
18856
18857 @itemize
18858 @item
18859 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.
18860 @example
18861 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
18862 @end example
18863 @end itemize
18864
18865 @section boxblur_opencl
18866
18867 Apply a boxblur algorithm to the input video.
18868
18869 It accepts the following parameters:
18870
18871 @table @option
18872
18873 @item luma_radius, lr
18874 @item luma_power, lp
18875 @item chroma_radius, cr
18876 @item chroma_power, cp
18877 @item alpha_radius, ar
18878 @item alpha_power, ap
18879
18880 @end table
18881
18882 A description of the accepted options follows.
18883
18884 @table @option
18885 @item luma_radius, lr
18886 @item chroma_radius, cr
18887 @item alpha_radius, ar
18888 Set an expression for the box radius in pixels used for blurring the
18889 corresponding input plane.
18890
18891 The radius value must be a non-negative number, and must not be
18892 greater than the value of the expression @code{min(w,h)/2} for the
18893 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
18894 planes.
18895
18896 Default value for @option{luma_radius} is "2". If not specified,
18897 @option{chroma_radius} and @option{alpha_radius} default to the
18898 corresponding value set for @option{luma_radius}.
18899
18900 The expressions can contain the following constants:
18901 @table @option
18902 @item w
18903 @item h
18904 The input width and height in pixels.
18905
18906 @item cw
18907 @item ch
18908 The input chroma image width and height in pixels.
18909
18910 @item hsub
18911 @item vsub
18912 The horizontal and vertical chroma subsample values. For example, for the
18913 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
18914 @end table
18915
18916 @item luma_power, lp
18917 @item chroma_power, cp
18918 @item alpha_power, ap
18919 Specify how many times the boxblur filter is applied to the
18920 corresponding plane.
18921
18922 Default value for @option{luma_power} is 2. If not specified,
18923 @option{chroma_power} and @option{alpha_power} default to the
18924 corresponding value set for @option{luma_power}.
18925
18926 A value of 0 will disable the effect.
18927 @end table
18928
18929 @subsection Examples
18930
18931 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.
18932
18933 @itemize
18934 @item
18935 Apply a boxblur filter with the luma, chroma, and alpha radius
18936 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.
18937 @example
18938 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
18939 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
18940 @end example
18941
18942 @item
18943 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.
18944
18945 For the luma plane, a 2x2 box radius will be run once.
18946
18947 For the chroma plane, a 4x4 box radius will be run 5 times.
18948
18949 For the alpha plane, a 3x3 box radius will be run 7 times.
18950 @example
18951 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
18952 @end example
18953 @end itemize
18954
18955 @section convolution_opencl
18956
18957 Apply convolution of 3x3, 5x5, 7x7 matrix.
18958
18959 The filter accepts the following options:
18960
18961 @table @option
18962 @item 0m
18963 @item 1m
18964 @item 2m
18965 @item 3m
18966 Set matrix for each plane.
18967 Matrix is sequence of 9, 25 or 49 signed numbers.
18968 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
18969
18970 @item 0rdiv
18971 @item 1rdiv
18972 @item 2rdiv
18973 @item 3rdiv
18974 Set multiplier for calculated value for each plane.
18975 If unset or 0, it will be sum of all matrix elements.
18976 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
18977
18978 @item 0bias
18979 @item 1bias
18980 @item 2bias
18981 @item 3bias
18982 Set bias for each plane. This value is added to the result of the multiplication.
18983 Useful for making the overall image brighter or darker.
18984 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
18985
18986 @end table
18987
18988 @subsection Examples
18989
18990 @itemize
18991 @item
18992 Apply sharpen:
18993 @example
18994 -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
18995 @end example
18996
18997 @item
18998 Apply blur:
18999 @example
19000 -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
19001 @end example
19002
19003 @item
19004 Apply edge enhance:
19005 @example
19006 -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
19007 @end example
19008
19009 @item
19010 Apply edge detect:
19011 @example
19012 -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
19013 @end example
19014
19015 @item
19016 Apply laplacian edge detector which includes diagonals:
19017 @example
19018 -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
19019 @end example
19020
19021 @item
19022 Apply emboss:
19023 @example
19024 -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
19025 @end example
19026 @end itemize
19027
19028 @section dilation_opencl
19029
19030 Apply dilation effect to the video.
19031
19032 This filter replaces the pixel by the local(3x3) maximum.
19033
19034 It accepts the following options:
19035
19036 @table @option
19037 @item threshold0
19038 @item threshold1
19039 @item threshold2
19040 @item threshold3
19041 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19042 If @code{0}, plane will remain unchanged.
19043
19044 @item coordinates
19045 Flag which specifies the pixel to refer to.
19046 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19047
19048 Flags to local 3x3 coordinates region centered on @code{x}:
19049
19050     1 2 3
19051
19052     4 x 5
19053
19054     6 7 8
19055 @end table
19056
19057 @subsection Example
19058
19059 @itemize
19060 @item
19061 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.
19062 @example
19063 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19064 @end example
19065 @end itemize
19066
19067 @section erosion_opencl
19068
19069 Apply erosion effect to the video.
19070
19071 This filter replaces the pixel by the local(3x3) minimum.
19072
19073 It accepts the following options:
19074
19075 @table @option
19076 @item threshold0
19077 @item threshold1
19078 @item threshold2
19079 @item threshold3
19080 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19081 If @code{0}, plane will remain unchanged.
19082
19083 @item coordinates
19084 Flag which specifies the pixel to refer to.
19085 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19086
19087 Flags to local 3x3 coordinates region centered on @code{x}:
19088
19089     1 2 3
19090
19091     4 x 5
19092
19093     6 7 8
19094 @end table
19095
19096 @subsection Example
19097
19098 @itemize
19099 @item
19100 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.
19101 @example
19102 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19103 @end example
19104 @end itemize
19105
19106 @section overlay_opencl
19107
19108 Overlay one video on top of another.
19109
19110 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
19111 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
19112
19113 The filter accepts the following options:
19114
19115 @table @option
19116
19117 @item x
19118 Set the x coordinate of the overlaid video on the main video.
19119 Default value is @code{0}.
19120
19121 @item y
19122 Set the x coordinate of the overlaid video on the main video.
19123 Default value is @code{0}.
19124
19125 @end table
19126
19127 @subsection Examples
19128
19129 @itemize
19130 @item
19131 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
19132 @example
19133 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19134 @end example
19135 @item
19136 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
19137 @example
19138 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19139 @end example
19140
19141 @end itemize
19142
19143 @section prewitt_opencl
19144
19145 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
19146
19147 The filter accepts the following option:
19148
19149 @table @option
19150 @item planes
19151 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19152
19153 @item scale
19154 Set value which will be multiplied with filtered result.
19155 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19156
19157 @item delta
19158 Set value which will be added to filtered result.
19159 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19160 @end table
19161
19162 @subsection Example
19163
19164 @itemize
19165 @item
19166 Apply the Prewitt operator with scale set to 2 and delta set to 10.
19167 @example
19168 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
19169 @end example
19170 @end itemize
19171
19172 @section roberts_opencl
19173 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
19174
19175 The filter accepts the following option:
19176
19177 @table @option
19178 @item planes
19179 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19180
19181 @item scale
19182 Set value which will be multiplied with filtered result.
19183 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19184
19185 @item delta
19186 Set value which will be added to filtered result.
19187 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19188 @end table
19189
19190 @subsection Example
19191
19192 @itemize
19193 @item
19194 Apply the Roberts cross operator with scale set to 2 and delta set to 10
19195 @example
19196 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
19197 @end example
19198 @end itemize
19199
19200 @section sobel_opencl
19201
19202 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
19203
19204 The filter accepts the following option:
19205
19206 @table @option
19207 @item planes
19208 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19209
19210 @item scale
19211 Set value which will be multiplied with filtered result.
19212 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19213
19214 @item delta
19215 Set value which will be added to filtered result.
19216 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19217 @end table
19218
19219 @subsection Example
19220
19221 @itemize
19222 @item
19223 Apply sobel operator with scale set to 2 and delta set to 10
19224 @example
19225 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
19226 @end example
19227 @end itemize
19228
19229 @section tonemap_opencl
19230
19231 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
19232
19233 It accepts the following parameters:
19234
19235 @table @option
19236 @item tonemap
19237 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
19238
19239 @item param
19240 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
19241
19242 @item desat
19243 Apply desaturation for highlights that exceed this level of brightness. The
19244 higher the parameter, the more color information will be preserved. This
19245 setting helps prevent unnaturally blown-out colors for super-highlights, by
19246 (smoothly) turning into white instead. This makes images feel more natural,
19247 at the cost of reducing information about out-of-range colors.
19248
19249 The default value is 0.5, and the algorithm here is a little different from
19250 the cpu version tonemap currently. A setting of 0.0 disables this option.
19251
19252 @item threshold
19253 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
19254 is used to detect whether the scene has changed or not. If the distance between
19255 the current frame average brightness and the current running average exceeds
19256 a threshold value, we would re-calculate scene average and peak brightness.
19257 The default value is 0.2.
19258
19259 @item format
19260 Specify the output pixel format.
19261
19262 Currently supported formats are:
19263 @table @var
19264 @item p010
19265 @item nv12
19266 @end table
19267
19268 @item range, r
19269 Set the output color range.
19270
19271 Possible values are:
19272 @table @var
19273 @item tv/mpeg
19274 @item pc/jpeg
19275 @end table
19276
19277 Default is same as input.
19278
19279 @item primaries, p
19280 Set the output color primaries.
19281
19282 Possible values are:
19283 @table @var
19284 @item bt709
19285 @item bt2020
19286 @end table
19287
19288 Default is same as input.
19289
19290 @item transfer, t
19291 Set the output transfer characteristics.
19292
19293 Possible values are:
19294 @table @var
19295 @item bt709
19296 @item bt2020
19297 @end table
19298
19299 Default is bt709.
19300
19301 @item matrix, m
19302 Set the output colorspace matrix.
19303
19304 Possible value are:
19305 @table @var
19306 @item bt709
19307 @item bt2020
19308 @end table
19309
19310 Default is same as input.
19311
19312 @end table
19313
19314 @subsection Example
19315
19316 @itemize
19317 @item
19318 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
19319 @example
19320 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
19321 @end example
19322 @end itemize
19323
19324 @section unsharp_opencl
19325
19326 Sharpen or blur the input video.
19327
19328 It accepts the following parameters:
19329
19330 @table @option
19331 @item luma_msize_x, lx
19332 Set the luma matrix horizontal size.
19333 Range is @code{[1, 23]} and default value is @code{5}.
19334
19335 @item luma_msize_y, ly
19336 Set the luma matrix vertical size.
19337 Range is @code{[1, 23]} and default value is @code{5}.
19338
19339 @item luma_amount, la
19340 Set the luma effect strength.
19341 Range is @code{[-10, 10]} and default value is @code{1.0}.
19342
19343 Negative values will blur the input video, while positive values will
19344 sharpen it, a value of zero will disable the effect.
19345
19346 @item chroma_msize_x, cx
19347 Set the chroma matrix horizontal size.
19348 Range is @code{[1, 23]} and default value is @code{5}.
19349
19350 @item chroma_msize_y, cy
19351 Set the chroma matrix vertical size.
19352 Range is @code{[1, 23]} and default value is @code{5}.
19353
19354 @item chroma_amount, ca
19355 Set the chroma effect strength.
19356 Range is @code{[-10, 10]} and default value is @code{0.0}.
19357
19358 Negative values will blur the input video, while positive values will
19359 sharpen it, a value of zero will disable the effect.
19360
19361 @end table
19362
19363 All parameters are optional and default to the equivalent of the
19364 string '5:5:1.0:5:5:0.0'.
19365
19366 @subsection Examples
19367
19368 @itemize
19369 @item
19370 Apply strong luma sharpen effect:
19371 @example
19372 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
19373 @end example
19374
19375 @item
19376 Apply a strong blur of both luma and chroma parameters:
19377 @example
19378 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
19379 @end example
19380 @end itemize
19381
19382 @c man end OPENCL VIDEO FILTERS
19383
19384 @chapter Video Sources
19385 @c man begin VIDEO SOURCES
19386
19387 Below is a description of the currently available video sources.
19388
19389 @section buffer
19390
19391 Buffer video frames, and make them available to the filter chain.
19392
19393 This source is mainly intended for a programmatic use, in particular
19394 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
19395
19396 It accepts the following parameters:
19397
19398 @table @option
19399
19400 @item video_size
19401 Specify the size (width and height) of the buffered video frames. For the
19402 syntax of this option, check the
19403 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19404
19405 @item width
19406 The input video width.
19407
19408 @item height
19409 The input video height.
19410
19411 @item pix_fmt
19412 A string representing the pixel format of the buffered video frames.
19413 It may be a number corresponding to a pixel format, or a pixel format
19414 name.
19415
19416 @item time_base
19417 Specify the timebase assumed by the timestamps of the buffered frames.
19418
19419 @item frame_rate
19420 Specify the frame rate expected for the video stream.
19421
19422 @item pixel_aspect, sar
19423 The sample (pixel) aspect ratio of the input video.
19424
19425 @item sws_param
19426 Specify the optional parameters to be used for the scale filter which
19427 is automatically inserted when an input change is detected in the
19428 input size or format.
19429
19430 @item hw_frames_ctx
19431 When using a hardware pixel format, this should be a reference to an
19432 AVHWFramesContext describing input frames.
19433 @end table
19434
19435 For example:
19436 @example
19437 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
19438 @end example
19439
19440 will instruct the source to accept video frames with size 320x240 and
19441 with format "yuv410p", assuming 1/24 as the timestamps timebase and
19442 square pixels (1:1 sample aspect ratio).
19443 Since the pixel format with name "yuv410p" corresponds to the number 6
19444 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
19445 this example corresponds to:
19446 @example
19447 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
19448 @end example
19449
19450 Alternatively, the options can be specified as a flat string, but this
19451 syntax is deprecated:
19452
19453 @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}]
19454
19455 @section cellauto
19456
19457 Create a pattern generated by an elementary cellular automaton.
19458
19459 The initial state of the cellular automaton can be defined through the
19460 @option{filename} and @option{pattern} options. If such options are
19461 not specified an initial state is created randomly.
19462
19463 At each new frame a new row in the video is filled with the result of
19464 the cellular automaton next generation. The behavior when the whole
19465 frame is filled is defined by the @option{scroll} option.
19466
19467 This source accepts the following options:
19468
19469 @table @option
19470 @item filename, f
19471 Read the initial cellular automaton state, i.e. the starting row, from
19472 the specified file.
19473 In the file, each non-whitespace character is considered an alive
19474 cell, a newline will terminate the row, and further characters in the
19475 file will be ignored.
19476
19477 @item pattern, p
19478 Read the initial cellular automaton state, i.e. the starting row, from
19479 the specified string.
19480
19481 Each non-whitespace character in the string is considered an alive
19482 cell, a newline will terminate the row, and further characters in the
19483 string will be ignored.
19484
19485 @item rate, r
19486 Set the video rate, that is the number of frames generated per second.
19487 Default is 25.
19488
19489 @item random_fill_ratio, ratio
19490 Set the random fill ratio for the initial cellular automaton row. It
19491 is a floating point number value ranging from 0 to 1, defaults to
19492 1/PHI.
19493
19494 This option is ignored when a file or a pattern is specified.
19495
19496 @item random_seed, seed
19497 Set the seed for filling randomly the initial row, must be an integer
19498 included between 0 and UINT32_MAX. If not specified, or if explicitly
19499 set to -1, the filter will try to use a good random seed on a best
19500 effort basis.
19501
19502 @item rule
19503 Set the cellular automaton rule, it is a number ranging from 0 to 255.
19504 Default value is 110.
19505
19506 @item size, s
19507 Set the size of the output video. For the syntax of this option, check the
19508 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19509
19510 If @option{filename} or @option{pattern} is specified, the size is set
19511 by default to the width of the specified initial state row, and the
19512 height is set to @var{width} * PHI.
19513
19514 If @option{size} is set, it must contain the width of the specified
19515 pattern string, and the specified pattern will be centered in the
19516 larger row.
19517
19518 If a filename or a pattern string is not specified, the size value
19519 defaults to "320x518" (used for a randomly generated initial state).
19520
19521 @item scroll
19522 If set to 1, scroll the output upward when all the rows in the output
19523 have been already filled. If set to 0, the new generated row will be
19524 written over the top row just after the bottom row is filled.
19525 Defaults to 1.
19526
19527 @item start_full, full
19528 If set to 1, completely fill the output with generated rows before
19529 outputting the first frame.
19530 This is the default behavior, for disabling set the value to 0.
19531
19532 @item stitch
19533 If set to 1, stitch the left and right row edges together.
19534 This is the default behavior, for disabling set the value to 0.
19535 @end table
19536
19537 @subsection Examples
19538
19539 @itemize
19540 @item
19541 Read the initial state from @file{pattern}, and specify an output of
19542 size 200x400.
19543 @example
19544 cellauto=f=pattern:s=200x400
19545 @end example
19546
19547 @item
19548 Generate a random initial row with a width of 200 cells, with a fill
19549 ratio of 2/3:
19550 @example
19551 cellauto=ratio=2/3:s=200x200
19552 @end example
19553
19554 @item
19555 Create a pattern generated by rule 18 starting by a single alive cell
19556 centered on an initial row with width 100:
19557 @example
19558 cellauto=p=@@:s=100x400:full=0:rule=18
19559 @end example
19560
19561 @item
19562 Specify a more elaborated initial pattern:
19563 @example
19564 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
19565 @end example
19566
19567 @end itemize
19568
19569 @anchor{coreimagesrc}
19570 @section coreimagesrc
19571 Video source generated on GPU using Apple's CoreImage API on OSX.
19572
19573 This video source is a specialized version of the @ref{coreimage} video filter.
19574 Use a core image generator at the beginning of the applied filterchain to
19575 generate the content.
19576
19577 The coreimagesrc video source accepts the following options:
19578 @table @option
19579 @item list_generators
19580 List all available generators along with all their respective options as well as
19581 possible minimum and maximum values along with the default values.
19582 @example
19583 list_generators=true
19584 @end example
19585
19586 @item size, s
19587 Specify the size of the sourced video. For the syntax of this option, check the
19588 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19589 The default value is @code{320x240}.
19590
19591 @item rate, r
19592 Specify the frame rate of the sourced video, as the number of frames
19593 generated per second. It has to be a string in the format
19594 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
19595 number or a valid video frame rate abbreviation. The default value is
19596 "25".
19597
19598 @item sar
19599 Set the sample aspect ratio of the sourced video.
19600
19601 @item duration, d
19602 Set the duration of the sourced video. See
19603 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19604 for the accepted syntax.
19605
19606 If not specified, or the expressed duration is negative, the video is
19607 supposed to be generated forever.
19608 @end table
19609
19610 Additionally, all options of the @ref{coreimage} video filter are accepted.
19611 A complete filterchain can be used for further processing of the
19612 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
19613 and examples for details.
19614
19615 @subsection Examples
19616
19617 @itemize
19618
19619 @item
19620 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
19621 given as complete and escaped command-line for Apple's standard bash shell:
19622 @example
19623 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
19624 @end example
19625 This example is equivalent to the QRCode example of @ref{coreimage} without the
19626 need for a nullsrc video source.
19627 @end itemize
19628
19629
19630 @section mandelbrot
19631
19632 Generate a Mandelbrot set fractal, and progressively zoom towards the
19633 point specified with @var{start_x} and @var{start_y}.
19634
19635 This source accepts the following options:
19636
19637 @table @option
19638
19639 @item end_pts
19640 Set the terminal pts value. Default value is 400.
19641
19642 @item end_scale
19643 Set the terminal scale value.
19644 Must be a floating point value. Default value is 0.3.
19645
19646 @item inner
19647 Set the inner coloring mode, that is the algorithm used to draw the
19648 Mandelbrot fractal internal region.
19649
19650 It shall assume one of the following values:
19651 @table @option
19652 @item black
19653 Set black mode.
19654 @item convergence
19655 Show time until convergence.
19656 @item mincol
19657 Set color based on point closest to the origin of the iterations.
19658 @item period
19659 Set period mode.
19660 @end table
19661
19662 Default value is @var{mincol}.
19663
19664 @item bailout
19665 Set the bailout value. Default value is 10.0.
19666
19667 @item maxiter
19668 Set the maximum of iterations performed by the rendering
19669 algorithm. Default value is 7189.
19670
19671 @item outer
19672 Set outer coloring mode.
19673 It shall assume one of following values:
19674 @table @option
19675 @item iteration_count
19676 Set iteration count mode.
19677 @item normalized_iteration_count
19678 set normalized iteration count mode.
19679 @end table
19680 Default value is @var{normalized_iteration_count}.
19681
19682 @item rate, r
19683 Set frame rate, expressed as number of frames per second. Default
19684 value is "25".
19685
19686 @item size, s
19687 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
19688 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
19689
19690 @item start_scale
19691 Set the initial scale value. Default value is 3.0.
19692
19693 @item start_x
19694 Set the initial x position. Must be a floating point value between
19695 -100 and 100. Default value is -0.743643887037158704752191506114774.
19696
19697 @item start_y
19698 Set the initial y position. Must be a floating point value between
19699 -100 and 100. Default value is -0.131825904205311970493132056385139.
19700 @end table
19701
19702 @section mptestsrc
19703
19704 Generate various test patterns, as generated by the MPlayer test filter.
19705
19706 The size of the generated video is fixed, and is 256x256.
19707 This source is useful in particular for testing encoding features.
19708
19709 This source accepts the following options:
19710
19711 @table @option
19712
19713 @item rate, r
19714 Specify the frame rate of the sourced video, as the number of frames
19715 generated per second. It has to be a string in the format
19716 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
19717 number or a valid video frame rate abbreviation. The default value is
19718 "25".
19719
19720 @item duration, d
19721 Set the duration of the sourced video. See
19722 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
19723 for the accepted syntax.
19724
19725 If not specified, or the expressed duration is negative, the video is
19726 supposed to be generated forever.
19727
19728 @item test, t
19729
19730 Set the number or the name of the test to perform. Supported tests are:
19731 @table @option
19732 @item dc_luma
19733 @item dc_chroma
19734 @item freq_luma
19735 @item freq_chroma
19736 @item amp_luma
19737 @item amp_chroma
19738 @item cbp
19739 @item mv
19740 @item ring1
19741 @item ring2
19742 @item all
19743
19744 @end table
19745
19746 Default value is "all", which will cycle through the list of all tests.
19747 @end table
19748
19749 Some examples:
19750 @example
19751 mptestsrc=t=dc_luma
19752 @end example
19753
19754 will generate a "dc_luma" test pattern.
19755
19756 @section frei0r_src
19757
19758 Provide a frei0r source.
19759
19760 To enable compilation of this filter you need to install the frei0r
19761 header and configure FFmpeg with @code{--enable-frei0r}.
19762
19763 This source accepts the following parameters:
19764
19765 @table @option
19766
19767 @item size
19768 The size of the video to generate. For the syntax of this option, check the
19769 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19770
19771 @item framerate
19772 The framerate of the generated video. It may be a string of the form
19773 @var{num}/@var{den} or a frame rate abbreviation.
19774
19775 @item filter_name
19776 The name to the frei0r source to load. For more information regarding frei0r and
19777 how to set the parameters, read the @ref{frei0r} section in the video filters
19778 documentation.
19779
19780 @item filter_params
19781 A '|'-separated list of parameters to pass to the frei0r source.
19782
19783 @end table
19784
19785 For example, to generate a frei0r partik0l source with size 200x200
19786 and frame rate 10 which is overlaid on the overlay filter main input:
19787 @example
19788 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
19789 @end example
19790
19791 @section life
19792
19793 Generate a life pattern.
19794
19795 This source is based on a generalization of John Conway's life game.
19796
19797 The sourced input represents a life grid, each pixel represents a cell
19798 which can be in one of two possible states, alive or dead. Every cell
19799 interacts with its eight neighbours, which are the cells that are
19800 horizontally, vertically, or diagonally adjacent.
19801
19802 At each interaction the grid evolves according to the adopted rule,
19803 which specifies the number of neighbor alive cells which will make a
19804 cell stay alive or born. The @option{rule} option allows one to specify
19805 the rule to adopt.
19806
19807 This source accepts the following options:
19808
19809 @table @option
19810 @item filename, f
19811 Set the file from which to read the initial grid state. In the file,
19812 each non-whitespace character is considered an alive cell, and newline
19813 is used to delimit the end of each row.
19814
19815 If this option is not specified, the initial grid is generated
19816 randomly.
19817
19818 @item rate, r
19819 Set the video rate, that is the number of frames generated per second.
19820 Default is 25.
19821
19822 @item random_fill_ratio, ratio
19823 Set the random fill ratio for the initial random grid. It is a
19824 floating point number value ranging from 0 to 1, defaults to 1/PHI.
19825 It is ignored when a file is specified.
19826
19827 @item random_seed, seed
19828 Set the seed for filling the initial random grid, must be an integer
19829 included between 0 and UINT32_MAX. If not specified, or if explicitly
19830 set to -1, the filter will try to use a good random seed on a best
19831 effort basis.
19832
19833 @item rule
19834 Set the life rule.
19835
19836 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
19837 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
19838 @var{NS} specifies the number of alive neighbor cells which make a
19839 live cell stay alive, and @var{NB} the number of alive neighbor cells
19840 which make a dead cell to become alive (i.e. to "born").
19841 "s" and "b" can be used in place of "S" and "B", respectively.
19842
19843 Alternatively a rule can be specified by an 18-bits integer. The 9
19844 high order bits are used to encode the next cell state if it is alive
19845 for each number of neighbor alive cells, the low order bits specify
19846 the rule for "borning" new cells. Higher order bits encode for an
19847 higher number of neighbor cells.
19848 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
19849 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
19850
19851 Default value is "S23/B3", which is the original Conway's game of life
19852 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
19853 cells, and will born a new cell if there are three alive cells around
19854 a dead cell.
19855
19856 @item size, s
19857 Set the size of the output video. For the syntax of this option, check the
19858 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19859
19860 If @option{filename} is specified, the size is set by default to the
19861 same size of the input file. If @option{size} is set, it must contain
19862 the size specified in the input file, and the initial grid defined in
19863 that file is centered in the larger resulting area.
19864
19865 If a filename is not specified, the size value defaults to "320x240"
19866 (used for a randomly generated initial grid).
19867
19868 @item stitch
19869 If set to 1, stitch the left and right grid edges together, and the
19870 top and bottom edges also. Defaults to 1.
19871
19872 @item mold
19873 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
19874 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
19875 value from 0 to 255.
19876
19877 @item life_color
19878 Set the color of living (or new born) cells.
19879
19880 @item death_color
19881 Set the color of dead cells. If @option{mold} is set, this is the first color
19882 used to represent a dead cell.
19883
19884 @item mold_color
19885 Set mold color, for definitely dead and moldy cells.
19886
19887 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
19888 ffmpeg-utils manual,ffmpeg-utils}.
19889 @end table
19890
19891 @subsection Examples
19892
19893 @itemize
19894 @item
19895 Read a grid from @file{pattern}, and center it on a grid of size
19896 300x300 pixels:
19897 @example
19898 life=f=pattern:s=300x300
19899 @end example
19900
19901 @item
19902 Generate a random grid of size 200x200, with a fill ratio of 2/3:
19903 @example
19904 life=ratio=2/3:s=200x200
19905 @end example
19906
19907 @item
19908 Specify a custom rule for evolving a randomly generated grid:
19909 @example
19910 life=rule=S14/B34
19911 @end example
19912
19913 @item
19914 Full example with slow death effect (mold) using @command{ffplay}:
19915 @example
19916 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
19917 @end example
19918 @end itemize
19919
19920 @anchor{allrgb}
19921 @anchor{allyuv}
19922 @anchor{color}
19923 @anchor{haldclutsrc}
19924 @anchor{nullsrc}
19925 @anchor{pal75bars}
19926 @anchor{pal100bars}
19927 @anchor{rgbtestsrc}
19928 @anchor{smptebars}
19929 @anchor{smptehdbars}
19930 @anchor{testsrc}
19931 @anchor{testsrc2}
19932 @anchor{yuvtestsrc}
19933 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
19934
19935 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
19936
19937 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
19938
19939 The @code{color} source provides an uniformly colored input.
19940
19941 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
19942 @ref{haldclut} filter.
19943
19944 The @code{nullsrc} source returns unprocessed video frames. It is
19945 mainly useful to be employed in analysis / debugging tools, or as the
19946 source for filters which ignore the input data.
19947
19948 The @code{pal75bars} source generates a color bars pattern, based on
19949 EBU PAL recommendations with 75% color levels.
19950
19951 The @code{pal100bars} source generates a color bars pattern, based on
19952 EBU PAL recommendations with 100% color levels.
19953
19954 The @code{rgbtestsrc} source generates an RGB test pattern useful for
19955 detecting RGB vs BGR issues. You should see a red, green and blue
19956 stripe from top to bottom.
19957
19958 The @code{smptebars} source generates a color bars pattern, based on
19959 the SMPTE Engineering Guideline EG 1-1990.
19960
19961 The @code{smptehdbars} source generates a color bars pattern, based on
19962 the SMPTE RP 219-2002.
19963
19964 The @code{testsrc} source generates a test video pattern, showing a
19965 color pattern, a scrolling gradient and a timestamp. This is mainly
19966 intended for testing purposes.
19967
19968 The @code{testsrc2} source is similar to testsrc, but supports more
19969 pixel formats instead of just @code{rgb24}. This allows using it as an
19970 input for other tests without requiring a format conversion.
19971
19972 The @code{yuvtestsrc} source generates an YUV test pattern. You should
19973 see a y, cb and cr stripe from top to bottom.
19974
19975 The sources accept the following parameters:
19976
19977 @table @option
19978
19979 @item level
19980 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
19981 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
19982 pixels to be used as identity matrix for 3D lookup tables. Each component is
19983 coded on a @code{1/(N*N)} scale.
19984
19985 @item color, c
19986 Specify the color of the source, only available in the @code{color}
19987 source. For the syntax of this option, check the
19988 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
19989
19990 @item size, s
19991 Specify the size of the sourced video. For the syntax of this option, check the
19992 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19993 The default value is @code{320x240}.
19994
19995 This option is not available with the @code{allrgb}, @code{allyuv}, and
19996 @code{haldclutsrc} filters.
19997
19998 @item rate, r
19999 Specify the frame rate of the sourced video, as the number of frames
20000 generated per second. It has to be a string in the format
20001 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20002 number or a valid video frame rate abbreviation. The default value is
20003 "25".
20004
20005 @item duration, d
20006 Set the duration of the sourced video. See
20007 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20008 for the accepted syntax.
20009
20010 If not specified, or the expressed duration is negative, the video is
20011 supposed to be generated forever.
20012
20013 @item sar
20014 Set the sample aspect ratio of the sourced video.
20015
20016 @item alpha
20017 Specify the alpha (opacity) of the background, only available in the
20018 @code{testsrc2} source. The value must be between 0 (fully transparent) and
20019 255 (fully opaque, the default).
20020
20021 @item decimals, n
20022 Set the number of decimals to show in the timestamp, only available in the
20023 @code{testsrc} source.
20024
20025 The displayed timestamp value will correspond to the original
20026 timestamp value multiplied by the power of 10 of the specified
20027 value. Default value is 0.
20028 @end table
20029
20030 @subsection Examples
20031
20032 @itemize
20033 @item
20034 Generate a video with a duration of 5.3 seconds, with size
20035 176x144 and a frame rate of 10 frames per second:
20036 @example
20037 testsrc=duration=5.3:size=qcif:rate=10
20038 @end example
20039
20040 @item
20041 The following graph description will generate a red source
20042 with an opacity of 0.2, with size "qcif" and a frame rate of 10
20043 frames per second:
20044 @example
20045 color=c=red@@0.2:s=qcif:r=10
20046 @end example
20047
20048 @item
20049 If the input content is to be ignored, @code{nullsrc} can be used. The
20050 following command generates noise in the luminance plane by employing
20051 the @code{geq} filter:
20052 @example
20053 nullsrc=s=256x256, geq=random(1)*255:128:128
20054 @end example
20055 @end itemize
20056
20057 @subsection Commands
20058
20059 The @code{color} source supports the following commands:
20060
20061 @table @option
20062 @item c, color
20063 Set the color of the created image. Accepts the same syntax of the
20064 corresponding @option{color} option.
20065 @end table
20066
20067 @section openclsrc
20068
20069 Generate video using an OpenCL program.
20070
20071 @table @option
20072
20073 @item source
20074 OpenCL program source file.
20075
20076 @item kernel
20077 Kernel name in program.
20078
20079 @item size, s
20080 Size of frames to generate.  This must be set.
20081
20082 @item format
20083 Pixel format to use for the generated frames.  This must be set.
20084
20085 @item rate, r
20086 Number of frames generated every second.  Default value is '25'.
20087
20088 @end table
20089
20090 For details of how the program loading works, see the @ref{program_opencl}
20091 filter.
20092
20093 Example programs:
20094
20095 @itemize
20096 @item
20097 Generate a colour ramp by setting pixel values from the position of the pixel
20098 in the output image.  (Note that this will work with all pixel formats, but
20099 the generated output will not be the same.)
20100 @verbatim
20101 __kernel void ramp(__write_only image2d_t dst,
20102                    unsigned int index)
20103 {
20104     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20105
20106     float4 val;
20107     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
20108
20109     write_imagef(dst, loc, val);
20110 }
20111 @end verbatim
20112
20113 @item
20114 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
20115 @verbatim
20116 __kernel void sierpinski_carpet(__write_only image2d_t dst,
20117                                 unsigned int index)
20118 {
20119     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20120
20121     float4 value = 0.0f;
20122     int x = loc.x + index;
20123     int y = loc.y + index;
20124     while (x > 0 || y > 0) {
20125         if (x % 3 == 1 && y % 3 == 1) {
20126             value = 1.0f;
20127             break;
20128         }
20129         x /= 3;
20130         y /= 3;
20131     }
20132
20133     write_imagef(dst, loc, value);
20134 }
20135 @end verbatim
20136
20137 @end itemize
20138
20139 @c man end VIDEO SOURCES
20140
20141 @chapter Video Sinks
20142 @c man begin VIDEO SINKS
20143
20144 Below is a description of the currently available video sinks.
20145
20146 @section buffersink
20147
20148 Buffer video frames, and make them available to the end of the filter
20149 graph.
20150
20151 This sink is mainly intended for programmatic use, in particular
20152 through the interface defined in @file{libavfilter/buffersink.h}
20153 or the options system.
20154
20155 It accepts a pointer to an AVBufferSinkContext structure, which
20156 defines the incoming buffers' formats, to be passed as the opaque
20157 parameter to @code{avfilter_init_filter} for initialization.
20158
20159 @section nullsink
20160
20161 Null video sink: do absolutely nothing with the input video. It is
20162 mainly useful as a template and for use in analysis / debugging
20163 tools.
20164
20165 @c man end VIDEO SINKS
20166
20167 @chapter Multimedia Filters
20168 @c man begin MULTIMEDIA FILTERS
20169
20170 Below is a description of the currently available multimedia filters.
20171
20172 @section abitscope
20173
20174 Convert input audio to a video output, displaying the audio bit scope.
20175
20176 The filter accepts the following options:
20177
20178 @table @option
20179 @item rate, r
20180 Set frame rate, expressed as number of frames per second. Default
20181 value is "25".
20182
20183 @item size, s
20184 Specify the video size for the output. For the syntax of this option, check the
20185 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20186 Default value is @code{1024x256}.
20187
20188 @item colors
20189 Specify list of colors separated by space or by '|' which will be used to
20190 draw channels. Unrecognized or missing colors will be replaced
20191 by white color.
20192 @end table
20193
20194 @section ahistogram
20195
20196 Convert input audio to a video output, displaying the volume histogram.
20197
20198 The filter accepts the following options:
20199
20200 @table @option
20201 @item dmode
20202 Specify how histogram is calculated.
20203
20204 It accepts the following values:
20205 @table @samp
20206 @item single
20207 Use single histogram for all channels.
20208 @item separate
20209 Use separate histogram for each channel.
20210 @end table
20211 Default is @code{single}.
20212
20213 @item rate, r
20214 Set frame rate, expressed as number of frames per second. Default
20215 value is "25".
20216
20217 @item size, s
20218 Specify the video size for the output. For the syntax of this option, check the
20219 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20220 Default value is @code{hd720}.
20221
20222 @item scale
20223 Set display scale.
20224
20225 It accepts the following values:
20226 @table @samp
20227 @item log
20228 logarithmic
20229 @item sqrt
20230 square root
20231 @item cbrt
20232 cubic root
20233 @item lin
20234 linear
20235 @item rlog
20236 reverse logarithmic
20237 @end table
20238 Default is @code{log}.
20239
20240 @item ascale
20241 Set amplitude scale.
20242
20243 It accepts the following values:
20244 @table @samp
20245 @item log
20246 logarithmic
20247 @item lin
20248 linear
20249 @end table
20250 Default is @code{log}.
20251
20252 @item acount
20253 Set how much frames to accumulate in histogram.
20254 Default is 1. Setting this to -1 accumulates all frames.
20255
20256 @item rheight
20257 Set histogram ratio of window height.
20258
20259 @item slide
20260 Set sonogram sliding.
20261
20262 It accepts the following values:
20263 @table @samp
20264 @item replace
20265 replace old rows with new ones.
20266 @item scroll
20267 scroll from top to bottom.
20268 @end table
20269 Default is @code{replace}.
20270 @end table
20271
20272 @section aphasemeter
20273
20274 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
20275 representing mean phase of current audio frame. A video output can also be produced and is
20276 enabled by default. The audio is passed through as first output.
20277
20278 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
20279 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
20280 and @code{1} means channels are in phase.
20281
20282 The filter accepts the following options, all related to its video output:
20283
20284 @table @option
20285 @item rate, r
20286 Set the output frame rate. Default value is @code{25}.
20287
20288 @item size, s
20289 Set the video size for the output. For the syntax of this option, check the
20290 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20291 Default value is @code{800x400}.
20292
20293 @item rc
20294 @item gc
20295 @item bc
20296 Specify the red, green, blue contrast. Default values are @code{2},
20297 @code{7} and @code{1}.
20298 Allowed range is @code{[0, 255]}.
20299
20300 @item mpc
20301 Set color which will be used for drawing median phase. If color is
20302 @code{none} which is default, no median phase value will be drawn.
20303
20304 @item video
20305 Enable video output. Default is enabled.
20306 @end table
20307
20308 @section avectorscope
20309
20310 Convert input audio to a video output, representing the audio vector
20311 scope.
20312
20313 The filter is used to measure the difference between channels of stereo
20314 audio stream. A monoaural signal, consisting of identical left and right
20315 signal, results in straight vertical line. Any stereo separation is visible
20316 as a deviation from this line, creating a Lissajous figure.
20317 If the straight (or deviation from it) but horizontal line appears this
20318 indicates that the left and right channels are out of phase.
20319
20320 The filter accepts the following options:
20321
20322 @table @option
20323 @item mode, m
20324 Set the vectorscope mode.
20325
20326 Available values are:
20327 @table @samp
20328 @item lissajous
20329 Lissajous rotated by 45 degrees.
20330
20331 @item lissajous_xy
20332 Same as above but not rotated.
20333
20334 @item polar
20335 Shape resembling half of circle.
20336 @end table
20337
20338 Default value is @samp{lissajous}.
20339
20340 @item size, s
20341 Set the video size for the output. For the syntax of this option, check the
20342 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20343 Default value is @code{400x400}.
20344
20345 @item rate, r
20346 Set the output frame rate. Default value is @code{25}.
20347
20348 @item rc
20349 @item gc
20350 @item bc
20351 @item ac
20352 Specify the red, green, blue and alpha contrast. Default values are @code{40},
20353 @code{160}, @code{80} and @code{255}.
20354 Allowed range is @code{[0, 255]}.
20355
20356 @item rf
20357 @item gf
20358 @item bf
20359 @item af
20360 Specify the red, green, blue and alpha fade. Default values are @code{15},
20361 @code{10}, @code{5} and @code{5}.
20362 Allowed range is @code{[0, 255]}.
20363
20364 @item zoom
20365 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
20366 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
20367
20368 @item draw
20369 Set the vectorscope drawing mode.
20370
20371 Available values are:
20372 @table @samp
20373 @item dot
20374 Draw dot for each sample.
20375
20376 @item line
20377 Draw line between previous and current sample.
20378 @end table
20379
20380 Default value is @samp{dot}.
20381
20382 @item scale
20383 Specify amplitude scale of audio samples.
20384
20385 Available values are:
20386 @table @samp
20387 @item lin
20388 Linear.
20389
20390 @item sqrt
20391 Square root.
20392
20393 @item cbrt
20394 Cubic root.
20395
20396 @item log
20397 Logarithmic.
20398 @end table
20399
20400 @item swap
20401 Swap left channel axis with right channel axis.
20402
20403 @item mirror
20404 Mirror axis.
20405
20406 @table @samp
20407 @item none
20408 No mirror.
20409
20410 @item x
20411 Mirror only x axis.
20412
20413 @item y
20414 Mirror only y axis.
20415
20416 @item xy
20417 Mirror both axis.
20418 @end table
20419
20420 @end table
20421
20422 @subsection Examples
20423
20424 @itemize
20425 @item
20426 Complete example using @command{ffplay}:
20427 @example
20428 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
20429              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
20430 @end example
20431 @end itemize
20432
20433 @section bench, abench
20434
20435 Benchmark part of a filtergraph.
20436
20437 The filter accepts the following options:
20438
20439 @table @option
20440 @item action
20441 Start or stop a timer.
20442
20443 Available values are:
20444 @table @samp
20445 @item start
20446 Get the current time, set it as frame metadata (using the key
20447 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
20448
20449 @item stop
20450 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
20451 the input frame metadata to get the time difference. Time difference, average,
20452 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
20453 @code{min}) are then printed. The timestamps are expressed in seconds.
20454 @end table
20455 @end table
20456
20457 @subsection Examples
20458
20459 @itemize
20460 @item
20461 Benchmark @ref{selectivecolor} filter:
20462 @example
20463 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
20464 @end example
20465 @end itemize
20466
20467 @section concat
20468
20469 Concatenate audio and video streams, joining them together one after the
20470 other.
20471
20472 The filter works on segments of synchronized video and audio streams. All
20473 segments must have the same number of streams of each type, and that will
20474 also be the number of streams at output.
20475
20476 The filter accepts the following options:
20477
20478 @table @option
20479
20480 @item n
20481 Set the number of segments. Default is 2.
20482
20483 @item v
20484 Set the number of output video streams, that is also the number of video
20485 streams in each segment. Default is 1.
20486
20487 @item a
20488 Set the number of output audio streams, that is also the number of audio
20489 streams in each segment. Default is 0.
20490
20491 @item unsafe
20492 Activate unsafe mode: do not fail if segments have a different format.
20493
20494 @end table
20495
20496 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
20497 @var{a} audio outputs.
20498
20499 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
20500 segment, in the same order as the outputs, then the inputs for the second
20501 segment, etc.
20502
20503 Related streams do not always have exactly the same duration, for various
20504 reasons including codec frame size or sloppy authoring. For that reason,
20505 related synchronized streams (e.g. a video and its audio track) should be
20506 concatenated at once. The concat filter will use the duration of the longest
20507 stream in each segment (except the last one), and if necessary pad shorter
20508 audio streams with silence.
20509
20510 For this filter to work correctly, all segments must start at timestamp 0.
20511
20512 All corresponding streams must have the same parameters in all segments; the
20513 filtering system will automatically select a common pixel format for video
20514 streams, and a common sample format, sample rate and channel layout for
20515 audio streams, but other settings, such as resolution, must be converted
20516 explicitly by the user.
20517
20518 Different frame rates are acceptable but will result in variable frame rate
20519 at output; be sure to configure the output file to handle it.
20520
20521 @subsection Examples
20522
20523 @itemize
20524 @item
20525 Concatenate an opening, an episode and an ending, all in bilingual version
20526 (video in stream 0, audio in streams 1 and 2):
20527 @example
20528 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
20529   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
20530    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
20531   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
20532 @end example
20533
20534 @item
20535 Concatenate two parts, handling audio and video separately, using the
20536 (a)movie sources, and adjusting the resolution:
20537 @example
20538 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
20539 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
20540 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
20541 @end example
20542 Note that a desync will happen at the stitch if the audio and video streams
20543 do not have exactly the same duration in the first file.
20544
20545 @end itemize
20546
20547 @subsection Commands
20548
20549 This filter supports the following commands:
20550 @table @option
20551 @item next
20552 Close the current segment and step to the next one
20553 @end table
20554
20555 @section drawgraph, adrawgraph
20556
20557 Draw a graph using input video or audio metadata.
20558
20559 It accepts the following parameters:
20560
20561 @table @option
20562 @item m1
20563 Set 1st frame metadata key from which metadata values will be used to draw a graph.
20564
20565 @item fg1
20566 Set 1st foreground color expression.
20567
20568 @item m2
20569 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
20570
20571 @item fg2
20572 Set 2nd foreground color expression.
20573
20574 @item m3
20575 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
20576
20577 @item fg3
20578 Set 3rd foreground color expression.
20579
20580 @item m4
20581 Set 4th frame metadata key from which metadata values will be used to draw a graph.
20582
20583 @item fg4
20584 Set 4th foreground color expression.
20585
20586 @item min
20587 Set minimal value of metadata value.
20588
20589 @item max
20590 Set maximal value of metadata value.
20591
20592 @item bg
20593 Set graph background color. Default is white.
20594
20595 @item mode
20596 Set graph mode.
20597
20598 Available values for mode is:
20599 @table @samp
20600 @item bar
20601 @item dot
20602 @item line
20603 @end table
20604
20605 Default is @code{line}.
20606
20607 @item slide
20608 Set slide mode.
20609
20610 Available values for slide is:
20611 @table @samp
20612 @item frame
20613 Draw new frame when right border is reached.
20614
20615 @item replace
20616 Replace old columns with new ones.
20617
20618 @item scroll
20619 Scroll from right to left.
20620
20621 @item rscroll
20622 Scroll from left to right.
20623
20624 @item picture
20625 Draw single picture.
20626 @end table
20627
20628 Default is @code{frame}.
20629
20630 @item size
20631 Set size of graph video. For the syntax of this option, check the
20632 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20633 The default value is @code{900x256}.
20634
20635 The foreground color expressions can use the following variables:
20636 @table @option
20637 @item MIN
20638 Minimal value of metadata value.
20639
20640 @item MAX
20641 Maximal value of metadata value.
20642
20643 @item VAL
20644 Current metadata key value.
20645 @end table
20646
20647 The color is defined as 0xAABBGGRR.
20648 @end table
20649
20650 Example using metadata from @ref{signalstats} filter:
20651 @example
20652 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
20653 @end example
20654
20655 Example using metadata from @ref{ebur128} filter:
20656 @example
20657 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
20658 @end example
20659
20660 @anchor{ebur128}
20661 @section ebur128
20662
20663 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
20664 level. By default, it logs a message at a frequency of 10Hz with the
20665 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
20666 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
20667
20668 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
20669 sample format is double-precision floating point. The input stream will be converted to
20670 this specification, if needed. Users may need to insert aformat and/or aresample filters
20671 after this filter to obtain the original parameters.
20672
20673 The filter also has a video output (see the @var{video} option) with a real
20674 time graph to observe the loudness evolution. The graphic contains the logged
20675 message mentioned above, so it is not printed anymore when this option is set,
20676 unless the verbose logging is set. The main graphing area contains the
20677 short-term loudness (3 seconds of analysis), and the gauge on the right is for
20678 the momentary loudness (400 milliseconds), but can optionally be configured
20679 to instead display short-term loudness (see @var{gauge}).
20680
20681 The green area marks a  +/- 1LU target range around the target loudness
20682 (-23LUFS by default, unless modified through @var{target}).
20683
20684 More information about the Loudness Recommendation EBU R128 on
20685 @url{http://tech.ebu.ch/loudness}.
20686
20687 The filter accepts the following options:
20688
20689 @table @option
20690
20691 @item video
20692 Activate the video output. The audio stream is passed unchanged whether this
20693 option is set or no. The video stream will be the first output stream if
20694 activated. Default is @code{0}.
20695
20696 @item size
20697 Set the video size. This option is for video only. For the syntax of this
20698 option, check the
20699 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20700 Default and minimum resolution is @code{640x480}.
20701
20702 @item meter
20703 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
20704 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
20705 other integer value between this range is allowed.
20706
20707 @item metadata
20708 Set metadata injection. If set to @code{1}, the audio input will be segmented
20709 into 100ms output frames, each of them containing various loudness information
20710 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
20711
20712 Default is @code{0}.
20713
20714 @item framelog
20715 Force the frame logging level.
20716
20717 Available values are:
20718 @table @samp
20719 @item info
20720 information logging level
20721 @item verbose
20722 verbose logging level
20723 @end table
20724
20725 By default, the logging level is set to @var{info}. If the @option{video} or
20726 the @option{metadata} options are set, it switches to @var{verbose}.
20727
20728 @item peak
20729 Set peak mode(s).
20730
20731 Available modes can be cumulated (the option is a @code{flag} type). Possible
20732 values are:
20733 @table @samp
20734 @item none
20735 Disable any peak mode (default).
20736 @item sample
20737 Enable sample-peak mode.
20738
20739 Simple peak mode looking for the higher sample value. It logs a message
20740 for sample-peak (identified by @code{SPK}).
20741 @item true
20742 Enable true-peak mode.
20743
20744 If enabled, the peak lookup is done on an over-sampled version of the input
20745 stream for better peak accuracy. It logs a message for true-peak.
20746 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
20747 This mode requires a build with @code{libswresample}.
20748 @end table
20749
20750 @item dualmono
20751 Treat mono input files as "dual mono". If a mono file is intended for playback
20752 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
20753 If set to @code{true}, this option will compensate for this effect.
20754 Multi-channel input files are not affected by this option.
20755
20756 @item panlaw
20757 Set a specific pan law to be used for the measurement of dual mono files.
20758 This parameter is optional, and has a default value of -3.01dB.
20759
20760 @item target
20761 Set a specific target level (in LUFS) used as relative zero in the visualization.
20762 This parameter is optional and has a default value of -23LUFS as specified
20763 by EBU R128. However, material published online may prefer a level of -16LUFS
20764 (e.g. for use with podcasts or video platforms).
20765
20766 @item gauge
20767 Set the value displayed by the gauge. Valid values are @code{momentary} and s
20768 @code{shortterm}. By default the momentary value will be used, but in certain
20769 scenarios it may be more useful to observe the short term value instead (e.g.
20770 live mixing).
20771
20772 @item scale
20773 Sets the display scale for the loudness. Valid parameters are @code{absolute}
20774 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
20775 video output, not the summary or continuous log output.
20776 @end table
20777
20778 @subsection Examples
20779
20780 @itemize
20781 @item
20782 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
20783 @example
20784 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
20785 @end example
20786
20787 @item
20788 Run an analysis with @command{ffmpeg}:
20789 @example
20790 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
20791 @end example
20792 @end itemize
20793
20794 @section interleave, ainterleave
20795
20796 Temporally interleave frames from several inputs.
20797
20798 @code{interleave} works with video inputs, @code{ainterleave} with audio.
20799
20800 These filters read frames from several inputs and send the oldest
20801 queued frame to the output.
20802
20803 Input streams must have well defined, monotonically increasing frame
20804 timestamp values.
20805
20806 In order to submit one frame to output, these filters need to enqueue
20807 at least one frame for each input, so they cannot work in case one
20808 input is not yet terminated and will not receive incoming frames.
20809
20810 For example consider the case when one input is a @code{select} filter
20811 which always drops input frames. The @code{interleave} filter will keep
20812 reading from that input, but it will never be able to send new frames
20813 to output until the input sends an end-of-stream signal.
20814
20815 Also, depending on inputs synchronization, the filters will drop
20816 frames in case one input receives more frames than the other ones, and
20817 the queue is already filled.
20818
20819 These filters accept the following options:
20820
20821 @table @option
20822 @item nb_inputs, n
20823 Set the number of different inputs, it is 2 by default.
20824 @end table
20825
20826 @subsection Examples
20827
20828 @itemize
20829 @item
20830 Interleave frames belonging to different streams using @command{ffmpeg}:
20831 @example
20832 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
20833 @end example
20834
20835 @item
20836 Add flickering blur effect:
20837 @example
20838 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
20839 @end example
20840 @end itemize
20841
20842 @section metadata, ametadata
20843
20844 Manipulate frame metadata.
20845
20846 This filter accepts the following options:
20847
20848 @table @option
20849 @item mode
20850 Set mode of operation of the filter.
20851
20852 Can be one of the following:
20853
20854 @table @samp
20855 @item select
20856 If both @code{value} and @code{key} is set, select frames
20857 which have such metadata. If only @code{key} is set, select
20858 every frame that has such key in metadata.
20859
20860 @item add
20861 Add new metadata @code{key} and @code{value}. If key is already available
20862 do nothing.
20863
20864 @item modify
20865 Modify value of already present key.
20866
20867 @item delete
20868 If @code{value} is set, delete only keys that have such value.
20869 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
20870 the frame.
20871
20872 @item print
20873 Print key and its value if metadata was found. If @code{key} is not set print all
20874 metadata values available in frame.
20875 @end table
20876
20877 @item key
20878 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
20879
20880 @item value
20881 Set metadata value which will be used. This option is mandatory for
20882 @code{modify} and @code{add} mode.
20883
20884 @item function
20885 Which function to use when comparing metadata value and @code{value}.
20886
20887 Can be one of following:
20888
20889 @table @samp
20890 @item same_str
20891 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
20892
20893 @item starts_with
20894 Values are interpreted as strings, returns true if metadata value starts with
20895 the @code{value} option string.
20896
20897 @item less
20898 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
20899
20900 @item equal
20901 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
20902
20903 @item greater
20904 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
20905
20906 @item expr
20907 Values are interpreted as floats, returns true if expression from option @code{expr}
20908 evaluates to true.
20909 @end table
20910
20911 @item expr
20912 Set expression which is used when @code{function} is set to @code{expr}.
20913 The expression is evaluated through the eval API and can contain the following
20914 constants:
20915
20916 @table @option
20917 @item VALUE1
20918 Float representation of @code{value} from metadata key.
20919
20920 @item VALUE2
20921 Float representation of @code{value} as supplied by user in @code{value} option.
20922 @end table
20923
20924 @item file
20925 If specified in @code{print} mode, output is written to the named file. Instead of
20926 plain filename any writable url can be specified. Filename ``-'' is a shorthand
20927 for standard output. If @code{file} option is not set, output is written to the log
20928 with AV_LOG_INFO loglevel.
20929
20930 @end table
20931
20932 @subsection Examples
20933
20934 @itemize
20935 @item
20936 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
20937 between 0 and 1.
20938 @example
20939 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
20940 @end example
20941 @item
20942 Print silencedetect output to file @file{metadata.txt}.
20943 @example
20944 silencedetect,ametadata=mode=print:file=metadata.txt
20945 @end example
20946 @item
20947 Direct all metadata to a pipe with file descriptor 4.
20948 @example
20949 metadata=mode=print:file='pipe\:4'
20950 @end example
20951 @end itemize
20952
20953 @section perms, aperms
20954
20955 Set read/write permissions for the output frames.
20956
20957 These filters are mainly aimed at developers to test direct path in the
20958 following filter in the filtergraph.
20959
20960 The filters accept the following options:
20961
20962 @table @option
20963 @item mode
20964 Select the permissions mode.
20965
20966 It accepts the following values:
20967 @table @samp
20968 @item none
20969 Do nothing. This is the default.
20970 @item ro
20971 Set all the output frames read-only.
20972 @item rw
20973 Set all the output frames directly writable.
20974 @item toggle
20975 Make the frame read-only if writable, and writable if read-only.
20976 @item random
20977 Set each output frame read-only or writable randomly.
20978 @end table
20979
20980 @item seed
20981 Set the seed for the @var{random} mode, must be an integer included between
20982 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
20983 @code{-1}, the filter will try to use a good random seed on a best effort
20984 basis.
20985 @end table
20986
20987 Note: in case of auto-inserted filter between the permission filter and the
20988 following one, the permission might not be received as expected in that
20989 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
20990 perms/aperms filter can avoid this problem.
20991
20992 @section realtime, arealtime
20993
20994 Slow down filtering to match real time approximately.
20995
20996 These filters will pause the filtering for a variable amount of time to
20997 match the output rate with the input timestamps.
20998 They are similar to the @option{re} option to @code{ffmpeg}.
20999
21000 They accept the following options:
21001
21002 @table @option
21003 @item limit
21004 Time limit for the pauses. Any pause longer than that will be considered
21005 a timestamp discontinuity and reset the timer. Default is 2 seconds.
21006 @end table
21007
21008 @anchor{select}
21009 @section select, aselect
21010
21011 Select frames to pass in output.
21012
21013 This filter accepts the following options:
21014
21015 @table @option
21016
21017 @item expr, e
21018 Set expression, which is evaluated for each input frame.
21019
21020 If the expression is evaluated to zero, the frame is discarded.
21021
21022 If the evaluation result is negative or NaN, the frame is sent to the
21023 first output; otherwise it is sent to the output with index
21024 @code{ceil(val)-1}, assuming that the input index starts from 0.
21025
21026 For example a value of @code{1.2} corresponds to the output with index
21027 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
21028
21029 @item outputs, n
21030 Set the number of outputs. The output to which to send the selected
21031 frame is based on the result of the evaluation. Default value is 1.
21032 @end table
21033
21034 The expression can contain the following constants:
21035
21036 @table @option
21037 @item n
21038 The (sequential) number of the filtered frame, starting from 0.
21039
21040 @item selected_n
21041 The (sequential) number of the selected frame, starting from 0.
21042
21043 @item prev_selected_n
21044 The sequential number of the last selected frame. It's NAN if undefined.
21045
21046 @item TB
21047 The timebase of the input timestamps.
21048
21049 @item pts
21050 The PTS (Presentation TimeStamp) of the filtered video frame,
21051 expressed in @var{TB} units. It's NAN if undefined.
21052
21053 @item t
21054 The PTS of the filtered video frame,
21055 expressed in seconds. It's NAN if undefined.
21056
21057 @item prev_pts
21058 The PTS of the previously filtered video frame. It's NAN if undefined.
21059
21060 @item prev_selected_pts
21061 The PTS of the last previously filtered video frame. It's NAN if undefined.
21062
21063 @item prev_selected_t
21064 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
21065
21066 @item start_pts
21067 The PTS of the first video frame in the video. It's NAN if undefined.
21068
21069 @item start_t
21070 The time of the first video frame in the video. It's NAN if undefined.
21071
21072 @item pict_type @emph{(video only)}
21073 The type of the filtered frame. It can assume one of the following
21074 values:
21075 @table @option
21076 @item I
21077 @item P
21078 @item B
21079 @item S
21080 @item SI
21081 @item SP
21082 @item BI
21083 @end table
21084
21085 @item interlace_type @emph{(video only)}
21086 The frame interlace type. It can assume one of the following values:
21087 @table @option
21088 @item PROGRESSIVE
21089 The frame is progressive (not interlaced).
21090 @item TOPFIRST
21091 The frame is top-field-first.
21092 @item BOTTOMFIRST
21093 The frame is bottom-field-first.
21094 @end table
21095
21096 @item consumed_sample_n @emph{(audio only)}
21097 the number of selected samples before the current frame
21098
21099 @item samples_n @emph{(audio only)}
21100 the number of samples in the current frame
21101
21102 @item sample_rate @emph{(audio only)}
21103 the input sample rate
21104
21105 @item key
21106 This is 1 if the filtered frame is a key-frame, 0 otherwise.
21107
21108 @item pos
21109 the position in the file of the filtered frame, -1 if the information
21110 is not available (e.g. for synthetic video)
21111
21112 @item scene @emph{(video only)}
21113 value between 0 and 1 to indicate a new scene; a low value reflects a low
21114 probability for the current frame to introduce a new scene, while a higher
21115 value means the current frame is more likely to be one (see the example below)
21116
21117 @item concatdec_select
21118 The concat demuxer can select only part of a concat input file by setting an
21119 inpoint and an outpoint, but the output packets may not be entirely contained
21120 in the selected interval. By using this variable, it is possible to skip frames
21121 generated by the concat demuxer which are not exactly contained in the selected
21122 interval.
21123
21124 This works by comparing the frame pts against the @var{lavf.concat.start_time}
21125 and the @var{lavf.concat.duration} packet metadata values which are also
21126 present in the decoded frames.
21127
21128 The @var{concatdec_select} variable is -1 if the frame pts is at least
21129 start_time and either the duration metadata is missing or the frame pts is less
21130 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
21131 missing.
21132
21133 That basically means that an input frame is selected if its pts is within the
21134 interval set by the concat demuxer.
21135
21136 @end table
21137
21138 The default value of the select expression is "1".
21139
21140 @subsection Examples
21141
21142 @itemize
21143 @item
21144 Select all frames in input:
21145 @example
21146 select
21147 @end example
21148
21149 The example above is the same as:
21150 @example
21151 select=1
21152 @end example
21153
21154 @item
21155 Skip all frames:
21156 @example
21157 select=0
21158 @end example
21159
21160 @item
21161 Select only I-frames:
21162 @example
21163 select='eq(pict_type\,I)'
21164 @end example
21165
21166 @item
21167 Select one frame every 100:
21168 @example
21169 select='not(mod(n\,100))'
21170 @end example
21171
21172 @item
21173 Select only frames contained in the 10-20 time interval:
21174 @example
21175 select=between(t\,10\,20)
21176 @end example
21177
21178 @item
21179 Select only I-frames contained in the 10-20 time interval:
21180 @example
21181 select=between(t\,10\,20)*eq(pict_type\,I)
21182 @end example
21183
21184 @item
21185 Select frames with a minimum distance of 10 seconds:
21186 @example
21187 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
21188 @end example
21189
21190 @item
21191 Use aselect to select only audio frames with samples number > 100:
21192 @example
21193 aselect='gt(samples_n\,100)'
21194 @end example
21195
21196 @item
21197 Create a mosaic of the first scenes:
21198 @example
21199 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
21200 @end example
21201
21202 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
21203 choice.
21204
21205 @item
21206 Send even and odd frames to separate outputs, and compose them:
21207 @example
21208 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
21209 @end example
21210
21211 @item
21212 Select useful frames from an ffconcat file which is using inpoints and
21213 outpoints but where the source files are not intra frame only.
21214 @example
21215 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
21216 @end example
21217 @end itemize
21218
21219 @section sendcmd, asendcmd
21220
21221 Send commands to filters in the filtergraph.
21222
21223 These filters read commands to be sent to other filters in the
21224 filtergraph.
21225
21226 @code{sendcmd} must be inserted between two video filters,
21227 @code{asendcmd} must be inserted between two audio filters, but apart
21228 from that they act the same way.
21229
21230 The specification of commands can be provided in the filter arguments
21231 with the @var{commands} option, or in a file specified by the
21232 @var{filename} option.
21233
21234 These filters accept the following options:
21235 @table @option
21236 @item commands, c
21237 Set the commands to be read and sent to the other filters.
21238 @item filename, f
21239 Set the filename of the commands to be read and sent to the other
21240 filters.
21241 @end table
21242
21243 @subsection Commands syntax
21244
21245 A commands description consists of a sequence of interval
21246 specifications, comprising a list of commands to be executed when a
21247 particular event related to that interval occurs. The occurring event
21248 is typically the current frame time entering or leaving a given time
21249 interval.
21250
21251 An interval is specified by the following syntax:
21252 @example
21253 @var{START}[-@var{END}] @var{COMMANDS};
21254 @end example
21255
21256 The time interval is specified by the @var{START} and @var{END} times.
21257 @var{END} is optional and defaults to the maximum time.
21258
21259 The current frame time is considered within the specified interval if
21260 it is included in the interval [@var{START}, @var{END}), that is when
21261 the time is greater or equal to @var{START} and is lesser than
21262 @var{END}.
21263
21264 @var{COMMANDS} consists of a sequence of one or more command
21265 specifications, separated by ",", relating to that interval.  The
21266 syntax of a command specification is given by:
21267 @example
21268 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
21269 @end example
21270
21271 @var{FLAGS} is optional and specifies the type of events relating to
21272 the time interval which enable sending the specified command, and must
21273 be a non-null sequence of identifier flags separated by "+" or "|" and
21274 enclosed between "[" and "]".
21275
21276 The following flags are recognized:
21277 @table @option
21278 @item enter
21279 The command is sent when the current frame timestamp enters the
21280 specified interval. In other words, the command is sent when the
21281 previous frame timestamp was not in the given interval, and the
21282 current is.
21283
21284 @item leave
21285 The command is sent when the current frame timestamp leaves the
21286 specified interval. In other words, the command is sent when the
21287 previous frame timestamp was in the given interval, and the
21288 current is not.
21289 @end table
21290
21291 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
21292 assumed.
21293
21294 @var{TARGET} specifies the target of the command, usually the name of
21295 the filter class or a specific filter instance name.
21296
21297 @var{COMMAND} specifies the name of the command for the target filter.
21298
21299 @var{ARG} is optional and specifies the optional list of argument for
21300 the given @var{COMMAND}.
21301
21302 Between one interval specification and another, whitespaces, or
21303 sequences of characters starting with @code{#} until the end of line,
21304 are ignored and can be used to annotate comments.
21305
21306 A simplified BNF description of the commands specification syntax
21307 follows:
21308 @example
21309 @var{COMMAND_FLAG}  ::= "enter" | "leave"
21310 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
21311 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
21312 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
21313 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
21314 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
21315 @end example
21316
21317 @subsection Examples
21318
21319 @itemize
21320 @item
21321 Specify audio tempo change at second 4:
21322 @example
21323 asendcmd=c='4.0 atempo tempo 1.5',atempo
21324 @end example
21325
21326 @item
21327 Target a specific filter instance:
21328 @example
21329 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
21330 @end example
21331
21332 @item
21333 Specify a list of drawtext and hue commands in a file.
21334 @example
21335 # show text in the interval 5-10
21336 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
21337          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
21338
21339 # desaturate the image in the interval 15-20
21340 15.0-20.0 [enter] hue s 0,
21341           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
21342           [leave] hue s 1,
21343           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
21344
21345 # apply an exponential saturation fade-out effect, starting from time 25
21346 25 [enter] hue s exp(25-t)
21347 @end example
21348
21349 A filtergraph allowing to read and process the above command list
21350 stored in a file @file{test.cmd}, can be specified with:
21351 @example
21352 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
21353 @end example
21354 @end itemize
21355
21356 @anchor{setpts}
21357 @section setpts, asetpts
21358
21359 Change the PTS (presentation timestamp) of the input frames.
21360
21361 @code{setpts} works on video frames, @code{asetpts} on audio frames.
21362
21363 This filter accepts the following options:
21364
21365 @table @option
21366
21367 @item expr
21368 The expression which is evaluated for each frame to construct its timestamp.
21369
21370 @end table
21371
21372 The expression is evaluated through the eval API and can contain the following
21373 constants:
21374
21375 @table @option
21376 @item FRAME_RATE, FR
21377 frame rate, only defined for constant frame-rate video
21378
21379 @item PTS
21380 The presentation timestamp in input
21381
21382 @item N
21383 The count of the input frame for video or the number of consumed samples,
21384 not including the current frame for audio, starting from 0.
21385
21386 @item NB_CONSUMED_SAMPLES
21387 The number of consumed samples, not including the current frame (only
21388 audio)
21389
21390 @item NB_SAMPLES, S
21391 The number of samples in the current frame (only audio)
21392
21393 @item SAMPLE_RATE, SR
21394 The audio sample rate.
21395
21396 @item STARTPTS
21397 The PTS of the first frame.
21398
21399 @item STARTT
21400 the time in seconds of the first frame
21401
21402 @item INTERLACED
21403 State whether the current frame is interlaced.
21404
21405 @item T
21406 the time in seconds of the current frame
21407
21408 @item POS
21409 original position in the file of the frame, or undefined if undefined
21410 for the current frame
21411
21412 @item PREV_INPTS
21413 The previous input PTS.
21414
21415 @item PREV_INT
21416 previous input time in seconds
21417
21418 @item PREV_OUTPTS
21419 The previous output PTS.
21420
21421 @item PREV_OUTT
21422 previous output time in seconds
21423
21424 @item RTCTIME
21425 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
21426 instead.
21427
21428 @item RTCSTART
21429 The wallclock (RTC) time at the start of the movie in microseconds.
21430
21431 @item TB
21432 The timebase of the input timestamps.
21433
21434 @end table
21435
21436 @subsection Examples
21437
21438 @itemize
21439 @item
21440 Start counting PTS from zero
21441 @example
21442 setpts=PTS-STARTPTS
21443 @end example
21444
21445 @item
21446 Apply fast motion effect:
21447 @example
21448 setpts=0.5*PTS
21449 @end example
21450
21451 @item
21452 Apply slow motion effect:
21453 @example
21454 setpts=2.0*PTS
21455 @end example
21456
21457 @item
21458 Set fixed rate of 25 frames per second:
21459 @example
21460 setpts=N/(25*TB)
21461 @end example
21462
21463 @item
21464 Set fixed rate 25 fps with some jitter:
21465 @example
21466 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
21467 @end example
21468
21469 @item
21470 Apply an offset of 10 seconds to the input PTS:
21471 @example
21472 setpts=PTS+10/TB
21473 @end example
21474
21475 @item
21476 Generate timestamps from a "live source" and rebase onto the current timebase:
21477 @example
21478 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
21479 @end example
21480
21481 @item
21482 Generate timestamps by counting samples:
21483 @example
21484 asetpts=N/SR/TB
21485 @end example
21486
21487 @end itemize
21488
21489 @section setrange
21490
21491 Force color range for the output video frame.
21492
21493 The @code{setrange} filter marks the color range property for the
21494 output frames. It does not change the input frame, but only sets the
21495 corresponding property, which affects how the frame is treated by
21496 following filters.
21497
21498 The filter accepts the following options:
21499
21500 @table @option
21501
21502 @item range
21503 Available values are:
21504
21505 @table @samp
21506 @item auto
21507 Keep the same color range property.
21508
21509 @item unspecified, unknown
21510 Set the color range as unspecified.
21511
21512 @item limited, tv, mpeg
21513 Set the color range as limited.
21514
21515 @item full, pc, jpeg
21516 Set the color range as full.
21517 @end table
21518 @end table
21519
21520 @section settb, asettb
21521
21522 Set the timebase to use for the output frames timestamps.
21523 It is mainly useful for testing timebase configuration.
21524
21525 It accepts the following parameters:
21526
21527 @table @option
21528
21529 @item expr, tb
21530 The expression which is evaluated into the output timebase.
21531
21532 @end table
21533
21534 The value for @option{tb} is an arithmetic expression representing a
21535 rational. The expression can contain the constants "AVTB" (the default
21536 timebase), "intb" (the input timebase) and "sr" (the sample rate,
21537 audio only). Default value is "intb".
21538
21539 @subsection Examples
21540
21541 @itemize
21542 @item
21543 Set the timebase to 1/25:
21544 @example
21545 settb=expr=1/25
21546 @end example
21547
21548 @item
21549 Set the timebase to 1/10:
21550 @example
21551 settb=expr=0.1
21552 @end example
21553
21554 @item
21555 Set the timebase to 1001/1000:
21556 @example
21557 settb=1+0.001
21558 @end example
21559
21560 @item
21561 Set the timebase to 2*intb:
21562 @example
21563 settb=2*intb
21564 @end example
21565
21566 @item
21567 Set the default timebase value:
21568 @example
21569 settb=AVTB
21570 @end example
21571 @end itemize
21572
21573 @section showcqt
21574 Convert input audio to a video output representing frequency spectrum
21575 logarithmically using Brown-Puckette constant Q transform algorithm with
21576 direct frequency domain coefficient calculation (but the transform itself
21577 is not really constant Q, instead the Q factor is actually variable/clamped),
21578 with musical tone scale, from E0 to D#10.
21579
21580 The filter accepts the following options:
21581
21582 @table @option
21583 @item size, s
21584 Specify the video size for the output. It must be even. For the syntax of this option,
21585 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21586 Default value is @code{1920x1080}.
21587
21588 @item fps, rate, r
21589 Set the output frame rate. Default value is @code{25}.
21590
21591 @item bar_h
21592 Set the bargraph height. It must be even. Default value is @code{-1} which
21593 computes the bargraph height automatically.
21594
21595 @item axis_h
21596 Set the axis height. It must be even. Default value is @code{-1} which computes
21597 the axis height automatically.
21598
21599 @item sono_h
21600 Set the sonogram height. It must be even. Default value is @code{-1} which
21601 computes the sonogram height automatically.
21602
21603 @item fullhd
21604 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
21605 instead. Default value is @code{1}.
21606
21607 @item sono_v, volume
21608 Specify the sonogram volume expression. It can contain variables:
21609 @table @option
21610 @item bar_v
21611 the @var{bar_v} evaluated expression
21612 @item frequency, freq, f
21613 the frequency where it is evaluated
21614 @item timeclamp, tc
21615 the value of @var{timeclamp} option
21616 @end table
21617 and functions:
21618 @table @option
21619 @item a_weighting(f)
21620 A-weighting of equal loudness
21621 @item b_weighting(f)
21622 B-weighting of equal loudness
21623 @item c_weighting(f)
21624 C-weighting of equal loudness.
21625 @end table
21626 Default value is @code{16}.
21627
21628 @item bar_v, volume2
21629 Specify the bargraph volume expression. It can contain variables:
21630 @table @option
21631 @item sono_v
21632 the @var{sono_v} evaluated expression
21633 @item frequency, freq, f
21634 the frequency where it is evaluated
21635 @item timeclamp, tc
21636 the value of @var{timeclamp} option
21637 @end table
21638 and functions:
21639 @table @option
21640 @item a_weighting(f)
21641 A-weighting of equal loudness
21642 @item b_weighting(f)
21643 B-weighting of equal loudness
21644 @item c_weighting(f)
21645 C-weighting of equal loudness.
21646 @end table
21647 Default value is @code{sono_v}.
21648
21649 @item sono_g, gamma
21650 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
21651 higher gamma makes the spectrum having more range. Default value is @code{3}.
21652 Acceptable range is @code{[1, 7]}.
21653
21654 @item bar_g, gamma2
21655 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
21656 @code{[1, 7]}.
21657
21658 @item bar_t
21659 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
21660 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
21661
21662 @item timeclamp, tc
21663 Specify the transform timeclamp. At low frequency, there is trade-off between
21664 accuracy in time domain and frequency domain. If timeclamp is lower,
21665 event in time domain is represented more accurately (such as fast bass drum),
21666 otherwise event in frequency domain is represented more accurately
21667 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
21668
21669 @item attack
21670 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
21671 limits future samples by applying asymmetric windowing in time domain, useful
21672 when low latency is required. Accepted range is @code{[0, 1]}.
21673
21674 @item basefreq
21675 Specify the transform base frequency. Default value is @code{20.01523126408007475},
21676 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
21677
21678 @item endfreq
21679 Specify the transform end frequency. Default value is @code{20495.59681441799654},
21680 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
21681
21682 @item coeffclamp
21683 This option is deprecated and ignored.
21684
21685 @item tlength
21686 Specify the transform length in time domain. Use this option to control accuracy
21687 trade-off between time domain and frequency domain at every frequency sample.
21688 It can contain variables:
21689 @table @option
21690 @item frequency, freq, f
21691 the frequency where it is evaluated
21692 @item timeclamp, tc
21693 the value of @var{timeclamp} option.
21694 @end table
21695 Default value is @code{384*tc/(384+tc*f)}.
21696
21697 @item count
21698 Specify the transform count for every video frame. Default value is @code{6}.
21699 Acceptable range is @code{[1, 30]}.
21700
21701 @item fcount
21702 Specify the transform count for every single pixel. Default value is @code{0},
21703 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
21704
21705 @item fontfile
21706 Specify font file for use with freetype to draw the axis. If not specified,
21707 use embedded font. Note that drawing with font file or embedded font is not
21708 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
21709 option instead.
21710
21711 @item font
21712 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
21713 The : in the pattern may be replaced by | to avoid unnecessary escaping.
21714
21715 @item fontcolor
21716 Specify font color expression. This is arithmetic expression that should return
21717 integer value 0xRRGGBB. It can contain variables:
21718 @table @option
21719 @item frequency, freq, f
21720 the frequency where it is evaluated
21721 @item timeclamp, tc
21722 the value of @var{timeclamp} option
21723 @end table
21724 and functions:
21725 @table @option
21726 @item midi(f)
21727 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
21728 @item r(x), g(x), b(x)
21729 red, green, and blue value of intensity x.
21730 @end table
21731 Default value is @code{st(0, (midi(f)-59.5)/12);
21732 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
21733 r(1-ld(1)) + b(ld(1))}.
21734
21735 @item axisfile
21736 Specify image file to draw the axis. This option override @var{fontfile} and
21737 @var{fontcolor} option.
21738
21739 @item axis, text
21740 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
21741 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
21742 Default value is @code{1}.
21743
21744 @item csp
21745 Set colorspace. The accepted values are:
21746 @table @samp
21747 @item unspecified
21748 Unspecified (default)
21749
21750 @item bt709
21751 BT.709
21752
21753 @item fcc
21754 FCC
21755
21756 @item bt470bg
21757 BT.470BG or BT.601-6 625
21758
21759 @item smpte170m
21760 SMPTE-170M or BT.601-6 525
21761
21762 @item smpte240m
21763 SMPTE-240M
21764
21765 @item bt2020ncl
21766 BT.2020 with non-constant luminance
21767
21768 @end table
21769
21770 @item cscheme
21771 Set spectrogram color scheme. This is list of floating point values with format
21772 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
21773 The default is @code{1|0.5|0|0|0.5|1}.
21774
21775 @end table
21776
21777 @subsection Examples
21778
21779 @itemize
21780 @item
21781 Playing audio while showing the spectrum:
21782 @example
21783 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
21784 @end example
21785
21786 @item
21787 Same as above, but with frame rate 30 fps:
21788 @example
21789 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
21790 @end example
21791
21792 @item
21793 Playing at 1280x720:
21794 @example
21795 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
21796 @end example
21797
21798 @item
21799 Disable sonogram display:
21800 @example
21801 sono_h=0
21802 @end example
21803
21804 @item
21805 A1 and its harmonics: A1, A2, (near)E3, A3:
21806 @example
21807 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),
21808                  asplit[a][out1]; [a] showcqt [out0]'
21809 @end example
21810
21811 @item
21812 Same as above, but with more accuracy in frequency domain:
21813 @example
21814 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),
21815                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
21816 @end example
21817
21818 @item
21819 Custom volume:
21820 @example
21821 bar_v=10:sono_v=bar_v*a_weighting(f)
21822 @end example
21823
21824 @item
21825 Custom gamma, now spectrum is linear to the amplitude.
21826 @example
21827 bar_g=2:sono_g=2
21828 @end example
21829
21830 @item
21831 Custom tlength equation:
21832 @example
21833 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)))'
21834 @end example
21835
21836 @item
21837 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
21838 @example
21839 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
21840 @end example
21841
21842 @item
21843 Custom font using fontconfig:
21844 @example
21845 font='Courier New,Monospace,mono|bold'
21846 @end example
21847
21848 @item
21849 Custom frequency range with custom axis using image file:
21850 @example
21851 axisfile=myaxis.png:basefreq=40:endfreq=10000
21852 @end example
21853 @end itemize
21854
21855 @section showfreqs
21856
21857 Convert input audio to video output representing the audio power spectrum.
21858 Audio amplitude is on Y-axis while frequency is on X-axis.
21859
21860 The filter accepts the following options:
21861
21862 @table @option
21863 @item size, s
21864 Specify size of video. For the syntax of this option, check the
21865 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21866 Default is @code{1024x512}.
21867
21868 @item mode
21869 Set display mode.
21870 This set how each frequency bin will be represented.
21871
21872 It accepts the following values:
21873 @table @samp
21874 @item line
21875 @item bar
21876 @item dot
21877 @end table
21878 Default is @code{bar}.
21879
21880 @item ascale
21881 Set amplitude scale.
21882
21883 It accepts the following values:
21884 @table @samp
21885 @item lin
21886 Linear scale.
21887
21888 @item sqrt
21889 Square root scale.
21890
21891 @item cbrt
21892 Cubic root scale.
21893
21894 @item log
21895 Logarithmic scale.
21896 @end table
21897 Default is @code{log}.
21898
21899 @item fscale
21900 Set frequency scale.
21901
21902 It accepts the following values:
21903 @table @samp
21904 @item lin
21905 Linear scale.
21906
21907 @item log
21908 Logarithmic scale.
21909
21910 @item rlog
21911 Reverse logarithmic scale.
21912 @end table
21913 Default is @code{lin}.
21914
21915 @item win_size
21916 Set window size.
21917
21918 It accepts the following values:
21919 @table @samp
21920 @item w16
21921 @item w32
21922 @item w64
21923 @item w128
21924 @item w256
21925 @item w512
21926 @item w1024
21927 @item w2048
21928 @item w4096
21929 @item w8192
21930 @item w16384
21931 @item w32768
21932 @item w65536
21933 @end table
21934 Default is @code{w2048}
21935
21936 @item win_func
21937 Set windowing function.
21938
21939 It accepts the following values:
21940 @table @samp
21941 @item rect
21942 @item bartlett
21943 @item hanning
21944 @item hamming
21945 @item blackman
21946 @item welch
21947 @item flattop
21948 @item bharris
21949 @item bnuttall
21950 @item bhann
21951 @item sine
21952 @item nuttall
21953 @item lanczos
21954 @item gauss
21955 @item tukey
21956 @item dolph
21957 @item cauchy
21958 @item parzen
21959 @item poisson
21960 @item bohman
21961 @end table
21962 Default is @code{hanning}.
21963
21964 @item overlap
21965 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
21966 which means optimal overlap for selected window function will be picked.
21967
21968 @item averaging
21969 Set time averaging. Setting this to 0 will display current maximal peaks.
21970 Default is @code{1}, which means time averaging is disabled.
21971
21972 @item colors
21973 Specify list of colors separated by space or by '|' which will be used to
21974 draw channel frequencies. Unrecognized or missing colors will be replaced
21975 by white color.
21976
21977 @item cmode
21978 Set channel display mode.
21979
21980 It accepts the following values:
21981 @table @samp
21982 @item combined
21983 @item separate
21984 @end table
21985 Default is @code{combined}.
21986
21987 @item minamp
21988 Set minimum amplitude used in @code{log} amplitude scaler.
21989
21990 @end table
21991
21992 @anchor{showspectrum}
21993 @section showspectrum
21994
21995 Convert input audio to a video output, representing the audio frequency
21996 spectrum.
21997
21998 The filter accepts the following options:
21999
22000 @table @option
22001 @item size, s
22002 Specify the video size for the output. For the syntax of this option, check the
22003 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22004 Default value is @code{640x512}.
22005
22006 @item slide
22007 Specify how the spectrum should slide along the window.
22008
22009 It accepts the following values:
22010 @table @samp
22011 @item replace
22012 the samples start again on the left when they reach the right
22013 @item scroll
22014 the samples scroll from right to left
22015 @item fullframe
22016 frames are only produced when the samples reach the right
22017 @item rscroll
22018 the samples scroll from left to right
22019 @end table
22020
22021 Default value is @code{replace}.
22022
22023 @item mode
22024 Specify display mode.
22025
22026 It accepts the following values:
22027 @table @samp
22028 @item combined
22029 all channels are displayed in the same row
22030 @item separate
22031 all channels are displayed in separate rows
22032 @end table
22033
22034 Default value is @samp{combined}.
22035
22036 @item color
22037 Specify display color mode.
22038
22039 It accepts the following values:
22040 @table @samp
22041 @item channel
22042 each channel is displayed in a separate color
22043 @item intensity
22044 each channel is displayed using the same color scheme
22045 @item rainbow
22046 each channel is displayed using the rainbow color scheme
22047 @item moreland
22048 each channel is displayed using the moreland color scheme
22049 @item nebulae
22050 each channel is displayed using the nebulae color scheme
22051 @item fire
22052 each channel is displayed using the fire color scheme
22053 @item fiery
22054 each channel is displayed using the fiery color scheme
22055 @item fruit
22056 each channel is displayed using the fruit color scheme
22057 @item cool
22058 each channel is displayed using the cool color scheme
22059 @item magma
22060 each channel is displayed using the magma color scheme
22061 @item green
22062 each channel is displayed using the green color scheme
22063 @item viridis
22064 each channel is displayed using the viridis color scheme
22065 @item plasma
22066 each channel is displayed using the plasma color scheme
22067 @item cividis
22068 each channel is displayed using the cividis color scheme
22069 @item terrain
22070 each channel is displayed using the terrain color scheme
22071 @end table
22072
22073 Default value is @samp{channel}.
22074
22075 @item scale
22076 Specify scale used for calculating intensity color values.
22077
22078 It accepts the following values:
22079 @table @samp
22080 @item lin
22081 linear
22082 @item sqrt
22083 square root, default
22084 @item cbrt
22085 cubic root
22086 @item log
22087 logarithmic
22088 @item 4thrt
22089 4th root
22090 @item 5thrt
22091 5th root
22092 @end table
22093
22094 Default value is @samp{sqrt}.
22095
22096 @item saturation
22097 Set saturation modifier for displayed colors. Negative values provide
22098 alternative color scheme. @code{0} is no saturation at all.
22099 Saturation must be in [-10.0, 10.0] range.
22100 Default value is @code{1}.
22101
22102 @item win_func
22103 Set window function.
22104
22105 It accepts the following values:
22106 @table @samp
22107 @item rect
22108 @item bartlett
22109 @item hann
22110 @item hanning
22111 @item hamming
22112 @item blackman
22113 @item welch
22114 @item flattop
22115 @item bharris
22116 @item bnuttall
22117 @item bhann
22118 @item sine
22119 @item nuttall
22120 @item lanczos
22121 @item gauss
22122 @item tukey
22123 @item dolph
22124 @item cauchy
22125 @item parzen
22126 @item poisson
22127 @item bohman
22128 @end table
22129
22130 Default value is @code{hann}.
22131
22132 @item orientation
22133 Set orientation of time vs frequency axis. Can be @code{vertical} or
22134 @code{horizontal}. Default is @code{vertical}.
22135
22136 @item overlap
22137 Set ratio of overlap window. Default value is @code{0}.
22138 When value is @code{1} overlap is set to recommended size for specific
22139 window function currently used.
22140
22141 @item gain
22142 Set scale gain for calculating intensity color values.
22143 Default value is @code{1}.
22144
22145 @item data
22146 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
22147
22148 @item rotation
22149 Set color rotation, must be in [-1.0, 1.0] range.
22150 Default value is @code{0}.
22151
22152 @item start
22153 Set start frequency from which to display spectrogram. Default is @code{0}.
22154
22155 @item stop
22156 Set stop frequency to which to display spectrogram. Default is @code{0}.
22157
22158 @item fps
22159 Set upper frame rate limit. Default is @code{auto}, unlimited.
22160
22161 @item legend
22162 Draw time and frequency axes and legends. Default is disabled.
22163 @end table
22164
22165 The usage is very similar to the showwaves filter; see the examples in that
22166 section.
22167
22168 @subsection Examples
22169
22170 @itemize
22171 @item
22172 Large window with logarithmic color scaling:
22173 @example
22174 showspectrum=s=1280x480:scale=log
22175 @end example
22176
22177 @item
22178 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
22179 @example
22180 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22181              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
22182 @end example
22183 @end itemize
22184
22185 @section showspectrumpic
22186
22187 Convert input audio to a single video frame, representing the audio frequency
22188 spectrum.
22189
22190 The filter accepts the following options:
22191
22192 @table @option
22193 @item size, s
22194 Specify the video size for the output. For the syntax of this option, check the
22195 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22196 Default value is @code{4096x2048}.
22197
22198 @item mode
22199 Specify display mode.
22200
22201 It accepts the following values:
22202 @table @samp
22203 @item combined
22204 all channels are displayed in the same row
22205 @item separate
22206 all channels are displayed in separate rows
22207 @end table
22208 Default value is @samp{combined}.
22209
22210 @item color
22211 Specify display color mode.
22212
22213 It accepts the following values:
22214 @table @samp
22215 @item channel
22216 each channel is displayed in a separate color
22217 @item intensity
22218 each channel is displayed using the same color scheme
22219 @item rainbow
22220 each channel is displayed using the rainbow color scheme
22221 @item moreland
22222 each channel is displayed using the moreland color scheme
22223 @item nebulae
22224 each channel is displayed using the nebulae color scheme
22225 @item fire
22226 each channel is displayed using the fire color scheme
22227 @item fiery
22228 each channel is displayed using the fiery color scheme
22229 @item fruit
22230 each channel is displayed using the fruit color scheme
22231 @item cool
22232 each channel is displayed using the cool color scheme
22233 @item magma
22234 each channel is displayed using the magma color scheme
22235 @item green
22236 each channel is displayed using the green color scheme
22237 @item viridis
22238 each channel is displayed using the viridis color scheme
22239 @item plasma
22240 each channel is displayed using the plasma color scheme
22241 @item cividis
22242 each channel is displayed using the cividis color scheme
22243 @item terrain
22244 each channel is displayed using the terrain color scheme
22245 @end table
22246 Default value is @samp{intensity}.
22247
22248 @item scale
22249 Specify scale used for calculating intensity color values.
22250
22251 It accepts the following values:
22252 @table @samp
22253 @item lin
22254 linear
22255 @item sqrt
22256 square root, default
22257 @item cbrt
22258 cubic root
22259 @item log
22260 logarithmic
22261 @item 4thrt
22262 4th root
22263 @item 5thrt
22264 5th root
22265 @end table
22266 Default value is @samp{log}.
22267
22268 @item saturation
22269 Set saturation modifier for displayed colors. Negative values provide
22270 alternative color scheme. @code{0} is no saturation at all.
22271 Saturation must be in [-10.0, 10.0] range.
22272 Default value is @code{1}.
22273
22274 @item win_func
22275 Set window function.
22276
22277 It accepts the following values:
22278 @table @samp
22279 @item rect
22280 @item bartlett
22281 @item hann
22282 @item hanning
22283 @item hamming
22284 @item blackman
22285 @item welch
22286 @item flattop
22287 @item bharris
22288 @item bnuttall
22289 @item bhann
22290 @item sine
22291 @item nuttall
22292 @item lanczos
22293 @item gauss
22294 @item tukey
22295 @item dolph
22296 @item cauchy
22297 @item parzen
22298 @item poisson
22299 @item bohman
22300 @end table
22301 Default value is @code{hann}.
22302
22303 @item orientation
22304 Set orientation of time vs frequency axis. Can be @code{vertical} or
22305 @code{horizontal}. Default is @code{vertical}.
22306
22307 @item gain
22308 Set scale gain for calculating intensity color values.
22309 Default value is @code{1}.
22310
22311 @item legend
22312 Draw time and frequency axes and legends. Default is enabled.
22313
22314 @item rotation
22315 Set color rotation, must be in [-1.0, 1.0] range.
22316 Default value is @code{0}.
22317
22318 @item start
22319 Set start frequency from which to display spectrogram. Default is @code{0}.
22320
22321 @item stop
22322 Set stop frequency to which to display spectrogram. Default is @code{0}.
22323 @end table
22324
22325 @subsection Examples
22326
22327 @itemize
22328 @item
22329 Extract an audio spectrogram of a whole audio track
22330 in a 1024x1024 picture using @command{ffmpeg}:
22331 @example
22332 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
22333 @end example
22334 @end itemize
22335
22336 @section showvolume
22337
22338 Convert input audio volume to a video output.
22339
22340 The filter accepts the following options:
22341
22342 @table @option
22343 @item rate, r
22344 Set video rate.
22345
22346 @item b
22347 Set border width, allowed range is [0, 5]. Default is 1.
22348
22349 @item w
22350 Set channel width, allowed range is [80, 8192]. Default is 400.
22351
22352 @item h
22353 Set channel height, allowed range is [1, 900]. Default is 20.
22354
22355 @item f
22356 Set fade, allowed range is [0, 1]. Default is 0.95.
22357
22358 @item c
22359 Set volume color expression.
22360
22361 The expression can use the following variables:
22362
22363 @table @option
22364 @item VOLUME
22365 Current max volume of channel in dB.
22366
22367 @item PEAK
22368 Current peak.
22369
22370 @item CHANNEL
22371 Current channel number, starting from 0.
22372 @end table
22373
22374 @item t
22375 If set, displays channel names. Default is enabled.
22376
22377 @item v
22378 If set, displays volume values. Default is enabled.
22379
22380 @item o
22381 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
22382 default is @code{h}.
22383
22384 @item s
22385 Set step size, allowed range is [0, 5]. Default is 0, which means
22386 step is disabled.
22387
22388 @item p
22389 Set background opacity, allowed range is [0, 1]. Default is 0.
22390
22391 @item m
22392 Set metering mode, can be peak: @code{p} or rms: @code{r},
22393 default is @code{p}.
22394
22395 @item ds
22396 Set display scale, can be linear: @code{lin} or log: @code{log},
22397 default is @code{lin}.
22398
22399 @item dm
22400 In second.
22401 If set to > 0., display a line for the max level
22402 in the previous seconds.
22403 default is disabled: @code{0.}
22404
22405 @item dmc
22406 The color of the max line. Use when @code{dm} option is set to > 0.
22407 default is: @code{orange}
22408 @end table
22409
22410 @section showwaves
22411
22412 Convert input audio to a video output, representing the samples waves.
22413
22414 The filter accepts the following options:
22415
22416 @table @option
22417 @item size, s
22418 Specify the video size for the output. For the syntax of this option, check the
22419 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22420 Default value is @code{600x240}.
22421
22422 @item mode
22423 Set display mode.
22424
22425 Available values are:
22426 @table @samp
22427 @item point
22428 Draw a point for each sample.
22429
22430 @item line
22431 Draw a vertical line for each sample.
22432
22433 @item p2p
22434 Draw a point for each sample and a line between them.
22435
22436 @item cline
22437 Draw a centered vertical line for each sample.
22438 @end table
22439
22440 Default value is @code{point}.
22441
22442 @item n
22443 Set the number of samples which are printed on the same column. A
22444 larger value will decrease the frame rate. Must be a positive
22445 integer. This option can be set only if the value for @var{rate}
22446 is not explicitly specified.
22447
22448 @item rate, r
22449 Set the (approximate) output frame rate. This is done by setting the
22450 option @var{n}. Default value is "25".
22451
22452 @item split_channels
22453 Set if channels should be drawn separately or overlap. Default value is 0.
22454
22455 @item colors
22456 Set colors separated by '|' which are going to be used for drawing of each channel.
22457
22458 @item scale
22459 Set amplitude scale.
22460
22461 Available values are:
22462 @table @samp
22463 @item lin
22464 Linear.
22465
22466 @item log
22467 Logarithmic.
22468
22469 @item sqrt
22470 Square root.
22471
22472 @item cbrt
22473 Cubic root.
22474 @end table
22475
22476 Default is linear.
22477
22478 @item draw
22479 Set the draw mode. This is mostly useful to set for high @var{n}.
22480
22481 Available values are:
22482 @table @samp
22483 @item scale
22484 Scale pixel values for each drawn sample.
22485
22486 @item full
22487 Draw every sample directly.
22488 @end table
22489
22490 Default value is @code{scale}.
22491 @end table
22492
22493 @subsection Examples
22494
22495 @itemize
22496 @item
22497 Output the input file audio and the corresponding video representation
22498 at the same time:
22499 @example
22500 amovie=a.mp3,asplit[out0],showwaves[out1]
22501 @end example
22502
22503 @item
22504 Create a synthetic signal and show it with showwaves, forcing a
22505 frame rate of 30 frames per second:
22506 @example
22507 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
22508 @end example
22509 @end itemize
22510
22511 @section showwavespic
22512
22513 Convert input audio to a single video frame, representing the samples waves.
22514
22515 The filter accepts the following options:
22516
22517 @table @option
22518 @item size, s
22519 Specify the video size for the output. For the syntax of this option, check the
22520 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22521 Default value is @code{600x240}.
22522
22523 @item split_channels
22524 Set if channels should be drawn separately or overlap. Default value is 0.
22525
22526 @item colors
22527 Set colors separated by '|' which are going to be used for drawing of each channel.
22528
22529 @item scale
22530 Set amplitude scale.
22531
22532 Available values are:
22533 @table @samp
22534 @item lin
22535 Linear.
22536
22537 @item log
22538 Logarithmic.
22539
22540 @item sqrt
22541 Square root.
22542
22543 @item cbrt
22544 Cubic root.
22545 @end table
22546
22547 Default is linear.
22548 @end table
22549
22550 @subsection Examples
22551
22552 @itemize
22553 @item
22554 Extract a channel split representation of the wave form of a whole audio track
22555 in a 1024x800 picture using @command{ffmpeg}:
22556 @example
22557 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
22558 @end example
22559 @end itemize
22560
22561 @section sidedata, asidedata
22562
22563 Delete frame side data, or select frames based on it.
22564
22565 This filter accepts the following options:
22566
22567 @table @option
22568 @item mode
22569 Set mode of operation of the filter.
22570
22571 Can be one of the following:
22572
22573 @table @samp
22574 @item select
22575 Select every frame with side data of @code{type}.
22576
22577 @item delete
22578 Delete side data of @code{type}. If @code{type} is not set, delete all side
22579 data in the frame.
22580
22581 @end table
22582
22583 @item type
22584 Set side data type used with all modes. Must be set for @code{select} mode. For
22585 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
22586 in @file{libavutil/frame.h}. For example, to choose
22587 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
22588
22589 @end table
22590
22591 @section spectrumsynth
22592
22593 Sythesize audio from 2 input video spectrums, first input stream represents
22594 magnitude across time and second represents phase across time.
22595 The filter will transform from frequency domain as displayed in videos back
22596 to time domain as presented in audio output.
22597
22598 This filter is primarily created for reversing processed @ref{showspectrum}
22599 filter outputs, but can synthesize sound from other spectrograms too.
22600 But in such case results are going to be poor if the phase data is not
22601 available, because in such cases phase data need to be recreated, usually
22602 it's just recreated from random noise.
22603 For best results use gray only output (@code{channel} color mode in
22604 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
22605 @code{lin} scale for phase video. To produce phase, for 2nd video, use
22606 @code{data} option. Inputs videos should generally use @code{fullframe}
22607 slide mode as that saves resources needed for decoding video.
22608
22609 The filter accepts the following options:
22610
22611 @table @option
22612 @item sample_rate
22613 Specify sample rate of output audio, the sample rate of audio from which
22614 spectrum was generated may differ.
22615
22616 @item channels
22617 Set number of channels represented in input video spectrums.
22618
22619 @item scale
22620 Set scale which was used when generating magnitude input spectrum.
22621 Can be @code{lin} or @code{log}. Default is @code{log}.
22622
22623 @item slide
22624 Set slide which was used when generating inputs spectrums.
22625 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
22626 Default is @code{fullframe}.
22627
22628 @item win_func
22629 Set window function used for resynthesis.
22630
22631 @item overlap
22632 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
22633 which means optimal overlap for selected window function will be picked.
22634
22635 @item orientation
22636 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
22637 Default is @code{vertical}.
22638 @end table
22639
22640 @subsection Examples
22641
22642 @itemize
22643 @item
22644 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
22645 then resynthesize videos back to audio with spectrumsynth:
22646 @example
22647 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
22648 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
22649 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
22650 @end example
22651 @end itemize
22652
22653 @section split, asplit
22654
22655 Split input into several identical outputs.
22656
22657 @code{asplit} works with audio input, @code{split} with video.
22658
22659 The filter accepts a single parameter which specifies the number of outputs. If
22660 unspecified, it defaults to 2.
22661
22662 @subsection Examples
22663
22664 @itemize
22665 @item
22666 Create two separate outputs from the same input:
22667 @example
22668 [in] split [out0][out1]
22669 @end example
22670
22671 @item
22672 To create 3 or more outputs, you need to specify the number of
22673 outputs, like in:
22674 @example
22675 [in] asplit=3 [out0][out1][out2]
22676 @end example
22677
22678 @item
22679 Create two separate outputs from the same input, one cropped and
22680 one padded:
22681 @example
22682 [in] split [splitout1][splitout2];
22683 [splitout1] crop=100:100:0:0    [cropout];
22684 [splitout2] pad=200:200:100:100 [padout];
22685 @end example
22686
22687 @item
22688 Create 5 copies of the input audio with @command{ffmpeg}:
22689 @example
22690 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
22691 @end example
22692 @end itemize
22693
22694 @section zmq, azmq
22695
22696 Receive commands sent through a libzmq client, and forward them to
22697 filters in the filtergraph.
22698
22699 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
22700 must be inserted between two video filters, @code{azmq} between two
22701 audio filters. Both are capable to send messages to any filter type.
22702
22703 To enable these filters you need to install the libzmq library and
22704 headers and configure FFmpeg with @code{--enable-libzmq}.
22705
22706 For more information about libzmq see:
22707 @url{http://www.zeromq.org/}
22708
22709 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
22710 receives messages sent through a network interface defined by the
22711 @option{bind_address} (or the abbreviation "@option{b}") option.
22712 Default value of this option is @file{tcp://localhost:5555}. You may
22713 want to alter this value to your needs, but do not forget to escape any
22714 ':' signs (see @ref{filtergraph escaping}).
22715
22716 The received message must be in the form:
22717 @example
22718 @var{TARGET} @var{COMMAND} [@var{ARG}]
22719 @end example
22720
22721 @var{TARGET} specifies the target of the command, usually the name of
22722 the filter class or a specific filter instance name. The default
22723 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
22724 but you can override this by using the @samp{filter_name@@id} syntax
22725 (see @ref{Filtergraph syntax}).
22726
22727 @var{COMMAND} specifies the name of the command for the target filter.
22728
22729 @var{ARG} is optional and specifies the optional argument list for the
22730 given @var{COMMAND}.
22731
22732 Upon reception, the message is processed and the corresponding command
22733 is injected into the filtergraph. Depending on the result, the filter
22734 will send a reply to the client, adopting the format:
22735 @example
22736 @var{ERROR_CODE} @var{ERROR_REASON}
22737 @var{MESSAGE}
22738 @end example
22739
22740 @var{MESSAGE} is optional.
22741
22742 @subsection Examples
22743
22744 Look at @file{tools/zmqsend} for an example of a zmq client which can
22745 be used to send commands processed by these filters.
22746
22747 Consider the following filtergraph generated by @command{ffplay}.
22748 In this example the last overlay filter has an instance name. All other
22749 filters will have default instance names.
22750
22751 @example
22752 ffplay -dumpgraph 1 -f lavfi "
22753 color=s=100x100:c=red  [l];
22754 color=s=100x100:c=blue [r];
22755 nullsrc=s=200x100, zmq [bg];
22756 [bg][l]   overlay     [bg+l];
22757 [bg+l][r] overlay@@my=x=100 "
22758 @end example
22759
22760 To change the color of the left side of the video, the following
22761 command can be used:
22762 @example
22763 echo Parsed_color_0 c yellow | tools/zmqsend
22764 @end example
22765
22766 To change the right side:
22767 @example
22768 echo Parsed_color_1 c pink | tools/zmqsend
22769 @end example
22770
22771 To change the position of the right side:
22772 @example
22773 echo overlay@@my x 150 | tools/zmqsend
22774 @end example
22775
22776
22777 @c man end MULTIMEDIA FILTERS
22778
22779 @chapter Multimedia Sources
22780 @c man begin MULTIMEDIA SOURCES
22781
22782 Below is a description of the currently available multimedia sources.
22783
22784 @section amovie
22785
22786 This is the same as @ref{movie} source, except it selects an audio
22787 stream by default.
22788
22789 @anchor{movie}
22790 @section movie
22791
22792 Read audio and/or video stream(s) from a movie container.
22793
22794 It accepts the following parameters:
22795
22796 @table @option
22797 @item filename
22798 The name of the resource to read (not necessarily a file; it can also be a
22799 device or a stream accessed through some protocol).
22800
22801 @item format_name, f
22802 Specifies the format assumed for the movie to read, and can be either
22803 the name of a container or an input device. If not specified, the
22804 format is guessed from @var{movie_name} or by probing.
22805
22806 @item seek_point, sp
22807 Specifies the seek point in seconds. The frames will be output
22808 starting from this seek point. The parameter is evaluated with
22809 @code{av_strtod}, so the numerical value may be suffixed by an IS
22810 postfix. The default value is "0".
22811
22812 @item streams, s
22813 Specifies the streams to read. Several streams can be specified,
22814 separated by "+". The source will then have as many outputs, in the
22815 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
22816 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
22817 respectively the default (best suited) video and audio stream. Default
22818 is "dv", or "da" if the filter is called as "amovie".
22819
22820 @item stream_index, si
22821 Specifies the index of the video stream to read. If the value is -1,
22822 the most suitable video stream will be automatically selected. The default
22823 value is "-1". Deprecated. If the filter is called "amovie", it will select
22824 audio instead of video.
22825
22826 @item loop
22827 Specifies how many times to read the stream in sequence.
22828 If the value is 0, the stream will be looped infinitely.
22829 Default value is "1".
22830
22831 Note that when the movie is looped the source timestamps are not
22832 changed, so it will generate non monotonically increasing timestamps.
22833
22834 @item discontinuity
22835 Specifies the time difference between frames above which the point is
22836 considered a timestamp discontinuity which is removed by adjusting the later
22837 timestamps.
22838 @end table
22839
22840 It allows overlaying a second video on top of the main input of
22841 a filtergraph, as shown in this graph:
22842 @example
22843 input -----------> deltapts0 --> overlay --> output
22844                                     ^
22845                                     |
22846 movie --> scale--> deltapts1 -------+
22847 @end example
22848 @subsection Examples
22849
22850 @itemize
22851 @item
22852 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
22853 on top of the input labelled "in":
22854 @example
22855 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
22856 [in] setpts=PTS-STARTPTS [main];
22857 [main][over] overlay=16:16 [out]
22858 @end example
22859
22860 @item
22861 Read from a video4linux2 device, and overlay it on top of the input
22862 labelled "in":
22863 @example
22864 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
22865 [in] setpts=PTS-STARTPTS [main];
22866 [main][over] overlay=16:16 [out]
22867 @end example
22868
22869 @item
22870 Read the first video stream and the audio stream with id 0x81 from
22871 dvd.vob; the video is connected to the pad named "video" and the audio is
22872 connected to the pad named "audio":
22873 @example
22874 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
22875 @end example
22876 @end itemize
22877
22878 @subsection Commands
22879
22880 Both movie and amovie support the following commands:
22881 @table @option
22882 @item seek
22883 Perform seek using "av_seek_frame".
22884 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
22885 @itemize
22886 @item
22887 @var{stream_index}: If stream_index is -1, a default
22888 stream is selected, and @var{timestamp} is automatically converted
22889 from AV_TIME_BASE units to the stream specific time_base.
22890 @item
22891 @var{timestamp}: Timestamp in AVStream.time_base units
22892 or, if no stream is specified, in AV_TIME_BASE units.
22893 @item
22894 @var{flags}: Flags which select direction and seeking mode.
22895 @end itemize
22896
22897 @item get_duration
22898 Get movie duration in AV_TIME_BASE units.
22899
22900 @end table
22901
22902 @c man end MULTIMEDIA SOURCES