]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
60b9204245840077180fad6650fa3216efc5d5e2
[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. Allowed range is from 16 to 131072.
1128 Default is @code{4096}
1129
1130 @item win_func
1131 Set window function. Default is @code{hann}.
1132
1133 @item overlap
1134 Set window overlap. If set to 1, the recommended overlap for selected
1135 window function will be picked. Default is @code{0.75}.
1136 @end table
1137
1138 @subsection Examples
1139
1140 @itemize
1141 @item
1142 Leave almost only low frequencies in audio:
1143 @example
1144 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1145 @end example
1146 @end itemize
1147
1148 @anchor{afir}
1149 @section afir
1150
1151 Apply an arbitrary Frequency Impulse Response filter.
1152
1153 This filter is designed for applying long FIR filters,
1154 up to 60 seconds long.
1155
1156 It can be used as component for digital crossover filters,
1157 room equalization, cross talk cancellation, wavefield synthesis,
1158 auralization, ambiophonics, ambisonics and spatialization.
1159
1160 This filter uses second stream as FIR coefficients.
1161 If second stream holds single channel, it will be used
1162 for all input channels in first stream, otherwise
1163 number of channels in second stream must be same as
1164 number of channels in first stream.
1165
1166 It accepts the following parameters:
1167
1168 @table @option
1169 @item dry
1170 Set dry gain. This sets input gain.
1171
1172 @item wet
1173 Set wet gain. This sets final output gain.
1174
1175 @item length
1176 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1177
1178 @item gtype
1179 Enable applying gain measured from power of IR.
1180
1181 Set which approach to use for auto gain measurement.
1182
1183 @table @option
1184 @item none
1185 Do not apply any gain.
1186
1187 @item peak
1188 select peak gain, very conservative approach. This is default value.
1189
1190 @item dc
1191 select DC gain, limited application.
1192
1193 @item gn
1194 select gain to noise approach, this is most popular one.
1195 @end table
1196
1197 @item irgain
1198 Set gain to be applied to IR coefficients before filtering.
1199 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1200
1201 @item irfmt
1202 Set format of IR stream. Can be @code{mono} or @code{input}.
1203 Default is @code{input}.
1204
1205 @item maxir
1206 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1207 Allowed range is 0.1 to 60 seconds.
1208
1209 @item response
1210 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1211 By default it is disabled.
1212
1213 @item channel
1214 Set for which IR channel to display frequency response. By default is first channel
1215 displayed. This option is used only when @var{response} is enabled.
1216
1217 @item size
1218 Set video stream size. This option is used only when @var{response} is enabled.
1219
1220 @item rate
1221 Set video stream frame rate. This option is used only when @var{response} is enabled.
1222
1223 @item minp
1224 Set minimal partition size used for convolution. Default is @var{8192}.
1225 Allowed range is from @var{8} to @var{32768}.
1226 Lower values decreases latency at cost of higher CPU usage.
1227
1228 @item maxp
1229 Set maximal partition size used for convolution. Default is @var{8192}.
1230 Allowed range is from @var{8} to @var{32768}.
1231 Lower values may increase CPU usage.
1232 @end table
1233
1234 @subsection Examples
1235
1236 @itemize
1237 @item
1238 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1239 @example
1240 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1241 @end example
1242 @end itemize
1243
1244 @anchor{aformat}
1245 @section aformat
1246
1247 Set output format constraints for the input audio. The framework will
1248 negotiate the most appropriate format to minimize conversions.
1249
1250 It accepts the following parameters:
1251 @table @option
1252
1253 @item sample_fmts
1254 A '|'-separated list of requested sample formats.
1255
1256 @item sample_rates
1257 A '|'-separated list of requested sample rates.
1258
1259 @item channel_layouts
1260 A '|'-separated list of requested channel layouts.
1261
1262 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1263 for the required syntax.
1264 @end table
1265
1266 If a parameter is omitted, all values are allowed.
1267
1268 Force the output to either unsigned 8-bit or signed 16-bit stereo
1269 @example
1270 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1271 @end example
1272
1273 @section agate
1274
1275 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1276 processing reduces disturbing noise between useful signals.
1277
1278 Gating is done by detecting the volume below a chosen level @var{threshold}
1279 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1280 floor is set via @var{range}. Because an exact manipulation of the signal
1281 would cause distortion of the waveform the reduction can be levelled over
1282 time. This is done by setting @var{attack} and @var{release}.
1283
1284 @var{attack} determines how long the signal has to fall below the threshold
1285 before any reduction will occur and @var{release} sets the time the signal
1286 has to rise above the threshold to reduce the reduction again.
1287 Shorter signals than the chosen attack time will be left untouched.
1288
1289 @table @option
1290 @item level_in
1291 Set input level before filtering.
1292 Default is 1. Allowed range is from 0.015625 to 64.
1293
1294 @item mode
1295 Set the mode of operation. Can be @code{upward} or @code{downward}.
1296 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1297 will be amplified, expanding dynamic range in upward direction.
1298 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1299
1300 @item range
1301 Set the level of gain reduction when the signal is below the threshold.
1302 Default is 0.06125. Allowed range is from 0 to 1.
1303 Setting this to 0 disables reduction and then filter behaves like expander.
1304
1305 @item threshold
1306 If a signal rises above this level the gain reduction is released.
1307 Default is 0.125. Allowed range is from 0 to 1.
1308
1309 @item ratio
1310 Set a ratio by which the signal is reduced.
1311 Default is 2. Allowed range is from 1 to 9000.
1312
1313 @item attack
1314 Amount of milliseconds the signal has to rise above the threshold before gain
1315 reduction stops.
1316 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1317
1318 @item release
1319 Amount of milliseconds the signal has to fall below the threshold before the
1320 reduction is increased again. Default is 250 milliseconds.
1321 Allowed range is from 0.01 to 9000.
1322
1323 @item makeup
1324 Set amount of amplification of signal after processing.
1325 Default is 1. Allowed range is from 1 to 64.
1326
1327 @item knee
1328 Curve the sharp knee around the threshold to enter gain reduction more softly.
1329 Default is 2.828427125. Allowed range is from 1 to 8.
1330
1331 @item detection
1332 Choose if exact signal should be taken for detection or an RMS like one.
1333 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1334
1335 @item link
1336 Choose if the average level between all channels or the louder channel affects
1337 the reduction.
1338 Default is @code{average}. Can be @code{average} or @code{maximum}.
1339 @end table
1340
1341 @section aiir
1342
1343 Apply an arbitrary Infinite Impulse Response filter.
1344
1345 It accepts the following parameters:
1346
1347 @table @option
1348 @item z
1349 Set numerator/zeros coefficients.
1350
1351 @item p
1352 Set denominator/poles coefficients.
1353
1354 @item k
1355 Set channels gains.
1356
1357 @item dry_gain
1358 Set input gain.
1359
1360 @item wet_gain
1361 Set output gain.
1362
1363 @item f
1364 Set coefficients format.
1365
1366 @table @samp
1367 @item tf
1368 transfer function
1369 @item zp
1370 Z-plane zeros/poles, cartesian (default)
1371 @item pr
1372 Z-plane zeros/poles, polar radians
1373 @item pd
1374 Z-plane zeros/poles, polar degrees
1375 @end table
1376
1377 @item r
1378 Set kind of processing.
1379 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1380
1381 @item e
1382 Set filtering precision.
1383
1384 @table @samp
1385 @item dbl
1386 double-precision floating-point (default)
1387 @item flt
1388 single-precision floating-point
1389 @item i32
1390 32-bit integers
1391 @item i16
1392 16-bit integers
1393 @end table
1394
1395 @item mix
1396 How much to use filtered signal in output. Default is 1.
1397 Range is between 0 and 1.
1398
1399 @item response
1400 Show IR frequency response, magnitude and phase in additional video stream.
1401 By default it is disabled.
1402
1403 @item channel
1404 Set for which IR channel to display frequency response. By default is first channel
1405 displayed. This option is used only when @var{response} is enabled.
1406
1407 @item size
1408 Set video stream size. This option is used only when @var{response} is enabled.
1409 @end table
1410
1411 Coefficients in @code{tf} format are separated by spaces and are in ascending
1412 order.
1413
1414 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1415 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1416 imaginary unit.
1417
1418 Different coefficients and gains can be provided for every channel, in such case
1419 use '|' to separate coefficients or gains. Last provided coefficients will be
1420 used for all remaining channels.
1421
1422 @subsection Examples
1423
1424 @itemize
1425 @item
1426 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1427 @example
1428 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1429 @end example
1430
1431 @item
1432 Same as above but in @code{zp} format:
1433 @example
1434 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1435 @end example
1436 @end itemize
1437
1438 @section alimiter
1439
1440 The limiter prevents an input signal from rising over a desired threshold.
1441 This limiter uses lookahead technology to prevent your signal from distorting.
1442 It means that there is a small delay after the signal is processed. Keep in mind
1443 that the delay it produces is the attack time you set.
1444
1445 The filter accepts the following options:
1446
1447 @table @option
1448 @item level_in
1449 Set input gain. Default is 1.
1450
1451 @item level_out
1452 Set output gain. Default is 1.
1453
1454 @item limit
1455 Don't let signals above this level pass the limiter. Default is 1.
1456
1457 @item attack
1458 The limiter will reach its attenuation level in this amount of time in
1459 milliseconds. Default is 5 milliseconds.
1460
1461 @item release
1462 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1463 Default is 50 milliseconds.
1464
1465 @item asc
1466 When gain reduction is always needed ASC takes care of releasing to an
1467 average reduction level rather than reaching a reduction of 0 in the release
1468 time.
1469
1470 @item asc_level
1471 Select how much the release time is affected by ASC, 0 means nearly no changes
1472 in release time while 1 produces higher release times.
1473
1474 @item level
1475 Auto level output signal. Default is enabled.
1476 This normalizes audio back to 0dB if enabled.
1477 @end table
1478
1479 Depending on picked setting it is recommended to upsample input 2x or 4x times
1480 with @ref{aresample} before applying this filter.
1481
1482 @section allpass
1483
1484 Apply a two-pole all-pass filter with central frequency (in Hz)
1485 @var{frequency}, and filter-width @var{width}.
1486 An all-pass filter changes the audio's frequency to phase relationship
1487 without changing its frequency to amplitude relationship.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item frequency, f
1493 Set frequency in Hz.
1494
1495 @item width_type, t
1496 Set method to specify band-width of filter.
1497 @table @option
1498 @item h
1499 Hz
1500 @item q
1501 Q-Factor
1502 @item o
1503 octave
1504 @item s
1505 slope
1506 @item k
1507 kHz
1508 @end table
1509
1510 @item width, w
1511 Specify the band-width of a filter in width_type units.
1512
1513 @item mix, m
1514 How much to use filtered signal in output. Default is 1.
1515 Range is between 0 and 1.
1516
1517 @item channels, c
1518 Specify which channels to filter, by default all available are filtered.
1519 @end table
1520
1521 @subsection Commands
1522
1523 This filter supports the following commands:
1524 @table @option
1525 @item frequency, f
1526 Change allpass frequency.
1527 Syntax for the command is : "@var{frequency}"
1528
1529 @item width_type, t
1530 Change allpass width_type.
1531 Syntax for the command is : "@var{width_type}"
1532
1533 @item width, w
1534 Change allpass width.
1535 Syntax for the command is : "@var{width}"
1536
1537 @item mix, m
1538 Change allpass mix.
1539 Syntax for the command is : "@var{mix}"
1540 @end table
1541
1542 @section aloop
1543
1544 Loop audio samples.
1545
1546 The filter accepts the following options:
1547
1548 @table @option
1549 @item loop
1550 Set the number of loops. Setting this value to -1 will result in infinite loops.
1551 Default is 0.
1552
1553 @item size
1554 Set maximal number of samples. Default is 0.
1555
1556 @item start
1557 Set first sample of loop. Default is 0.
1558 @end table
1559
1560 @anchor{amerge}
1561 @section amerge
1562
1563 Merge two or more audio streams into a single multi-channel stream.
1564
1565 The filter accepts the following options:
1566
1567 @table @option
1568
1569 @item inputs
1570 Set the number of inputs. Default is 2.
1571
1572 @end table
1573
1574 If the channel layouts of the inputs are disjoint, and therefore compatible,
1575 the channel layout of the output will be set accordingly and the channels
1576 will be reordered as necessary. If the channel layouts of the inputs are not
1577 disjoint, the output will have all the channels of the first input then all
1578 the channels of the second input, in that order, and the channel layout of
1579 the output will be the default value corresponding to the total number of
1580 channels.
1581
1582 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1583 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1584 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1585 first input, b1 is the first channel of the second input).
1586
1587 On the other hand, if both input are in stereo, the output channels will be
1588 in the default order: a1, a2, b1, b2, and the channel layout will be
1589 arbitrarily set to 4.0, which may or may not be the expected value.
1590
1591 All inputs must have the same sample rate, and format.
1592
1593 If inputs do not have the same duration, the output will stop with the
1594 shortest.
1595
1596 @subsection Examples
1597
1598 @itemize
1599 @item
1600 Merge two mono files into a stereo stream:
1601 @example
1602 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1603 @end example
1604
1605 @item
1606 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1607 @example
1608 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1609 @end example
1610 @end itemize
1611
1612 @section amix
1613
1614 Mixes multiple audio inputs into a single output.
1615
1616 Note that this filter only supports float samples (the @var{amerge}
1617 and @var{pan} audio filters support many formats). If the @var{amix}
1618 input has integer samples then @ref{aresample} will be automatically
1619 inserted to perform the conversion to float samples.
1620
1621 For example
1622 @example
1623 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1624 @end example
1625 will mix 3 input audio streams to a single output with the same duration as the
1626 first input and a dropout transition time of 3 seconds.
1627
1628 It accepts the following parameters:
1629 @table @option
1630
1631 @item inputs
1632 The number of inputs. If unspecified, it defaults to 2.
1633
1634 @item duration
1635 How to determine the end-of-stream.
1636 @table @option
1637
1638 @item longest
1639 The duration of the longest input. (default)
1640
1641 @item shortest
1642 The duration of the shortest input.
1643
1644 @item first
1645 The duration of the first input.
1646
1647 @end table
1648
1649 @item dropout_transition
1650 The transition time, in seconds, for volume renormalization when an input
1651 stream ends. The default value is 2 seconds.
1652
1653 @item weights
1654 Specify weight of each input audio stream as sequence.
1655 Each weight is separated by space. By default all inputs have same weight.
1656 @end table
1657
1658 @section amultiply
1659
1660 Multiply first audio stream with second audio stream and store result
1661 in output audio stream. Multiplication is done by multiplying each
1662 sample from first stream with sample at same position from second stream.
1663
1664 With this element-wise multiplication one can create amplitude fades and
1665 amplitude modulations.
1666
1667 @section anequalizer
1668
1669 High-order parametric multiband equalizer for each channel.
1670
1671 It accepts the following parameters:
1672 @table @option
1673 @item params
1674
1675 This option string is in format:
1676 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1677 Each equalizer band is separated by '|'.
1678
1679 @table @option
1680 @item chn
1681 Set channel number to which equalization will be applied.
1682 If input doesn't have that channel the entry is ignored.
1683
1684 @item f
1685 Set central frequency for band.
1686 If input doesn't have that frequency the entry is ignored.
1687
1688 @item w
1689 Set band width in hertz.
1690
1691 @item g
1692 Set band gain in dB.
1693
1694 @item t
1695 Set filter type for band, optional, can be:
1696
1697 @table @samp
1698 @item 0
1699 Butterworth, this is default.
1700
1701 @item 1
1702 Chebyshev type 1.
1703
1704 @item 2
1705 Chebyshev type 2.
1706 @end table
1707 @end table
1708
1709 @item curves
1710 With this option activated frequency response of anequalizer is displayed
1711 in video stream.
1712
1713 @item size
1714 Set video stream size. Only useful if curves option is activated.
1715
1716 @item mgain
1717 Set max gain that will be displayed. Only useful if curves option is activated.
1718 Setting this to a reasonable value makes it possible to display gain which is derived from
1719 neighbour bands which are too close to each other and thus produce higher gain
1720 when both are activated.
1721
1722 @item fscale
1723 Set frequency scale used to draw frequency response in video output.
1724 Can be linear or logarithmic. Default is logarithmic.
1725
1726 @item colors
1727 Set color for each channel curve which is going to be displayed in video stream.
1728 This is list of color names separated by space or by '|'.
1729 Unrecognised or missing colors will be replaced by white color.
1730 @end table
1731
1732 @subsection Examples
1733
1734 @itemize
1735 @item
1736 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1737 for first 2 channels using Chebyshev type 1 filter:
1738 @example
1739 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1740 @end example
1741 @end itemize
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item change
1748 Alter existing filter parameters.
1749 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1750
1751 @var{fN} is existing filter number, starting from 0, if no such filter is available
1752 error is returned.
1753 @var{freq} set new frequency parameter.
1754 @var{width} set new width parameter in herz.
1755 @var{gain} set new gain parameter in dB.
1756
1757 Full filter invocation with asendcmd may look like this:
1758 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1759 @end table
1760
1761 @section anlmdn
1762
1763 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1764
1765 Each sample is adjusted by looking for other samples with similar contexts. This
1766 context similarity is defined by comparing their surrounding patches of size
1767 @option{p}. Patches are searched in an area of @option{r} around the sample.
1768
1769 The filter accepts the following options.
1770
1771 @table @option
1772 @item s
1773 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1774
1775 @item p
1776 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1777 Default value is 2 milliseconds.
1778
1779 @item r
1780 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1781 Default value is 6 milliseconds.
1782
1783 @item o
1784 Set the output mode.
1785
1786 It accepts the following values:
1787 @table @option
1788 @item i
1789 Pass input unchanged.
1790
1791 @item o
1792 Pass noise filtered out.
1793
1794 @item n
1795 Pass only noise.
1796
1797 Default value is @var{o}.
1798 @end table
1799
1800 @item m
1801 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1802 @end table
1803
1804 @subsection Commands
1805
1806 This filter supports the following commands:
1807 @table @option
1808 @item s
1809 Change denoise strength. Argument is single float number.
1810 Syntax for the command is : "@var{s}"
1811
1812 @item o
1813 Change output mode.
1814 Syntax for the command is : "i", "o" or "n" string.
1815 @end table
1816
1817 @section anull
1818
1819 Pass the audio source unchanged to the output.
1820
1821 @section apad
1822
1823 Pad the end of an audio stream with silence.
1824
1825 This can be used together with @command{ffmpeg} @option{-shortest} to
1826 extend audio streams to the same length as the video stream.
1827
1828 A description of the accepted options follows.
1829
1830 @table @option
1831 @item packet_size
1832 Set silence packet size. Default value is 4096.
1833
1834 @item pad_len
1835 Set the number of samples of silence to add to the end. After the
1836 value is reached, the stream is terminated. This option is mutually
1837 exclusive with @option{whole_len}.
1838
1839 @item whole_len
1840 Set the minimum total number of samples in the output audio stream. If
1841 the value is longer than the input audio length, silence is added to
1842 the end, until the value is reached. This option is mutually exclusive
1843 with @option{pad_len}.
1844
1845 @item pad_dur
1846 Specify the duration of samples of silence to add. See
1847 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1848 for the accepted syntax. Used only if set to non-zero value.
1849
1850 @item whole_dur
1851 Specify the minimum total duration in the output audio stream. See
1852 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1853 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1854 the input audio length, silence is added to the end, until the value is reached.
1855 This option is mutually exclusive with @option{pad_dur}
1856 @end table
1857
1858 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1859 nor @option{whole_dur} option is set, the filter will add silence to the end of
1860 the input stream indefinitely.
1861
1862 @subsection Examples
1863
1864 @itemize
1865 @item
1866 Add 1024 samples of silence to the end of the input:
1867 @example
1868 apad=pad_len=1024
1869 @end example
1870
1871 @item
1872 Make sure the audio output will contain at least 10000 samples, pad
1873 the input with silence if required:
1874 @example
1875 apad=whole_len=10000
1876 @end example
1877
1878 @item
1879 Use @command{ffmpeg} to pad the audio input with silence, so that the
1880 video stream will always result the shortest and will be converted
1881 until the end in the output file when using the @option{shortest}
1882 option:
1883 @example
1884 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1885 @end example
1886 @end itemize
1887
1888 @section aphaser
1889 Add a phasing effect to the input audio.
1890
1891 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1892 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1893
1894 A description of the accepted parameters follows.
1895
1896 @table @option
1897 @item in_gain
1898 Set input gain. Default is 0.4.
1899
1900 @item out_gain
1901 Set output gain. Default is 0.74
1902
1903 @item delay
1904 Set delay in milliseconds. Default is 3.0.
1905
1906 @item decay
1907 Set decay. Default is 0.4.
1908
1909 @item speed
1910 Set modulation speed in Hz. Default is 0.5.
1911
1912 @item type
1913 Set modulation type. Default is triangular.
1914
1915 It accepts the following values:
1916 @table @samp
1917 @item triangular, t
1918 @item sinusoidal, s
1919 @end table
1920 @end table
1921
1922 @section apulsator
1923
1924 Audio pulsator is something between an autopanner and a tremolo.
1925 But it can produce funny stereo effects as well. Pulsator changes the volume
1926 of the left and right channel based on a LFO (low frequency oscillator) with
1927 different waveforms and shifted phases.
1928 This filter have the ability to define an offset between left and right
1929 channel. An offset of 0 means that both LFO shapes match each other.
1930 The left and right channel are altered equally - a conventional tremolo.
1931 An offset of 50% means that the shape of the right channel is exactly shifted
1932 in phase (or moved backwards about half of the frequency) - pulsator acts as
1933 an autopanner. At 1 both curves match again. Every setting in between moves the
1934 phase shift gapless between all stages and produces some "bypassing" sounds with
1935 sine and triangle waveforms. The more you set the offset near 1 (starting from
1936 the 0.5) the faster the signal passes from the left to the right speaker.
1937
1938 The filter accepts the following options:
1939
1940 @table @option
1941 @item level_in
1942 Set input gain. By default it is 1. Range is [0.015625 - 64].
1943
1944 @item level_out
1945 Set output gain. By default it is 1. Range is [0.015625 - 64].
1946
1947 @item mode
1948 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1949 sawup or sawdown. Default is sine.
1950
1951 @item amount
1952 Set modulation. Define how much of original signal is affected by the LFO.
1953
1954 @item offset_l
1955 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1956
1957 @item offset_r
1958 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1959
1960 @item width
1961 Set pulse width. Default is 1. Allowed range is [0 - 2].
1962
1963 @item timing
1964 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1965
1966 @item bpm
1967 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1968 is set to bpm.
1969
1970 @item ms
1971 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1972 is set to ms.
1973
1974 @item hz
1975 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1976 if timing is set to hz.
1977 @end table
1978
1979 @anchor{aresample}
1980 @section aresample
1981
1982 Resample the input audio to the specified parameters, using the
1983 libswresample library. If none are specified then the filter will
1984 automatically convert between its input and output.
1985
1986 This filter is also able to stretch/squeeze the audio data to make it match
1987 the timestamps or to inject silence / cut out audio to make it match the
1988 timestamps, do a combination of both or do neither.
1989
1990 The filter accepts the syntax
1991 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1992 expresses a sample rate and @var{resampler_options} is a list of
1993 @var{key}=@var{value} pairs, separated by ":". See the
1994 @ref{Resampler Options,,"Resampler Options" section in the
1995 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1996 for the complete list of supported options.
1997
1998 @subsection Examples
1999
2000 @itemize
2001 @item
2002 Resample the input audio to 44100Hz:
2003 @example
2004 aresample=44100
2005 @end example
2006
2007 @item
2008 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2009 samples per second compensation:
2010 @example
2011 aresample=async=1000
2012 @end example
2013 @end itemize
2014
2015 @section areverse
2016
2017 Reverse an audio clip.
2018
2019 Warning: This filter requires memory to buffer the entire clip, so trimming
2020 is suggested.
2021
2022 @subsection Examples
2023
2024 @itemize
2025 @item
2026 Take the first 5 seconds of a clip, and reverse it.
2027 @example
2028 atrim=end=5,areverse
2029 @end example
2030 @end itemize
2031
2032 @section asetnsamples
2033
2034 Set the number of samples per each output audio frame.
2035
2036 The last output packet may contain a different number of samples, as
2037 the filter will flush all the remaining samples when the input audio
2038 signals its end.
2039
2040 The filter accepts the following options:
2041
2042 @table @option
2043
2044 @item nb_out_samples, n
2045 Set the number of frames per each output audio frame. The number is
2046 intended as the number of samples @emph{per each channel}.
2047 Default value is 1024.
2048
2049 @item pad, p
2050 If set to 1, the filter will pad the last audio frame with zeroes, so
2051 that the last frame will contain the same number of samples as the
2052 previous ones. Default value is 1.
2053 @end table
2054
2055 For example, to set the number of per-frame samples to 1234 and
2056 disable padding for the last frame, use:
2057 @example
2058 asetnsamples=n=1234:p=0
2059 @end example
2060
2061 @section asetrate
2062
2063 Set the sample rate without altering the PCM data.
2064 This will result in a change of speed and pitch.
2065
2066 The filter accepts the following options:
2067
2068 @table @option
2069 @item sample_rate, r
2070 Set the output sample rate. Default is 44100 Hz.
2071 @end table
2072
2073 @section ashowinfo
2074
2075 Show a line containing various information for each input audio frame.
2076 The input audio is not modified.
2077
2078 The shown line contains a sequence of key/value pairs of the form
2079 @var{key}:@var{value}.
2080
2081 The following values are shown in the output:
2082
2083 @table @option
2084 @item n
2085 The (sequential) number of the input frame, starting from 0.
2086
2087 @item pts
2088 The presentation timestamp of the input frame, in time base units; the time base
2089 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2090
2091 @item pts_time
2092 The presentation timestamp of the input frame in seconds.
2093
2094 @item pos
2095 position of the frame in the input stream, -1 if this information in
2096 unavailable and/or meaningless (for example in case of synthetic audio)
2097
2098 @item fmt
2099 The sample format.
2100
2101 @item chlayout
2102 The channel layout.
2103
2104 @item rate
2105 The sample rate for the audio frame.
2106
2107 @item nb_samples
2108 The number of samples (per channel) in the frame.
2109
2110 @item checksum
2111 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2112 audio, the data is treated as if all the planes were concatenated.
2113
2114 @item plane_checksums
2115 A list of Adler-32 checksums for each data plane.
2116 @end table
2117
2118 @section asoftclip
2119 Apply audio soft clipping.
2120
2121 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2122 along a smooth curve, rather than the abrupt shape of hard-clipping.
2123
2124 This filter accepts the following options:
2125
2126 @table @option
2127 @item type
2128 Set type of soft-clipping.
2129
2130 It accepts the following values:
2131 @table @option
2132 @item tanh
2133 @item atan
2134 @item cubic
2135 @item exp
2136 @item alg
2137 @item quintic
2138 @item sin
2139 @end table
2140
2141 @item param
2142 Set additional parameter which controls sigmoid function.
2143 @end table
2144
2145 @section asr
2146 Automatic Speech Recognition
2147
2148 This filter uses PocketSphinx for speech recognition. To enable
2149 compilation of this filter, you need to configure FFmpeg with
2150 @code{--enable-pocketsphinx}.
2151
2152 It accepts the following options:
2153
2154 @table @option
2155 @item rate
2156 Set sampling rate of input audio. Defaults is @code{16000}.
2157 This need to match speech models, otherwise one will get poor results.
2158
2159 @item hmm
2160 Set dictionary containing acoustic model files.
2161
2162 @item dict
2163 Set pronunciation dictionary.
2164
2165 @item lm
2166 Set language model file.
2167
2168 @item lmctl
2169 Set language model set.
2170
2171 @item lmname
2172 Set which language model to use.
2173
2174 @item logfn
2175 Set output for log messages.
2176 @end table
2177
2178 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2179
2180 @anchor{astats}
2181 @section astats
2182
2183 Display time domain statistical information about the audio channels.
2184 Statistics are calculated and displayed for each audio channel and,
2185 where applicable, an overall figure is also given.
2186
2187 It accepts the following option:
2188 @table @option
2189 @item length
2190 Short window length in seconds, used for peak and trough RMS measurement.
2191 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2192
2193 @item metadata
2194
2195 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2196 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2197 disabled.
2198
2199 Available keys for each channel are:
2200 DC_offset
2201 Min_level
2202 Max_level
2203 Min_difference
2204 Max_difference
2205 Mean_difference
2206 RMS_difference
2207 Peak_level
2208 RMS_peak
2209 RMS_trough
2210 Crest_factor
2211 Flat_factor
2212 Peak_count
2213 Bit_depth
2214 Dynamic_range
2215 Zero_crossings
2216 Zero_crossings_rate
2217 Number_of_NaNs
2218 Number_of_Infs
2219 Number_of_denormals
2220
2221 and for Overall:
2222 DC_offset
2223 Min_level
2224 Max_level
2225 Min_difference
2226 Max_difference
2227 Mean_difference
2228 RMS_difference
2229 Peak_level
2230 RMS_level
2231 RMS_peak
2232 RMS_trough
2233 Flat_factor
2234 Peak_count
2235 Bit_depth
2236 Number_of_samples
2237 Number_of_NaNs
2238 Number_of_Infs
2239 Number_of_denormals
2240
2241 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2242 this @code{lavfi.astats.Overall.Peak_count}.
2243
2244 For description what each key means read below.
2245
2246 @item reset
2247 Set number of frame after which stats are going to be recalculated.
2248 Default is disabled.
2249
2250 @item measure_perchannel
2251 Select the entries which need to be measured per channel. The metadata keys can
2252 be used as flags, default is @option{all} which measures everything.
2253 @option{none} disables all per channel measurement.
2254
2255 @item measure_overall
2256 Select the entries which need to be measured overall. The metadata keys can
2257 be used as flags, default is @option{all} which measures everything.
2258 @option{none} disables all overall measurement.
2259
2260 @end table
2261
2262 A description of each shown parameter follows:
2263
2264 @table @option
2265 @item DC offset
2266 Mean amplitude displacement from zero.
2267
2268 @item Min level
2269 Minimal sample level.
2270
2271 @item Max level
2272 Maximal sample level.
2273
2274 @item Min difference
2275 Minimal difference between two consecutive samples.
2276
2277 @item Max difference
2278 Maximal difference between two consecutive samples.
2279
2280 @item Mean difference
2281 Mean difference between two consecutive samples.
2282 The average of each difference between two consecutive samples.
2283
2284 @item RMS difference
2285 Root Mean Square difference between two consecutive samples.
2286
2287 @item Peak level dB
2288 @item RMS level dB
2289 Standard peak and RMS level measured in dBFS.
2290
2291 @item RMS peak dB
2292 @item RMS trough dB
2293 Peak and trough values for RMS level measured over a short window.
2294
2295 @item Crest factor
2296 Standard ratio of peak to RMS level (note: not in dB).
2297
2298 @item Flat factor
2299 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2300 (i.e. either @var{Min level} or @var{Max level}).
2301
2302 @item Peak count
2303 Number of occasions (not the number of samples) that the signal attained either
2304 @var{Min level} or @var{Max level}.
2305
2306 @item Bit depth
2307 Overall bit depth of audio. Number of bits used for each sample.
2308
2309 @item Dynamic range
2310 Measured dynamic range of audio in dB.
2311
2312 @item Zero crossings
2313 Number of points where the waveform crosses the zero level axis.
2314
2315 @item Zero crossings rate
2316 Rate of Zero crossings and number of audio samples.
2317 @end table
2318
2319 @section atempo
2320
2321 Adjust audio tempo.
2322
2323 The filter accepts exactly one parameter, the audio tempo. If not
2324 specified then the filter will assume nominal 1.0 tempo. Tempo must
2325 be in the [0.5, 100.0] range.
2326
2327 Note that tempo greater than 2 will skip some samples rather than
2328 blend them in.  If for any reason this is a concern it is always
2329 possible to daisy-chain several instances of atempo to achieve the
2330 desired product tempo.
2331
2332 @subsection Examples
2333
2334 @itemize
2335 @item
2336 Slow down audio to 80% tempo:
2337 @example
2338 atempo=0.8
2339 @end example
2340
2341 @item
2342 To speed up audio to 300% tempo:
2343 @example
2344 atempo=3
2345 @end example
2346
2347 @item
2348 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2349 @example
2350 atempo=sqrt(3),atempo=sqrt(3)
2351 @end example
2352 @end itemize
2353
2354 @section atrim
2355
2356 Trim the input so that the output contains one continuous subpart of the input.
2357
2358 It accepts the following parameters:
2359 @table @option
2360 @item start
2361 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2362 sample with the timestamp @var{start} will be the first sample in the output.
2363
2364 @item end
2365 Specify time of the first audio sample that will be dropped, i.e. the
2366 audio sample immediately preceding the one with the timestamp @var{end} will be
2367 the last sample in the output.
2368
2369 @item start_pts
2370 Same as @var{start}, except this option sets the start timestamp in samples
2371 instead of seconds.
2372
2373 @item end_pts
2374 Same as @var{end}, except this option sets the end timestamp in samples instead
2375 of seconds.
2376
2377 @item duration
2378 The maximum duration of the output in seconds.
2379
2380 @item start_sample
2381 The number of the first sample that should be output.
2382
2383 @item end_sample
2384 The number of the first sample that should be dropped.
2385 @end table
2386
2387 @option{start}, @option{end}, and @option{duration} are expressed as time
2388 duration specifications; see
2389 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2390
2391 Note that the first two sets of the start/end options and the @option{duration}
2392 option look at the frame timestamp, while the _sample options simply count the
2393 samples that pass through the filter. So start/end_pts and start/end_sample will
2394 give different results when the timestamps are wrong, inexact or do not start at
2395 zero. Also note that this filter does not modify the timestamps. If you wish
2396 to have the output timestamps start at zero, insert the asetpts filter after the
2397 atrim filter.
2398
2399 If multiple start or end options are set, this filter tries to be greedy and
2400 keep all samples that match at least one of the specified constraints. To keep
2401 only the part that matches all the constraints at once, chain multiple atrim
2402 filters.
2403
2404 The defaults are such that all the input is kept. So it is possible to set e.g.
2405 just the end values to keep everything before the specified time.
2406
2407 Examples:
2408 @itemize
2409 @item
2410 Drop everything except the second minute of input:
2411 @example
2412 ffmpeg -i INPUT -af atrim=60:120
2413 @end example
2414
2415 @item
2416 Keep only the first 1000 samples:
2417 @example
2418 ffmpeg -i INPUT -af atrim=end_sample=1000
2419 @end example
2420
2421 @end itemize
2422
2423 @section bandpass
2424
2425 Apply a two-pole Butterworth band-pass filter with central
2426 frequency @var{frequency}, and (3dB-point) band-width width.
2427 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2428 instead of the default: constant 0dB peak gain.
2429 The filter roll off at 6dB per octave (20dB per decade).
2430
2431 The filter accepts the following options:
2432
2433 @table @option
2434 @item frequency, f
2435 Set the filter's central frequency. Default is @code{3000}.
2436
2437 @item csg
2438 Constant skirt gain if set to 1. Defaults to 0.
2439
2440 @item width_type, t
2441 Set method to specify band-width of filter.
2442 @table @option
2443 @item h
2444 Hz
2445 @item q
2446 Q-Factor
2447 @item o
2448 octave
2449 @item s
2450 slope
2451 @item k
2452 kHz
2453 @end table
2454
2455 @item width, w
2456 Specify the band-width of a filter in width_type units.
2457
2458 @item mix, m
2459 How much to use filtered signal in output. Default is 1.
2460 Range is between 0 and 1.
2461
2462 @item channels, c
2463 Specify which channels to filter, by default all available are filtered.
2464 @end table
2465
2466 @subsection Commands
2467
2468 This filter supports the following commands:
2469 @table @option
2470 @item frequency, f
2471 Change bandpass frequency.
2472 Syntax for the command is : "@var{frequency}"
2473
2474 @item width_type, t
2475 Change bandpass width_type.
2476 Syntax for the command is : "@var{width_type}"
2477
2478 @item width, w
2479 Change bandpass width.
2480 Syntax for the command is : "@var{width}"
2481
2482 @item mix, m
2483 Change bandpass mix.
2484 Syntax for the command is : "@var{mix}"
2485 @end table
2486
2487 @section bandreject
2488
2489 Apply a two-pole Butterworth band-reject filter with central
2490 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2491 The filter roll off at 6dB per octave (20dB per decade).
2492
2493 The filter accepts the following options:
2494
2495 @table @option
2496 @item frequency, f
2497 Set the filter's central frequency. Default is @code{3000}.
2498
2499 @item width_type, t
2500 Set method to specify band-width of filter.
2501 @table @option
2502 @item h
2503 Hz
2504 @item q
2505 Q-Factor
2506 @item o
2507 octave
2508 @item s
2509 slope
2510 @item k
2511 kHz
2512 @end table
2513
2514 @item width, w
2515 Specify the band-width of a filter in width_type units.
2516
2517 @item mix, m
2518 How much to use filtered signal in output. Default is 1.
2519 Range is between 0 and 1.
2520
2521 @item channels, c
2522 Specify which channels to filter, by default all available are filtered.
2523 @end table
2524
2525 @subsection Commands
2526
2527 This filter supports the following commands:
2528 @table @option
2529 @item frequency, f
2530 Change bandreject frequency.
2531 Syntax for the command is : "@var{frequency}"
2532
2533 @item width_type, t
2534 Change bandreject width_type.
2535 Syntax for the command is : "@var{width_type}"
2536
2537 @item width, w
2538 Change bandreject width.
2539 Syntax for the command is : "@var{width}"
2540
2541 @item mix, m
2542 Change bandreject mix.
2543 Syntax for the command is : "@var{mix}"
2544 @end table
2545
2546 @section bass, lowshelf
2547
2548 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2549 shelving filter with a response similar to that of a standard
2550 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2551
2552 The filter accepts the following options:
2553
2554 @table @option
2555 @item gain, g
2556 Give the gain at 0 Hz. Its useful range is about -20
2557 (for a large cut) to +20 (for a large boost).
2558 Beware of clipping when using a positive gain.
2559
2560 @item frequency, f
2561 Set the filter's central frequency and so can be used
2562 to extend or reduce the frequency range to be boosted or cut.
2563 The default value is @code{100} Hz.
2564
2565 @item width_type, t
2566 Set method to specify band-width of filter.
2567 @table @option
2568 @item h
2569 Hz
2570 @item q
2571 Q-Factor
2572 @item o
2573 octave
2574 @item s
2575 slope
2576 @item k
2577 kHz
2578 @end table
2579
2580 @item width, w
2581 Determine how steep is the filter's shelf transition.
2582
2583 @item mix, m
2584 How much to use filtered signal in output. Default is 1.
2585 Range is between 0 and 1.
2586
2587 @item channels, c
2588 Specify which channels to filter, by default all available are filtered.
2589 @end table
2590
2591 @subsection Commands
2592
2593 This filter supports the following commands:
2594 @table @option
2595 @item frequency, f
2596 Change bass frequency.
2597 Syntax for the command is : "@var{frequency}"
2598
2599 @item width_type, t
2600 Change bass width_type.
2601 Syntax for the command is : "@var{width_type}"
2602
2603 @item width, w
2604 Change bass width.
2605 Syntax for the command is : "@var{width}"
2606
2607 @item gain, g
2608 Change bass gain.
2609 Syntax for the command is : "@var{gain}"
2610
2611 @item mix, m
2612 Change bass mix.
2613 Syntax for the command is : "@var{mix}"
2614 @end table
2615
2616 @section biquad
2617
2618 Apply a biquad IIR filter with the given coefficients.
2619 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2620 are the numerator and denominator coefficients respectively.
2621 and @var{channels}, @var{c} specify which channels to filter, by default all
2622 available are filtered.
2623
2624 @subsection Commands
2625
2626 This filter supports the following commands:
2627 @table @option
2628 @item a0
2629 @item a1
2630 @item a2
2631 @item b0
2632 @item b1
2633 @item b2
2634 Change biquad parameter.
2635 Syntax for the command is : "@var{value}"
2636
2637 @item mix, m
2638 How much to use filtered signal in output. Default is 1.
2639 Range is between 0 and 1.
2640 @end table
2641
2642 @section bs2b
2643 Bauer stereo to binaural transformation, which improves headphone listening of
2644 stereo audio records.
2645
2646 To enable compilation of this filter you need to configure FFmpeg with
2647 @code{--enable-libbs2b}.
2648
2649 It accepts the following parameters:
2650 @table @option
2651
2652 @item profile
2653 Pre-defined crossfeed level.
2654 @table @option
2655
2656 @item default
2657 Default level (fcut=700, feed=50).
2658
2659 @item cmoy
2660 Chu Moy circuit (fcut=700, feed=60).
2661
2662 @item jmeier
2663 Jan Meier circuit (fcut=650, feed=95).
2664
2665 @end table
2666
2667 @item fcut
2668 Cut frequency (in Hz).
2669
2670 @item feed
2671 Feed level (in Hz).
2672
2673 @end table
2674
2675 @section channelmap
2676
2677 Remap input channels to new locations.
2678
2679 It accepts the following parameters:
2680 @table @option
2681 @item map
2682 Map channels from input to output. The argument is a '|'-separated list of
2683 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2684 @var{in_channel} form. @var{in_channel} can be either the name of the input
2685 channel (e.g. FL for front left) or its index in the input channel layout.
2686 @var{out_channel} is the name of the output channel or its index in the output
2687 channel layout. If @var{out_channel} is not given then it is implicitly an
2688 index, starting with zero and increasing by one for each mapping.
2689
2690 @item channel_layout
2691 The channel layout of the output stream.
2692 @end table
2693
2694 If no mapping is present, the filter will implicitly map input channels to
2695 output channels, preserving indices.
2696
2697 @subsection Examples
2698
2699 @itemize
2700 @item
2701 For example, assuming a 5.1+downmix input MOV file,
2702 @example
2703 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2704 @end example
2705 will create an output WAV file tagged as stereo from the downmix channels of
2706 the input.
2707
2708 @item
2709 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2710 @example
2711 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2712 @end example
2713 @end itemize
2714
2715 @section channelsplit
2716
2717 Split each channel from an input audio stream into a separate output stream.
2718
2719 It accepts the following parameters:
2720 @table @option
2721 @item channel_layout
2722 The channel layout of the input stream. The default is "stereo".
2723 @item channels
2724 A channel layout describing the channels to be extracted as separate output streams
2725 or "all" to extract each input channel as a separate stream. The default is "all".
2726
2727 Choosing channels not present in channel layout in the input will result in an error.
2728 @end table
2729
2730 @subsection Examples
2731
2732 @itemize
2733 @item
2734 For example, assuming a stereo input MP3 file,
2735 @example
2736 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2737 @end example
2738 will create an output Matroska file with two audio streams, one containing only
2739 the left channel and the other the right channel.
2740
2741 @item
2742 Split a 5.1 WAV file into per-channel files:
2743 @example
2744 ffmpeg -i in.wav -filter_complex
2745 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2746 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2747 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2748 side_right.wav
2749 @end example
2750
2751 @item
2752 Extract only LFE from a 5.1 WAV file:
2753 @example
2754 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2755 -map '[LFE]' lfe.wav
2756 @end example
2757 @end itemize
2758
2759 @section chorus
2760 Add a chorus effect to the audio.
2761
2762 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2763
2764 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2765 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2766 The modulation depth defines the range the modulated delay is played before or after
2767 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2768 sound tuned around the original one, like in a chorus where some vocals are slightly
2769 off key.
2770
2771 It accepts the following parameters:
2772 @table @option
2773 @item in_gain
2774 Set input gain. Default is 0.4.
2775
2776 @item out_gain
2777 Set output gain. Default is 0.4.
2778
2779 @item delays
2780 Set delays. A typical delay is around 40ms to 60ms.
2781
2782 @item decays
2783 Set decays.
2784
2785 @item speeds
2786 Set speeds.
2787
2788 @item depths
2789 Set depths.
2790 @end table
2791
2792 @subsection Examples
2793
2794 @itemize
2795 @item
2796 A single delay:
2797 @example
2798 chorus=0.7:0.9:55:0.4:0.25:2
2799 @end example
2800
2801 @item
2802 Two delays:
2803 @example
2804 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2805 @end example
2806
2807 @item
2808 Fuller sounding chorus with three delays:
2809 @example
2810 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
2811 @end example
2812 @end itemize
2813
2814 @section compand
2815 Compress or expand the audio's dynamic range.
2816
2817 It accepts the following parameters:
2818
2819 @table @option
2820
2821 @item attacks
2822 @item decays
2823 A list of times in seconds for each channel over which the instantaneous level
2824 of the input signal is averaged to determine its volume. @var{attacks} refers to
2825 increase of volume and @var{decays} refers to decrease of volume. For most
2826 situations, the attack time (response to the audio getting louder) should be
2827 shorter than the decay time, because the human ear is more sensitive to sudden
2828 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2829 a typical value for decay is 0.8 seconds.
2830 If specified number of attacks & decays is lower than number of channels, the last
2831 set attack/decay will be used for all remaining channels.
2832
2833 @item points
2834 A list of points for the transfer function, specified in dB relative to the
2835 maximum possible signal amplitude. Each key points list must be defined using
2836 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2837 @code{x0/y0 x1/y1 x2/y2 ....}
2838
2839 The input values must be in strictly increasing order but the transfer function
2840 does not have to be monotonically rising. The point @code{0/0} is assumed but
2841 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2842 function are @code{-70/-70|-60/-20|1/0}.
2843
2844 @item soft-knee
2845 Set the curve radius in dB for all joints. It defaults to 0.01.
2846
2847 @item gain
2848 Set the additional gain in dB to be applied at all points on the transfer
2849 function. This allows for easy adjustment of the overall gain.
2850 It defaults to 0.
2851
2852 @item volume
2853 Set an initial volume, in dB, to be assumed for each channel when filtering
2854 starts. This permits the user to supply a nominal level initially, so that, for
2855 example, a very large gain is not applied to initial signal levels before the
2856 companding has begun to operate. A typical value for audio which is initially
2857 quiet is -90 dB. It defaults to 0.
2858
2859 @item delay
2860 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2861 delayed before being fed to the volume adjuster. Specifying a delay
2862 approximately equal to the attack/decay times allows the filter to effectively
2863 operate in predictive rather than reactive mode. It defaults to 0.
2864
2865 @end table
2866
2867 @subsection Examples
2868
2869 @itemize
2870 @item
2871 Make music with both quiet and loud passages suitable for listening to in a
2872 noisy environment:
2873 @example
2874 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2875 @end example
2876
2877 Another example for audio with whisper and explosion parts:
2878 @example
2879 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2880 @end example
2881
2882 @item
2883 A noise gate for when the noise is at a lower level than the signal:
2884 @example
2885 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2886 @end example
2887
2888 @item
2889 Here is another noise gate, this time for when the noise is at a higher level
2890 than the signal (making it, in some ways, similar to squelch):
2891 @example
2892 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2893 @end example
2894
2895 @item
2896 2:1 compression starting at -6dB:
2897 @example
2898 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2899 @end example
2900
2901 @item
2902 2:1 compression starting at -9dB:
2903 @example
2904 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2905 @end example
2906
2907 @item
2908 2:1 compression starting at -12dB:
2909 @example
2910 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2911 @end example
2912
2913 @item
2914 2:1 compression starting at -18dB:
2915 @example
2916 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2917 @end example
2918
2919 @item
2920 3:1 compression starting at -15dB:
2921 @example
2922 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2923 @end example
2924
2925 @item
2926 Compressor/Gate:
2927 @example
2928 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2929 @end example
2930
2931 @item
2932 Expander:
2933 @example
2934 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2935 @end example
2936
2937 @item
2938 Hard limiter at -6dB:
2939 @example
2940 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2941 @end example
2942
2943 @item
2944 Hard limiter at -12dB:
2945 @example
2946 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2947 @end example
2948
2949 @item
2950 Hard noise gate at -35 dB:
2951 @example
2952 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2953 @end example
2954
2955 @item
2956 Soft limiter:
2957 @example
2958 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2959 @end example
2960 @end itemize
2961
2962 @section compensationdelay
2963
2964 Compensation Delay Line is a metric based delay to compensate differing
2965 positions of microphones or speakers.
2966
2967 For example, you have recorded guitar with two microphones placed in
2968 different location. Because the front of sound wave has fixed speed in
2969 normal conditions, the phasing of microphones can vary and depends on
2970 their location and interposition. The best sound mix can be achieved when
2971 these microphones are in phase (synchronized). Note that distance of
2972 ~30 cm between microphones makes one microphone to capture signal in
2973 antiphase to another microphone. That makes the final mix sounding moody.
2974 This filter helps to solve phasing problems by adding different delays
2975 to each microphone track and make them synchronized.
2976
2977 The best result can be reached when you take one track as base and
2978 synchronize other tracks one by one with it.
2979 Remember that synchronization/delay tolerance depends on sample rate, too.
2980 Higher sample rates will give more tolerance.
2981
2982 It accepts the following parameters:
2983
2984 @table @option
2985 @item mm
2986 Set millimeters distance. This is compensation distance for fine tuning.
2987 Default is 0.
2988
2989 @item cm
2990 Set cm distance. This is compensation distance for tightening distance setup.
2991 Default is 0.
2992
2993 @item m
2994 Set meters distance. This is compensation distance for hard distance setup.
2995 Default is 0.
2996
2997 @item dry
2998 Set dry amount. Amount of unprocessed (dry) signal.
2999 Default is 0.
3000
3001 @item wet
3002 Set wet amount. Amount of processed (wet) signal.
3003 Default is 1.
3004
3005 @item temp
3006 Set temperature degree in Celsius. This is the temperature of the environment.
3007 Default is 20.
3008 @end table
3009
3010 @section crossfeed
3011 Apply headphone crossfeed filter.
3012
3013 Crossfeed is the process of blending the left and right channels of stereo
3014 audio recording.
3015 It is mainly used to reduce extreme stereo separation of low frequencies.
3016
3017 The intent is to produce more speaker like sound to the listener.
3018
3019 The filter accepts the following options:
3020
3021 @table @option
3022 @item strength
3023 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3024 This sets gain of low shelf filter for side part of stereo image.
3025 Default is -6dB. Max allowed is -30db when strength is set to 1.
3026
3027 @item range
3028 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3029 This sets cut off frequency of low shelf filter. Default is cut off near
3030 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3031
3032 @item level_in
3033 Set input gain. Default is 0.9.
3034
3035 @item level_out
3036 Set output gain. Default is 1.
3037 @end table
3038
3039 @section crystalizer
3040 Simple algorithm to expand audio dynamic range.
3041
3042 The filter accepts the following options:
3043
3044 @table @option
3045 @item i
3046 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3047 (unchanged sound) to 10.0 (maximum effect).
3048
3049 @item c
3050 Enable clipping. By default is enabled.
3051 @end table
3052
3053 @section dcshift
3054 Apply a DC shift to the audio.
3055
3056 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3057 in the recording chain) from the audio. The effect of a DC offset is reduced
3058 headroom and hence volume. The @ref{astats} filter can be used to determine if
3059 a signal has a DC offset.
3060
3061 @table @option
3062 @item shift
3063 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3064 the audio.
3065
3066 @item limitergain
3067 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3068 used to prevent clipping.
3069 @end table
3070
3071 @section deesser
3072
3073 Apply de-essing to the audio samples.
3074
3075 @table @option
3076 @item i
3077 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3078 Default is 0.
3079
3080 @item m
3081 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3082 Default is 0.5.
3083
3084 @item f
3085 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3086 Default is 0.5.
3087
3088 @item s
3089 Set the output mode.
3090
3091 It accepts the following values:
3092 @table @option
3093 @item i
3094 Pass input unchanged.
3095
3096 @item o
3097 Pass ess filtered out.
3098
3099 @item e
3100 Pass only ess.
3101
3102 Default value is @var{o}.
3103 @end table
3104
3105 @end table
3106
3107 @section drmeter
3108 Measure audio dynamic range.
3109
3110 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3111 is found in transition material. And anything less that 8 have very poor dynamics
3112 and is very compressed.
3113
3114 The filter accepts the following options:
3115
3116 @table @option
3117 @item length
3118 Set window length in seconds used to split audio into segments of equal length.
3119 Default is 3 seconds.
3120 @end table
3121
3122 @section dynaudnorm
3123 Dynamic Audio Normalizer.
3124
3125 This filter applies a certain amount of gain to the input audio in order
3126 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3127 contrast to more "simple" normalization algorithms, the Dynamic Audio
3128 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3129 This allows for applying extra gain to the "quiet" sections of the audio
3130 while avoiding distortions or clipping the "loud" sections. In other words:
3131 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3132 sections, in the sense that the volume of each section is brought to the
3133 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3134 this goal *without* applying "dynamic range compressing". It will retain 100%
3135 of the dynamic range *within* each section of the audio file.
3136
3137 @table @option
3138 @item f
3139 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3140 Default is 500 milliseconds.
3141 The Dynamic Audio Normalizer processes the input audio in small chunks,
3142 referred to as frames. This is required, because a peak magnitude has no
3143 meaning for just a single sample value. Instead, we need to determine the
3144 peak magnitude for a contiguous sequence of sample values. While a "standard"
3145 normalizer would simply use the peak magnitude of the complete file, the
3146 Dynamic Audio Normalizer determines the peak magnitude individually for each
3147 frame. The length of a frame is specified in milliseconds. By default, the
3148 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3149 been found to give good results with most files.
3150 Note that the exact frame length, in number of samples, will be determined
3151 automatically, based on the sampling rate of the individual input audio file.
3152
3153 @item g
3154 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3155 number. Default is 31.
3156 Probably the most important parameter of the Dynamic Audio Normalizer is the
3157 @code{window size} of the Gaussian smoothing filter. The filter's window size
3158 is specified in frames, centered around the current frame. For the sake of
3159 simplicity, this must be an odd number. Consequently, the default value of 31
3160 takes into account the current frame, as well as the 15 preceding frames and
3161 the 15 subsequent frames. Using a larger window results in a stronger
3162 smoothing effect and thus in less gain variation, i.e. slower gain
3163 adaptation. Conversely, using a smaller window results in a weaker smoothing
3164 effect and thus in more gain variation, i.e. faster gain adaptation.
3165 In other words, the more you increase this value, the more the Dynamic Audio
3166 Normalizer will behave like a "traditional" normalization filter. On the
3167 contrary, the more you decrease this value, the more the Dynamic Audio
3168 Normalizer will behave like a dynamic range compressor.
3169
3170 @item p
3171 Set the target peak value. This specifies the highest permissible magnitude
3172 level for the normalized audio input. This filter will try to approach the
3173 target peak magnitude as closely as possible, but at the same time it also
3174 makes sure that the normalized signal will never exceed the peak magnitude.
3175 A frame's maximum local gain factor is imposed directly by the target peak
3176 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3177 It is not recommended to go above this value.
3178
3179 @item m
3180 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3181 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3182 factor for each input frame, i.e. the maximum gain factor that does not
3183 result in clipping or distortion. The maximum gain factor is determined by
3184 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3185 additionally bounds the frame's maximum gain factor by a predetermined
3186 (global) maximum gain factor. This is done in order to avoid excessive gain
3187 factors in "silent" or almost silent frames. By default, the maximum gain
3188 factor is 10.0, For most inputs the default value should be sufficient and
3189 it usually is not recommended to increase this value. Though, for input
3190 with an extremely low overall volume level, it may be necessary to allow even
3191 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3192 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3193 Instead, a "sigmoid" threshold function will be applied. This way, the
3194 gain factors will smoothly approach the threshold value, but never exceed that
3195 value.
3196
3197 @item r
3198 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3199 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3200 This means that the maximum local gain factor for each frame is defined
3201 (only) by the frame's highest magnitude sample. This way, the samples can
3202 be amplified as much as possible without exceeding the maximum signal
3203 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3204 Normalizer can also take into account the frame's root mean square,
3205 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3206 determine the power of a time-varying signal. It is therefore considered
3207 that the RMS is a better approximation of the "perceived loudness" than
3208 just looking at the signal's peak magnitude. Consequently, by adjusting all
3209 frames to a constant RMS value, a uniform "perceived loudness" can be
3210 established. If a target RMS value has been specified, a frame's local gain
3211 factor is defined as the factor that would result in exactly that RMS value.
3212 Note, however, that the maximum local gain factor is still restricted by the
3213 frame's highest magnitude sample, in order to prevent clipping.
3214
3215 @item n
3216 Enable channels coupling. By default is enabled.
3217 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3218 amount. This means the same gain factor will be applied to all channels, i.e.
3219 the maximum possible gain factor is determined by the "loudest" channel.
3220 However, in some recordings, it may happen that the volume of the different
3221 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3222 In this case, this option can be used to disable the channel coupling. This way,
3223 the gain factor will be determined independently for each channel, depending
3224 only on the individual channel's highest magnitude sample. This allows for
3225 harmonizing the volume of the different channels.
3226
3227 @item c
3228 Enable DC bias correction. By default is disabled.
3229 An audio signal (in the time domain) is a sequence of sample values.
3230 In the Dynamic Audio Normalizer these sample values are represented in the
3231 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3232 audio signal, or "waveform", should be centered around the zero point.
3233 That means if we calculate the mean value of all samples in a file, or in a
3234 single frame, then the result should be 0.0 or at least very close to that
3235 value. If, however, there is a significant deviation of the mean value from
3236 0.0, in either positive or negative direction, this is referred to as a
3237 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3238 Audio Normalizer provides optional DC bias correction.
3239 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3240 the mean value, or "DC correction" offset, of each input frame and subtract
3241 that value from all of the frame's sample values which ensures those samples
3242 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3243 boundaries, the DC correction offset values will be interpolated smoothly
3244 between neighbouring frames.
3245
3246 @item b
3247 Enable alternative boundary mode. By default is disabled.
3248 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3249 around each frame. This includes the preceding frames as well as the
3250 subsequent frames. However, for the "boundary" frames, located at the very
3251 beginning and at the very end of the audio file, not all neighbouring
3252 frames are available. In particular, for the first few frames in the audio
3253 file, the preceding frames are not known. And, similarly, for the last few
3254 frames in the audio file, the subsequent frames are not known. Thus, the
3255 question arises which gain factors should be assumed for the missing frames
3256 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3257 to deal with this situation. The default boundary mode assumes a gain factor
3258 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3259 "fade out" at the beginning and at the end of the input, respectively.
3260
3261 @item s
3262 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3263 By default, the Dynamic Audio Normalizer does not apply "traditional"
3264 compression. This means that signal peaks will not be pruned and thus the
3265 full dynamic range will be retained within each local neighbourhood. However,
3266 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3267 normalization algorithm with a more "traditional" compression.
3268 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3269 (thresholding) function. If (and only if) the compression feature is enabled,
3270 all input frames will be processed by a soft knee thresholding function prior
3271 to the actual normalization process. Put simply, the thresholding function is
3272 going to prune all samples whose magnitude exceeds a certain threshold value.
3273 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3274 value. Instead, the threshold value will be adjusted for each individual
3275 frame.
3276 In general, smaller parameters result in stronger compression, and vice versa.
3277 Values below 3.0 are not recommended, because audible distortion may appear.
3278 @end table
3279
3280 @section earwax
3281
3282 Make audio easier to listen to on headphones.
3283
3284 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3285 so that when listened to on headphones the stereo image is moved from
3286 inside your head (standard for headphones) to outside and in front of
3287 the listener (standard for speakers).
3288
3289 Ported from SoX.
3290
3291 @section equalizer
3292
3293 Apply a two-pole peaking equalisation (EQ) filter. With this
3294 filter, the signal-level at and around a selected frequency can
3295 be increased or decreased, whilst (unlike bandpass and bandreject
3296 filters) that at all other frequencies is unchanged.
3297
3298 In order to produce complex equalisation curves, this filter can
3299 be given several times, each with a different central frequency.
3300
3301 The filter accepts the following options:
3302
3303 @table @option
3304 @item frequency, f
3305 Set the filter's central frequency in Hz.
3306
3307 @item width_type, t
3308 Set method to specify band-width of filter.
3309 @table @option
3310 @item h
3311 Hz
3312 @item q
3313 Q-Factor
3314 @item o
3315 octave
3316 @item s
3317 slope
3318 @item k
3319 kHz
3320 @end table
3321
3322 @item width, w
3323 Specify the band-width of a filter in width_type units.
3324
3325 @item gain, g
3326 Set the required gain or attenuation in dB.
3327 Beware of clipping when using a positive gain.
3328
3329 @item mix, m
3330 How much to use filtered signal in output. Default is 1.
3331 Range is between 0 and 1.
3332
3333 @item channels, c
3334 Specify which channels to filter, by default all available are filtered.
3335 @end table
3336
3337 @subsection Examples
3338 @itemize
3339 @item
3340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3341 @example
3342 equalizer=f=1000:t=h:width=200:g=-10
3343 @end example
3344
3345 @item
3346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3347 @example
3348 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3349 @end example
3350 @end itemize
3351
3352 @subsection Commands
3353
3354 This filter supports the following commands:
3355 @table @option
3356 @item frequency, f
3357 Change equalizer frequency.
3358 Syntax for the command is : "@var{frequency}"
3359
3360 @item width_type, t
3361 Change equalizer width_type.
3362 Syntax for the command is : "@var{width_type}"
3363
3364 @item width, w
3365 Change equalizer width.
3366 Syntax for the command is : "@var{width}"
3367
3368 @item gain, g
3369 Change equalizer gain.
3370 Syntax for the command is : "@var{gain}"
3371
3372 @item mix, m
3373 Change equalizer mix.
3374 Syntax for the command is : "@var{mix}"
3375 @end table
3376
3377 @section extrastereo
3378
3379 Linearly increases the difference between left and right channels which
3380 adds some sort of "live" effect to playback.
3381
3382 The filter accepts the following options:
3383
3384 @table @option
3385 @item m
3386 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3387 (average of both channels), with 1.0 sound will be unchanged, with
3388 -1.0 left and right channels will be swapped.
3389
3390 @item c
3391 Enable clipping. By default is enabled.
3392 @end table
3393
3394 @section firequalizer
3395 Apply FIR Equalization using arbitrary frequency response.
3396
3397 The filter accepts the following option:
3398
3399 @table @option
3400 @item gain
3401 Set gain curve equation (in dB). The expression can contain variables:
3402 @table @option
3403 @item f
3404 the evaluated frequency
3405 @item sr
3406 sample rate
3407 @item ch
3408 channel number, set to 0 when multichannels evaluation is disabled
3409 @item chid
3410 channel id, see libavutil/channel_layout.h, set to the first channel id when
3411 multichannels evaluation is disabled
3412 @item chs
3413 number of channels
3414 @item chlayout
3415 channel_layout, see libavutil/channel_layout.h
3416
3417 @end table
3418 and functions:
3419 @table @option
3420 @item gain_interpolate(f)
3421 interpolate gain on frequency f based on gain_entry
3422 @item cubic_interpolate(f)
3423 same as gain_interpolate, but smoother
3424 @end table
3425 This option is also available as command. Default is @code{gain_interpolate(f)}.
3426
3427 @item gain_entry
3428 Set gain entry for gain_interpolate function. The expression can
3429 contain functions:
3430 @table @option
3431 @item entry(f, g)
3432 store gain entry at frequency f with value g
3433 @end table
3434 This option is also available as command.
3435
3436 @item delay
3437 Set filter delay in seconds. Higher value means more accurate.
3438 Default is @code{0.01}.
3439
3440 @item accuracy
3441 Set filter accuracy in Hz. Lower value means more accurate.
3442 Default is @code{5}.
3443
3444 @item wfunc
3445 Set window function. Acceptable values are:
3446 @table @option
3447 @item rectangular
3448 rectangular window, useful when gain curve is already smooth
3449 @item hann
3450 hann window (default)
3451 @item hamming
3452 hamming window
3453 @item blackman
3454 blackman window
3455 @item nuttall3
3456 3-terms continuous 1st derivative nuttall window
3457 @item mnuttall3
3458 minimum 3-terms discontinuous nuttall window
3459 @item nuttall
3460 4-terms continuous 1st derivative nuttall window
3461 @item bnuttall
3462 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3463 @item bharris
3464 blackman-harris window
3465 @item tukey
3466 tukey window
3467 @end table
3468
3469 @item fixed
3470 If enabled, use fixed number of audio samples. This improves speed when
3471 filtering with large delay. Default is disabled.
3472
3473 @item multi
3474 Enable multichannels evaluation on gain. Default is disabled.
3475
3476 @item zero_phase
3477 Enable zero phase mode by subtracting timestamp to compensate delay.
3478 Default is disabled.
3479
3480 @item scale
3481 Set scale used by gain. Acceptable values are:
3482 @table @option
3483 @item linlin
3484 linear frequency, linear gain
3485 @item linlog
3486 linear frequency, logarithmic (in dB) gain (default)
3487 @item loglin
3488 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3489 @item loglog
3490 logarithmic frequency, logarithmic gain
3491 @end table
3492
3493 @item dumpfile
3494 Set file for dumping, suitable for gnuplot.
3495
3496 @item dumpscale
3497 Set scale for dumpfile. Acceptable values are same with scale option.
3498 Default is linlog.
3499
3500 @item fft2
3501 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3502 Default is disabled.
3503
3504 @item min_phase
3505 Enable minimum phase impulse response. Default is disabled.
3506 @end table
3507
3508 @subsection Examples
3509 @itemize
3510 @item
3511 lowpass at 1000 Hz:
3512 @example
3513 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3514 @end example
3515 @item
3516 lowpass at 1000 Hz with gain_entry:
3517 @example
3518 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3519 @end example
3520 @item
3521 custom equalization:
3522 @example
3523 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3524 @end example
3525 @item
3526 higher delay with zero phase to compensate delay:
3527 @example
3528 firequalizer=delay=0.1:fixed=on:zero_phase=on
3529 @end example
3530 @item
3531 lowpass on left channel, highpass on right channel:
3532 @example
3533 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3534 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3535 @end example
3536 @end itemize
3537
3538 @section flanger
3539 Apply a flanging effect to the audio.
3540
3541 The filter accepts the following options:
3542
3543 @table @option
3544 @item delay
3545 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3546
3547 @item depth
3548 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3549
3550 @item regen
3551 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3552 Default value is 0.
3553
3554 @item width
3555 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3556 Default value is 71.
3557
3558 @item speed
3559 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3560
3561 @item shape
3562 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3563 Default value is @var{sinusoidal}.
3564
3565 @item phase
3566 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3567 Default value is 25.
3568
3569 @item interp
3570 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3571 Default is @var{linear}.
3572 @end table
3573
3574 @section haas
3575 Apply Haas effect to audio.
3576
3577 Note that this makes most sense to apply on mono signals.
3578 With this filter applied to mono signals it give some directionality and
3579 stretches its stereo image.
3580
3581 The filter accepts the following options:
3582
3583 @table @option
3584 @item level_in
3585 Set input level. By default is @var{1}, or 0dB
3586
3587 @item level_out
3588 Set output level. By default is @var{1}, or 0dB.
3589
3590 @item side_gain
3591 Set gain applied to side part of signal. By default is @var{1}.
3592
3593 @item middle_source
3594 Set kind of middle source. Can be one of the following:
3595
3596 @table @samp
3597 @item left
3598 Pick left channel.
3599
3600 @item right
3601 Pick right channel.
3602
3603 @item mid
3604 Pick middle part signal of stereo image.
3605
3606 @item side
3607 Pick side part signal of stereo image.
3608 @end table
3609
3610 @item middle_phase
3611 Change middle phase. By default is disabled.
3612
3613 @item left_delay
3614 Set left channel delay. By default is @var{2.05} milliseconds.
3615
3616 @item left_balance
3617 Set left channel balance. By default is @var{-1}.
3618
3619 @item left_gain
3620 Set left channel gain. By default is @var{1}.
3621
3622 @item left_phase
3623 Change left phase. By default is disabled.
3624
3625 @item right_delay
3626 Set right channel delay. By defaults is @var{2.12} milliseconds.
3627
3628 @item right_balance
3629 Set right channel balance. By default is @var{1}.
3630
3631 @item right_gain
3632 Set right channel gain. By default is @var{1}.
3633
3634 @item right_phase
3635 Change right phase. By default is enabled.
3636 @end table
3637
3638 @section hdcd
3639
3640 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3641 embedded HDCD codes is expanded into a 20-bit PCM stream.
3642
3643 The filter supports the Peak Extend and Low-level Gain Adjustment features
3644 of HDCD, and detects the Transient Filter flag.
3645
3646 @example
3647 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3648 @end example
3649
3650 When using the filter with wav, note the default encoding for wav is 16-bit,
3651 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3652 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3653 @example
3654 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3655 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3656 @end example
3657
3658 The filter accepts the following options:
3659
3660 @table @option
3661 @item disable_autoconvert
3662 Disable any automatic format conversion or resampling in the filter graph.
3663
3664 @item process_stereo
3665 Process the stereo channels together. If target_gain does not match between
3666 channels, consider it invalid and use the last valid target_gain.
3667
3668 @item cdt_ms
3669 Set the code detect timer period in ms.
3670
3671 @item force_pe
3672 Always extend peaks above -3dBFS even if PE isn't signaled.
3673
3674 @item analyze_mode
3675 Replace audio with a solid tone and adjust the amplitude to signal some
3676 specific aspect of the decoding process. The output file can be loaded in
3677 an audio editor alongside the original to aid analysis.
3678
3679 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3680
3681 Modes are:
3682 @table @samp
3683 @item 0, off
3684 Disabled
3685 @item 1, lle
3686 Gain adjustment level at each sample
3687 @item 2, pe
3688 Samples where peak extend occurs
3689 @item 3, cdt
3690 Samples where the code detect timer is active
3691 @item 4, tgm
3692 Samples where the target gain does not match between channels
3693 @end table
3694 @end table
3695
3696 @section headphone
3697
3698 Apply head-related transfer functions (HRTFs) to create virtual
3699 loudspeakers around the user for binaural listening via headphones.
3700 The HRIRs are provided via additional streams, for each channel
3701 one stereo input stream is needed.
3702
3703 The filter accepts the following options:
3704
3705 @table @option
3706 @item map
3707 Set mapping of input streams for convolution.
3708 The argument is a '|'-separated list of channel names in order as they
3709 are given as additional stream inputs for filter.
3710 This also specify number of input streams. Number of input streams
3711 must be not less than number of channels in first stream plus one.
3712
3713 @item gain
3714 Set gain applied to audio. Value is in dB. Default is 0.
3715
3716 @item type
3717 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3718 processing audio in time domain which is slow.
3719 @var{freq} is processing audio in frequency domain which is fast.
3720 Default is @var{freq}.
3721
3722 @item lfe
3723 Set custom gain for LFE channels. Value is in dB. Default is 0.
3724
3725 @item size
3726 Set size of frame in number of samples which will be processed at once.
3727 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3728
3729 @item hrir
3730 Set format of hrir stream.
3731 Default value is @var{stereo}. Alternative value is @var{multich}.
3732 If value is set to @var{stereo}, number of additional streams should
3733 be greater or equal to number of input channels in first input stream.
3734 Also each additional stream should have stereo number of channels.
3735 If value is set to @var{multich}, number of additional streams should
3736 be exactly one. Also number of input channels of additional stream
3737 should be equal or greater than twice number of channels of first input
3738 stream.
3739 @end table
3740
3741 @subsection Examples
3742
3743 @itemize
3744 @item
3745 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3746 each amovie filter use stereo file with IR coefficients as input.
3747 The files give coefficients for each position of virtual loudspeaker:
3748 @example
3749 ffmpeg -i input.wav
3750 -filter_complex "amovie=azi_270_ele_0_DFC.wav[sr];amovie=azi_90_ele_0_DFC.wav[sl];amovie=azi_225_ele_0_DFC.wav[br];amovie=azi_135_ele_0_DFC.wav[bl];amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe];amovie=azi_35_ele_0_DFC.wav[fl];amovie=azi_325_ele_0_DFC.wav[fr];[0:a][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
3751 output.wav
3752 @end example
3753
3754 @item
3755 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3756 but now in @var{multich} @var{hrir} format.
3757 @example
3758 ffmpeg -i input.wav -filter_complex "amovie=minp.wav[hrirs];[0:a][hrirs]headphone=map=FL|FR|FC|LFE|BL|BR|SL|SR:hrir=multich"
3759 output.wav
3760 @end example
3761 @end itemize
3762
3763 @section highpass
3764
3765 Apply a high-pass filter with 3dB point frequency.
3766 The filter can be either single-pole, or double-pole (the default).
3767 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3768
3769 The filter accepts the following options:
3770
3771 @table @option
3772 @item frequency, f
3773 Set frequency in Hz. Default is 3000.
3774
3775 @item poles, p
3776 Set number of poles. Default is 2.
3777
3778 @item width_type, t
3779 Set method to specify band-width of filter.
3780 @table @option
3781 @item h
3782 Hz
3783 @item q
3784 Q-Factor
3785 @item o
3786 octave
3787 @item s
3788 slope
3789 @item k
3790 kHz
3791 @end table
3792
3793 @item width, w
3794 Specify the band-width of a filter in width_type units.
3795 Applies only to double-pole filter.
3796 The default is 0.707q and gives a Butterworth response.
3797
3798 @item mix, m
3799 How much to use filtered signal in output. Default is 1.
3800 Range is between 0 and 1.
3801
3802 @item channels, c
3803 Specify which channels to filter, by default all available are filtered.
3804 @end table
3805
3806 @subsection Commands
3807
3808 This filter supports the following commands:
3809 @table @option
3810 @item frequency, f
3811 Change highpass frequency.
3812 Syntax for the command is : "@var{frequency}"
3813
3814 @item width_type, t
3815 Change highpass width_type.
3816 Syntax for the command is : "@var{width_type}"
3817
3818 @item width, w
3819 Change highpass width.
3820 Syntax for the command is : "@var{width}"
3821
3822 @item mix, m
3823 Change highpass mix.
3824 Syntax for the command is : "@var{mix}"
3825 @end table
3826
3827 @section join
3828
3829 Join multiple input streams into one multi-channel stream.
3830
3831 It accepts the following parameters:
3832 @table @option
3833
3834 @item inputs
3835 The number of input streams. It defaults to 2.
3836
3837 @item channel_layout
3838 The desired output channel layout. It defaults to stereo.
3839
3840 @item map
3841 Map channels from inputs to output. The argument is a '|'-separated list of
3842 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3843 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3844 can be either the name of the input channel (e.g. FL for front left) or its
3845 index in the specified input stream. @var{out_channel} is the name of the output
3846 channel.
3847 @end table
3848
3849 The filter will attempt to guess the mappings when they are not specified
3850 explicitly. It does so by first trying to find an unused matching input channel
3851 and if that fails it picks the first unused input channel.
3852
3853 Join 3 inputs (with properly set channel layouts):
3854 @example
3855 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3856 @end example
3857
3858 Build a 5.1 output from 6 single-channel streams:
3859 @example
3860 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3861 'join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-SL|4.0-SR|5.0-LFE'
3862 out
3863 @end example
3864
3865 @section ladspa
3866
3867 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3868
3869 To enable compilation of this filter you need to configure FFmpeg with
3870 @code{--enable-ladspa}.
3871
3872 @table @option
3873 @item file, f
3874 Specifies the name of LADSPA plugin library to load. If the environment
3875 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3876 each one of the directories specified by the colon separated list in
3877 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3878 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3879 @file{/usr/lib/ladspa/}.
3880
3881 @item plugin, p
3882 Specifies the plugin within the library. Some libraries contain only
3883 one plugin, but others contain many of them. If this is not set filter
3884 will list all available plugins within the specified library.
3885
3886 @item controls, c
3887 Set the '|' separated list of controls which are zero or more floating point
3888 values that determine the behavior of the loaded plugin (for example delay,
3889 threshold or gain).
3890 Controls need to be defined using the following syntax:
3891 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3892 @var{valuei} is the value set on the @var{i}-th control.
3893 Alternatively they can be also defined using the following syntax:
3894 @var{value0}|@var{value1}|@var{value2}|..., where
3895 @var{valuei} is the value set on the @var{i}-th control.
3896 If @option{controls} is set to @code{help}, all available controls and
3897 their valid ranges are printed.
3898
3899 @item sample_rate, s
3900 Specify the sample rate, default to 44100. Only used if plugin have
3901 zero inputs.
3902
3903 @item nb_samples, n
3904 Set the number of samples per channel per each output frame, default
3905 is 1024. Only used if plugin have zero inputs.
3906
3907 @item duration, d
3908 Set the minimum duration of the sourced audio. See
3909 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3910 for the accepted syntax.
3911 Note that the resulting duration may be greater than the specified duration,
3912 as the generated audio is always cut at the end of a complete frame.
3913 If not specified, or the expressed duration is negative, the audio is
3914 supposed to be generated forever.
3915 Only used if plugin have zero inputs.
3916
3917 @end table
3918
3919 @subsection Examples
3920
3921 @itemize
3922 @item
3923 List all available plugins within amp (LADSPA example plugin) library:
3924 @example
3925 ladspa=file=amp
3926 @end example
3927
3928 @item
3929 List all available controls and their valid ranges for @code{vcf_notch}
3930 plugin from @code{VCF} library:
3931 @example
3932 ladspa=f=vcf:p=vcf_notch:c=help
3933 @end example
3934
3935 @item
3936 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3937 plugin library:
3938 @example
3939 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3940 @end example
3941
3942 @item
3943 Add reverberation to the audio using TAP-plugins
3944 (Tom's Audio Processing plugins):
3945 @example
3946 ladspa=file=tap_reverb:tap_reverb
3947 @end example
3948
3949 @item
3950 Generate white noise, with 0.2 amplitude:
3951 @example
3952 ladspa=file=cmt:noise_source_white:c=c0=.2
3953 @end example
3954
3955 @item
3956 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3957 @code{C* Audio Plugin Suite} (CAPS) library:
3958 @example
3959 ladspa=file=caps:Click:c=c1=20'
3960 @end example
3961
3962 @item
3963 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3964 @example
3965 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3966 @end example
3967
3968 @item
3969 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3970 @code{SWH Plugins} collection:
3971 @example
3972 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3973 @end example
3974
3975 @item
3976 Attenuate low frequencies using Multiband EQ from Steve Harris
3977 @code{SWH Plugins} collection:
3978 @example
3979 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3980 @end example
3981
3982 @item
3983 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3984 (CAPS) library:
3985 @example
3986 ladspa=caps:Narrower
3987 @end example
3988
3989 @item
3990 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3991 @example
3992 ladspa=caps:White:.2
3993 @end example
3994
3995 @item
3996 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3997 @example
3998 ladspa=caps:Fractal:c=c1=1
3999 @end example
4000
4001 @item
4002 Dynamic volume normalization using @code{VLevel} plugin:
4003 @example
4004 ladspa=vlevel-ladspa:vlevel_mono
4005 @end example
4006 @end itemize
4007
4008 @subsection Commands
4009
4010 This filter supports the following commands:
4011 @table @option
4012 @item cN
4013 Modify the @var{N}-th control value.
4014
4015 If the specified value is not valid, it is ignored and prior one is kept.
4016 @end table
4017
4018 @section loudnorm
4019
4020 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4021 Support for both single pass (livestreams, files) and double pass (files) modes.
4022 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
4023 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
4024 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4025
4026 The filter accepts the following options:
4027
4028 @table @option
4029 @item I, i
4030 Set integrated loudness target.
4031 Range is -70.0 - -5.0. Default value is -24.0.
4032
4033 @item LRA, lra
4034 Set loudness range target.
4035 Range is 1.0 - 20.0. Default value is 7.0.
4036
4037 @item TP, tp
4038 Set maximum true peak.
4039 Range is -9.0 - +0.0. Default value is -2.0.
4040
4041 @item measured_I, measured_i
4042 Measured IL of input file.
4043 Range is -99.0 - +0.0.
4044
4045 @item measured_LRA, measured_lra
4046 Measured LRA of input file.
4047 Range is  0.0 - 99.0.
4048
4049 @item measured_TP, measured_tp
4050 Measured true peak of input file.
4051 Range is  -99.0 - +99.0.
4052
4053 @item measured_thresh
4054 Measured threshold of input file.
4055 Range is -99.0 - +0.0.
4056
4057 @item offset
4058 Set offset gain. Gain is applied before the true-peak limiter.
4059 Range is  -99.0 - +99.0. Default is +0.0.
4060
4061 @item linear
4062 Normalize linearly if possible.
4063 measured_I, measured_LRA, measured_TP, and measured_thresh must also
4064 to be specified in order to use this mode.
4065 Options are true or false. Default is true.
4066
4067 @item dual_mono
4068 Treat mono input files as "dual-mono". If a mono file is intended for playback
4069 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4070 If set to @code{true}, this option will compensate for this effect.
4071 Multi-channel input files are not affected by this option.
4072 Options are true or false. Default is false.
4073
4074 @item print_format
4075 Set print format for stats. Options are summary, json, or none.
4076 Default value is none.
4077 @end table
4078
4079 @section lowpass
4080
4081 Apply a low-pass filter with 3dB point frequency.
4082 The filter can be either single-pole or double-pole (the default).
4083 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4084
4085 The filter accepts the following options:
4086
4087 @table @option
4088 @item frequency, f
4089 Set frequency in Hz. Default is 500.
4090
4091 @item poles, p
4092 Set number of poles. Default is 2.
4093
4094 @item width_type, t
4095 Set method to specify band-width of filter.
4096 @table @option
4097 @item h
4098 Hz
4099 @item q
4100 Q-Factor
4101 @item o
4102 octave
4103 @item s
4104 slope
4105 @item k
4106 kHz
4107 @end table
4108
4109 @item width, w
4110 Specify the band-width of a filter in width_type units.
4111 Applies only to double-pole filter.
4112 The default is 0.707q and gives a Butterworth response.
4113
4114 @item mix, m
4115 How much to use filtered signal in output. Default is 1.
4116 Range is between 0 and 1.
4117
4118 @item channels, c
4119 Specify which channels to filter, by default all available are filtered.
4120 @end table
4121
4122 @subsection Examples
4123 @itemize
4124 @item
4125 Lowpass only LFE channel, it LFE is not present it does nothing:
4126 @example
4127 lowpass=c=LFE
4128 @end example
4129 @end itemize
4130
4131 @subsection Commands
4132
4133 This filter supports the following commands:
4134 @table @option
4135 @item frequency, f
4136 Change lowpass frequency.
4137 Syntax for the command is : "@var{frequency}"
4138
4139 @item width_type, t
4140 Change lowpass width_type.
4141 Syntax for the command is : "@var{width_type}"
4142
4143 @item width, w
4144 Change lowpass width.
4145 Syntax for the command is : "@var{width}"
4146
4147 @item mix, m
4148 Change lowpass mix.
4149 Syntax for the command is : "@var{mix}"
4150 @end table
4151
4152 @section lv2
4153
4154 Load a LV2 (LADSPA Version 2) plugin.
4155
4156 To enable compilation of this filter you need to configure FFmpeg with
4157 @code{--enable-lv2}.
4158
4159 @table @option
4160 @item plugin, p
4161 Specifies the plugin URI. You may need to escape ':'.
4162
4163 @item controls, c
4164 Set the '|' separated list of controls which are zero or more floating point
4165 values that determine the behavior of the loaded plugin (for example delay,
4166 threshold or gain).
4167 If @option{controls} is set to @code{help}, all available controls and
4168 their valid ranges are printed.
4169
4170 @item sample_rate, s
4171 Specify the sample rate, default to 44100. Only used if plugin have
4172 zero inputs.
4173
4174 @item nb_samples, n
4175 Set the number of samples per channel per each output frame, default
4176 is 1024. Only used if plugin have zero inputs.
4177
4178 @item duration, d
4179 Set the minimum duration of the sourced audio. See
4180 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4181 for the accepted syntax.
4182 Note that the resulting duration may be greater than the specified duration,
4183 as the generated audio is always cut at the end of a complete frame.
4184 If not specified, or the expressed duration is negative, the audio is
4185 supposed to be generated forever.
4186 Only used if plugin have zero inputs.
4187 @end table
4188
4189 @subsection Examples
4190
4191 @itemize
4192 @item
4193 Apply bass enhancer plugin from Calf:
4194 @example
4195 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4196 @end example
4197
4198 @item
4199 Apply vinyl plugin from Calf:
4200 @example
4201 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4202 @end example
4203
4204 @item
4205 Apply bit crusher plugin from ArtyFX:
4206 @example
4207 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4208 @end example
4209 @end itemize
4210
4211 @section mcompand
4212 Multiband Compress or expand the audio's dynamic range.
4213
4214 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4215 This is akin to the crossover of a loudspeaker, and results in flat frequency
4216 response when absent compander action.
4217
4218 It accepts the following parameters:
4219
4220 @table @option
4221 @item args
4222 This option syntax is:
4223 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4224 For explanation of each item refer to compand filter documentation.
4225 @end table
4226
4227 @anchor{pan}
4228 @section pan
4229
4230 Mix channels with specific gain levels. The filter accepts the output
4231 channel layout followed by a set of channels definitions.
4232
4233 This filter is also designed to efficiently remap the channels of an audio
4234 stream.
4235
4236 The filter accepts parameters of the form:
4237 "@var{l}|@var{outdef}|@var{outdef}|..."
4238
4239 @table @option
4240 @item l
4241 output channel layout or number of channels
4242
4243 @item outdef
4244 output channel specification, of the form:
4245 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4246
4247 @item out_name
4248 output channel to define, either a channel name (FL, FR, etc.) or a channel
4249 number (c0, c1, etc.)
4250
4251 @item gain
4252 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4253
4254 @item in_name
4255 input channel to use, see out_name for details; it is not possible to mix
4256 named and numbered input channels
4257 @end table
4258
4259 If the `=' in a channel specification is replaced by `<', then the gains for
4260 that specification will be renormalized so that the total is 1, thus
4261 avoiding clipping noise.
4262
4263 @subsection Mixing examples
4264
4265 For example, if you want to down-mix from stereo to mono, but with a bigger
4266 factor for the left channel:
4267 @example
4268 pan=1c|c0=0.9*c0+0.1*c1
4269 @end example
4270
4271 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4272 7-channels surround:
4273 @example
4274 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4275 @end example
4276
4277 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4278 that should be preferred (see "-ac" option) unless you have very specific
4279 needs.
4280
4281 @subsection Remapping examples
4282
4283 The channel remapping will be effective if, and only if:
4284
4285 @itemize
4286 @item gain coefficients are zeroes or ones,
4287 @item only one input per channel output,
4288 @end itemize
4289
4290 If all these conditions are satisfied, the filter will notify the user ("Pure
4291 channel mapping detected"), and use an optimized and lossless method to do the
4292 remapping.
4293
4294 For example, if you have a 5.1 source and want a stereo audio stream by
4295 dropping the extra channels:
4296 @example
4297 pan="stereo| c0=FL | c1=FR"
4298 @end example
4299
4300 Given the same source, you can also switch front left and front right channels
4301 and keep the input channel layout:
4302 @example
4303 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4304 @end example
4305
4306 If the input is a stereo audio stream, you can mute the front left channel (and
4307 still keep the stereo channel layout) with:
4308 @example
4309 pan="stereo|c1=c1"
4310 @end example
4311
4312 Still with a stereo audio stream input, you can copy the right channel in both
4313 front left and right:
4314 @example
4315 pan="stereo| c0=FR | c1=FR"
4316 @end example
4317
4318 @section replaygain
4319
4320 ReplayGain scanner filter. This filter takes an audio stream as an input and
4321 outputs it unchanged.
4322 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4323
4324 @section resample
4325
4326 Convert the audio sample format, sample rate and channel layout. It is
4327 not meant to be used directly.
4328
4329 @section rubberband
4330 Apply time-stretching and pitch-shifting with librubberband.
4331
4332 To enable compilation of this filter, you need to configure FFmpeg with
4333 @code{--enable-librubberband}.
4334
4335 The filter accepts the following options:
4336
4337 @table @option
4338 @item tempo
4339 Set tempo scale factor.
4340
4341 @item pitch
4342 Set pitch scale factor.
4343
4344 @item transients
4345 Set transients detector.
4346 Possible values are:
4347 @table @var
4348 @item crisp
4349 @item mixed
4350 @item smooth
4351 @end table
4352
4353 @item detector
4354 Set detector.
4355 Possible values are:
4356 @table @var
4357 @item compound
4358 @item percussive
4359 @item soft
4360 @end table
4361
4362 @item phase
4363 Set phase.
4364 Possible values are:
4365 @table @var
4366 @item laminar
4367 @item independent
4368 @end table
4369
4370 @item window
4371 Set processing window size.
4372 Possible values are:
4373 @table @var
4374 @item standard
4375 @item short
4376 @item long
4377 @end table
4378
4379 @item smoothing
4380 Set smoothing.
4381 Possible values are:
4382 @table @var
4383 @item off
4384 @item on
4385 @end table
4386
4387 @item formant
4388 Enable formant preservation when shift pitching.
4389 Possible values are:
4390 @table @var
4391 @item shifted
4392 @item preserved
4393 @end table
4394
4395 @item pitchq
4396 Set pitch quality.
4397 Possible values are:
4398 @table @var
4399 @item quality
4400 @item speed
4401 @item consistency
4402 @end table
4403
4404 @item channels
4405 Set channels.
4406 Possible values are:
4407 @table @var
4408 @item apart
4409 @item together
4410 @end table
4411 @end table
4412
4413 @section sidechaincompress
4414
4415 This filter acts like normal compressor but has the ability to compress
4416 detected signal using second input signal.
4417 It needs two input streams and returns one output stream.
4418 First input stream will be processed depending on second stream signal.
4419 The filtered signal then can be filtered with other filters in later stages of
4420 processing. See @ref{pan} and @ref{amerge} filter.
4421
4422 The filter accepts the following options:
4423
4424 @table @option
4425 @item level_in
4426 Set input gain. Default is 1. Range is between 0.015625 and 64.
4427
4428 @item mode
4429 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4430 Default is @code{downward}.
4431
4432 @item threshold
4433 If a signal of second stream raises above this level it will affect the gain
4434 reduction of first stream.
4435 By default is 0.125. Range is between 0.00097563 and 1.
4436
4437 @item ratio
4438 Set a ratio about which the signal is reduced. 1:2 means that if the level
4439 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4440 Default is 2. Range is between 1 and 20.
4441
4442 @item attack
4443 Amount of milliseconds the signal has to rise above the threshold before gain
4444 reduction starts. Default is 20. Range is between 0.01 and 2000.
4445
4446 @item release
4447 Amount of milliseconds the signal has to fall below the threshold before
4448 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4449
4450 @item makeup
4451 Set the amount by how much signal will be amplified after processing.
4452 Default is 1. Range is from 1 to 64.
4453
4454 @item knee
4455 Curve the sharp knee around the threshold to enter gain reduction more softly.
4456 Default is 2.82843. Range is between 1 and 8.
4457
4458 @item link
4459 Choose if the @code{average} level between all channels of side-chain stream
4460 or the louder(@code{maximum}) channel of side-chain stream affects the
4461 reduction. Default is @code{average}.
4462
4463 @item detection
4464 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4465 of @code{rms}. Default is @code{rms} which is mainly smoother.
4466
4467 @item level_sc
4468 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4469
4470 @item mix
4471 How much to use compressed signal in output. Default is 1.
4472 Range is between 0 and 1.
4473 @end table
4474
4475 @subsection Examples
4476
4477 @itemize
4478 @item
4479 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4480 depending on the signal of 2nd input and later compressed signal to be
4481 merged with 2nd input:
4482 @example
4483 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4484 @end example
4485 @end itemize
4486
4487 @section sidechaingate
4488
4489 A sidechain gate acts like a normal (wideband) gate but has the ability to
4490 filter the detected signal before sending it to the gain reduction stage.
4491 Normally a gate uses the full range signal to detect a level above the
4492 threshold.
4493 For example: If you cut all lower frequencies from your sidechain signal
4494 the gate will decrease the volume of your track only if not enough highs
4495 appear. With this technique you are able to reduce the resonation of a
4496 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4497 guitar.
4498 It needs two input streams and returns one output stream.
4499 First input stream will be processed depending on second stream signal.
4500
4501 The filter accepts the following options:
4502
4503 @table @option
4504 @item level_in
4505 Set input level before filtering.
4506 Default is 1. Allowed range is from 0.015625 to 64.
4507
4508 @item mode
4509 Set the mode of operation. Can be @code{upward} or @code{downward}.
4510 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4511 will be amplified, expanding dynamic range in upward direction.
4512 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4513
4514 @item range
4515 Set the level of gain reduction when the signal is below the threshold.
4516 Default is 0.06125. Allowed range is from 0 to 1.
4517 Setting this to 0 disables reduction and then filter behaves like expander.
4518
4519 @item threshold
4520 If a signal rises above this level the gain reduction is released.
4521 Default is 0.125. Allowed range is from 0 to 1.
4522
4523 @item ratio
4524 Set a ratio about which the signal is reduced.
4525 Default is 2. Allowed range is from 1 to 9000.
4526
4527 @item attack
4528 Amount of milliseconds the signal has to rise above the threshold before gain
4529 reduction stops.
4530 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4531
4532 @item release
4533 Amount of milliseconds the signal has to fall below the threshold before the
4534 reduction is increased again. Default is 250 milliseconds.
4535 Allowed range is from 0.01 to 9000.
4536
4537 @item makeup
4538 Set amount of amplification of signal after processing.
4539 Default is 1. Allowed range is from 1 to 64.
4540
4541 @item knee
4542 Curve the sharp knee around the threshold to enter gain reduction more softly.
4543 Default is 2.828427125. Allowed range is from 1 to 8.
4544
4545 @item detection
4546 Choose if exact signal should be taken for detection or an RMS like one.
4547 Default is rms. Can be peak or rms.
4548
4549 @item link
4550 Choose if the average level between all channels or the louder channel affects
4551 the reduction.
4552 Default is average. Can be average or maximum.
4553
4554 @item level_sc
4555 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4556 @end table
4557
4558 @section silencedetect
4559
4560 Detect silence in an audio stream.
4561
4562 This filter logs a message when it detects that the input audio volume is less
4563 or equal to a noise tolerance value for a duration greater or equal to the
4564 minimum detected noise duration.
4565
4566 The printed times and duration are expressed in seconds.
4567
4568 The filter accepts the following options:
4569
4570 @table @option
4571 @item noise, n
4572 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4573 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4574
4575 @item duration, d
4576 Set silence duration until notification (default is 2 seconds).
4577
4578 @item mono, m
4579 Process each channel separately, instead of combined. By default is disabled.
4580 @end table
4581
4582 @subsection Examples
4583
4584 @itemize
4585 @item
4586 Detect 5 seconds of silence with -50dB noise tolerance:
4587 @example
4588 silencedetect=n=-50dB:d=5
4589 @end example
4590
4591 @item
4592 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4593 tolerance in @file{silence.mp3}:
4594 @example
4595 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4596 @end example
4597 @end itemize
4598
4599 @section silenceremove
4600
4601 Remove silence from the beginning, middle or end of the audio.
4602
4603 The filter accepts the following options:
4604
4605 @table @option
4606 @item start_periods
4607 This value is used to indicate if audio should be trimmed at beginning of
4608 the audio. A value of zero indicates no silence should be trimmed from the
4609 beginning. When specifying a non-zero value, it trims audio up until it
4610 finds non-silence. Normally, when trimming silence from beginning of audio
4611 the @var{start_periods} will be @code{1} but it can be increased to higher
4612 values to trim all audio up to specific count of non-silence periods.
4613 Default value is @code{0}.
4614
4615 @item start_duration
4616 Specify the amount of time that non-silence must be detected before it stops
4617 trimming audio. By increasing the duration, bursts of noises can be treated
4618 as silence and trimmed off. Default value is @code{0}.
4619
4620 @item start_threshold
4621 This indicates what sample value should be treated as silence. For digital
4622 audio, a value of @code{0} may be fine but for audio recorded from analog,
4623 you may wish to increase the value to account for background noise.
4624 Can be specified in dB (in case "dB" is appended to the specified value)
4625 or amplitude ratio. Default value is @code{0}.
4626
4627 @item start_silence
4628 Specify max duration of silence at beginning that will be kept after
4629 trimming. Default is 0, which is equal to trimming all samples detected
4630 as silence.
4631
4632 @item start_mode
4633 Specify mode of detection of silence end in start of multi-channel audio.
4634 Can be @var{any} or @var{all}. Default is @var{any}.
4635 With @var{any}, any sample that is detected as non-silence will cause
4636 stopped trimming of silence.
4637 With @var{all}, only if all channels are detected as non-silence will cause
4638 stopped trimming of silence.
4639
4640 @item stop_periods
4641 Set the count for trimming silence from the end of audio.
4642 To remove silence from the middle of a file, specify a @var{stop_periods}
4643 that is negative. This value is then treated as a positive value and is
4644 used to indicate the effect should restart processing as specified by
4645 @var{start_periods}, making it suitable for removing periods of silence
4646 in the middle of the audio.
4647 Default value is @code{0}.
4648
4649 @item stop_duration
4650 Specify a duration of silence that must exist before audio is not copied any
4651 more. By specifying a higher duration, silence that is wanted can be left in
4652 the audio.
4653 Default value is @code{0}.
4654
4655 @item stop_threshold
4656 This is the same as @option{start_threshold} but for trimming silence from
4657 the end of audio.
4658 Can be specified in dB (in case "dB" is appended to the specified value)
4659 or amplitude ratio. Default value is @code{0}.
4660
4661 @item stop_silence
4662 Specify max duration of silence at end that will be kept after
4663 trimming. Default is 0, which is equal to trimming all samples detected
4664 as silence.
4665
4666 @item stop_mode
4667 Specify mode of detection of silence start in end of multi-channel audio.
4668 Can be @var{any} or @var{all}. Default is @var{any}.
4669 With @var{any}, any sample that is detected as non-silence will cause
4670 stopped trimming of silence.
4671 With @var{all}, only if all channels are detected as non-silence will cause
4672 stopped trimming of silence.
4673
4674 @item detection
4675 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4676 and works better with digital silence which is exactly 0.
4677 Default value is @code{rms}.
4678
4679 @item window
4680 Set duration in number of seconds used to calculate size of window in number
4681 of samples for detecting silence.
4682 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4683 @end table
4684
4685 @subsection Examples
4686
4687 @itemize
4688 @item
4689 The following example shows how this filter can be used to start a recording
4690 that does not contain the delay at the start which usually occurs between
4691 pressing the record button and the start of the performance:
4692 @example
4693 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4694 @end example
4695
4696 @item
4697 Trim all silence encountered from beginning to end where there is more than 1
4698 second of silence in audio:
4699 @example
4700 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4701 @end example
4702 @end itemize
4703
4704 @section sofalizer
4705
4706 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4707 loudspeakers around the user for binaural listening via headphones (audio
4708 formats up to 9 channels supported).
4709 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4710 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4711 Austrian Academy of Sciences.
4712
4713 To enable compilation of this filter you need to configure FFmpeg with
4714 @code{--enable-libmysofa}.
4715
4716 The filter accepts the following options:
4717
4718 @table @option
4719 @item sofa
4720 Set the SOFA file used for rendering.
4721
4722 @item gain
4723 Set gain applied to audio. Value is in dB. Default is 0.
4724
4725 @item rotation
4726 Set rotation of virtual loudspeakers in deg. Default is 0.
4727
4728 @item elevation
4729 Set elevation of virtual speakers in deg. Default is 0.
4730
4731 @item radius
4732 Set distance in meters between loudspeakers and the listener with near-field
4733 HRTFs. Default is 1.
4734
4735 @item type
4736 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4737 processing audio in time domain which is slow.
4738 @var{freq} is processing audio in frequency domain which is fast.
4739 Default is @var{freq}.
4740
4741 @item speakers
4742 Set custom positions of virtual loudspeakers. Syntax for this option is:
4743 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4744 Each virtual loudspeaker is described with short channel name following with
4745 azimuth and elevation in degrees.
4746 Each virtual loudspeaker description is separated by '|'.
4747 For example to override front left and front right channel positions use:
4748 'speakers=FL 45 15|FR 345 15'.
4749 Descriptions with unrecognised channel names are ignored.
4750
4751 @item lfegain
4752 Set custom gain for LFE channels. Value is in dB. Default is 0.
4753
4754 @item framesize
4755 Set custom frame size in number of samples. Default is 1024.
4756 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4757 is set to @var{freq}.
4758
4759 @item normalize
4760 Should all IRs be normalized upon importing SOFA file.
4761 By default is enabled.
4762
4763 @item interpolate
4764 Should nearest IRs be interpolated with neighbor IRs if exact position
4765 does not match. By default is disabled.
4766
4767 @item minphase
4768 Minphase all IRs upon loading of SOFA file. By default is disabled.
4769
4770 @item anglestep
4771 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4772
4773 @item radstep
4774 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4775 @end table
4776
4777 @subsection Examples
4778
4779 @itemize
4780 @item
4781 Using ClubFritz6 sofa file:
4782 @example
4783 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4784 @end example
4785
4786 @item
4787 Using ClubFritz12 sofa file and bigger radius with small rotation:
4788 @example
4789 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4790 @end example
4791
4792 @item
4793 Similar as above but with custom speaker positions for front left, front right, back left and back right
4794 and also with custom gain:
4795 @example
4796 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4797 @end example
4798 @end itemize
4799
4800 @section stereotools
4801
4802 This filter has some handy utilities to manage stereo signals, for converting
4803 M/S stereo recordings to L/R signal while having control over the parameters
4804 or spreading the stereo image of master track.
4805
4806 The filter accepts the following options:
4807
4808 @table @option
4809 @item level_in
4810 Set input level before filtering for both channels. Defaults is 1.
4811 Allowed range is from 0.015625 to 64.
4812
4813 @item level_out
4814 Set output level after filtering for both channels. Defaults is 1.
4815 Allowed range is from 0.015625 to 64.
4816
4817 @item balance_in
4818 Set input balance between both channels. Default is 0.
4819 Allowed range is from -1 to 1.
4820
4821 @item balance_out
4822 Set output balance between both channels. Default is 0.
4823 Allowed range is from -1 to 1.
4824
4825 @item softclip
4826 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4827 clipping. Disabled by default.
4828
4829 @item mutel
4830 Mute the left channel. Disabled by default.
4831
4832 @item muter
4833 Mute the right channel. Disabled by default.
4834
4835 @item phasel
4836 Change the phase of the left channel. Disabled by default.
4837
4838 @item phaser
4839 Change the phase of the right channel. Disabled by default.
4840
4841 @item mode
4842 Set stereo mode. Available values are:
4843
4844 @table @samp
4845 @item lr>lr
4846 Left/Right to Left/Right, this is default.
4847
4848 @item lr>ms
4849 Left/Right to Mid/Side.
4850
4851 @item ms>lr
4852 Mid/Side to Left/Right.
4853
4854 @item lr>ll
4855 Left/Right to Left/Left.
4856
4857 @item lr>rr
4858 Left/Right to Right/Right.
4859
4860 @item lr>l+r
4861 Left/Right to Left + Right.
4862
4863 @item lr>rl
4864 Left/Right to Right/Left.
4865
4866 @item ms>ll
4867 Mid/Side to Left/Left.
4868
4869 @item ms>rr
4870 Mid/Side to Right/Right.
4871 @end table
4872
4873 @item slev
4874 Set level of side signal. Default is 1.
4875 Allowed range is from 0.015625 to 64.
4876
4877 @item sbal
4878 Set balance of side signal. Default is 0.
4879 Allowed range is from -1 to 1.
4880
4881 @item mlev
4882 Set level of the middle signal. Default is 1.
4883 Allowed range is from 0.015625 to 64.
4884
4885 @item mpan
4886 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4887
4888 @item base
4889 Set stereo base between mono and inversed channels. Default is 0.
4890 Allowed range is from -1 to 1.
4891
4892 @item delay
4893 Set delay in milliseconds how much to delay left from right channel and
4894 vice versa. Default is 0. Allowed range is from -20 to 20.
4895
4896 @item sclevel
4897 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4898
4899 @item phase
4900 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4901
4902 @item bmode_in, bmode_out
4903 Set balance mode for balance_in/balance_out option.
4904
4905 Can be one of the following:
4906
4907 @table @samp
4908 @item balance
4909 Classic balance mode. Attenuate one channel at time.
4910 Gain is raised up to 1.
4911
4912 @item amplitude
4913 Similar as classic mode above but gain is raised up to 2.
4914
4915 @item power
4916 Equal power distribution, from -6dB to +6dB range.
4917 @end table
4918 @end table
4919
4920 @subsection Examples
4921
4922 @itemize
4923 @item
4924 Apply karaoke like effect:
4925 @example
4926 stereotools=mlev=0.015625
4927 @end example
4928
4929 @item
4930 Convert M/S signal to L/R:
4931 @example
4932 "stereotools=mode=ms>lr"
4933 @end example
4934 @end itemize
4935
4936 @section stereowiden
4937
4938 This filter enhance the stereo effect by suppressing signal common to both
4939 channels and by delaying the signal of left into right and vice versa,
4940 thereby widening the stereo effect.
4941
4942 The filter accepts the following options:
4943
4944 @table @option
4945 @item delay
4946 Time in milliseconds of the delay of left signal into right and vice versa.
4947 Default is 20 milliseconds.
4948
4949 @item feedback
4950 Amount of gain in delayed signal into right and vice versa. Gives a delay
4951 effect of left signal in right output and vice versa which gives widening
4952 effect. Default is 0.3.
4953
4954 @item crossfeed
4955 Cross feed of left into right with inverted phase. This helps in suppressing
4956 the mono. If the value is 1 it will cancel all the signal common to both
4957 channels. Default is 0.3.
4958
4959 @item drymix
4960 Set level of input signal of original channel. Default is 0.8.
4961 @end table
4962
4963 @section superequalizer
4964 Apply 18 band equalizer.
4965
4966 The filter accepts the following options:
4967 @table @option
4968 @item 1b
4969 Set 65Hz band gain.
4970 @item 2b
4971 Set 92Hz band gain.
4972 @item 3b
4973 Set 131Hz band gain.
4974 @item 4b
4975 Set 185Hz band gain.
4976 @item 5b
4977 Set 262Hz band gain.
4978 @item 6b
4979 Set 370Hz band gain.
4980 @item 7b
4981 Set 523Hz band gain.
4982 @item 8b
4983 Set 740Hz band gain.
4984 @item 9b
4985 Set 1047Hz band gain.
4986 @item 10b
4987 Set 1480Hz band gain.
4988 @item 11b
4989 Set 2093Hz band gain.
4990 @item 12b
4991 Set 2960Hz band gain.
4992 @item 13b
4993 Set 4186Hz band gain.
4994 @item 14b
4995 Set 5920Hz band gain.
4996 @item 15b
4997 Set 8372Hz band gain.
4998 @item 16b
4999 Set 11840Hz band gain.
5000 @item 17b
5001 Set 16744Hz band gain.
5002 @item 18b
5003 Set 20000Hz band gain.
5004 @end table
5005
5006 @section surround
5007 Apply audio surround upmix filter.
5008
5009 This filter allows to produce multichannel output from audio stream.
5010
5011 The filter accepts the following options:
5012
5013 @table @option
5014 @item chl_out
5015 Set output channel layout. By default, this is @var{5.1}.
5016
5017 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5018 for the required syntax.
5019
5020 @item chl_in
5021 Set input channel layout. By default, this is @var{stereo}.
5022
5023 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5024 for the required syntax.
5025
5026 @item level_in
5027 Set input volume level. By default, this is @var{1}.
5028
5029 @item level_out
5030 Set output volume level. By default, this is @var{1}.
5031
5032 @item lfe
5033 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5034
5035 @item lfe_low
5036 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5037
5038 @item lfe_high
5039 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5040
5041 @item lfe_mode
5042 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5043 In @var{add} mode, LFE channel is created from input audio and added to output.
5044 In @var{sub} mode, LFE channel is created from input audio and added to output but
5045 also all non-LFE output channels are subtracted with output LFE channel.
5046
5047 @item angle
5048 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5049 Default is @var{90}.
5050
5051 @item fc_in
5052 Set front center input volume. By default, this is @var{1}.
5053
5054 @item fc_out
5055 Set front center output volume. By default, this is @var{1}.
5056
5057 @item fl_in
5058 Set front left input volume. By default, this is @var{1}.
5059
5060 @item fl_out
5061 Set front left output volume. By default, this is @var{1}.
5062
5063 @item fr_in
5064 Set front right input volume. By default, this is @var{1}.
5065
5066 @item fr_out
5067 Set front right output volume. By default, this is @var{1}.
5068
5069 @item sl_in
5070 Set side left input volume. By default, this is @var{1}.
5071
5072 @item sl_out
5073 Set side left output volume. By default, this is @var{1}.
5074
5075 @item sr_in
5076 Set side right input volume. By default, this is @var{1}.
5077
5078 @item sr_out
5079 Set side right output volume. By default, this is @var{1}.
5080
5081 @item bl_in
5082 Set back left input volume. By default, this is @var{1}.
5083
5084 @item bl_out
5085 Set back left output volume. By default, this is @var{1}.
5086
5087 @item br_in
5088 Set back right input volume. By default, this is @var{1}.
5089
5090 @item br_out
5091 Set back right output volume. By default, this is @var{1}.
5092
5093 @item bc_in
5094 Set back center input volume. By default, this is @var{1}.
5095
5096 @item bc_out
5097 Set back center output volume. By default, this is @var{1}.
5098
5099 @item lfe_in
5100 Set LFE input volume. By default, this is @var{1}.
5101
5102 @item lfe_out
5103 Set LFE output volume. By default, this is @var{1}.
5104
5105 @item allx
5106 Set spread usage of stereo image across X axis for all channels.
5107
5108 @item ally
5109 Set spread usage of stereo image across Y axis for all channels.
5110
5111 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5112 Set spread usage of stereo image across X axis for each channel.
5113
5114 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5115 Set spread usage of stereo image across Y axis for each channel.
5116
5117 @item win_size
5118 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5119
5120 @item win_func
5121 Set window function.
5122
5123 It accepts the following values:
5124 @table @samp
5125 @item rect
5126 @item bartlett
5127 @item hann, hanning
5128 @item hamming
5129 @item blackman
5130 @item welch
5131 @item flattop
5132 @item bharris
5133 @item bnuttall
5134 @item bhann
5135 @item sine
5136 @item nuttall
5137 @item lanczos
5138 @item gauss
5139 @item tukey
5140 @item dolph
5141 @item cauchy
5142 @item parzen
5143 @item poisson
5144 @item bohman
5145 @end table
5146 Default is @code{hann}.
5147
5148 @item overlap
5149 Set window overlap. If set to 1, the recommended overlap for selected
5150 window function will be picked. Default is @code{0.5}.
5151 @end table
5152
5153 @section treble, highshelf
5154
5155 Boost or cut treble (upper) frequencies of the audio using a two-pole
5156 shelving filter with a response similar to that of a standard
5157 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5158
5159 The filter accepts the following options:
5160
5161 @table @option
5162 @item gain, g
5163 Give the gain at whichever is the lower of ~22 kHz and the
5164 Nyquist frequency. Its useful range is about -20 (for a large cut)
5165 to +20 (for a large boost). Beware of clipping when using a positive gain.
5166
5167 @item frequency, f
5168 Set the filter's central frequency and so can be used
5169 to extend or reduce the frequency range to be boosted or cut.
5170 The default value is @code{3000} Hz.
5171
5172 @item width_type, t
5173 Set method to specify band-width of filter.
5174 @table @option
5175 @item h
5176 Hz
5177 @item q
5178 Q-Factor
5179 @item o
5180 octave
5181 @item s
5182 slope
5183 @item k
5184 kHz
5185 @end table
5186
5187 @item width, w
5188 Determine how steep is the filter's shelf transition.
5189
5190 @item mix, m
5191 How much to use filtered signal in output. Default is 1.
5192 Range is between 0 and 1.
5193
5194 @item channels, c
5195 Specify which channels to filter, by default all available are filtered.
5196 @end table
5197
5198 @subsection Commands
5199
5200 This filter supports the following commands:
5201 @table @option
5202 @item frequency, f
5203 Change treble frequency.
5204 Syntax for the command is : "@var{frequency}"
5205
5206 @item width_type, t
5207 Change treble width_type.
5208 Syntax for the command is : "@var{width_type}"
5209
5210 @item width, w
5211 Change treble width.
5212 Syntax for the command is : "@var{width}"
5213
5214 @item gain, g
5215 Change treble gain.
5216 Syntax for the command is : "@var{gain}"
5217
5218 @item mix, m
5219 Change treble mix.
5220 Syntax for the command is : "@var{mix}"
5221 @end table
5222
5223 @section tremolo
5224
5225 Sinusoidal amplitude modulation.
5226
5227 The filter accepts the following options:
5228
5229 @table @option
5230 @item f
5231 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5232 (20 Hz or lower) will result in a tremolo effect.
5233 This filter may also be used as a ring modulator by specifying
5234 a modulation frequency higher than 20 Hz.
5235 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5236
5237 @item d
5238 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5239 Default value is 0.5.
5240 @end table
5241
5242 @section vibrato
5243
5244 Sinusoidal phase modulation.
5245
5246 The filter accepts the following options:
5247
5248 @table @option
5249 @item f
5250 Modulation frequency in Hertz.
5251 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5252
5253 @item d
5254 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5255 Default value is 0.5.
5256 @end table
5257
5258 @section volume
5259
5260 Adjust the input audio volume.
5261
5262 It accepts the following parameters:
5263 @table @option
5264
5265 @item volume
5266 Set audio volume expression.
5267
5268 Output values are clipped to the maximum value.
5269
5270 The output audio volume is given by the relation:
5271 @example
5272 @var{output_volume} = @var{volume} * @var{input_volume}
5273 @end example
5274
5275 The default value for @var{volume} is "1.0".
5276
5277 @item precision
5278 This parameter represents the mathematical precision.
5279
5280 It determines which input sample formats will be allowed, which affects the
5281 precision of the volume scaling.
5282
5283 @table @option
5284 @item fixed
5285 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5286 @item float
5287 32-bit floating-point; this limits input sample format to FLT. (default)
5288 @item double
5289 64-bit floating-point; this limits input sample format to DBL.
5290 @end table
5291
5292 @item replaygain
5293 Choose the behaviour on encountering ReplayGain side data in input frames.
5294
5295 @table @option
5296 @item drop
5297 Remove ReplayGain side data, ignoring its contents (the default).
5298
5299 @item ignore
5300 Ignore ReplayGain side data, but leave it in the frame.
5301
5302 @item track
5303 Prefer the track gain, if present.
5304
5305 @item album
5306 Prefer the album gain, if present.
5307 @end table
5308
5309 @item replaygain_preamp
5310 Pre-amplification gain in dB to apply to the selected replaygain gain.
5311
5312 Default value for @var{replaygain_preamp} is 0.0.
5313
5314 @item eval
5315 Set when the volume expression is evaluated.
5316
5317 It accepts the following values:
5318 @table @samp
5319 @item once
5320 only evaluate expression once during the filter initialization, or
5321 when the @samp{volume} command is sent
5322
5323 @item frame
5324 evaluate expression for each incoming frame
5325 @end table
5326
5327 Default value is @samp{once}.
5328 @end table
5329
5330 The volume expression can contain the following parameters.
5331
5332 @table @option
5333 @item n
5334 frame number (starting at zero)
5335 @item nb_channels
5336 number of channels
5337 @item nb_consumed_samples
5338 number of samples consumed by the filter
5339 @item nb_samples
5340 number of samples in the current frame
5341 @item pos
5342 original frame position in the file
5343 @item pts
5344 frame PTS
5345 @item sample_rate
5346 sample rate
5347 @item startpts
5348 PTS at start of stream
5349 @item startt
5350 time at start of stream
5351 @item t
5352 frame time
5353 @item tb
5354 timestamp timebase
5355 @item volume
5356 last set volume value
5357 @end table
5358
5359 Note that when @option{eval} is set to @samp{once} only the
5360 @var{sample_rate} and @var{tb} variables are available, all other
5361 variables will evaluate to NAN.
5362
5363 @subsection Commands
5364
5365 This filter supports the following commands:
5366 @table @option
5367 @item volume
5368 Modify the volume expression.
5369 The command accepts the same syntax of the corresponding option.
5370
5371 If the specified expression is not valid, it is kept at its current
5372 value.
5373 @item replaygain_noclip
5374 Prevent clipping by limiting the gain applied.
5375
5376 Default value for @var{replaygain_noclip} is 1.
5377
5378 @end table
5379
5380 @subsection Examples
5381
5382 @itemize
5383 @item
5384 Halve the input audio volume:
5385 @example
5386 volume=volume=0.5
5387 volume=volume=1/2
5388 volume=volume=-6.0206dB
5389 @end example
5390
5391 In all the above example the named key for @option{volume} can be
5392 omitted, for example like in:
5393 @example
5394 volume=0.5
5395 @end example
5396
5397 @item
5398 Increase input audio power by 6 decibels using fixed-point precision:
5399 @example
5400 volume=volume=6dB:precision=fixed
5401 @end example
5402
5403 @item
5404 Fade volume after time 10 with an annihilation period of 5 seconds:
5405 @example
5406 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5407 @end example
5408 @end itemize
5409
5410 @section volumedetect
5411
5412 Detect the volume of the input video.
5413
5414 The filter has no parameters. The input is not modified. Statistics about
5415 the volume will be printed in the log when the input stream end is reached.
5416
5417 In particular it will show the mean volume (root mean square), maximum
5418 volume (on a per-sample basis), and the beginning of a histogram of the
5419 registered volume values (from the maximum value to a cumulated 1/1000 of
5420 the samples).
5421
5422 All volumes are in decibels relative to the maximum PCM value.
5423
5424 @subsection Examples
5425
5426 Here is an excerpt of the output:
5427 @example
5428 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5429 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5430 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5431 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5432 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5433 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5434 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5435 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5436 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5437 @end example
5438
5439 It means that:
5440 @itemize
5441 @item
5442 The mean square energy is approximately -27 dB, or 10^-2.7.
5443 @item
5444 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5445 @item
5446 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5447 @end itemize
5448
5449 In other words, raising the volume by +4 dB does not cause any clipping,
5450 raising it by +5 dB causes clipping for 6 samples, etc.
5451
5452 @c man end AUDIO FILTERS
5453
5454 @chapter Audio Sources
5455 @c man begin AUDIO SOURCES
5456
5457 Below is a description of the currently available audio sources.
5458
5459 @section abuffer
5460
5461 Buffer audio frames, and make them available to the filter chain.
5462
5463 This source is mainly intended for a programmatic use, in particular
5464 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5465
5466 It accepts the following parameters:
5467 @table @option
5468
5469 @item time_base
5470 The timebase which will be used for timestamps of submitted frames. It must be
5471 either a floating-point number or in @var{numerator}/@var{denominator} form.
5472
5473 @item sample_rate
5474 The sample rate of the incoming audio buffers.
5475
5476 @item sample_fmt
5477 The sample format of the incoming audio buffers.
5478 Either a sample format name or its corresponding integer representation from
5479 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5480
5481 @item channel_layout
5482 The channel layout of the incoming audio buffers.
5483 Either a channel layout name from channel_layout_map in
5484 @file{libavutil/channel_layout.c} or its corresponding integer representation
5485 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5486
5487 @item channels
5488 The number of channels of the incoming audio buffers.
5489 If both @var{channels} and @var{channel_layout} are specified, then they
5490 must be consistent.
5491
5492 @end table
5493
5494 @subsection Examples
5495
5496 @example
5497 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5498 @end example
5499
5500 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5501 Since the sample format with name "s16p" corresponds to the number
5502 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5503 equivalent to:
5504 @example
5505 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5506 @end example
5507
5508 @section aevalsrc
5509
5510 Generate an audio signal specified by an expression.
5511
5512 This source accepts in input one or more expressions (one for each
5513 channel), which are evaluated and used to generate a corresponding
5514 audio signal.
5515
5516 This source accepts the following options:
5517
5518 @table @option
5519 @item exprs
5520 Set the '|'-separated expressions list for each separate channel. In case the
5521 @option{channel_layout} option is not specified, the selected channel layout
5522 depends on the number of provided expressions. Otherwise the last
5523 specified expression is applied to the remaining output channels.
5524
5525 @item channel_layout, c
5526 Set the channel layout. The number of channels in the specified layout
5527 must be equal to the number of specified expressions.
5528
5529 @item duration, d
5530 Set the minimum duration of the sourced audio. See
5531 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5532 for the accepted syntax.
5533 Note that the resulting duration may be greater than the specified
5534 duration, as the generated audio is always cut at the end of a
5535 complete frame.
5536
5537 If not specified, or the expressed duration is negative, the audio is
5538 supposed to be generated forever.
5539
5540 @item nb_samples, n
5541 Set the number of samples per channel per each output frame,
5542 default to 1024.
5543
5544 @item sample_rate, s
5545 Specify the sample rate, default to 44100.
5546 @end table
5547
5548 Each expression in @var{exprs} can contain the following constants:
5549
5550 @table @option
5551 @item n
5552 number of the evaluated sample, starting from 0
5553
5554 @item t
5555 time of the evaluated sample expressed in seconds, starting from 0
5556
5557 @item s
5558 sample rate
5559
5560 @end table
5561
5562 @subsection Examples
5563
5564 @itemize
5565 @item
5566 Generate silence:
5567 @example
5568 aevalsrc=0
5569 @end example
5570
5571 @item
5572 Generate a sin signal with frequency of 440 Hz, set sample rate to
5573 8000 Hz:
5574 @example
5575 aevalsrc="sin(440*2*PI*t):s=8000"
5576 @end example
5577
5578 @item
5579 Generate a two channels signal, specify the channel layout (Front
5580 Center + Back Center) explicitly:
5581 @example
5582 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5583 @end example
5584
5585 @item
5586 Generate white noise:
5587 @example
5588 aevalsrc="-2+random(0)"
5589 @end example
5590
5591 @item
5592 Generate an amplitude modulated signal:
5593 @example
5594 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5595 @end example
5596
5597 @item
5598 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5599 @example
5600 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5601 @end example
5602
5603 @end itemize
5604
5605 @section anullsrc
5606
5607 The null audio source, return unprocessed audio frames. It is mainly useful
5608 as a template and to be employed in analysis / debugging tools, or as
5609 the source for filters which ignore the input data (for example the sox
5610 synth filter).
5611
5612 This source accepts the following options:
5613
5614 @table @option
5615
5616 @item channel_layout, cl
5617
5618 Specifies the channel layout, and can be either an integer or a string
5619 representing a channel layout. The default value of @var{channel_layout}
5620 is "stereo".
5621
5622 Check the channel_layout_map definition in
5623 @file{libavutil/channel_layout.c} for the mapping between strings and
5624 channel layout values.
5625
5626 @item sample_rate, r
5627 Specifies the sample rate, and defaults to 44100.
5628
5629 @item nb_samples, n
5630 Set the number of samples per requested frames.
5631
5632 @end table
5633
5634 @subsection Examples
5635
5636 @itemize
5637 @item
5638 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5639 @example
5640 anullsrc=r=48000:cl=4
5641 @end example
5642
5643 @item
5644 Do the same operation with a more obvious syntax:
5645 @example
5646 anullsrc=r=48000:cl=mono
5647 @end example
5648 @end itemize
5649
5650 All the parameters need to be explicitly defined.
5651
5652 @section flite
5653
5654 Synthesize a voice utterance using the libflite library.
5655
5656 To enable compilation of this filter you need to configure FFmpeg with
5657 @code{--enable-libflite}.
5658
5659 Note that versions of the flite library prior to 2.0 are not thread-safe.
5660
5661 The filter accepts the following options:
5662
5663 @table @option
5664
5665 @item list_voices
5666 If set to 1, list the names of the available voices and exit
5667 immediately. Default value is 0.
5668
5669 @item nb_samples, n
5670 Set the maximum number of samples per frame. Default value is 512.
5671
5672 @item textfile
5673 Set the filename containing the text to speak.
5674
5675 @item text
5676 Set the text to speak.
5677
5678 @item voice, v
5679 Set the voice to use for the speech synthesis. Default value is
5680 @code{kal}. See also the @var{list_voices} option.
5681 @end table
5682
5683 @subsection Examples
5684
5685 @itemize
5686 @item
5687 Read from file @file{speech.txt}, and synthesize the text using the
5688 standard flite voice:
5689 @example
5690 flite=textfile=speech.txt
5691 @end example
5692
5693 @item
5694 Read the specified text selecting the @code{slt} voice:
5695 @example
5696 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5697 @end example
5698
5699 @item
5700 Input text to ffmpeg:
5701 @example
5702 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5703 @end example
5704
5705 @item
5706 Make @file{ffplay} speak the specified text, using @code{flite} and
5707 the @code{lavfi} device:
5708 @example
5709 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5710 @end example
5711 @end itemize
5712
5713 For more information about libflite, check:
5714 @url{http://www.festvox.org/flite/}
5715
5716 @section anoisesrc
5717
5718 Generate a noise audio signal.
5719
5720 The filter accepts the following options:
5721
5722 @table @option
5723 @item sample_rate, r
5724 Specify the sample rate. Default value is 48000 Hz.
5725
5726 @item amplitude, a
5727 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5728 is 1.0.
5729
5730 @item duration, d
5731 Specify the duration of the generated audio stream. Not specifying this option
5732 results in noise with an infinite length.
5733
5734 @item color, colour, c
5735 Specify the color of noise. Available noise colors are white, pink, brown,
5736 blue and violet. Default color is white.
5737
5738 @item seed, s
5739 Specify a value used to seed the PRNG.
5740
5741 @item nb_samples, n
5742 Set the number of samples per each output frame, default is 1024.
5743 @end table
5744
5745 @subsection Examples
5746
5747 @itemize
5748
5749 @item
5750 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5751 @example
5752 anoisesrc=d=60:c=pink:r=44100:a=0.5
5753 @end example
5754 @end itemize
5755
5756 @section hilbert
5757
5758 Generate odd-tap Hilbert transform FIR coefficients.
5759
5760 The resulting stream can be used with @ref{afir} filter for phase-shifting
5761 the signal by 90 degrees.
5762
5763 This is used in many matrix coding schemes and for analytic signal generation.
5764 The process is often written as a multiplication by i (or j), the imaginary unit.
5765
5766 The filter accepts the following options:
5767
5768 @table @option
5769
5770 @item sample_rate, s
5771 Set sample rate, default is 44100.
5772
5773 @item taps, t
5774 Set length of FIR filter, default is 22051.
5775
5776 @item nb_samples, n
5777 Set number of samples per each frame.
5778
5779 @item win_func, w
5780 Set window function to be used when generating FIR coefficients.
5781 @end table
5782
5783 @section sinc
5784
5785 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5786
5787 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5788
5789 The filter accepts the following options:
5790
5791 @table @option
5792 @item sample_rate, r
5793 Set sample rate, default is 44100.
5794
5795 @item nb_samples, n
5796 Set number of samples per each frame. Default is 1024.
5797
5798 @item hp
5799 Set high-pass frequency. Default is 0.
5800
5801 @item lp
5802 Set low-pass frequency. Default is 0.
5803 If high-pass frequency is lower than low-pass frequency and low-pass frequency
5804 is higher than 0 then filter will create band-pass filter coefficients,
5805 otherwise band-reject filter coefficients.
5806
5807 @item phase
5808 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
5809
5810 @item beta
5811 Set Kaiser window beta.
5812
5813 @item att
5814 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
5815
5816 @item round
5817 Enable rounding, by default is disabled.
5818
5819 @item hptaps
5820 Set number of taps for high-pass filter.
5821
5822 @item lptaps
5823 Set number of taps for low-pass filter.
5824 @end table
5825
5826 @section sine
5827
5828 Generate an audio signal made of a sine wave with amplitude 1/8.
5829
5830 The audio signal is bit-exact.
5831
5832 The filter accepts the following options:
5833
5834 @table @option
5835
5836 @item frequency, f
5837 Set the carrier frequency. Default is 440 Hz.
5838
5839 @item beep_factor, b
5840 Enable a periodic beep every second with frequency @var{beep_factor} times
5841 the carrier frequency. Default is 0, meaning the beep is disabled.
5842
5843 @item sample_rate, r
5844 Specify the sample rate, default is 44100.
5845
5846 @item duration, d
5847 Specify the duration of the generated audio stream.
5848
5849 @item samples_per_frame
5850 Set the number of samples per output frame.
5851
5852 The expression can contain the following constants:
5853
5854 @table @option
5855 @item n
5856 The (sequential) number of the output audio frame, starting from 0.
5857
5858 @item pts
5859 The PTS (Presentation TimeStamp) of the output audio frame,
5860 expressed in @var{TB} units.
5861
5862 @item t
5863 The PTS of the output audio frame, expressed in seconds.
5864
5865 @item TB
5866 The timebase of the output audio frames.
5867 @end table
5868
5869 Default is @code{1024}.
5870 @end table
5871
5872 @subsection Examples
5873
5874 @itemize
5875
5876 @item
5877 Generate a simple 440 Hz sine wave:
5878 @example
5879 sine
5880 @end example
5881
5882 @item
5883 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5884 @example
5885 sine=220:4:d=5
5886 sine=f=220:b=4:d=5
5887 sine=frequency=220:beep_factor=4:duration=5
5888 @end example
5889
5890 @item
5891 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5892 pattern:
5893 @example
5894 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5895 @end example
5896 @end itemize
5897
5898 @c man end AUDIO SOURCES
5899
5900 @chapter Audio Sinks
5901 @c man begin AUDIO SINKS
5902
5903 Below is a description of the currently available audio sinks.
5904
5905 @section abuffersink
5906
5907 Buffer audio frames, and make them available to the end of filter chain.
5908
5909 This sink is mainly intended for programmatic use, in particular
5910 through the interface defined in @file{libavfilter/buffersink.h}
5911 or the options system.
5912
5913 It accepts a pointer to an AVABufferSinkContext structure, which
5914 defines the incoming buffers' formats, to be passed as the opaque
5915 parameter to @code{avfilter_init_filter} for initialization.
5916 @section anullsink
5917
5918 Null audio sink; do absolutely nothing with the input audio. It is
5919 mainly useful as a template and for use in analysis / debugging
5920 tools.
5921
5922 @c man end AUDIO SINKS
5923
5924 @chapter Video Filters
5925 @c man begin VIDEO FILTERS
5926
5927 When you configure your FFmpeg build, you can disable any of the
5928 existing filters using @code{--disable-filters}.
5929 The configure output will show the video filters included in your
5930 build.
5931
5932 Below is a description of the currently available video filters.
5933
5934 @section alphaextract
5935
5936 Extract the alpha component from the input as a grayscale video. This
5937 is especially useful with the @var{alphamerge} filter.
5938
5939 @section alphamerge
5940
5941 Add or replace the alpha component of the primary input with the
5942 grayscale value of a second input. This is intended for use with
5943 @var{alphaextract} to allow the transmission or storage of frame
5944 sequences that have alpha in a format that doesn't support an alpha
5945 channel.
5946
5947 For example, to reconstruct full frames from a normal YUV-encoded video
5948 and a separate video created with @var{alphaextract}, you might use:
5949 @example
5950 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
5951 @end example
5952
5953 Since this filter is designed for reconstruction, it operates on frame
5954 sequences without considering timestamps, and terminates when either
5955 input reaches end of stream. This will cause problems if your encoding
5956 pipeline drops frames. If you're trying to apply an image as an
5957 overlay to a video stream, consider the @var{overlay} filter instead.
5958
5959 @section amplify
5960
5961 Amplify differences between current pixel and pixels of adjacent frames in
5962 same pixel location.
5963
5964 This filter accepts the following options:
5965
5966 @table @option
5967 @item radius
5968 Set frame radius. Default is 2. Allowed range is from 1 to 63.
5969 For example radius of 3 will instruct filter to calculate average of 7 frames.
5970
5971 @item factor
5972 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
5973
5974 @item threshold
5975 Set threshold for difference amplification. Any difference greater or equal to
5976 this value will not alter source pixel. Default is 10.
5977 Allowed range is from 0 to 65535.
5978
5979 @item tolerance
5980 Set tolerance for difference amplification. Any difference lower to
5981 this value will not alter source pixel. Default is 0.
5982 Allowed range is from 0 to 65535.
5983
5984 @item low
5985 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5986 This option controls maximum possible value that will decrease source pixel value.
5987
5988 @item high
5989 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
5990 This option controls maximum possible value that will increase source pixel value.
5991
5992 @item planes
5993 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
5994 @end table
5995
5996 @section ass
5997
5998 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
5999 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6000 Substation Alpha) subtitles files.
6001
6002 This filter accepts the following option in addition to the common options from
6003 the @ref{subtitles} filter:
6004
6005 @table @option
6006 @item shaping
6007 Set the shaping engine
6008
6009 Available values are:
6010 @table @samp
6011 @item auto
6012 The default libass shaping engine, which is the best available.
6013 @item simple
6014 Fast, font-agnostic shaper that can do only substitutions
6015 @item complex
6016 Slower shaper using OpenType for substitutions and positioning
6017 @end table
6018
6019 The default is @code{auto}.
6020 @end table
6021
6022 @section atadenoise
6023 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6024
6025 The filter accepts the following options:
6026
6027 @table @option
6028 @item 0a
6029 Set threshold A for 1st plane. Default is 0.02.
6030 Valid range is 0 to 0.3.
6031
6032 @item 0b
6033 Set threshold B for 1st plane. Default is 0.04.
6034 Valid range is 0 to 5.
6035
6036 @item 1a
6037 Set threshold A for 2nd plane. Default is 0.02.
6038 Valid range is 0 to 0.3.
6039
6040 @item 1b
6041 Set threshold B for 2nd plane. Default is 0.04.
6042 Valid range is 0 to 5.
6043
6044 @item 2a
6045 Set threshold A for 3rd plane. Default is 0.02.
6046 Valid range is 0 to 0.3.
6047
6048 @item 2b
6049 Set threshold B for 3rd plane. Default is 0.04.
6050 Valid range is 0 to 5.
6051
6052 Threshold A is designed to react on abrupt changes in the input signal and
6053 threshold B is designed to react on continuous changes in the input signal.
6054
6055 @item s
6056 Set number of frames filter will use for averaging. Default is 9. Must be odd
6057 number in range [5, 129].
6058
6059 @item p
6060 Set what planes of frame filter will use for averaging. Default is all.
6061 @end table
6062
6063 @section avgblur
6064
6065 Apply average blur filter.
6066
6067 The filter accepts the following options:
6068
6069 @table @option
6070 @item sizeX
6071 Set horizontal radius size.
6072
6073 @item planes
6074 Set which planes to filter. By default all planes are filtered.
6075
6076 @item sizeY
6077 Set vertical radius size, if zero it will be same as @code{sizeX}.
6078 Default is @code{0}.
6079 @end table
6080
6081 @section bbox
6082
6083 Compute the bounding box for the non-black pixels in the input frame
6084 luminance plane.
6085
6086 This filter computes the bounding box containing all the pixels with a
6087 luminance value greater than the minimum allowed value.
6088 The parameters describing the bounding box are printed on the filter
6089 log.
6090
6091 The filter accepts the following option:
6092
6093 @table @option
6094 @item min_val
6095 Set the minimal luminance value. Default is @code{16}.
6096 @end table
6097
6098 @section bitplanenoise
6099
6100 Show and measure bit plane noise.
6101
6102 The filter accepts the following options:
6103
6104 @table @option
6105 @item bitplane
6106 Set which plane to analyze. Default is @code{1}.
6107
6108 @item filter
6109 Filter out noisy pixels from @code{bitplane} set above.
6110 Default is disabled.
6111 @end table
6112
6113 @section blackdetect
6114
6115 Detect video intervals that are (almost) completely black. Can be
6116 useful to detect chapter transitions, commercials, or invalid
6117 recordings. Output lines contains the time for the start, end and
6118 duration of the detected black interval expressed in seconds.
6119
6120 In order to display the output lines, you need to set the loglevel at
6121 least to the AV_LOG_INFO value.
6122
6123 The filter accepts the following options:
6124
6125 @table @option
6126 @item black_min_duration, d
6127 Set the minimum detected black duration expressed in seconds. It must
6128 be a non-negative floating point number.
6129
6130 Default value is 2.0.
6131
6132 @item picture_black_ratio_th, pic_th
6133 Set the threshold for considering a picture "black".
6134 Express the minimum value for the ratio:
6135 @example
6136 @var{nb_black_pixels} / @var{nb_pixels}
6137 @end example
6138
6139 for which a picture is considered black.
6140 Default value is 0.98.
6141
6142 @item pixel_black_th, pix_th
6143 Set the threshold for considering a pixel "black".
6144
6145 The threshold expresses the maximum pixel luminance value for which a
6146 pixel is considered "black". The provided value is scaled according to
6147 the following equation:
6148 @example
6149 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6150 @end example
6151
6152 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6153 the input video format, the range is [0-255] for YUV full-range
6154 formats and [16-235] for YUV non full-range formats.
6155
6156 Default value is 0.10.
6157 @end table
6158
6159 The following example sets the maximum pixel threshold to the minimum
6160 value, and detects only black intervals of 2 or more seconds:
6161 @example
6162 blackdetect=d=2:pix_th=0.00
6163 @end example
6164
6165 @section blackframe
6166
6167 Detect frames that are (almost) completely black. Can be useful to
6168 detect chapter transitions or commercials. Output lines consist of
6169 the frame number of the detected frame, the percentage of blackness,
6170 the position in the file if known or -1 and the timestamp in seconds.
6171
6172 In order to display the output lines, you need to set the loglevel at
6173 least to the AV_LOG_INFO value.
6174
6175 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6176 The value represents the percentage of pixels in the picture that
6177 are below the threshold value.
6178
6179 It accepts the following parameters:
6180
6181 @table @option
6182
6183 @item amount
6184 The percentage of the pixels that have to be below the threshold; it defaults to
6185 @code{98}.
6186
6187 @item threshold, thresh
6188 The threshold below which a pixel value is considered black; it defaults to
6189 @code{32}.
6190
6191 @end table
6192
6193 @section blend, tblend
6194
6195 Blend two video frames into each other.
6196
6197 The @code{blend} filter takes two input streams and outputs one
6198 stream, the first input is the "top" layer and second input is
6199 "bottom" layer.  By default, the output terminates when the longest input terminates.
6200
6201 The @code{tblend} (time blend) filter takes two consecutive frames
6202 from one single stream, and outputs the result obtained by blending
6203 the new frame on top of the old frame.
6204
6205 A description of the accepted options follows.
6206
6207 @table @option
6208 @item c0_mode
6209 @item c1_mode
6210 @item c2_mode
6211 @item c3_mode
6212 @item all_mode
6213 Set blend mode for specific pixel component or all pixel components in case
6214 of @var{all_mode}. Default value is @code{normal}.
6215
6216 Available values for component modes are:
6217 @table @samp
6218 @item addition
6219 @item grainmerge
6220 @item and
6221 @item average
6222 @item burn
6223 @item darken
6224 @item difference
6225 @item grainextract
6226 @item divide
6227 @item dodge
6228 @item freeze
6229 @item exclusion
6230 @item extremity
6231 @item glow
6232 @item hardlight
6233 @item hardmix
6234 @item heat
6235 @item lighten
6236 @item linearlight
6237 @item multiply
6238 @item multiply128
6239 @item negation
6240 @item normal
6241 @item or
6242 @item overlay
6243 @item phoenix
6244 @item pinlight
6245 @item reflect
6246 @item screen
6247 @item softlight
6248 @item subtract
6249 @item vividlight
6250 @item xor
6251 @end table
6252
6253 @item c0_opacity
6254 @item c1_opacity
6255 @item c2_opacity
6256 @item c3_opacity
6257 @item all_opacity
6258 Set blend opacity for specific pixel component or all pixel components in case
6259 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6260
6261 @item c0_expr
6262 @item c1_expr
6263 @item c2_expr
6264 @item c3_expr
6265 @item all_expr
6266 Set blend expression for specific pixel component or all pixel components in case
6267 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6268
6269 The expressions can use the following variables:
6270
6271 @table @option
6272 @item N
6273 The sequential number of the filtered frame, starting from @code{0}.
6274
6275 @item X
6276 @item Y
6277 the coordinates of the current sample
6278
6279 @item W
6280 @item H
6281 the width and height of currently filtered plane
6282
6283 @item SW
6284 @item SH
6285 Width and height scale for the plane being filtered. It is the
6286 ratio between the dimensions of the current plane to the luma plane,
6287 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6288 the luma plane and @code{0.5,0.5} for the chroma planes.
6289
6290 @item T
6291 Time of the current frame, expressed in seconds.
6292
6293 @item TOP, A
6294 Value of pixel component at current location for first video frame (top layer).
6295
6296 @item BOTTOM, B
6297 Value of pixel component at current location for second video frame (bottom layer).
6298 @end table
6299 @end table
6300
6301 The @code{blend} filter also supports the @ref{framesync} options.
6302
6303 @subsection Examples
6304
6305 @itemize
6306 @item
6307 Apply transition from bottom layer to top layer in first 10 seconds:
6308 @example
6309 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6310 @end example
6311
6312 @item
6313 Apply linear horizontal transition from top layer to bottom layer:
6314 @example
6315 blend=all_expr='A*(X/W)+B*(1-X/W)'
6316 @end example
6317
6318 @item
6319 Apply 1x1 checkerboard effect:
6320 @example
6321 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6322 @end example
6323
6324 @item
6325 Apply uncover left effect:
6326 @example
6327 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6328 @end example
6329
6330 @item
6331 Apply uncover down effect:
6332 @example
6333 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6334 @end example
6335
6336 @item
6337 Apply uncover up-left effect:
6338 @example
6339 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6340 @end example
6341
6342 @item
6343 Split diagonally video and shows top and bottom layer on each side:
6344 @example
6345 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6346 @end example
6347
6348 @item
6349 Display differences between the current and the previous frame:
6350 @example
6351 tblend=all_mode=grainextract
6352 @end example
6353 @end itemize
6354
6355 @section bm3d
6356
6357 Denoise frames using Block-Matching 3D algorithm.
6358
6359 The filter accepts the following options.
6360
6361 @table @option
6362 @item sigma
6363 Set denoising strength. Default value is 1.
6364 Allowed range is from 0 to 999.9.
6365 The denoising algorithm is very sensitive to sigma, so adjust it
6366 according to the source.
6367
6368 @item block
6369 Set local patch size. This sets dimensions in 2D.
6370
6371 @item bstep
6372 Set sliding step for processing blocks. Default value is 4.
6373 Allowed range is from 1 to 64.
6374 Smaller values allows processing more reference blocks and is slower.
6375
6376 @item group
6377 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6378 When set to 1, no block matching is done. Larger values allows more blocks
6379 in single group.
6380 Allowed range is from 1 to 256.
6381
6382 @item range
6383 Set radius for search block matching. Default is 9.
6384 Allowed range is from 1 to INT32_MAX.
6385
6386 @item mstep
6387 Set step between two search locations for block matching. Default is 1.
6388 Allowed range is from 1 to 64. Smaller is slower.
6389
6390 @item thmse
6391 Set threshold of mean square error for block matching. Valid range is 0 to
6392 INT32_MAX.
6393
6394 @item hdthr
6395 Set thresholding parameter for hard thresholding in 3D transformed domain.
6396 Larger values results in stronger hard-thresholding filtering in frequency
6397 domain.
6398
6399 @item estim
6400 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6401 Default is @code{basic}.
6402
6403 @item ref
6404 If enabled, filter will use 2nd stream for block matching.
6405 Default is disabled for @code{basic} value of @var{estim} option,
6406 and always enabled if value of @var{estim} is @code{final}.
6407
6408 @item planes
6409 Set planes to filter. Default is all available except alpha.
6410 @end table
6411
6412 @subsection Examples
6413
6414 @itemize
6415 @item
6416 Basic filtering with bm3d:
6417 @example
6418 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6419 @end example
6420
6421 @item
6422 Same as above, but filtering only luma:
6423 @example
6424 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6425 @end example
6426
6427 @item
6428 Same as above, but with both estimation modes:
6429 @example
6430 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
6431 @end example
6432
6433 @item
6434 Same as above, but prefilter with @ref{nlmeans} filter instead:
6435 @example
6436 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
6437 @end example
6438 @end itemize
6439
6440 @section boxblur
6441
6442 Apply a boxblur algorithm to the input video.
6443
6444 It accepts the following parameters:
6445
6446 @table @option
6447
6448 @item luma_radius, lr
6449 @item luma_power, lp
6450 @item chroma_radius, cr
6451 @item chroma_power, cp
6452 @item alpha_radius, ar
6453 @item alpha_power, ap
6454
6455 @end table
6456
6457 A description of the accepted options follows.
6458
6459 @table @option
6460 @item luma_radius, lr
6461 @item chroma_radius, cr
6462 @item alpha_radius, ar
6463 Set an expression for the box radius in pixels used for blurring the
6464 corresponding input plane.
6465
6466 The radius value must be a non-negative number, and must not be
6467 greater than the value of the expression @code{min(w,h)/2} for the
6468 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6469 planes.
6470
6471 Default value for @option{luma_radius} is "2". If not specified,
6472 @option{chroma_radius} and @option{alpha_radius} default to the
6473 corresponding value set for @option{luma_radius}.
6474
6475 The expressions can contain the following constants:
6476 @table @option
6477 @item w
6478 @item h
6479 The input width and height in pixels.
6480
6481 @item cw
6482 @item ch
6483 The input chroma image width and height in pixels.
6484
6485 @item hsub
6486 @item vsub
6487 The horizontal and vertical chroma subsample values. For example, for the
6488 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6489 @end table
6490
6491 @item luma_power, lp
6492 @item chroma_power, cp
6493 @item alpha_power, ap
6494 Specify how many times the boxblur filter is applied to the
6495 corresponding plane.
6496
6497 Default value for @option{luma_power} is 2. If not specified,
6498 @option{chroma_power} and @option{alpha_power} default to the
6499 corresponding value set for @option{luma_power}.
6500
6501 A value of 0 will disable the effect.
6502 @end table
6503
6504 @subsection Examples
6505
6506 @itemize
6507 @item
6508 Apply a boxblur filter with the luma, chroma, and alpha radii
6509 set to 2:
6510 @example
6511 boxblur=luma_radius=2:luma_power=1
6512 boxblur=2:1
6513 @end example
6514
6515 @item
6516 Set the luma radius to 2, and alpha and chroma radius to 0:
6517 @example
6518 boxblur=2:1:cr=0:ar=0
6519 @end example
6520
6521 @item
6522 Set the luma and chroma radii to a fraction of the video dimension:
6523 @example
6524 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6525 @end example
6526 @end itemize
6527
6528 @section bwdif
6529
6530 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6531 Deinterlacing Filter").
6532
6533 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6534 interpolation algorithms.
6535 It accepts the following parameters:
6536
6537 @table @option
6538 @item mode
6539 The interlacing mode to adopt. It accepts one of the following values:
6540
6541 @table @option
6542 @item 0, send_frame
6543 Output one frame for each frame.
6544 @item 1, send_field
6545 Output one frame for each field.
6546 @end table
6547
6548 The default value is @code{send_field}.
6549
6550 @item parity
6551 The picture field parity assumed for the input interlaced video. It accepts one
6552 of the following values:
6553
6554 @table @option
6555 @item 0, tff
6556 Assume the top field is first.
6557 @item 1, bff
6558 Assume the bottom field is first.
6559 @item -1, auto
6560 Enable automatic detection of field parity.
6561 @end table
6562
6563 The default value is @code{auto}.
6564 If the interlacing is unknown or the decoder does not export this information,
6565 top field first will be assumed.
6566
6567 @item deint
6568 Specify which frames to deinterlace. Accept one of the following
6569 values:
6570
6571 @table @option
6572 @item 0, all
6573 Deinterlace all frames.
6574 @item 1, interlaced
6575 Only deinterlace frames marked as interlaced.
6576 @end table
6577
6578 The default value is @code{all}.
6579 @end table
6580
6581 @section chromahold
6582 Remove all color information for all colors except for certain one.
6583
6584 The filter accepts the following options:
6585
6586 @table @option
6587 @item color
6588 The color which will not be replaced with neutral chroma.
6589
6590 @item similarity
6591 Similarity percentage with the above color.
6592 0.01 matches only the exact key color, while 1.0 matches everything.
6593
6594 @item blend
6595 Blend percentage.
6596 0.0 makes pixels either fully gray, or not gray at all.
6597 Higher values result in more preserved color.
6598
6599 @item yuv
6600 Signals that the color passed is already in YUV instead of RGB.
6601
6602 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6603 This can be used to pass exact YUV values as hexadecimal numbers.
6604 @end table
6605
6606 @section chromakey
6607 YUV colorspace color/chroma keying.
6608
6609 The filter accepts the following options:
6610
6611 @table @option
6612 @item color
6613 The color which will be replaced with transparency.
6614
6615 @item similarity
6616 Similarity percentage with the key color.
6617
6618 0.01 matches only the exact key color, while 1.0 matches everything.
6619
6620 @item blend
6621 Blend percentage.
6622
6623 0.0 makes pixels either fully transparent, or not transparent at all.
6624
6625 Higher values result in semi-transparent pixels, with a higher transparency
6626 the more similar the pixels color is to the key color.
6627
6628 @item yuv
6629 Signals that the color passed is already in YUV instead of RGB.
6630
6631 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6632 This can be used to pass exact YUV values as hexadecimal numbers.
6633 @end table
6634
6635 @subsection Examples
6636
6637 @itemize
6638 @item
6639 Make every green pixel in the input image transparent:
6640 @example
6641 ffmpeg -i input.png -vf chromakey=green out.png
6642 @end example
6643
6644 @item
6645 Overlay a greenscreen-video on top of a static black background.
6646 @example
6647 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
6648 @end example
6649 @end itemize
6650
6651 @section chromashift
6652 Shift chroma pixels horizontally and/or vertically.
6653
6654 The filter accepts the following options:
6655 @table @option
6656 @item cbh
6657 Set amount to shift chroma-blue horizontally.
6658 @item cbv
6659 Set amount to shift chroma-blue vertically.
6660 @item crh
6661 Set amount to shift chroma-red horizontally.
6662 @item crv
6663 Set amount to shift chroma-red vertically.
6664 @item edge
6665 Set edge mode, can be @var{smear}, default, or @var{warp}.
6666 @end table
6667
6668 @section ciescope
6669
6670 Display CIE color diagram with pixels overlaid onto it.
6671
6672 The filter accepts the following options:
6673
6674 @table @option
6675 @item system
6676 Set color system.
6677
6678 @table @samp
6679 @item ntsc, 470m
6680 @item ebu, 470bg
6681 @item smpte
6682 @item 240m
6683 @item apple
6684 @item widergb
6685 @item cie1931
6686 @item rec709, hdtv
6687 @item uhdtv, rec2020
6688 @end table
6689
6690 @item cie
6691 Set CIE system.
6692
6693 @table @samp
6694 @item xyy
6695 @item ucs
6696 @item luv
6697 @end table
6698
6699 @item gamuts
6700 Set what gamuts to draw.
6701
6702 See @code{system} option for available values.
6703
6704 @item size, s
6705 Set ciescope size, by default set to 512.
6706
6707 @item intensity, i
6708 Set intensity used to map input pixel values to CIE diagram.
6709
6710 @item contrast
6711 Set contrast used to draw tongue colors that are out of active color system gamut.
6712
6713 @item corrgamma
6714 Correct gamma displayed on scope, by default enabled.
6715
6716 @item showwhite
6717 Show white point on CIE diagram, by default disabled.
6718
6719 @item gamma
6720 Set input gamma. Used only with XYZ input color space.
6721 @end table
6722
6723 @section codecview
6724
6725 Visualize information exported by some codecs.
6726
6727 Some codecs can export information through frames using side-data or other
6728 means. For example, some MPEG based codecs export motion vectors through the
6729 @var{export_mvs} flag in the codec @option{flags2} option.
6730
6731 The filter accepts the following option:
6732
6733 @table @option
6734 @item mv
6735 Set motion vectors to visualize.
6736
6737 Available flags for @var{mv} are:
6738
6739 @table @samp
6740 @item pf
6741 forward predicted MVs of P-frames
6742 @item bf
6743 forward predicted MVs of B-frames
6744 @item bb
6745 backward predicted MVs of B-frames
6746 @end table
6747
6748 @item qp
6749 Display quantization parameters using the chroma planes.
6750
6751 @item mv_type, mvt
6752 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
6753
6754 Available flags for @var{mv_type} are:
6755
6756 @table @samp
6757 @item fp
6758 forward predicted MVs
6759 @item bp
6760 backward predicted MVs
6761 @end table
6762
6763 @item frame_type, ft
6764 Set frame type to visualize motion vectors of.
6765
6766 Available flags for @var{frame_type} are:
6767
6768 @table @samp
6769 @item if
6770 intra-coded frames (I-frames)
6771 @item pf
6772 predicted frames (P-frames)
6773 @item bf
6774 bi-directionally predicted frames (B-frames)
6775 @end table
6776 @end table
6777
6778 @subsection Examples
6779
6780 @itemize
6781 @item
6782 Visualize forward predicted MVs of all frames using @command{ffplay}:
6783 @example
6784 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
6785 @end example
6786
6787 @item
6788 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
6789 @example
6790 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
6791 @end example
6792 @end itemize
6793
6794 @section colorbalance
6795 Modify intensity of primary colors (red, green and blue) of input frames.
6796
6797 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
6798 regions for the red-cyan, green-magenta or blue-yellow balance.
6799
6800 A positive adjustment value shifts the balance towards the primary color, a negative
6801 value towards the complementary color.
6802
6803 The filter accepts the following options:
6804
6805 @table @option
6806 @item rs
6807 @item gs
6808 @item bs
6809 Adjust red, green and blue shadows (darkest pixels).
6810
6811 @item rm
6812 @item gm
6813 @item bm
6814 Adjust red, green and blue midtones (medium pixels).
6815
6816 @item rh
6817 @item gh
6818 @item bh
6819 Adjust red, green and blue highlights (brightest pixels).
6820
6821 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6822 @end table
6823
6824 @subsection Examples
6825
6826 @itemize
6827 @item
6828 Add red color cast to shadows:
6829 @example
6830 colorbalance=rs=.3
6831 @end example
6832 @end itemize
6833
6834 @section colorkey
6835 RGB colorspace color keying.
6836
6837 The filter accepts the following options:
6838
6839 @table @option
6840 @item color
6841 The color which will be replaced with transparency.
6842
6843 @item similarity
6844 Similarity percentage with the key color.
6845
6846 0.01 matches only the exact key color, while 1.0 matches everything.
6847
6848 @item blend
6849 Blend percentage.
6850
6851 0.0 makes pixels either fully transparent, or not transparent at all.
6852
6853 Higher values result in semi-transparent pixels, with a higher transparency
6854 the more similar the pixels color is to the key color.
6855 @end table
6856
6857 @subsection Examples
6858
6859 @itemize
6860 @item
6861 Make every green pixel in the input image transparent:
6862 @example
6863 ffmpeg -i input.png -vf colorkey=green out.png
6864 @end example
6865
6866 @item
6867 Overlay a greenscreen-video on top of a static background image.
6868 @example
6869 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
6870 @end example
6871 @end itemize
6872
6873 @section colorhold
6874 Remove all color information for all RGB colors except for certain one.
6875
6876 The filter accepts the following options:
6877
6878 @table @option
6879 @item color
6880 The color which will not be replaced with neutral gray.
6881
6882 @item similarity
6883 Similarity percentage with the above color.
6884 0.01 matches only the exact key color, while 1.0 matches everything.
6885
6886 @item blend
6887 Blend percentage. 0.0 makes pixels fully gray.
6888 Higher values result in more preserved color.
6889 @end table
6890
6891 @section colorlevels
6892
6893 Adjust video input frames using levels.
6894
6895 The filter accepts the following options:
6896
6897 @table @option
6898 @item rimin
6899 @item gimin
6900 @item bimin
6901 @item aimin
6902 Adjust red, green, blue and alpha input black point.
6903 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6904
6905 @item rimax
6906 @item gimax
6907 @item bimax
6908 @item aimax
6909 Adjust red, green, blue and alpha input white point.
6910 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
6911
6912 Input levels are used to lighten highlights (bright tones), darken shadows
6913 (dark tones), change the balance of bright and dark tones.
6914
6915 @item romin
6916 @item gomin
6917 @item bomin
6918 @item aomin
6919 Adjust red, green, blue and alpha output black point.
6920 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
6921
6922 @item romax
6923 @item gomax
6924 @item bomax
6925 @item aomax
6926 Adjust red, green, blue and alpha output white point.
6927 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
6928
6929 Output levels allows manual selection of a constrained output level range.
6930 @end table
6931
6932 @subsection Examples
6933
6934 @itemize
6935 @item
6936 Make video output darker:
6937 @example
6938 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
6939 @end example
6940
6941 @item
6942 Increase contrast:
6943 @example
6944 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
6945 @end example
6946
6947 @item
6948 Make video output lighter:
6949 @example
6950 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
6951 @end example
6952
6953 @item
6954 Increase brightness:
6955 @example
6956 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
6957 @end example
6958 @end itemize
6959
6960 @section colorchannelmixer
6961
6962 Adjust video input frames by re-mixing color channels.
6963
6964 This filter modifies a color channel by adding the values associated to
6965 the other channels of the same pixels. For example if the value to
6966 modify is red, the output value will be:
6967 @example
6968 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
6969 @end example
6970
6971 The filter accepts the following options:
6972
6973 @table @option
6974 @item rr
6975 @item rg
6976 @item rb
6977 @item ra
6978 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6979 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6980
6981 @item gr
6982 @item gg
6983 @item gb
6984 @item ga
6985 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6986 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6987
6988 @item br
6989 @item bg
6990 @item bb
6991 @item ba
6992 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6993 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6994
6995 @item ar
6996 @item ag
6997 @item ab
6998 @item aa
6999 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7000 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7001
7002 Allowed ranges for options are @code{[-2.0, 2.0]}.
7003 @end table
7004
7005 @subsection Examples
7006
7007 @itemize
7008 @item
7009 Convert source to grayscale:
7010 @example
7011 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7012 @end example
7013 @item
7014 Simulate sepia tones:
7015 @example
7016 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7017 @end example
7018 @end itemize
7019
7020 @section colormatrix
7021
7022 Convert color matrix.
7023
7024 The filter accepts the following options:
7025
7026 @table @option
7027 @item src
7028 @item dst
7029 Specify the source and destination color matrix. Both values must be
7030 specified.
7031
7032 The accepted values are:
7033 @table @samp
7034 @item bt709
7035 BT.709
7036
7037 @item fcc
7038 FCC
7039
7040 @item bt601
7041 BT.601
7042
7043 @item bt470
7044 BT.470
7045
7046 @item bt470bg
7047 BT.470BG
7048
7049 @item smpte170m
7050 SMPTE-170M
7051
7052 @item smpte240m
7053 SMPTE-240M
7054
7055 @item bt2020
7056 BT.2020
7057 @end table
7058 @end table
7059
7060 For example to convert from BT.601 to SMPTE-240M, use the command:
7061 @example
7062 colormatrix=bt601:smpte240m
7063 @end example
7064
7065 @section colorspace
7066
7067 Convert colorspace, transfer characteristics or color primaries.
7068 Input video needs to have an even size.
7069
7070 The filter accepts the following options:
7071
7072 @table @option
7073 @anchor{all}
7074 @item all
7075 Specify all color properties at once.
7076
7077 The accepted values are:
7078 @table @samp
7079 @item bt470m
7080 BT.470M
7081
7082 @item bt470bg
7083 BT.470BG
7084
7085 @item bt601-6-525
7086 BT.601-6 525
7087
7088 @item bt601-6-625
7089 BT.601-6 625
7090
7091 @item bt709
7092 BT.709
7093
7094 @item smpte170m
7095 SMPTE-170M
7096
7097 @item smpte240m
7098 SMPTE-240M
7099
7100 @item bt2020
7101 BT.2020
7102
7103 @end table
7104
7105 @anchor{space}
7106 @item space
7107 Specify output colorspace.
7108
7109 The accepted values are:
7110 @table @samp
7111 @item bt709
7112 BT.709
7113
7114 @item fcc
7115 FCC
7116
7117 @item bt470bg
7118 BT.470BG or BT.601-6 625
7119
7120 @item smpte170m
7121 SMPTE-170M or BT.601-6 525
7122
7123 @item smpte240m
7124 SMPTE-240M
7125
7126 @item ycgco
7127 YCgCo
7128
7129 @item bt2020ncl
7130 BT.2020 with non-constant luminance
7131
7132 @end table
7133
7134 @anchor{trc}
7135 @item trc
7136 Specify output transfer characteristics.
7137
7138 The accepted values are:
7139 @table @samp
7140 @item bt709
7141 BT.709
7142
7143 @item bt470m
7144 BT.470M
7145
7146 @item bt470bg
7147 BT.470BG
7148
7149 @item gamma22
7150 Constant gamma of 2.2
7151
7152 @item gamma28
7153 Constant gamma of 2.8
7154
7155 @item smpte170m
7156 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7157
7158 @item smpte240m
7159 SMPTE-240M
7160
7161 @item srgb
7162 SRGB
7163
7164 @item iec61966-2-1
7165 iec61966-2-1
7166
7167 @item iec61966-2-4
7168 iec61966-2-4
7169
7170 @item xvycc
7171 xvycc
7172
7173 @item bt2020-10
7174 BT.2020 for 10-bits content
7175
7176 @item bt2020-12
7177 BT.2020 for 12-bits content
7178
7179 @end table
7180
7181 @anchor{primaries}
7182 @item primaries
7183 Specify output color primaries.
7184
7185 The accepted values are:
7186 @table @samp
7187 @item bt709
7188 BT.709
7189
7190 @item bt470m
7191 BT.470M
7192
7193 @item bt470bg
7194 BT.470BG or BT.601-6 625
7195
7196 @item smpte170m
7197 SMPTE-170M or BT.601-6 525
7198
7199 @item smpte240m
7200 SMPTE-240M
7201
7202 @item film
7203 film
7204
7205 @item smpte431
7206 SMPTE-431
7207
7208 @item smpte432
7209 SMPTE-432
7210
7211 @item bt2020
7212 BT.2020
7213
7214 @item jedec-p22
7215 JEDEC P22 phosphors
7216
7217 @end table
7218
7219 @anchor{range}
7220 @item range
7221 Specify output color range.
7222
7223 The accepted values are:
7224 @table @samp
7225 @item tv
7226 TV (restricted) range
7227
7228 @item mpeg
7229 MPEG (restricted) range
7230
7231 @item pc
7232 PC (full) range
7233
7234 @item jpeg
7235 JPEG (full) range
7236
7237 @end table
7238
7239 @item format
7240 Specify output color format.
7241
7242 The accepted values are:
7243 @table @samp
7244 @item yuv420p
7245 YUV 4:2:0 planar 8-bits
7246
7247 @item yuv420p10
7248 YUV 4:2:0 planar 10-bits
7249
7250 @item yuv420p12
7251 YUV 4:2:0 planar 12-bits
7252
7253 @item yuv422p
7254 YUV 4:2:2 planar 8-bits
7255
7256 @item yuv422p10
7257 YUV 4:2:2 planar 10-bits
7258
7259 @item yuv422p12
7260 YUV 4:2:2 planar 12-bits
7261
7262 @item yuv444p
7263 YUV 4:4:4 planar 8-bits
7264
7265 @item yuv444p10
7266 YUV 4:4:4 planar 10-bits
7267
7268 @item yuv444p12
7269 YUV 4:4:4 planar 12-bits
7270
7271 @end table
7272
7273 @item fast
7274 Do a fast conversion, which skips gamma/primary correction. This will take
7275 significantly less CPU, but will be mathematically incorrect. To get output
7276 compatible with that produced by the colormatrix filter, use fast=1.
7277
7278 @item dither
7279 Specify dithering mode.
7280
7281 The accepted values are:
7282 @table @samp
7283 @item none
7284 No dithering
7285
7286 @item fsb
7287 Floyd-Steinberg dithering
7288 @end table
7289
7290 @item wpadapt
7291 Whitepoint adaptation mode.
7292
7293 The accepted values are:
7294 @table @samp
7295 @item bradford
7296 Bradford whitepoint adaptation
7297
7298 @item vonkries
7299 von Kries whitepoint adaptation
7300
7301 @item identity
7302 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7303 @end table
7304
7305 @item iall
7306 Override all input properties at once. Same accepted values as @ref{all}.
7307
7308 @item ispace
7309 Override input colorspace. Same accepted values as @ref{space}.
7310
7311 @item iprimaries
7312 Override input color primaries. Same accepted values as @ref{primaries}.
7313
7314 @item itrc
7315 Override input transfer characteristics. Same accepted values as @ref{trc}.
7316
7317 @item irange
7318 Override input color range. Same accepted values as @ref{range}.
7319
7320 @end table
7321
7322 The filter converts the transfer characteristics, color space and color
7323 primaries to the specified user values. The output value, if not specified,
7324 is set to a default value based on the "all" property. If that property is
7325 also not specified, the filter will log an error. The output color range and
7326 format default to the same value as the input color range and format. The
7327 input transfer characteristics, color space, color primaries and color range
7328 should be set on the input data. If any of these are missing, the filter will
7329 log an error and no conversion will take place.
7330
7331 For example to convert the input to SMPTE-240M, use the command:
7332 @example
7333 colorspace=smpte240m
7334 @end example
7335
7336 @section convolution
7337
7338 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7339
7340 The filter accepts the following options:
7341
7342 @table @option
7343 @item 0m
7344 @item 1m
7345 @item 2m
7346 @item 3m
7347 Set matrix for each plane.
7348 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7349 and from 1 to 49 odd number of signed integers in @var{row} mode.
7350
7351 @item 0rdiv
7352 @item 1rdiv
7353 @item 2rdiv
7354 @item 3rdiv
7355 Set multiplier for calculated value for each plane.
7356 If unset or 0, it will be sum of all matrix elements.
7357
7358 @item 0bias
7359 @item 1bias
7360 @item 2bias
7361 @item 3bias
7362 Set bias for each plane. This value is added to the result of the multiplication.
7363 Useful for making the overall image brighter or darker. Default is 0.0.
7364
7365 @item 0mode
7366 @item 1mode
7367 @item 2mode
7368 @item 3mode
7369 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7370 Default is @var{square}.
7371 @end table
7372
7373 @subsection Examples
7374
7375 @itemize
7376 @item
7377 Apply sharpen:
7378 @example
7379 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"
7380 @end example
7381
7382 @item
7383 Apply blur:
7384 @example
7385 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"
7386 @end example
7387
7388 @item
7389 Apply edge enhance:
7390 @example
7391 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"
7392 @end example
7393
7394 @item
7395 Apply edge detect:
7396 @example
7397 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"
7398 @end example
7399
7400 @item
7401 Apply laplacian edge detector which includes diagonals:
7402 @example
7403 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"
7404 @end example
7405
7406 @item
7407 Apply emboss:
7408 @example
7409 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"
7410 @end example
7411 @end itemize
7412
7413 @section convolve
7414
7415 Apply 2D convolution of video stream in frequency domain using second stream
7416 as impulse.
7417
7418 The filter accepts the following options:
7419
7420 @table @option
7421 @item planes
7422 Set which planes to process.
7423
7424 @item impulse
7425 Set which impulse video frames will be processed, can be @var{first}
7426 or @var{all}. Default is @var{all}.
7427 @end table
7428
7429 The @code{convolve} filter also supports the @ref{framesync} options.
7430
7431 @section copy
7432
7433 Copy the input video source unchanged to the output. This is mainly useful for
7434 testing purposes.
7435
7436 @anchor{coreimage}
7437 @section coreimage
7438 Video filtering on GPU using Apple's CoreImage API on OSX.
7439
7440 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7441 processed by video hardware. However, software-based OpenGL implementations
7442 exist which means there is no guarantee for hardware processing. It depends on
7443 the respective OSX.
7444
7445 There are many filters and image generators provided by Apple that come with a
7446 large variety of options. The filter has to be referenced by its name along
7447 with its options.
7448
7449 The coreimage filter accepts the following options:
7450 @table @option
7451 @item list_filters
7452 List all available filters and generators along with all their respective
7453 options as well as possible minimum and maximum values along with the default
7454 values.
7455 @example
7456 list_filters=true
7457 @end example
7458
7459 @item filter
7460 Specify all filters by their respective name and options.
7461 Use @var{list_filters} to determine all valid filter names and options.
7462 Numerical options are specified by a float value and are automatically clamped
7463 to their respective value range.  Vector and color options have to be specified
7464 by a list of space separated float values. Character escaping has to be done.
7465 A special option name @code{default} is available to use default options for a
7466 filter.
7467
7468 It is required to specify either @code{default} or at least one of the filter options.
7469 All omitted options are used with their default values.
7470 The syntax of the filter string is as follows:
7471 @example
7472 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7473 @end example
7474
7475 @item output_rect
7476 Specify a rectangle where the output of the filter chain is copied into the
7477 input image. It is given by a list of space separated float values:
7478 @example
7479 output_rect=x\ y\ width\ height
7480 @end example
7481 If not given, the output rectangle equals the dimensions of the input image.
7482 The output rectangle is automatically cropped at the borders of the input
7483 image. Negative values are valid for each component.
7484 @example
7485 output_rect=25\ 25\ 100\ 100
7486 @end example
7487 @end table
7488
7489 Several filters can be chained for successive processing without GPU-HOST
7490 transfers allowing for fast processing of complex filter chains.
7491 Currently, only filters with zero (generators) or exactly one (filters) input
7492 image and one output image are supported. Also, transition filters are not yet
7493 usable as intended.
7494
7495 Some filters generate output images with additional padding depending on the
7496 respective filter kernel. The padding is automatically removed to ensure the
7497 filter output has the same size as the input image.
7498
7499 For image generators, the size of the output image is determined by the
7500 previous output image of the filter chain or the input image of the whole
7501 filterchain, respectively. The generators do not use the pixel information of
7502 this image to generate their output. However, the generated output is
7503 blended onto this image, resulting in partial or complete coverage of the
7504 output image.
7505
7506 The @ref{coreimagesrc} video source can be used for generating input images
7507 which are directly fed into the filter chain. By using it, providing input
7508 images by another video source or an input video is not required.
7509
7510 @subsection Examples
7511
7512 @itemize
7513
7514 @item
7515 List all filters available:
7516 @example
7517 coreimage=list_filters=true
7518 @end example
7519
7520 @item
7521 Use the CIBoxBlur filter with default options to blur an image:
7522 @example
7523 coreimage=filter=CIBoxBlur@@default
7524 @end example
7525
7526 @item
7527 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7528 its center at 100x100 and a radius of 50 pixels:
7529 @example
7530 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7531 @end example
7532
7533 @item
7534 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7535 given as complete and escaped command-line for Apple's standard bash shell:
7536 @example
7537 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7538 @end example
7539 @end itemize
7540
7541 @section crop
7542
7543 Crop the input video to given dimensions.
7544
7545 It accepts the following parameters:
7546
7547 @table @option
7548 @item w, out_w
7549 The width of the output video. It defaults to @code{iw}.
7550 This expression is evaluated only once during the filter
7551 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7552
7553 @item h, out_h
7554 The height of the output video. It defaults to @code{ih}.
7555 This expression is evaluated only once during the filter
7556 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7557
7558 @item x
7559 The horizontal position, in the input video, of the left edge of the output
7560 video. It defaults to @code{(in_w-out_w)/2}.
7561 This expression is evaluated per-frame.
7562
7563 @item y
7564 The vertical position, in the input video, of the top edge of the output video.
7565 It defaults to @code{(in_h-out_h)/2}.
7566 This expression is evaluated per-frame.
7567
7568 @item keep_aspect
7569 If set to 1 will force the output display aspect ratio
7570 to be the same of the input, by changing the output sample aspect
7571 ratio. It defaults to 0.
7572
7573 @item exact
7574 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7575 width/height/x/y as specified and will not be rounded to nearest smaller value.
7576 It defaults to 0.
7577 @end table
7578
7579 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7580 expressions containing the following constants:
7581
7582 @table @option
7583 @item x
7584 @item y
7585 The computed values for @var{x} and @var{y}. They are evaluated for
7586 each new frame.
7587
7588 @item in_w
7589 @item in_h
7590 The input width and height.
7591
7592 @item iw
7593 @item ih
7594 These are the same as @var{in_w} and @var{in_h}.
7595
7596 @item out_w
7597 @item out_h
7598 The output (cropped) width and height.
7599
7600 @item ow
7601 @item oh
7602 These are the same as @var{out_w} and @var{out_h}.
7603
7604 @item a
7605 same as @var{iw} / @var{ih}
7606
7607 @item sar
7608 input sample aspect ratio
7609
7610 @item dar
7611 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7612
7613 @item hsub
7614 @item vsub
7615 horizontal and vertical chroma subsample values. For example for the
7616 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7617
7618 @item n
7619 The number of the input frame, starting from 0.
7620
7621 @item pos
7622 the position in the file of the input frame, NAN if unknown
7623
7624 @item t
7625 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
7626
7627 @end table
7628
7629 The expression for @var{out_w} may depend on the value of @var{out_h},
7630 and the expression for @var{out_h} may depend on @var{out_w}, but they
7631 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
7632 evaluated after @var{out_w} and @var{out_h}.
7633
7634 The @var{x} and @var{y} parameters specify the expressions for the
7635 position of the top-left corner of the output (non-cropped) area. They
7636 are evaluated for each frame. If the evaluated value is not valid, it
7637 is approximated to the nearest valid value.
7638
7639 The expression for @var{x} may depend on @var{y}, and the expression
7640 for @var{y} may depend on @var{x}.
7641
7642 @subsection Examples
7643
7644 @itemize
7645 @item
7646 Crop area with size 100x100 at position (12,34).
7647 @example
7648 crop=100:100:12:34
7649 @end example
7650
7651 Using named options, the example above becomes:
7652 @example
7653 crop=w=100:h=100:x=12:y=34
7654 @end example
7655
7656 @item
7657 Crop the central input area with size 100x100:
7658 @example
7659 crop=100:100
7660 @end example
7661
7662 @item
7663 Crop the central input area with size 2/3 of the input video:
7664 @example
7665 crop=2/3*in_w:2/3*in_h
7666 @end example
7667
7668 @item
7669 Crop the input video central square:
7670 @example
7671 crop=out_w=in_h
7672 crop=in_h
7673 @end example
7674
7675 @item
7676 Delimit the rectangle with the top-left corner placed at position
7677 100:100 and the right-bottom corner corresponding to the right-bottom
7678 corner of the input image.
7679 @example
7680 crop=in_w-100:in_h-100:100:100
7681 @end example
7682
7683 @item
7684 Crop 10 pixels from the left and right borders, and 20 pixels from
7685 the top and bottom borders
7686 @example
7687 crop=in_w-2*10:in_h-2*20
7688 @end example
7689
7690 @item
7691 Keep only the bottom right quarter of the input image:
7692 @example
7693 crop=in_w/2:in_h/2:in_w/2:in_h/2
7694 @end example
7695
7696 @item
7697 Crop height for getting Greek harmony:
7698 @example
7699 crop=in_w:1/PHI*in_w
7700 @end example
7701
7702 @item
7703 Apply trembling effect:
7704 @example
7705 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)
7706 @end example
7707
7708 @item
7709 Apply erratic camera effect depending on timestamp:
7710 @example
7711 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)"
7712 @end example
7713
7714 @item
7715 Set x depending on the value of y:
7716 @example
7717 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
7718 @end example
7719 @end itemize
7720
7721 @subsection Commands
7722
7723 This filter supports the following commands:
7724 @table @option
7725 @item w, out_w
7726 @item h, out_h
7727 @item x
7728 @item y
7729 Set width/height of the output video and the horizontal/vertical position
7730 in the input video.
7731 The command accepts the same syntax of the corresponding option.
7732
7733 If the specified expression is not valid, it is kept at its current
7734 value.
7735 @end table
7736
7737 @section cropdetect
7738
7739 Auto-detect the crop size.
7740
7741 It calculates the necessary cropping parameters and prints the
7742 recommended parameters via the logging system. The detected dimensions
7743 correspond to the non-black area of the input video.
7744
7745 It accepts the following parameters:
7746
7747 @table @option
7748
7749 @item limit
7750 Set higher black value threshold, which can be optionally specified
7751 from nothing (0) to everything (255 for 8-bit based formats). An intensity
7752 value greater to the set value is considered non-black. It defaults to 24.
7753 You can also specify a value between 0.0 and 1.0 which will be scaled depending
7754 on the bitdepth of the pixel format.
7755
7756 @item round
7757 The value which the width/height should be divisible by. It defaults to
7758 16. The offset is automatically adjusted to center the video. Use 2 to
7759 get only even dimensions (needed for 4:2:2 video). 16 is best when
7760 encoding to most video codecs.
7761
7762 @item reset_count, reset
7763 Set the counter that determines after how many frames cropdetect will
7764 reset the previously detected largest video area and start over to
7765 detect the current optimal crop area. Default value is 0.
7766
7767 This can be useful when channel logos distort the video area. 0
7768 indicates 'never reset', and returns the largest area encountered during
7769 playback.
7770 @end table
7771
7772 @anchor{cue}
7773 @section cue
7774
7775 Delay video filtering until a given wallclock timestamp. The filter first
7776 passes on @option{preroll} amount of frames, then it buffers at most
7777 @option{buffer} amount of frames and waits for the cue. After reaching the cue
7778 it forwards the buffered frames and also any subsequent frames coming in its
7779 input.
7780
7781 The filter can be used synchronize the output of multiple ffmpeg processes for
7782 realtime output devices like decklink. By putting the delay in the filtering
7783 chain and pre-buffering frames the process can pass on data to output almost
7784 immediately after the target wallclock timestamp is reached.
7785
7786 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
7787 some use cases.
7788
7789 @table @option
7790
7791 @item cue
7792 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
7793
7794 @item preroll
7795 The duration of content to pass on as preroll expressed in seconds. Default is 0.
7796
7797 @item buffer
7798 The maximum duration of content to buffer before waiting for the cue expressed
7799 in seconds. Default is 0.
7800
7801 @end table
7802
7803 @anchor{curves}
7804 @section curves
7805
7806 Apply color adjustments using curves.
7807
7808 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
7809 component (red, green and blue) has its values defined by @var{N} key points
7810 tied from each other using a smooth curve. The x-axis represents the pixel
7811 values from the input frame, and the y-axis the new pixel values to be set for
7812 the output frame.
7813
7814 By default, a component curve is defined by the two points @var{(0;0)} and
7815 @var{(1;1)}. This creates a straight line where each original pixel value is
7816 "adjusted" to its own value, which means no change to the image.
7817
7818 The filter allows you to redefine these two points and add some more. A new
7819 curve (using a natural cubic spline interpolation) will be define to pass
7820 smoothly through all these new coordinates. The new defined points needs to be
7821 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
7822 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
7823 the vector spaces, the values will be clipped accordingly.
7824
7825 The filter accepts the following options:
7826
7827 @table @option
7828 @item preset
7829 Select one of the available color presets. This option can be used in addition
7830 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
7831 options takes priority on the preset values.
7832 Available presets are:
7833 @table @samp
7834 @item none
7835 @item color_negative
7836 @item cross_process
7837 @item darker
7838 @item increase_contrast
7839 @item lighter
7840 @item linear_contrast
7841 @item medium_contrast
7842 @item negative
7843 @item strong_contrast
7844 @item vintage
7845 @end table
7846 Default is @code{none}.
7847 @item master, m
7848 Set the master key points. These points will define a second pass mapping. It
7849 is sometimes called a "luminance" or "value" mapping. It can be used with
7850 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
7851 post-processing LUT.
7852 @item red, r
7853 Set the key points for the red component.
7854 @item green, g
7855 Set the key points for the green component.
7856 @item blue, b
7857 Set the key points for the blue component.
7858 @item all
7859 Set the key points for all components (not including master).
7860 Can be used in addition to the other key points component
7861 options. In this case, the unset component(s) will fallback on this
7862 @option{all} setting.
7863 @item psfile
7864 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
7865 @item plot
7866 Save Gnuplot script of the curves in specified file.
7867 @end table
7868
7869 To avoid some filtergraph syntax conflicts, each key points list need to be
7870 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
7871
7872 @subsection Examples
7873
7874 @itemize
7875 @item
7876 Increase slightly the middle level of blue:
7877 @example
7878 curves=blue='0/0 0.5/0.58 1/1'
7879 @end example
7880
7881 @item
7882 Vintage effect:
7883 @example
7884 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'
7885 @end example
7886 Here we obtain the following coordinates for each components:
7887 @table @var
7888 @item red
7889 @code{(0;0.11) (0.42;0.51) (1;0.95)}
7890 @item green
7891 @code{(0;0) (0.50;0.48) (1;1)}
7892 @item blue
7893 @code{(0;0.22) (0.49;0.44) (1;0.80)}
7894 @end table
7895
7896 @item
7897 The previous example can also be achieved with the associated built-in preset:
7898 @example
7899 curves=preset=vintage
7900 @end example
7901
7902 @item
7903 Or simply:
7904 @example
7905 curves=vintage
7906 @end example
7907
7908 @item
7909 Use a Photoshop preset and redefine the points of the green component:
7910 @example
7911 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
7912 @end example
7913
7914 @item
7915 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
7916 and @command{gnuplot}:
7917 @example
7918 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
7919 gnuplot -p /tmp/curves.plt
7920 @end example
7921 @end itemize
7922
7923 @section datascope
7924
7925 Video data analysis filter.
7926
7927 This filter shows hexadecimal pixel values of part of video.
7928
7929 The filter accepts the following options:
7930
7931 @table @option
7932 @item size, s
7933 Set output video size.
7934
7935 @item x
7936 Set x offset from where to pick pixels.
7937
7938 @item y
7939 Set y offset from where to pick pixels.
7940
7941 @item mode
7942 Set scope mode, can be one of the following:
7943 @table @samp
7944 @item mono
7945 Draw hexadecimal pixel values with white color on black background.
7946
7947 @item color
7948 Draw hexadecimal pixel values with input video pixel color on black
7949 background.
7950
7951 @item color2
7952 Draw hexadecimal pixel values on color background picked from input video,
7953 the text color is picked in such way so its always visible.
7954 @end table
7955
7956 @item axis
7957 Draw rows and columns numbers on left and top of video.
7958
7959 @item opacity
7960 Set background opacity.
7961 @end table
7962
7963 @section dctdnoiz
7964
7965 Denoise frames using 2D DCT (frequency domain filtering).
7966
7967 This filter is not designed for real time.
7968
7969 The filter accepts the following options:
7970
7971 @table @option
7972 @item sigma, s
7973 Set the noise sigma constant.
7974
7975 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
7976 coefficient (absolute value) below this threshold with be dropped.
7977
7978 If you need a more advanced filtering, see @option{expr}.
7979
7980 Default is @code{0}.
7981
7982 @item overlap
7983 Set number overlapping pixels for each block. Since the filter can be slow, you
7984 may want to reduce this value, at the cost of a less effective filter and the
7985 risk of various artefacts.
7986
7987 If the overlapping value doesn't permit processing the whole input width or
7988 height, a warning will be displayed and according borders won't be denoised.
7989
7990 Default value is @var{blocksize}-1, which is the best possible setting.
7991
7992 @item expr, e
7993 Set the coefficient factor expression.
7994
7995 For each coefficient of a DCT block, this expression will be evaluated as a
7996 multiplier value for the coefficient.
7997
7998 If this is option is set, the @option{sigma} option will be ignored.
7999
8000 The absolute value of the coefficient can be accessed through the @var{c}
8001 variable.
8002
8003 @item n
8004 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8005 @var{blocksize}, which is the width and height of the processed blocks.
8006
8007 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8008 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8009 on the speed processing. Also, a larger block size does not necessarily means a
8010 better de-noising.
8011 @end table
8012
8013 @subsection Examples
8014
8015 Apply a denoise with a @option{sigma} of @code{4.5}:
8016 @example
8017 dctdnoiz=4.5
8018 @end example
8019
8020 The same operation can be achieved using the expression system:
8021 @example
8022 dctdnoiz=e='gte(c, 4.5*3)'
8023 @end example
8024
8025 Violent denoise using a block size of @code{16x16}:
8026 @example
8027 dctdnoiz=15:n=4
8028 @end example
8029
8030 @section deband
8031
8032 Remove banding artifacts from input video.
8033 It works by replacing banded pixels with average value of referenced pixels.
8034
8035 The filter accepts the following options:
8036
8037 @table @option
8038 @item 1thr
8039 @item 2thr
8040 @item 3thr
8041 @item 4thr
8042 Set banding detection threshold for each plane. Default is 0.02.
8043 Valid range is 0.00003 to 0.5.
8044 If difference between current pixel and reference pixel is less than threshold,
8045 it will be considered as banded.
8046
8047 @item range, r
8048 Banding detection range in pixels. Default is 16. If positive, random number
8049 in range 0 to set value will be used. If negative, exact absolute value
8050 will be used.
8051 The range defines square of four pixels around current pixel.
8052
8053 @item direction, d
8054 Set direction in radians from which four pixel will be compared. If positive,
8055 random direction from 0 to set direction will be picked. If negative, exact of
8056 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8057 will pick only pixels on same row and -PI/2 will pick only pixels on same
8058 column.
8059
8060 @item blur, b
8061 If enabled, current pixel is compared with average value of all four
8062 surrounding pixels. The default is enabled. If disabled current pixel is
8063 compared with all four surrounding pixels. The pixel is considered banded
8064 if only all four differences with surrounding pixels are less than threshold.
8065
8066 @item coupling, c
8067 If enabled, current pixel is changed if and only if all pixel components are banded,
8068 e.g. banding detection threshold is triggered for all color components.
8069 The default is disabled.
8070 @end table
8071
8072 @section deblock
8073
8074 Remove blocking artifacts from input video.
8075
8076 The filter accepts the following options:
8077
8078 @table @option
8079 @item filter
8080 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8081 This controls what kind of deblocking is applied.
8082
8083 @item block
8084 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8085
8086 @item alpha
8087 @item beta
8088 @item gamma
8089 @item delta
8090 Set blocking detection thresholds. Allowed range is 0 to 1.
8091 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8092 Using higher threshold gives more deblocking strength.
8093 Setting @var{alpha} controls threshold detection at exact edge of block.
8094 Remaining options controls threshold detection near the edge. Each one for
8095 below/above or left/right. Setting any of those to @var{0} disables
8096 deblocking.
8097
8098 @item planes
8099 Set planes to filter. Default is to filter all available planes.
8100 @end table
8101
8102 @subsection Examples
8103
8104 @itemize
8105 @item
8106 Deblock using weak filter and block size of 4 pixels.
8107 @example
8108 deblock=filter=weak:block=4
8109 @end example
8110
8111 @item
8112 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8113 deblocking more edges.
8114 @example
8115 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8116 @end example
8117
8118 @item
8119 Similar as above, but filter only first plane.
8120 @example
8121 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8122 @end example
8123
8124 @item
8125 Similar as above, but filter only second and third plane.
8126 @example
8127 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8128 @end example
8129 @end itemize
8130
8131 @anchor{decimate}
8132 @section decimate
8133
8134 Drop duplicated frames at regular intervals.
8135
8136 The filter accepts the following options:
8137
8138 @table @option
8139 @item cycle
8140 Set the number of frames from which one will be dropped. Setting this to
8141 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8142 Default is @code{5}.
8143
8144 @item dupthresh
8145 Set the threshold for duplicate detection. If the difference metric for a frame
8146 is less than or equal to this value, then it is declared as duplicate. Default
8147 is @code{1.1}
8148
8149 @item scthresh
8150 Set scene change threshold. Default is @code{15}.
8151
8152 @item blockx
8153 @item blocky
8154 Set the size of the x and y-axis blocks used during metric calculations.
8155 Larger blocks give better noise suppression, but also give worse detection of
8156 small movements. Must be a power of two. Default is @code{32}.
8157
8158 @item ppsrc
8159 Mark main input as a pre-processed input and activate clean source input
8160 stream. This allows the input to be pre-processed with various filters to help
8161 the metrics calculation while keeping the frame selection lossless. When set to
8162 @code{1}, the first stream is for the pre-processed input, and the second
8163 stream is the clean source from where the kept frames are chosen. Default is
8164 @code{0}.
8165
8166 @item chroma
8167 Set whether or not chroma is considered in the metric calculations. Default is
8168 @code{1}.
8169 @end table
8170
8171 @section deconvolve
8172
8173 Apply 2D deconvolution of video stream in frequency domain using second stream
8174 as impulse.
8175
8176 The filter accepts the following options:
8177
8178 @table @option
8179 @item planes
8180 Set which planes to process.
8181
8182 @item impulse
8183 Set which impulse video frames will be processed, can be @var{first}
8184 or @var{all}. Default is @var{all}.
8185
8186 @item noise
8187 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8188 and height are not same and not power of 2 or if stream prior to convolving
8189 had noise.
8190 @end table
8191
8192 The @code{deconvolve} filter also supports the @ref{framesync} options.
8193
8194 @section dedot
8195
8196 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8197
8198 It accepts the following options:
8199
8200 @table @option
8201 @item m
8202 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8203 @var{rainbows} for cross-color reduction.
8204
8205 @item lt
8206 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8207
8208 @item tl
8209 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8210
8211 @item tc
8212 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8213
8214 @item ct
8215 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8216 @end table
8217
8218 @section deflate
8219
8220 Apply deflate effect to the video.
8221
8222 This filter replaces the pixel by the local(3x3) average by taking into account
8223 only values lower than the pixel.
8224
8225 It accepts the following options:
8226
8227 @table @option
8228 @item threshold0
8229 @item threshold1
8230 @item threshold2
8231 @item threshold3
8232 Limit the maximum change for each plane, default is 65535.
8233 If 0, plane will remain unchanged.
8234 @end table
8235
8236 @section deflicker
8237
8238 Remove temporal frame luminance variations.
8239
8240 It accepts the following options:
8241
8242 @table @option
8243 @item size, s
8244 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8245
8246 @item mode, m
8247 Set averaging mode to smooth temporal luminance variations.
8248
8249 Available values are:
8250 @table @samp
8251 @item am
8252 Arithmetic mean
8253
8254 @item gm
8255 Geometric mean
8256
8257 @item hm
8258 Harmonic mean
8259
8260 @item qm
8261 Quadratic mean
8262
8263 @item cm
8264 Cubic mean
8265
8266 @item pm
8267 Power mean
8268
8269 @item median
8270 Median
8271 @end table
8272
8273 @item bypass
8274 Do not actually modify frame. Useful when one only wants metadata.
8275 @end table
8276
8277 @section dejudder
8278
8279 Remove judder produced by partially interlaced telecined content.
8280
8281 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8282 source was partially telecined content then the output of @code{pullup,dejudder}
8283 will have a variable frame rate. May change the recorded frame rate of the
8284 container. Aside from that change, this filter will not affect constant frame
8285 rate video.
8286
8287 The option available in this filter is:
8288 @table @option
8289
8290 @item cycle
8291 Specify the length of the window over which the judder repeats.
8292
8293 Accepts any integer greater than 1. Useful values are:
8294 @table @samp
8295
8296 @item 4
8297 If the original was telecined from 24 to 30 fps (Film to NTSC).
8298
8299 @item 5
8300 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8301
8302 @item 20
8303 If a mixture of the two.
8304 @end table
8305
8306 The default is @samp{4}.
8307 @end table
8308
8309 @section delogo
8310
8311 Suppress a TV station logo by a simple interpolation of the surrounding
8312 pixels. Just set a rectangle covering the logo and watch it disappear
8313 (and sometimes something even uglier appear - your mileage may vary).
8314
8315 It accepts the following parameters:
8316 @table @option
8317
8318 @item x
8319 @item y
8320 Specify the top left corner coordinates of the logo. They must be
8321 specified.
8322
8323 @item w
8324 @item h
8325 Specify the width and height of the logo to clear. They must be
8326 specified.
8327
8328 @item band, t
8329 Specify the thickness of the fuzzy edge of the rectangle (added to
8330 @var{w} and @var{h}). The default value is 1. This option is
8331 deprecated, setting higher values should no longer be necessary and
8332 is not recommended.
8333
8334 @item show
8335 When set to 1, a green rectangle is drawn on the screen to simplify
8336 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8337 The default value is 0.
8338
8339 The rectangle is drawn on the outermost pixels which will be (partly)
8340 replaced with interpolated values. The values of the next pixels
8341 immediately outside this rectangle in each direction will be used to
8342 compute the interpolated pixel values inside the rectangle.
8343
8344 @end table
8345
8346 @subsection Examples
8347
8348 @itemize
8349 @item
8350 Set a rectangle covering the area with top left corner coordinates 0,0
8351 and size 100x77, and a band of size 10:
8352 @example
8353 delogo=x=0:y=0:w=100:h=77:band=10
8354 @end example
8355
8356 @end itemize
8357
8358 @section derain
8359
8360 Remove the rain in the input image/video by applying the derain methods based on
8361 convolutional neural networks. Supported models:
8362
8363 @itemize
8364 @item
8365 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8366 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8367 @end itemize
8368
8369 Training scripts as well as scripts for model generation are provided in
8370 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8371
8372 The filter accepts the following options:
8373
8374 @table @option
8375 @item dnn_backend
8376 Specify which DNN backend to use for model loading and execution. This option accepts
8377 the following values:
8378
8379 @table @samp
8380 @item native
8381 Native implementation of DNN loading and execution.
8382 @end table
8383 Default value is @samp{native}.
8384
8385 @item model
8386 Set path to model file specifying network architecture and its parameters.
8387 Note that different backends use different file formats. TensorFlow backend
8388 can load files for both formats, while native backend can load files for only
8389 its format.
8390 @end table
8391
8392 @section deshake
8393
8394 Attempt to fix small changes in horizontal and/or vertical shift. This
8395 filter helps remove camera shake from hand-holding a camera, bumping a
8396 tripod, moving on a vehicle, etc.
8397
8398 The filter accepts the following options:
8399
8400 @table @option
8401
8402 @item x
8403 @item y
8404 @item w
8405 @item h
8406 Specify a rectangular area where to limit the search for motion
8407 vectors.
8408 If desired the search for motion vectors can be limited to a
8409 rectangular area of the frame defined by its top left corner, width
8410 and height. These parameters have the same meaning as the drawbox
8411 filter which can be used to visualise the position of the bounding
8412 box.
8413
8414 This is useful when simultaneous movement of subjects within the frame
8415 might be confused for camera motion by the motion vector search.
8416
8417 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8418 then the full frame is used. This allows later options to be set
8419 without specifying the bounding box for the motion vector search.
8420
8421 Default - search the whole frame.
8422
8423 @item rx
8424 @item ry
8425 Specify the maximum extent of movement in x and y directions in the
8426 range 0-64 pixels. Default 16.
8427
8428 @item edge
8429 Specify how to generate pixels to fill blanks at the edge of the
8430 frame. Available values are:
8431 @table @samp
8432 @item blank, 0
8433 Fill zeroes at blank locations
8434 @item original, 1
8435 Original image at blank locations
8436 @item clamp, 2
8437 Extruded edge value at blank locations
8438 @item mirror, 3
8439 Mirrored edge at blank locations
8440 @end table
8441 Default value is @samp{mirror}.
8442
8443 @item blocksize
8444 Specify the blocksize to use for motion search. Range 4-128 pixels,
8445 default 8.
8446
8447 @item contrast
8448 Specify the contrast threshold for blocks. Only blocks with more than
8449 the specified contrast (difference between darkest and lightest
8450 pixels) will be considered. Range 1-255, default 125.
8451
8452 @item search
8453 Specify the search strategy. Available values are:
8454 @table @samp
8455 @item exhaustive, 0
8456 Set exhaustive search
8457 @item less, 1
8458 Set less exhaustive search.
8459 @end table
8460 Default value is @samp{exhaustive}.
8461
8462 @item filename
8463 If set then a detailed log of the motion search is written to the
8464 specified file.
8465
8466 @end table
8467
8468 @section despill
8469
8470 Remove unwanted contamination of foreground colors, caused by reflected color of
8471 greenscreen or bluescreen.
8472
8473 This filter accepts the following options:
8474
8475 @table @option
8476 @item type
8477 Set what type of despill to use.
8478
8479 @item mix
8480 Set how spillmap will be generated.
8481
8482 @item expand
8483 Set how much to get rid of still remaining spill.
8484
8485 @item red
8486 Controls amount of red in spill area.
8487
8488 @item green
8489 Controls amount of green in spill area.
8490 Should be -1 for greenscreen.
8491
8492 @item blue
8493 Controls amount of blue in spill area.
8494 Should be -1 for bluescreen.
8495
8496 @item brightness
8497 Controls brightness of spill area, preserving colors.
8498
8499 @item alpha
8500 Modify alpha from generated spillmap.
8501 @end table
8502
8503 @section detelecine
8504
8505 Apply an exact inverse of the telecine operation. It requires a predefined
8506 pattern specified using the pattern option which must be the same as that passed
8507 to the telecine filter.
8508
8509 This filter accepts the following options:
8510
8511 @table @option
8512 @item first_field
8513 @table @samp
8514 @item top, t
8515 top field first
8516 @item bottom, b
8517 bottom field first
8518 The default value is @code{top}.
8519 @end table
8520
8521 @item pattern
8522 A string of numbers representing the pulldown pattern you wish to apply.
8523 The default value is @code{23}.
8524
8525 @item start_frame
8526 A number representing position of the first frame with respect to the telecine
8527 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8528 @end table
8529
8530 @section dilation
8531
8532 Apply dilation effect to the video.
8533
8534 This filter replaces the pixel by the local(3x3) maximum.
8535
8536 It accepts the following options:
8537
8538 @table @option
8539 @item threshold0
8540 @item threshold1
8541 @item threshold2
8542 @item threshold3
8543 Limit the maximum change for each plane, default is 65535.
8544 If 0, plane will remain unchanged.
8545
8546 @item coordinates
8547 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8548 pixels are used.
8549
8550 Flags to local 3x3 coordinates maps like this:
8551
8552     1 2 3
8553     4   5
8554     6 7 8
8555 @end table
8556
8557 @section displace
8558
8559 Displace pixels as indicated by second and third input stream.
8560
8561 It takes three input streams and outputs one stream, the first input is the
8562 source, and second and third input are displacement maps.
8563
8564 The second input specifies how much to displace pixels along the
8565 x-axis, while the third input specifies how much to displace pixels
8566 along the y-axis.
8567 If one of displacement map streams terminates, last frame from that
8568 displacement map will be used.
8569
8570 Note that once generated, displacements maps can be reused over and over again.
8571
8572 A description of the accepted options follows.
8573
8574 @table @option
8575 @item edge
8576 Set displace behavior for pixels that are out of range.
8577
8578 Available values are:
8579 @table @samp
8580 @item blank
8581 Missing pixels are replaced by black pixels.
8582
8583 @item smear
8584 Adjacent pixels will spread out to replace missing pixels.
8585
8586 @item wrap
8587 Out of range pixels are wrapped so they point to pixels of other side.
8588
8589 @item mirror
8590 Out of range pixels will be replaced with mirrored pixels.
8591 @end table
8592 Default is @samp{smear}.
8593
8594 @end table
8595
8596 @subsection Examples
8597
8598 @itemize
8599 @item
8600 Add ripple effect to rgb input of video size hd720:
8601 @example
8602 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
8603 @end example
8604
8605 @item
8606 Add wave effect to rgb input of video size hd720:
8607 @example
8608 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
8609 @end example
8610 @end itemize
8611
8612 @section drawbox
8613
8614 Draw a colored box on the input image.
8615
8616 It accepts the following parameters:
8617
8618 @table @option
8619 @item x
8620 @item y
8621 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
8622
8623 @item width, w
8624 @item height, h
8625 The expressions which specify the width and height of the box; if 0 they are interpreted as
8626 the input width and height. It defaults to 0.
8627
8628 @item color, c
8629 Specify the color of the box to write. For the general syntax of this option,
8630 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8631 value @code{invert} is used, the box edge color is the same as the
8632 video with inverted luma.
8633
8634 @item thickness, t
8635 The expression which sets the thickness of the box edge.
8636 A value of @code{fill} will create a filled box. Default value is @code{3}.
8637
8638 See below for the list of accepted constants.
8639
8640 @item replace
8641 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
8642 will overwrite the video's color and alpha pixels.
8643 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
8644 @end table
8645
8646 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8647 following constants:
8648
8649 @table @option
8650 @item dar
8651 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8652
8653 @item hsub
8654 @item vsub
8655 horizontal and vertical chroma subsample values. For example for the
8656 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8657
8658 @item in_h, ih
8659 @item in_w, iw
8660 The input width and height.
8661
8662 @item sar
8663 The input sample aspect ratio.
8664
8665 @item x
8666 @item y
8667 The x and y offset coordinates where the box is drawn.
8668
8669 @item w
8670 @item h
8671 The width and height of the drawn box.
8672
8673 @item t
8674 The thickness of the drawn box.
8675
8676 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8677 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8678
8679 @end table
8680
8681 @subsection Examples
8682
8683 @itemize
8684 @item
8685 Draw a black box around the edge of the input image:
8686 @example
8687 drawbox
8688 @end example
8689
8690 @item
8691 Draw a box with color red and an opacity of 50%:
8692 @example
8693 drawbox=10:20:200:60:red@@0.5
8694 @end example
8695
8696 The previous example can be specified as:
8697 @example
8698 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
8699 @end example
8700
8701 @item
8702 Fill the box with pink color:
8703 @example
8704 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
8705 @end example
8706
8707 @item
8708 Draw a 2-pixel red 2.40:1 mask:
8709 @example
8710 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
8711 @end example
8712 @end itemize
8713
8714 @section drawgrid
8715
8716 Draw a grid on the input image.
8717
8718 It accepts the following parameters:
8719
8720 @table @option
8721 @item x
8722 @item y
8723 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
8724
8725 @item width, w
8726 @item height, h
8727 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
8728 input width and height, respectively, minus @code{thickness}, so image gets
8729 framed. Default to 0.
8730
8731 @item color, c
8732 Specify the color of the grid. For the general syntax of this option,
8733 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8734 value @code{invert} is used, the grid color is the same as the
8735 video with inverted luma.
8736
8737 @item thickness, t
8738 The expression which sets the thickness of the grid line. Default value is @code{1}.
8739
8740 See below for the list of accepted constants.
8741
8742 @item replace
8743 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
8744 will overwrite the video's color and alpha pixels.
8745 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
8746 @end table
8747
8748 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8749 following constants:
8750
8751 @table @option
8752 @item dar
8753 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8754
8755 @item hsub
8756 @item vsub
8757 horizontal and vertical chroma subsample values. For example for the
8758 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8759
8760 @item in_h, ih
8761 @item in_w, iw
8762 The input grid cell width and height.
8763
8764 @item sar
8765 The input sample aspect ratio.
8766
8767 @item x
8768 @item y
8769 The x and y coordinates of some point of grid intersection (meant to configure offset).
8770
8771 @item w
8772 @item h
8773 The width and height of the drawn cell.
8774
8775 @item t
8776 The thickness of the drawn cell.
8777
8778 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8779 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8780
8781 @end table
8782
8783 @subsection Examples
8784
8785 @itemize
8786 @item
8787 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
8788 @example
8789 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
8790 @end example
8791
8792 @item
8793 Draw a white 3x3 grid with an opacity of 50%:
8794 @example
8795 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
8796 @end example
8797 @end itemize
8798
8799 @anchor{drawtext}
8800 @section drawtext
8801
8802 Draw a text string or text from a specified file on top of a video, using the
8803 libfreetype library.
8804
8805 To enable compilation of this filter, you need to configure FFmpeg with
8806 @code{--enable-libfreetype}.
8807 To enable default font fallback and the @var{font} option you need to
8808 configure FFmpeg with @code{--enable-libfontconfig}.
8809 To enable the @var{text_shaping} option, you need to configure FFmpeg with
8810 @code{--enable-libfribidi}.
8811
8812 @subsection Syntax
8813
8814 It accepts the following parameters:
8815
8816 @table @option
8817
8818 @item box
8819 Used to draw a box around text using the background color.
8820 The value must be either 1 (enable) or 0 (disable).
8821 The default value of @var{box} is 0.
8822
8823 @item boxborderw
8824 Set the width of the border to be drawn around the box using @var{boxcolor}.
8825 The default value of @var{boxborderw} is 0.
8826
8827 @item boxcolor
8828 The color to be used for drawing box around text. For the syntax of this
8829 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8830
8831 The default value of @var{boxcolor} is "white".
8832
8833 @item line_spacing
8834 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
8835 The default value of @var{line_spacing} is 0.
8836
8837 @item borderw
8838 Set the width of the border to be drawn around the text using @var{bordercolor}.
8839 The default value of @var{borderw} is 0.
8840
8841 @item bordercolor
8842 Set the color to be used for drawing border around text. For the syntax of this
8843 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8844
8845 The default value of @var{bordercolor} is "black".
8846
8847 @item expansion
8848 Select how the @var{text} is expanded. Can be either @code{none},
8849 @code{strftime} (deprecated) or
8850 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
8851 below for details.
8852
8853 @item basetime
8854 Set a start time for the count. Value is in microseconds. Only applied
8855 in the deprecated strftime expansion mode. To emulate in normal expansion
8856 mode use the @code{pts} function, supplying the start time (in seconds)
8857 as the second argument.
8858
8859 @item fix_bounds
8860 If true, check and fix text coords to avoid clipping.
8861
8862 @item fontcolor
8863 The color to be used for drawing fonts. For the syntax of this option, check
8864 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8865
8866 The default value of @var{fontcolor} is "black".
8867
8868 @item fontcolor_expr
8869 String which is expanded the same way as @var{text} to obtain dynamic
8870 @var{fontcolor} value. By default this option has empty value and is not
8871 processed. When this option is set, it overrides @var{fontcolor} option.
8872
8873 @item font
8874 The font family to be used for drawing text. By default Sans.
8875
8876 @item fontfile
8877 The font file to be used for drawing text. The path must be included.
8878 This parameter is mandatory if the fontconfig support is disabled.
8879
8880 @item alpha
8881 Draw the text applying alpha blending. The value can
8882 be a number between 0.0 and 1.0.
8883 The expression accepts the same variables @var{x, y} as well.
8884 The default value is 1.
8885 Please see @var{fontcolor_expr}.
8886
8887 @item fontsize
8888 The font size to be used for drawing text.
8889 The default value of @var{fontsize} is 16.
8890
8891 @item text_shaping
8892 If set to 1, attempt to shape the text (for example, reverse the order of
8893 right-to-left text and join Arabic characters) before drawing it.
8894 Otherwise, just draw the text exactly as given.
8895 By default 1 (if supported).
8896
8897 @item ft_load_flags
8898 The flags to be used for loading the fonts.
8899
8900 The flags map the corresponding flags supported by libfreetype, and are
8901 a combination of the following values:
8902 @table @var
8903 @item default
8904 @item no_scale
8905 @item no_hinting
8906 @item render
8907 @item no_bitmap
8908 @item vertical_layout
8909 @item force_autohint
8910 @item crop_bitmap
8911 @item pedantic
8912 @item ignore_global_advance_width
8913 @item no_recurse
8914 @item ignore_transform
8915 @item monochrome
8916 @item linear_design
8917 @item no_autohint
8918 @end table
8919
8920 Default value is "default".
8921
8922 For more information consult the documentation for the FT_LOAD_*
8923 libfreetype flags.
8924
8925 @item shadowcolor
8926 The color to be used for drawing a shadow behind the drawn text. For the
8927 syntax of this option, check the @ref{color syntax,,"Color" section in the
8928 ffmpeg-utils manual,ffmpeg-utils}.
8929
8930 The default value of @var{shadowcolor} is "black".
8931
8932 @item shadowx
8933 @item shadowy
8934 The x and y offsets for the text shadow position with respect to the
8935 position of the text. They can be either positive or negative
8936 values. The default value for both is "0".
8937
8938 @item start_number
8939 The starting frame number for the n/frame_num variable. The default value
8940 is "0".
8941
8942 @item tabsize
8943 The size in number of spaces to use for rendering the tab.
8944 Default value is 4.
8945
8946 @item timecode
8947 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
8948 format. It can be used with or without text parameter. @var{timecode_rate}
8949 option must be specified.
8950
8951 @item timecode_rate, rate, r
8952 Set the timecode frame rate (timecode only). Value will be rounded to nearest
8953 integer. Minimum value is "1".
8954 Drop-frame timecode is supported for frame rates 30 & 60.
8955
8956 @item tc24hmax
8957 If set to 1, the output of the timecode option will wrap around at 24 hours.
8958 Default is 0 (disabled).
8959
8960 @item text
8961 The text string to be drawn. The text must be a sequence of UTF-8
8962 encoded characters.
8963 This parameter is mandatory if no file is specified with the parameter
8964 @var{textfile}.
8965
8966 @item textfile
8967 A text file containing text to be drawn. The text must be a sequence
8968 of UTF-8 encoded characters.
8969
8970 This parameter is mandatory if no text string is specified with the
8971 parameter @var{text}.
8972
8973 If both @var{text} and @var{textfile} are specified, an error is thrown.
8974
8975 @item reload
8976 If set to 1, the @var{textfile} will be reloaded before each frame.
8977 Be sure to update it atomically, or it may be read partially, or even fail.
8978
8979 @item x
8980 @item y
8981 The expressions which specify the offsets where text will be drawn
8982 within the video frame. They are relative to the top/left border of the
8983 output image.
8984
8985 The default value of @var{x} and @var{y} is "0".
8986
8987 See below for the list of accepted constants and functions.
8988 @end table
8989
8990 The parameters for @var{x} and @var{y} are expressions containing the
8991 following constants and functions:
8992
8993 @table @option
8994 @item dar
8995 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
8996
8997 @item hsub
8998 @item vsub
8999 horizontal and vertical chroma subsample values. For example for the
9000 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9001
9002 @item line_h, lh
9003 the height of each text line
9004
9005 @item main_h, h, H
9006 the input height
9007
9008 @item main_w, w, W
9009 the input width
9010
9011 @item max_glyph_a, ascent
9012 the maximum distance from the baseline to the highest/upper grid
9013 coordinate used to place a glyph outline point, for all the rendered
9014 glyphs.
9015 It is a positive value, due to the grid's orientation with the Y axis
9016 upwards.
9017
9018 @item max_glyph_d, descent
9019 the maximum distance from the baseline to the lowest grid coordinate
9020 used to place a glyph outline point, for all the rendered glyphs.
9021 This is a negative value, due to the grid's orientation, with the Y axis
9022 upwards.
9023
9024 @item max_glyph_h
9025 maximum glyph height, that is the maximum height for all the glyphs
9026 contained in the rendered text, it is equivalent to @var{ascent} -
9027 @var{descent}.
9028
9029 @item max_glyph_w
9030 maximum glyph width, that is the maximum width for all the glyphs
9031 contained in the rendered text
9032
9033 @item n
9034 the number of input frame, starting from 0
9035
9036 @item rand(min, max)
9037 return a random number included between @var{min} and @var{max}
9038
9039 @item sar
9040 The input sample aspect ratio.
9041
9042 @item t
9043 timestamp expressed in seconds, NAN if the input timestamp is unknown
9044
9045 @item text_h, th
9046 the height of the rendered text
9047
9048 @item text_w, tw
9049 the width of the rendered text
9050
9051 @item x
9052 @item y
9053 the x and y offset coordinates where the text is drawn.
9054
9055 These parameters allow the @var{x} and @var{y} expressions to refer
9056 to each other, so you can for example specify @code{y=x/dar}.
9057
9058 @item pict_type
9059 A one character description of the current frame's picture type.
9060
9061 @item pkt_pos
9062 The current packet's position in the input file or stream
9063 (in bytes, from the start of the input). A value of -1 indicates
9064 this info is not available.
9065
9066 @item pkt_duration
9067 The current packet's duration, in seconds.
9068
9069 @item pkt_size
9070 The current packet's size (in bytes).
9071 @end table
9072
9073 @anchor{drawtext_expansion}
9074 @subsection Text expansion
9075
9076 If @option{expansion} is set to @code{strftime},
9077 the filter recognizes strftime() sequences in the provided text and
9078 expands them accordingly. Check the documentation of strftime(). This
9079 feature is deprecated.
9080
9081 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9082
9083 If @option{expansion} is set to @code{normal} (which is the default),
9084 the following expansion mechanism is used.
9085
9086 The backslash character @samp{\}, followed by any character, always expands to
9087 the second character.
9088
9089 Sequences of the form @code{%@{...@}} are expanded. The text between the
9090 braces is a function name, possibly followed by arguments separated by ':'.
9091 If the arguments contain special characters or delimiters (':' or '@}'),
9092 they should be escaped.
9093
9094 Note that they probably must also be escaped as the value for the
9095 @option{text} option in the filter argument string and as the filter
9096 argument in the filtergraph description, and possibly also for the shell,
9097 that makes up to four levels of escaping; using a text file avoids these
9098 problems.
9099
9100 The following functions are available:
9101
9102 @table @command
9103
9104 @item expr, e
9105 The expression evaluation result.
9106
9107 It must take one argument specifying the expression to be evaluated,
9108 which accepts the same constants and functions as the @var{x} and
9109 @var{y} values. Note that not all constants should be used, for
9110 example the text size is not known when evaluating the expression, so
9111 the constants @var{text_w} and @var{text_h} will have an undefined
9112 value.
9113
9114 @item expr_int_format, eif
9115 Evaluate the expression's value and output as formatted integer.
9116
9117 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9118 The second argument specifies the output format. Allowed values are @samp{x},
9119 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9120 @code{printf} function.
9121 The third parameter is optional and sets the number of positions taken by the output.
9122 It can be used to add padding with zeros from the left.
9123
9124 @item gmtime
9125 The time at which the filter is running, expressed in UTC.
9126 It can accept an argument: a strftime() format string.
9127
9128 @item localtime
9129 The time at which the filter is running, expressed in the local time zone.
9130 It can accept an argument: a strftime() format string.
9131
9132 @item metadata
9133 Frame metadata. Takes one or two arguments.
9134
9135 The first argument is mandatory and specifies the metadata key.
9136
9137 The second argument is optional and specifies a default value, used when the
9138 metadata key is not found or empty.
9139
9140 Available metadata can be identified by inspecting entries
9141 starting with TAG included within each frame section
9142 printed by running @code{ffprobe -show_frames}.
9143
9144 String metadata generated in filters leading to
9145 the drawtext filter are also available.
9146
9147 @item n, frame_num
9148 The frame number, starting from 0.
9149
9150 @item pict_type
9151 A one character description of the current picture type.
9152
9153 @item pts
9154 The timestamp of the current frame.
9155 It can take up to three arguments.
9156
9157 The first argument is the format of the timestamp; it defaults to @code{flt}
9158 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9159 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9160 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9161 @code{localtime} stands for the timestamp of the frame formatted as
9162 local time zone time.
9163
9164 The second argument is an offset added to the timestamp.
9165
9166 If the format is set to @code{hms}, a third argument @code{24HH} may be
9167 supplied to present the hour part of the formatted timestamp in 24h format
9168 (00-23).
9169
9170 If the format is set to @code{localtime} or @code{gmtime},
9171 a third argument may be supplied: a strftime() format string.
9172 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9173 @end table
9174
9175 @subsection Commands
9176
9177 This filter supports altering parameters via commands:
9178 @table @option
9179 @item reinit
9180 Alter existing filter parameters.
9181
9182 Syntax for the argument is the same as for filter invocation, e.g.
9183
9184 @example
9185 fontsize=56:fontcolor=green:text='Hello World'
9186 @end example
9187
9188 Full filter invocation with sendcmd would look like this:
9189
9190 @example
9191 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9192 @end example
9193 @end table
9194
9195 If the entire argument can't be parsed or applied as valid values then the filter will
9196 continue with its existing parameters.
9197
9198 @subsection Examples
9199
9200 @itemize
9201 @item
9202 Draw "Test Text" with font FreeSerif, using the default values for the
9203 optional parameters.
9204
9205 @example
9206 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9207 @end example
9208
9209 @item
9210 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9211 and y=50 (counting from the top-left corner of the screen), text is
9212 yellow with a red box around it. Both the text and the box have an
9213 opacity of 20%.
9214
9215 @example
9216 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9217           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9218 @end example
9219
9220 Note that the double quotes are not necessary if spaces are not used
9221 within the parameter list.
9222
9223 @item
9224 Show the text at the center of the video frame:
9225 @example
9226 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9227 @end example
9228
9229 @item
9230 Show the text at a random position, switching to a new position every 30 seconds:
9231 @example
9232 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)"
9233 @end example
9234
9235 @item
9236 Show a text line sliding from right to left in the last row of the video
9237 frame. The file @file{LONG_LINE} is assumed to contain a single line
9238 with no newlines.
9239 @example
9240 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9241 @end example
9242
9243 @item
9244 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9245 @example
9246 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9247 @end example
9248
9249 @item
9250 Draw a single green letter "g", at the center of the input video.
9251 The glyph baseline is placed at half screen height.
9252 @example
9253 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9254 @end example
9255
9256 @item
9257 Show text for 1 second every 3 seconds:
9258 @example
9259 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9260 @end example
9261
9262 @item
9263 Use fontconfig to set the font. Note that the colons need to be escaped.
9264 @example
9265 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
9266 @end example
9267
9268 @item
9269 Print the date of a real-time encoding (see strftime(3)):
9270 @example
9271 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
9272 @end example
9273
9274 @item
9275 Show text fading in and out (appearing/disappearing):
9276 @example
9277 #!/bin/sh
9278 DS=1.0 # display start
9279 DE=10.0 # display end
9280 FID=1.5 # fade in duration
9281 FOD=5 # fade out duration
9282 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 @}"
9283 @end example
9284
9285 @item
9286 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
9287 and the @option{fontsize} value are included in the @option{y} offset.
9288 @example
9289 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
9290 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
9291 @end example
9292
9293 @end itemize
9294
9295 For more information about libfreetype, check:
9296 @url{http://www.freetype.org/}.
9297
9298 For more information about fontconfig, check:
9299 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
9300
9301 For more information about libfribidi, check:
9302 @url{http://fribidi.org/}.
9303
9304 @section edgedetect
9305
9306 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
9307
9308 The filter accepts the following options:
9309
9310 @table @option
9311 @item low
9312 @item high
9313 Set low and high threshold values used by the Canny thresholding
9314 algorithm.
9315
9316 The high threshold selects the "strong" edge pixels, which are then
9317 connected through 8-connectivity with the "weak" edge pixels selected
9318 by the low threshold.
9319
9320 @var{low} and @var{high} threshold values must be chosen in the range
9321 [0,1], and @var{low} should be lesser or equal to @var{high}.
9322
9323 Default value for @var{low} is @code{20/255}, and default value for @var{high}
9324 is @code{50/255}.
9325
9326 @item mode
9327 Define the drawing mode.
9328
9329 @table @samp
9330 @item wires
9331 Draw white/gray wires on black background.
9332
9333 @item colormix
9334 Mix the colors to create a paint/cartoon effect.
9335
9336 @item canny
9337 Apply Canny edge detector on all selected planes.
9338 @end table
9339 Default value is @var{wires}.
9340
9341 @item planes
9342 Select planes for filtering. By default all available planes are filtered.
9343 @end table
9344
9345 @subsection Examples
9346
9347 @itemize
9348 @item
9349 Standard edge detection with custom values for the hysteresis thresholding:
9350 @example
9351 edgedetect=low=0.1:high=0.4
9352 @end example
9353
9354 @item
9355 Painting effect without thresholding:
9356 @example
9357 edgedetect=mode=colormix:high=0
9358 @end example
9359 @end itemize
9360
9361 @section eq
9362 Set brightness, contrast, saturation and approximate gamma adjustment.
9363
9364 The filter accepts the following options:
9365
9366 @table @option
9367 @item contrast
9368 Set the contrast expression. The value must be a float value in range
9369 @code{-2.0} to @code{2.0}. The default value is "1".
9370
9371 @item brightness
9372 Set the brightness expression. The value must be a float value in
9373 range @code{-1.0} to @code{1.0}. The default value is "0".
9374
9375 @item saturation
9376 Set the saturation expression. The value must be a float in
9377 range @code{0.0} to @code{3.0}. The default value is "1".
9378
9379 @item gamma
9380 Set the gamma expression. The value must be a float in range
9381 @code{0.1} to @code{10.0}.  The default value is "1".
9382
9383 @item gamma_r
9384 Set the gamma expression for red. The value must be a float in
9385 range @code{0.1} to @code{10.0}. The default value is "1".
9386
9387 @item gamma_g
9388 Set the gamma expression for green. The value must be a float in range
9389 @code{0.1} to @code{10.0}. The default value is "1".
9390
9391 @item gamma_b
9392 Set the gamma expression for blue. The value must be a float in range
9393 @code{0.1} to @code{10.0}. The default value is "1".
9394
9395 @item gamma_weight
9396 Set the gamma weight expression. It can be used to reduce the effect
9397 of a high gamma value on bright image areas, e.g. keep them from
9398 getting overamplified and just plain white. The value must be a float
9399 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
9400 gamma correction all the way down while @code{1.0} leaves it at its
9401 full strength. Default is "1".
9402
9403 @item eval
9404 Set when the expressions for brightness, contrast, saturation and
9405 gamma expressions are evaluated.
9406
9407 It accepts the following values:
9408 @table @samp
9409 @item init
9410 only evaluate expressions once during the filter initialization or
9411 when a command is processed
9412
9413 @item frame
9414 evaluate expressions for each incoming frame
9415 @end table
9416
9417 Default value is @samp{init}.
9418 @end table
9419
9420 The expressions accept the following parameters:
9421 @table @option
9422 @item n
9423 frame count of the input frame starting from 0
9424
9425 @item pos
9426 byte position of the corresponding packet in the input file, NAN if
9427 unspecified
9428
9429 @item r
9430 frame rate of the input video, NAN if the input frame rate is unknown
9431
9432 @item t
9433 timestamp expressed in seconds, NAN if the input timestamp is unknown
9434 @end table
9435
9436 @subsection Commands
9437 The filter supports the following commands:
9438
9439 @table @option
9440 @item contrast
9441 Set the contrast expression.
9442
9443 @item brightness
9444 Set the brightness expression.
9445
9446 @item saturation
9447 Set the saturation expression.
9448
9449 @item gamma
9450 Set the gamma expression.
9451
9452 @item gamma_r
9453 Set the gamma_r expression.
9454
9455 @item gamma_g
9456 Set gamma_g expression.
9457
9458 @item gamma_b
9459 Set gamma_b expression.
9460
9461 @item gamma_weight
9462 Set gamma_weight expression.
9463
9464 The command accepts the same syntax of the corresponding option.
9465
9466 If the specified expression is not valid, it is kept at its current
9467 value.
9468
9469 @end table
9470
9471 @section erosion
9472
9473 Apply erosion effect to the video.
9474
9475 This filter replaces the pixel by the local(3x3) minimum.
9476
9477 It accepts the following options:
9478
9479 @table @option
9480 @item threshold0
9481 @item threshold1
9482 @item threshold2
9483 @item threshold3
9484 Limit the maximum change for each plane, default is 65535.
9485 If 0, plane will remain unchanged.
9486
9487 @item coordinates
9488 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9489 pixels are used.
9490
9491 Flags to local 3x3 coordinates maps like this:
9492
9493     1 2 3
9494     4   5
9495     6 7 8
9496 @end table
9497
9498 @section extractplanes
9499
9500 Extract color channel components from input video stream into
9501 separate grayscale video streams.
9502
9503 The filter accepts the following option:
9504
9505 @table @option
9506 @item planes
9507 Set plane(s) to extract.
9508
9509 Available values for planes are:
9510 @table @samp
9511 @item y
9512 @item u
9513 @item v
9514 @item a
9515 @item r
9516 @item g
9517 @item b
9518 @end table
9519
9520 Choosing planes not available in the input will result in an error.
9521 That means you cannot select @code{r}, @code{g}, @code{b} planes
9522 with @code{y}, @code{u}, @code{v} planes at same time.
9523 @end table
9524
9525 @subsection Examples
9526
9527 @itemize
9528 @item
9529 Extract luma, u and v color channel component from input video frame
9530 into 3 grayscale outputs:
9531 @example
9532 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
9533 @end example
9534 @end itemize
9535
9536 @section elbg
9537
9538 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9539
9540 For each input image, the filter will compute the optimal mapping from
9541 the input to the output given the codebook length, that is the number
9542 of distinct output colors.
9543
9544 This filter accepts the following options.
9545
9546 @table @option
9547 @item codebook_length, l
9548 Set codebook length. The value must be a positive integer, and
9549 represents the number of distinct output colors. Default value is 256.
9550
9551 @item nb_steps, n
9552 Set the maximum number of iterations to apply for computing the optimal
9553 mapping. The higher the value the better the result and the higher the
9554 computation time. Default value is 1.
9555
9556 @item seed, s
9557 Set a random seed, must be an integer included between 0 and
9558 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9559 will try to use a good random seed on a best effort basis.
9560
9561 @item pal8
9562 Set pal8 output pixel format. This option does not work with codebook
9563 length greater than 256.
9564 @end table
9565
9566 @section entropy
9567
9568 Measure graylevel entropy in histogram of color channels of video frames.
9569
9570 It accepts the following parameters:
9571
9572 @table @option
9573 @item mode
9574 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9575
9576 @var{diff} mode measures entropy of histogram delta values, absolute differences
9577 between neighbour histogram values.
9578 @end table
9579
9580 @section fade
9581
9582 Apply a fade-in/out effect to the input video.
9583
9584 It accepts the following parameters:
9585
9586 @table @option
9587 @item type, t
9588 The effect type can be either "in" for a fade-in, or "out" for a fade-out
9589 effect.
9590 Default is @code{in}.
9591
9592 @item start_frame, s
9593 Specify the number of the frame to start applying the fade
9594 effect at. Default is 0.
9595
9596 @item nb_frames, n
9597 The number of frames that the fade effect lasts. At the end of the
9598 fade-in effect, the output video will have the same intensity as the input video.
9599 At the end of the fade-out transition, the output video will be filled with the
9600 selected @option{color}.
9601 Default is 25.
9602
9603 @item alpha
9604 If set to 1, fade only alpha channel, if one exists on the input.
9605 Default value is 0.
9606
9607 @item start_time, st
9608 Specify the timestamp (in seconds) of the frame to start to apply the fade
9609 effect. If both start_frame and start_time are specified, the fade will start at
9610 whichever comes last.  Default is 0.
9611
9612 @item duration, d
9613 The number of seconds for which the fade effect has to last. At the end of the
9614 fade-in effect the output video will have the same intensity as the input video,
9615 at the end of the fade-out transition the output video will be filled with the
9616 selected @option{color}.
9617 If both duration and nb_frames are specified, duration is used. Default is 0
9618 (nb_frames is used by default).
9619
9620 @item color, c
9621 Specify the color of the fade. Default is "black".
9622 @end table
9623
9624 @subsection Examples
9625
9626 @itemize
9627 @item
9628 Fade in the first 30 frames of video:
9629 @example
9630 fade=in:0:30
9631 @end example
9632
9633 The command above is equivalent to:
9634 @example
9635 fade=t=in:s=0:n=30
9636 @end example
9637
9638 @item
9639 Fade out the last 45 frames of a 200-frame video:
9640 @example
9641 fade=out:155:45
9642 fade=type=out:start_frame=155:nb_frames=45
9643 @end example
9644
9645 @item
9646 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
9647 @example
9648 fade=in:0:25, fade=out:975:25
9649 @end example
9650
9651 @item
9652 Make the first 5 frames yellow, then fade in from frame 5-24:
9653 @example
9654 fade=in:5:20:color=yellow
9655 @end example
9656
9657 @item
9658 Fade in alpha over first 25 frames of video:
9659 @example
9660 fade=in:0:25:alpha=1
9661 @end example
9662
9663 @item
9664 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
9665 @example
9666 fade=t=in:st=5.5:d=0.5
9667 @end example
9668
9669 @end itemize
9670
9671 @section fftfilt
9672 Apply arbitrary expressions to samples in frequency domain
9673
9674 @table @option
9675 @item dc_Y
9676 Adjust the dc value (gain) of the luma plane of the image. The filter
9677 accepts an integer value in range @code{0} to @code{1000}. The default
9678 value is set to @code{0}.
9679
9680 @item dc_U
9681 Adjust the dc value (gain) of the 1st chroma plane of the image. The
9682 filter accepts an integer value in range @code{0} to @code{1000}. The
9683 default value is set to @code{0}.
9684
9685 @item dc_V
9686 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
9687 filter accepts an integer value in range @code{0} to @code{1000}. The
9688 default value is set to @code{0}.
9689
9690 @item weight_Y
9691 Set the frequency domain weight expression for the luma plane.
9692
9693 @item weight_U
9694 Set the frequency domain weight expression for the 1st chroma plane.
9695
9696 @item weight_V
9697 Set the frequency domain weight expression for the 2nd chroma plane.
9698
9699 @item eval
9700 Set when the expressions are evaluated.
9701
9702 It accepts the following values:
9703 @table @samp
9704 @item init
9705 Only evaluate expressions once during the filter initialization.
9706
9707 @item frame
9708 Evaluate expressions for each incoming frame.
9709 @end table
9710
9711 Default value is @samp{init}.
9712
9713 The filter accepts the following variables:
9714 @item X
9715 @item Y
9716 The coordinates of the current sample.
9717
9718 @item W
9719 @item H
9720 The width and height of the image.
9721
9722 @item N
9723 The number of input frame, starting from 0.
9724 @end table
9725
9726 @subsection Examples
9727
9728 @itemize
9729 @item
9730 High-pass:
9731 @example
9732 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
9733 @end example
9734
9735 @item
9736 Low-pass:
9737 @example
9738 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
9739 @end example
9740
9741 @item
9742 Sharpen:
9743 @example
9744 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
9745 @end example
9746
9747 @item
9748 Blur:
9749 @example
9750 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
9751 @end example
9752
9753 @end itemize
9754
9755 @section fftdnoiz
9756 Denoise frames using 3D FFT (frequency domain filtering).
9757
9758 The filter accepts the following options:
9759
9760 @table @option
9761 @item sigma
9762 Set the noise sigma constant. This sets denoising strength.
9763 Default value is 1. Allowed range is from 0 to 30.
9764 Using very high sigma with low overlap may give blocking artifacts.
9765
9766 @item amount
9767 Set amount of denoising. By default all detected noise is reduced.
9768 Default value is 1. Allowed range is from 0 to 1.
9769
9770 @item block
9771 Set size of block, Default is 4, can be 3, 4, 5 or 6.
9772 Actual size of block in pixels is 2 to power of @var{block}, so by default
9773 block size in pixels is 2^4 which is 16.
9774
9775 @item overlap
9776 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
9777
9778 @item prev
9779 Set number of previous frames to use for denoising. By default is set to 0.
9780
9781 @item next
9782 Set number of next frames to to use for denoising. By default is set to 0.
9783
9784 @item planes
9785 Set planes which will be filtered, by default are all available filtered
9786 except alpha.
9787 @end table
9788
9789 @section field
9790
9791 Extract a single field from an interlaced image using stride
9792 arithmetic to avoid wasting CPU time. The output frames are marked as
9793 non-interlaced.
9794
9795 The filter accepts the following options:
9796
9797 @table @option
9798 @item type
9799 Specify whether to extract the top (if the value is @code{0} or
9800 @code{top}) or the bottom field (if the value is @code{1} or
9801 @code{bottom}).
9802 @end table
9803
9804 @section fieldhint
9805
9806 Create new frames by copying the top and bottom fields from surrounding frames
9807 supplied as numbers by the hint file.
9808
9809 @table @option
9810 @item hint
9811 Set file containing hints: absolute/relative frame numbers.
9812
9813 There must be one line for each frame in a clip. Each line must contain two
9814 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
9815 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
9816 is current frame number for @code{absolute} mode or out of [-1, 1] range
9817 for @code{relative} mode. First number tells from which frame to pick up top
9818 field and second number tells from which frame to pick up bottom field.
9819
9820 If optionally followed by @code{+} output frame will be marked as interlaced,
9821 else if followed by @code{-} output frame will be marked as progressive, else
9822 it will be marked same as input frame.
9823 If line starts with @code{#} or @code{;} that line is skipped.
9824
9825 @item mode
9826 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
9827 @end table
9828
9829 Example of first several lines of @code{hint} file for @code{relative} mode:
9830 @example
9831 0,0 - # first frame
9832 1,0 - # second frame, use third's frame top field and second's frame bottom field
9833 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
9834 1,0 -
9835 0,0 -
9836 0,0 -
9837 1,0 -
9838 1,0 -
9839 1,0 -
9840 0,0 -
9841 0,0 -
9842 1,0 -
9843 1,0 -
9844 1,0 -
9845 0,0 -
9846 @end example
9847
9848 @section fieldmatch
9849
9850 Field matching filter for inverse telecine. It is meant to reconstruct the
9851 progressive frames from a telecined stream. The filter does not drop duplicated
9852 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
9853 followed by a decimation filter such as @ref{decimate} in the filtergraph.
9854
9855 The separation of the field matching and the decimation is notably motivated by
9856 the possibility of inserting a de-interlacing filter fallback between the two.
9857 If the source has mixed telecined and real interlaced content,
9858 @code{fieldmatch} will not be able to match fields for the interlaced parts.
9859 But these remaining combed frames will be marked as interlaced, and thus can be
9860 de-interlaced by a later filter such as @ref{yadif} before decimation.
9861
9862 In addition to the various configuration options, @code{fieldmatch} can take an
9863 optional second stream, activated through the @option{ppsrc} option. If
9864 enabled, the frames reconstruction will be based on the fields and frames from
9865 this second stream. This allows the first input to be pre-processed in order to
9866 help the various algorithms of the filter, while keeping the output lossless
9867 (assuming the fields are matched properly). Typically, a field-aware denoiser,
9868 or brightness/contrast adjustments can help.
9869
9870 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
9871 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
9872 which @code{fieldmatch} is based on. While the semantic and usage are very
9873 close, some behaviour and options names can differ.
9874
9875 The @ref{decimate} filter currently only works for constant frame rate input.
9876 If your input has mixed telecined (30fps) and progressive content with a lower
9877 framerate like 24fps use the following filterchain to produce the necessary cfr
9878 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
9879
9880 The filter accepts the following options:
9881
9882 @table @option
9883 @item order
9884 Specify the assumed field order of the input stream. Available values are:
9885
9886 @table @samp
9887 @item auto
9888 Auto detect parity (use FFmpeg's internal parity value).
9889 @item bff
9890 Assume bottom field first.
9891 @item tff
9892 Assume top field first.
9893 @end table
9894
9895 Note that it is sometimes recommended not to trust the parity announced by the
9896 stream.
9897
9898 Default value is @var{auto}.
9899
9900 @item mode
9901 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
9902 sense that it won't risk creating jerkiness due to duplicate frames when
9903 possible, but if there are bad edits or blended fields it will end up
9904 outputting combed frames when a good match might actually exist. On the other
9905 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
9906 but will almost always find a good frame if there is one. The other values are
9907 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
9908 jerkiness and creating duplicate frames versus finding good matches in sections
9909 with bad edits, orphaned fields, blended fields, etc.
9910
9911 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
9912
9913 Available values are:
9914
9915 @table @samp
9916 @item pc
9917 2-way matching (p/c)
9918 @item pc_n
9919 2-way matching, and trying 3rd match if still combed (p/c + n)
9920 @item pc_u
9921 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
9922 @item pc_n_ub
9923 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
9924 still combed (p/c + n + u/b)
9925 @item pcn
9926 3-way matching (p/c/n)
9927 @item pcn_ub
9928 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
9929 detected as combed (p/c/n + u/b)
9930 @end table
9931
9932 The parenthesis at the end indicate the matches that would be used for that
9933 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
9934 @var{top}).
9935
9936 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
9937 the slowest.
9938
9939 Default value is @var{pc_n}.
9940
9941 @item ppsrc
9942 Mark the main input stream as a pre-processed input, and enable the secondary
9943 input stream as the clean source to pick the fields from. See the filter
9944 introduction for more details. It is similar to the @option{clip2} feature from
9945 VFM/TFM.
9946
9947 Default value is @code{0} (disabled).
9948
9949 @item field
9950 Set the field to match from. It is recommended to set this to the same value as
9951 @option{order} unless you experience matching failures with that setting. In
9952 certain circumstances changing the field that is used to match from can have a
9953 large impact on matching performance. Available values are:
9954
9955 @table @samp
9956 @item auto
9957 Automatic (same value as @option{order}).
9958 @item bottom
9959 Match from the bottom field.
9960 @item top
9961 Match from the top field.
9962 @end table
9963
9964 Default value is @var{auto}.
9965
9966 @item mchroma
9967 Set whether or not chroma is included during the match comparisons. In most
9968 cases it is recommended to leave this enabled. You should set this to @code{0}
9969 only if your clip has bad chroma problems such as heavy rainbowing or other
9970 artifacts. Setting this to @code{0} could also be used to speed things up at
9971 the cost of some accuracy.
9972
9973 Default value is @code{1}.
9974
9975 @item y0
9976 @item y1
9977 These define an exclusion band which excludes the lines between @option{y0} and
9978 @option{y1} from being included in the field matching decision. An exclusion
9979 band can be used to ignore subtitles, a logo, or other things that may
9980 interfere with the matching. @option{y0} sets the starting scan line and
9981 @option{y1} sets the ending line; all lines in between @option{y0} and
9982 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
9983 @option{y0} and @option{y1} to the same value will disable the feature.
9984 @option{y0} and @option{y1} defaults to @code{0}.
9985
9986 @item scthresh
9987 Set the scene change detection threshold as a percentage of maximum change on
9988 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
9989 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
9990 @option{scthresh} is @code{[0.0, 100.0]}.
9991
9992 Default value is @code{12.0}.
9993
9994 @item combmatch
9995 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
9996 account the combed scores of matches when deciding what match to use as the
9997 final match. Available values are:
9998
9999 @table @samp
10000 @item none
10001 No final matching based on combed scores.
10002 @item sc
10003 Combed scores are only used when a scene change is detected.
10004 @item full
10005 Use combed scores all the time.
10006 @end table
10007
10008 Default is @var{sc}.
10009
10010 @item combdbg
10011 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10012 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10013 Available values are:
10014
10015 @table @samp
10016 @item none
10017 No forced calculation.
10018 @item pcn
10019 Force p/c/n calculations.
10020 @item pcnub
10021 Force p/c/n/u/b calculations.
10022 @end table
10023
10024 Default value is @var{none}.
10025
10026 @item cthresh
10027 This is the area combing threshold used for combed frame detection. This
10028 essentially controls how "strong" or "visible" combing must be to be detected.
10029 Larger values mean combing must be more visible and smaller values mean combing
10030 can be less visible or strong and still be detected. Valid settings are from
10031 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10032 be detected as combed). This is basically a pixel difference value. A good
10033 range is @code{[8, 12]}.
10034
10035 Default value is @code{9}.
10036
10037 @item chroma
10038 Sets whether or not chroma is considered in the combed frame decision.  Only
10039 disable this if your source has chroma problems (rainbowing, etc.) that are
10040 causing problems for the combed frame detection with chroma enabled. Actually,
10041 using @option{chroma}=@var{0} is usually more reliable, except for the case
10042 where there is chroma only combing in the source.
10043
10044 Default value is @code{0}.
10045
10046 @item blockx
10047 @item blocky
10048 Respectively set the x-axis and y-axis size of the window used during combed
10049 frame detection. This has to do with the size of the area in which
10050 @option{combpel} pixels are required to be detected as combed for a frame to be
10051 declared combed. See the @option{combpel} parameter description for more info.
10052 Possible values are any number that is a power of 2 starting at 4 and going up
10053 to 512.
10054
10055 Default value is @code{16}.
10056
10057 @item combpel
10058 The number of combed pixels inside any of the @option{blocky} by
10059 @option{blockx} size blocks on the frame for the frame to be detected as
10060 combed. While @option{cthresh} controls how "visible" the combing must be, this
10061 setting controls "how much" combing there must be in any localized area (a
10062 window defined by the @option{blockx} and @option{blocky} settings) on the
10063 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10064 which point no frames will ever be detected as combed). This setting is known
10065 as @option{MI} in TFM/VFM vocabulary.
10066
10067 Default value is @code{80}.
10068 @end table
10069
10070 @anchor{p/c/n/u/b meaning}
10071 @subsection p/c/n/u/b meaning
10072
10073 @subsubsection p/c/n
10074
10075 We assume the following telecined stream:
10076
10077 @example
10078 Top fields:     1 2 2 3 4
10079 Bottom fields:  1 2 3 4 4
10080 @end example
10081
10082 The numbers correspond to the progressive frame the fields relate to. Here, the
10083 first two frames are progressive, the 3rd and 4th are combed, and so on.
10084
10085 When @code{fieldmatch} is configured to run a matching from bottom
10086 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10087
10088 @example
10089 Input stream:
10090                 T     1 2 2 3 4
10091                 B     1 2 3 4 4   <-- matching reference
10092
10093 Matches:              c c n n c
10094
10095 Output stream:
10096                 T     1 2 3 4 4
10097                 B     1 2 3 4 4
10098 @end example
10099
10100 As a result of the field matching, we can see that some frames get duplicated.
10101 To perform a complete inverse telecine, you need to rely on a decimation filter
10102 after this operation. See for instance the @ref{decimate} filter.
10103
10104 The same operation now matching from top fields (@option{field}=@var{top})
10105 looks like this:
10106
10107 @example
10108 Input stream:
10109                 T     1 2 2 3 4   <-- matching reference
10110                 B     1 2 3 4 4
10111
10112 Matches:              c c p p c
10113
10114 Output stream:
10115                 T     1 2 2 3 4
10116                 B     1 2 2 3 4
10117 @end example
10118
10119 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10120 basically, they refer to the frame and field of the opposite parity:
10121
10122 @itemize
10123 @item @var{p} matches the field of the opposite parity in the previous frame
10124 @item @var{c} matches the field of the opposite parity in the current frame
10125 @item @var{n} matches the field of the opposite parity in the next frame
10126 @end itemize
10127
10128 @subsubsection u/b
10129
10130 The @var{u} and @var{b} matching are a bit special in the sense that they match
10131 from the opposite parity flag. In the following examples, we assume that we are
10132 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10133 'x' is placed above and below each matched fields.
10134
10135 With bottom matching (@option{field}=@var{bottom}):
10136 @example
10137 Match:           c         p           n          b          u
10138
10139                  x       x               x        x          x
10140   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10141   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10142                  x         x           x        x              x
10143
10144 Output frames:
10145                  2          1          2          2          2
10146                  2          2          2          1          3
10147 @end example
10148
10149 With top matching (@option{field}=@var{top}):
10150 @example
10151 Match:           c         p           n          b          u
10152
10153                  x         x           x        x              x
10154   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10155   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10156                  x       x               x        x          x
10157
10158 Output frames:
10159                  2          2          2          1          2
10160                  2          1          3          2          2
10161 @end example
10162
10163 @subsection Examples
10164
10165 Simple IVTC of a top field first telecined stream:
10166 @example
10167 fieldmatch=order=tff:combmatch=none, decimate
10168 @end example
10169
10170 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10171 @example
10172 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10173 @end example
10174
10175 @section fieldorder
10176
10177 Transform the field order of the input video.
10178
10179 It accepts the following parameters:
10180
10181 @table @option
10182
10183 @item order
10184 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10185 for bottom field first.
10186 @end table
10187
10188 The default value is @samp{tff}.
10189
10190 The transformation is done by shifting the picture content up or down
10191 by one line, and filling the remaining line with appropriate picture content.
10192 This method is consistent with most broadcast field order converters.
10193
10194 If the input video is not flagged as being interlaced, or it is already
10195 flagged as being of the required output field order, then this filter does
10196 not alter the incoming video.
10197
10198 It is very useful when converting to or from PAL DV material,
10199 which is bottom field first.
10200
10201 For example:
10202 @example
10203 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10204 @end example
10205
10206 @section fifo, afifo
10207
10208 Buffer input images and send them when they are requested.
10209
10210 It is mainly useful when auto-inserted by the libavfilter
10211 framework.
10212
10213 It does not take parameters.
10214
10215 @section fillborders
10216
10217 Fill borders of the input video, without changing video stream dimensions.
10218 Sometimes video can have garbage at the four edges and you may not want to
10219 crop video input to keep size multiple of some number.
10220
10221 This filter accepts the following options:
10222
10223 @table @option
10224 @item left
10225 Number of pixels to fill from left border.
10226
10227 @item right
10228 Number of pixels to fill from right border.
10229
10230 @item top
10231 Number of pixels to fill from top border.
10232
10233 @item bottom
10234 Number of pixels to fill from bottom border.
10235
10236 @item mode
10237 Set fill mode.
10238
10239 It accepts the following values:
10240 @table @samp
10241 @item smear
10242 fill pixels using outermost pixels
10243
10244 @item mirror
10245 fill pixels using mirroring
10246
10247 @item fixed
10248 fill pixels with constant value
10249 @end table
10250
10251 Default is @var{smear}.
10252
10253 @item color
10254 Set color for pixels in fixed mode. Default is @var{black}.
10255 @end table
10256
10257 @section find_rect
10258
10259 Find a rectangular object
10260
10261 It accepts the following options:
10262
10263 @table @option
10264 @item object
10265 Filepath of the object image, needs to be in gray8.
10266
10267 @item threshold
10268 Detection threshold, default is 0.5.
10269
10270 @item mipmaps
10271 Number of mipmaps, default is 3.
10272
10273 @item xmin, ymin, xmax, ymax
10274 Specifies the rectangle in which to search.
10275 @end table
10276
10277 @subsection Examples
10278
10279 @itemize
10280 @item
10281 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10282 @example
10283 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10284 @end example
10285 @end itemize
10286
10287 @section cover_rect
10288
10289 Cover a rectangular object
10290
10291 It accepts the following options:
10292
10293 @table @option
10294 @item cover
10295 Filepath of the optional cover image, needs to be in yuv420.
10296
10297 @item mode
10298 Set covering mode.
10299
10300 It accepts the following values:
10301 @table @samp
10302 @item cover
10303 cover it by the supplied image
10304 @item blur
10305 cover it by interpolating the surrounding pixels
10306 @end table
10307
10308 Default value is @var{blur}.
10309 @end table
10310
10311 @subsection Examples
10312
10313 @itemize
10314 @item
10315 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10316 @example
10317 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10318 @end example
10319 @end itemize
10320
10321 @section floodfill
10322
10323 Flood area with values of same pixel components with another values.
10324
10325 It accepts the following options:
10326 @table @option
10327 @item x
10328 Set pixel x coordinate.
10329
10330 @item y
10331 Set pixel y coordinate.
10332
10333 @item s0
10334 Set source #0 component value.
10335
10336 @item s1
10337 Set source #1 component value.
10338
10339 @item s2
10340 Set source #2 component value.
10341
10342 @item s3
10343 Set source #3 component value.
10344
10345 @item d0
10346 Set destination #0 component value.
10347
10348 @item d1
10349 Set destination #1 component value.
10350
10351 @item d2
10352 Set destination #2 component value.
10353
10354 @item d3
10355 Set destination #3 component value.
10356 @end table
10357
10358 @anchor{format}
10359 @section format
10360
10361 Convert the input video to one of the specified pixel formats.
10362 Libavfilter will try to pick one that is suitable as input to
10363 the next filter.
10364
10365 It accepts the following parameters:
10366 @table @option
10367
10368 @item pix_fmts
10369 A '|'-separated list of pixel format names, such as
10370 "pix_fmts=yuv420p|monow|rgb24".
10371
10372 @end table
10373
10374 @subsection Examples
10375
10376 @itemize
10377 @item
10378 Convert the input video to the @var{yuv420p} format
10379 @example
10380 format=pix_fmts=yuv420p
10381 @end example
10382
10383 Convert the input video to any of the formats in the list
10384 @example
10385 format=pix_fmts=yuv420p|yuv444p|yuv410p
10386 @end example
10387 @end itemize
10388
10389 @anchor{fps}
10390 @section fps
10391
10392 Convert the video to specified constant frame rate by duplicating or dropping
10393 frames as necessary.
10394
10395 It accepts the following parameters:
10396 @table @option
10397
10398 @item fps
10399 The desired output frame rate. The default is @code{25}.
10400
10401 @item start_time
10402 Assume the first PTS should be the given value, in seconds. This allows for
10403 padding/trimming at the start of stream. By default, no assumption is made
10404 about the first frame's expected PTS, so no padding or trimming is done.
10405 For example, this could be set to 0 to pad the beginning with duplicates of
10406 the first frame if a video stream starts after the audio stream or to trim any
10407 frames with a negative PTS.
10408
10409 @item round
10410 Timestamp (PTS) rounding method.
10411
10412 Possible values are:
10413 @table @option
10414 @item zero
10415 round towards 0
10416 @item inf
10417 round away from 0
10418 @item down
10419 round towards -infinity
10420 @item up
10421 round towards +infinity
10422 @item near
10423 round to nearest
10424 @end table
10425 The default is @code{near}.
10426
10427 @item eof_action
10428 Action performed when reading the last frame.
10429
10430 Possible values are:
10431 @table @option
10432 @item round
10433 Use same timestamp rounding method as used for other frames.
10434 @item pass
10435 Pass through last frame if input duration has not been reached yet.
10436 @end table
10437 The default is @code{round}.
10438
10439 @end table
10440
10441 Alternatively, the options can be specified as a flat string:
10442 @var{fps}[:@var{start_time}[:@var{round}]].
10443
10444 See also the @ref{setpts} filter.
10445
10446 @subsection Examples
10447
10448 @itemize
10449 @item
10450 A typical usage in order to set the fps to 25:
10451 @example
10452 fps=fps=25
10453 @end example
10454
10455 @item
10456 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
10457 @example
10458 fps=fps=film:round=near
10459 @end example
10460 @end itemize
10461
10462 @section framepack
10463
10464 Pack two different video streams into a stereoscopic video, setting proper
10465 metadata on supported codecs. The two views should have the same size and
10466 framerate and processing will stop when the shorter video ends. Please note
10467 that you may conveniently adjust view properties with the @ref{scale} and
10468 @ref{fps} filters.
10469
10470 It accepts the following parameters:
10471 @table @option
10472
10473 @item format
10474 The desired packing format. Supported values are:
10475
10476 @table @option
10477
10478 @item sbs
10479 The views are next to each other (default).
10480
10481 @item tab
10482 The views are on top of each other.
10483
10484 @item lines
10485 The views are packed by line.
10486
10487 @item columns
10488 The views are packed by column.
10489
10490 @item frameseq
10491 The views are temporally interleaved.
10492
10493 @end table
10494
10495 @end table
10496
10497 Some examples:
10498
10499 @example
10500 # Convert left and right views into a frame-sequential video
10501 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
10502
10503 # Convert views into a side-by-side video with the same output resolution as the input
10504 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
10505 @end example
10506
10507 @section framerate
10508
10509 Change the frame rate by interpolating new video output frames from the source
10510 frames.
10511
10512 This filter is not designed to function correctly with interlaced media. If
10513 you wish to change the frame rate of interlaced media then you are required
10514 to deinterlace before this filter and re-interlace after this filter.
10515
10516 A description of the accepted options follows.
10517
10518 @table @option
10519 @item fps
10520 Specify the output frames per second. This option can also be specified
10521 as a value alone. The default is @code{50}.
10522
10523 @item interp_start
10524 Specify the start of a range where the output frame will be created as a
10525 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10526 the default is @code{15}.
10527
10528 @item interp_end
10529 Specify the end of a range where the output frame will be created as a
10530 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10531 the default is @code{240}.
10532
10533 @item scene
10534 Specify the level at which a scene change is detected as a value between
10535 0 and 100 to indicate a new scene; a low value reflects a low
10536 probability for the current frame to introduce a new scene, while a higher
10537 value means the current frame is more likely to be one.
10538 The default is @code{8.2}.
10539
10540 @item flags
10541 Specify flags influencing the filter process.
10542
10543 Available value for @var{flags} is:
10544
10545 @table @option
10546 @item scene_change_detect, scd
10547 Enable scene change detection using the value of the option @var{scene}.
10548 This flag is enabled by default.
10549 @end table
10550 @end table
10551
10552 @section framestep
10553
10554 Select one frame every N-th frame.
10555
10556 This filter accepts the following option:
10557 @table @option
10558 @item step
10559 Select frame after every @code{step} frames.
10560 Allowed values are positive integers higher than 0. Default value is @code{1}.
10561 @end table
10562
10563 @section freezedetect
10564
10565 Detect frozen video.
10566
10567 This filter logs a message and sets frame metadata when it detects that the
10568 input video has no significant change in content during a specified duration.
10569 Video freeze detection calculates the mean average absolute difference of all
10570 the components of video frames and compares it to a noise floor.
10571
10572 The printed times and duration are expressed in seconds. The
10573 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
10574 whose timestamp equals or exceeds the detection duration and it contains the
10575 timestamp of the first frame of the freeze. The
10576 @code{lavfi.freezedetect.freeze_duration} and
10577 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
10578 after the freeze.
10579
10580 The filter accepts the following options:
10581
10582 @table @option
10583 @item noise, n
10584 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
10585 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
10586 0.001.
10587
10588 @item duration, d
10589 Set freeze duration until notification (default is 2 seconds).
10590 @end table
10591
10592 @anchor{frei0r}
10593 @section frei0r
10594
10595 Apply a frei0r effect to the input video.
10596
10597 To enable the compilation of this filter, you need to install the frei0r
10598 header and configure FFmpeg with @code{--enable-frei0r}.
10599
10600 It accepts the following parameters:
10601
10602 @table @option
10603
10604 @item filter_name
10605 The name of the frei0r effect to load. If the environment variable
10606 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
10607 directories specified by the colon-separated list in @env{FREI0R_PATH}.
10608 Otherwise, the standard frei0r paths are searched, in this order:
10609 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
10610 @file{/usr/lib/frei0r-1/}.
10611
10612 @item filter_params
10613 A '|'-separated list of parameters to pass to the frei0r effect.
10614
10615 @end table
10616
10617 A frei0r effect parameter can be a boolean (its value is either
10618 "y" or "n"), a double, a color (specified as
10619 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
10620 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
10621 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
10622 a position (specified as @var{X}/@var{Y}, where
10623 @var{X} and @var{Y} are floating point numbers) and/or a string.
10624
10625 The number and types of parameters depend on the loaded effect. If an
10626 effect parameter is not specified, the default value is set.
10627
10628 @subsection Examples
10629
10630 @itemize
10631 @item
10632 Apply the distort0r effect, setting the first two double parameters:
10633 @example
10634 frei0r=filter_name=distort0r:filter_params=0.5|0.01
10635 @end example
10636
10637 @item
10638 Apply the colordistance effect, taking a color as the first parameter:
10639 @example
10640 frei0r=colordistance:0.2/0.3/0.4
10641 frei0r=colordistance:violet
10642 frei0r=colordistance:0x112233
10643 @end example
10644
10645 @item
10646 Apply the perspective effect, specifying the top left and top right image
10647 positions:
10648 @example
10649 frei0r=perspective:0.2/0.2|0.8/0.2
10650 @end example
10651 @end itemize
10652
10653 For more information, see
10654 @url{http://frei0r.dyne.org}
10655
10656 @section fspp
10657
10658 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
10659
10660 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
10661 processing filter, one of them is performed once per block, not per pixel.
10662 This allows for much higher speed.
10663
10664 The filter accepts the following options:
10665
10666 @table @option
10667 @item quality
10668 Set quality. This option defines the number of levels for averaging. It accepts
10669 an integer in the range 4-5. Default value is @code{4}.
10670
10671 @item qp
10672 Force a constant quantization parameter. It accepts an integer in range 0-63.
10673 If not set, the filter will use the QP from the video stream (if available).
10674
10675 @item strength
10676 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
10677 more details but also more artifacts, while higher values make the image smoother
10678 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
10679
10680 @item use_bframe_qp
10681 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10682 option may cause flicker since the B-Frames have often larger QP. Default is
10683 @code{0} (not enabled).
10684
10685 @end table
10686
10687 @section gblur
10688
10689 Apply Gaussian blur filter.
10690
10691 The filter accepts the following options:
10692
10693 @table @option
10694 @item sigma
10695 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
10696
10697 @item steps
10698 Set number of steps for Gaussian approximation. Default is @code{1}.
10699
10700 @item planes
10701 Set which planes to filter. By default all planes are filtered.
10702
10703 @item sigmaV
10704 Set vertical sigma, if negative it will be same as @code{sigma}.
10705 Default is @code{-1}.
10706 @end table
10707
10708 @section geq
10709
10710 Apply generic equation to each pixel.
10711
10712 The filter accepts the following options:
10713
10714 @table @option
10715 @item lum_expr, lum
10716 Set the luminance expression.
10717 @item cb_expr, cb
10718 Set the chrominance blue expression.
10719 @item cr_expr, cr
10720 Set the chrominance red expression.
10721 @item alpha_expr, a
10722 Set the alpha expression.
10723 @item red_expr, r
10724 Set the red expression.
10725 @item green_expr, g
10726 Set the green expression.
10727 @item blue_expr, b
10728 Set the blue expression.
10729 @end table
10730
10731 The colorspace is selected according to the specified options. If one
10732 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
10733 options is specified, the filter will automatically select a YCbCr
10734 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
10735 @option{blue_expr} options is specified, it will select an RGB
10736 colorspace.
10737
10738 If one of the chrominance expression is not defined, it falls back on the other
10739 one. If no alpha expression is specified it will evaluate to opaque value.
10740 If none of chrominance expressions are specified, they will evaluate
10741 to the luminance expression.
10742
10743 The expressions can use the following variables and functions:
10744
10745 @table @option
10746 @item N
10747 The sequential number of the filtered frame, starting from @code{0}.
10748
10749 @item X
10750 @item Y
10751 The coordinates of the current sample.
10752
10753 @item W
10754 @item H
10755 The width and height of the image.
10756
10757 @item SW
10758 @item SH
10759 Width and height scale depending on the currently filtered plane. It is the
10760 ratio between the corresponding luma plane number of pixels and the current
10761 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
10762 @code{0.5,0.5} for chroma planes.
10763
10764 @item T
10765 Time of the current frame, expressed in seconds.
10766
10767 @item p(x, y)
10768 Return the value of the pixel at location (@var{x},@var{y}) of the current
10769 plane.
10770
10771 @item lum(x, y)
10772 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
10773 plane.
10774
10775 @item cb(x, y)
10776 Return the value of the pixel at location (@var{x},@var{y}) of the
10777 blue-difference chroma plane. Return 0 if there is no such plane.
10778
10779 @item cr(x, y)
10780 Return the value of the pixel at location (@var{x},@var{y}) of the
10781 red-difference chroma plane. Return 0 if there is no such plane.
10782
10783 @item r(x, y)
10784 @item g(x, y)
10785 @item b(x, y)
10786 Return the value of the pixel at location (@var{x},@var{y}) of the
10787 red/green/blue component. Return 0 if there is no such component.
10788
10789 @item alpha(x, y)
10790 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
10791 plane. Return 0 if there is no such plane.
10792 @end table
10793
10794 For functions, if @var{x} and @var{y} are outside the area, the value will be
10795 automatically clipped to the closer edge.
10796
10797 @subsection Examples
10798
10799 @itemize
10800 @item
10801 Flip the image horizontally:
10802 @example
10803 geq=p(W-X\,Y)
10804 @end example
10805
10806 @item
10807 Generate a bidimensional sine wave, with angle @code{PI/3} and a
10808 wavelength of 100 pixels:
10809 @example
10810 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
10811 @end example
10812
10813 @item
10814 Generate a fancy enigmatic moving light:
10815 @example
10816 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
10817 @end example
10818
10819 @item
10820 Generate a quick emboss effect:
10821 @example
10822 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
10823 @end example
10824
10825 @item
10826 Modify RGB components depending on pixel position:
10827 @example
10828 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
10829 @end example
10830
10831 @item
10832 Create a radial gradient that is the same size as the input (also see
10833 the @ref{vignette} filter):
10834 @example
10835 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
10836 @end example
10837 @end itemize
10838
10839 @section gradfun
10840
10841 Fix the banding artifacts that are sometimes introduced into nearly flat
10842 regions by truncation to 8-bit color depth.
10843 Interpolate the gradients that should go where the bands are, and
10844 dither them.
10845
10846 It is designed for playback only.  Do not use it prior to
10847 lossy compression, because compression tends to lose the dither and
10848 bring back the bands.
10849
10850 It accepts the following parameters:
10851
10852 @table @option
10853
10854 @item strength
10855 The maximum amount by which the filter will change any one pixel. This is also
10856 the threshold for detecting nearly flat regions. Acceptable values range from
10857 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
10858 valid range.
10859
10860 @item radius
10861 The neighborhood to fit the gradient to. A larger radius makes for smoother
10862 gradients, but also prevents the filter from modifying the pixels near detailed
10863 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
10864 values will be clipped to the valid range.
10865
10866 @end table
10867
10868 Alternatively, the options can be specified as a flat string:
10869 @var{strength}[:@var{radius}]
10870
10871 @subsection Examples
10872
10873 @itemize
10874 @item
10875 Apply the filter with a @code{3.5} strength and radius of @code{8}:
10876 @example
10877 gradfun=3.5:8
10878 @end example
10879
10880 @item
10881 Specify radius, omitting the strength (which will fall-back to the default
10882 value):
10883 @example
10884 gradfun=radius=8
10885 @end example
10886
10887 @end itemize
10888
10889 @section graphmonitor, agraphmonitor
10890 Show various filtergraph stats.
10891
10892 With this filter one can debug complete filtergraph.
10893 Especially issues with links filling with queued frames.
10894
10895 The filter accepts the following options:
10896
10897 @table @option
10898 @item size, s
10899 Set video output size. Default is @var{hd720}.
10900
10901 @item opacity, o
10902 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
10903
10904 @item mode, m
10905 Set output mode, can be @var{fulll} or @var{compact}.
10906 In @var{compact} mode only filters with some queued frames have displayed stats.
10907
10908 @item flags, f
10909 Set flags which enable which stats are shown in video.
10910
10911 Available values for flags are:
10912 @table @samp
10913 @item queue
10914 Display number of queued frames in each link.
10915
10916 @item frame_count_in
10917 Display number of frames taken from filter.
10918
10919 @item frame_count_out
10920 Display number of frames given out from filter.
10921
10922 @item pts
10923 Display current filtered frame pts.
10924
10925 @item time
10926 Display current filtered frame time.
10927
10928 @item timebase
10929 Display time base for filter link.
10930
10931 @item format
10932 Display used format for filter link.
10933
10934 @item size
10935 Display video size or number of audio channels in case of audio used by filter link.
10936
10937 @item rate
10938 Display video frame rate or sample rate in case of audio used by filter link.
10939 @end table
10940
10941 @item rate, r
10942 Set upper limit for video rate of output stream, Default value is @var{25}.
10943 This guarantee that output video frame rate will not be higher than this value.
10944 @end table
10945
10946 @section greyedge
10947 A color constancy variation filter which estimates scene illumination via grey edge algorithm
10948 and corrects the scene colors accordingly.
10949
10950 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
10951
10952 The filter accepts the following options:
10953
10954 @table @option
10955 @item difford
10956 The order of differentiation to be applied on the scene. Must be chosen in the range
10957 [0,2] and default value is 1.
10958
10959 @item minknorm
10960 The Minkowski parameter to be used for calculating the Minkowski distance. Must
10961 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
10962 max value instead of calculating Minkowski distance.
10963
10964 @item sigma
10965 The standard deviation of Gaussian blur to be applied on the scene. Must be
10966 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
10967 can't be equal to 0 if @var{difford} is greater than 0.
10968 @end table
10969
10970 @subsection Examples
10971 @itemize
10972
10973 @item
10974 Grey Edge:
10975 @example
10976 greyedge=difford=1:minknorm=5:sigma=2
10977 @end example
10978
10979 @item
10980 Max Edge:
10981 @example
10982 greyedge=difford=1:minknorm=0:sigma=2
10983 @end example
10984
10985 @end itemize
10986
10987 @anchor{haldclut}
10988 @section haldclut
10989
10990 Apply a Hald CLUT to a video stream.
10991
10992 First input is the video stream to process, and second one is the Hald CLUT.
10993 The Hald CLUT input can be a simple picture or a complete video stream.
10994
10995 The filter accepts the following options:
10996
10997 @table @option
10998 @item shortest
10999 Force termination when the shortest input terminates. Default is @code{0}.
11000 @item repeatlast
11001 Continue applying the last CLUT after the end of the stream. A value of
11002 @code{0} disable the filter after the last frame of the CLUT is reached.
11003 Default is @code{1}.
11004 @end table
11005
11006 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11007 filters share the same internals).
11008
11009 This filter also supports the @ref{framesync} options.
11010
11011 More information about the Hald CLUT can be found on Eskil Steenberg's website
11012 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11013
11014 @subsection Workflow examples
11015
11016 @subsubsection Hald CLUT video stream
11017
11018 Generate an identity Hald CLUT stream altered with various effects:
11019 @example
11020 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
11021 @end example
11022
11023 Note: make sure you use a lossless codec.
11024
11025 Then use it with @code{haldclut} to apply it on some random stream:
11026 @example
11027 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11028 @end example
11029
11030 The Hald CLUT will be applied to the 10 first seconds (duration of
11031 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11032 to the remaining frames of the @code{mandelbrot} stream.
11033
11034 @subsubsection Hald CLUT with preview
11035
11036 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11037 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11038 biggest possible square starting at the top left of the picture. The remaining
11039 padding pixels (bottom or right) will be ignored. This area can be used to add
11040 a preview of the Hald CLUT.
11041
11042 Typically, the following generated Hald CLUT will be supported by the
11043 @code{haldclut} filter:
11044
11045 @example
11046 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11047    pad=iw+320 [padded_clut];
11048    smptebars=s=320x256, split [a][b];
11049    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11050    [main][b] overlay=W-320" -frames:v 1 clut.png
11051 @end example
11052
11053 It contains the original and a preview of the effect of the CLUT: SMPTE color
11054 bars are displayed on the right-top, and below the same color bars processed by
11055 the color changes.
11056
11057 Then, the effect of this Hald CLUT can be visualized with:
11058 @example
11059 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11060 @end example
11061
11062 @section hflip
11063
11064 Flip the input video horizontally.
11065
11066 For example, to horizontally flip the input video with @command{ffmpeg}:
11067 @example
11068 ffmpeg -i in.avi -vf "hflip" out.avi
11069 @end example
11070
11071 @section histeq
11072 This filter applies a global color histogram equalization on a
11073 per-frame basis.
11074
11075 It can be used to correct video that has a compressed range of pixel
11076 intensities.  The filter redistributes the pixel intensities to
11077 equalize their distribution across the intensity range. It may be
11078 viewed as an "automatically adjusting contrast filter". This filter is
11079 useful only for correcting degraded or poorly captured source
11080 video.
11081
11082 The filter accepts the following options:
11083
11084 @table @option
11085 @item strength
11086 Determine the amount of equalization to be applied.  As the strength
11087 is reduced, the distribution of pixel intensities more-and-more
11088 approaches that of the input frame. The value must be a float number
11089 in the range [0,1] and defaults to 0.200.
11090
11091 @item intensity
11092 Set the maximum intensity that can generated and scale the output
11093 values appropriately.  The strength should be set as desired and then
11094 the intensity can be limited if needed to avoid washing-out. The value
11095 must be a float number in the range [0,1] and defaults to 0.210.
11096
11097 @item antibanding
11098 Set the antibanding level. If enabled the filter will randomly vary
11099 the luminance of output pixels by a small amount to avoid banding of
11100 the histogram. Possible values are @code{none}, @code{weak} or
11101 @code{strong}. It defaults to @code{none}.
11102 @end table
11103
11104 @section histogram
11105
11106 Compute and draw a color distribution histogram for the input video.
11107
11108 The computed histogram is a representation of the color component
11109 distribution in an image.
11110
11111 Standard histogram displays the color components distribution in an image.
11112 Displays color graph for each color component. Shows distribution of
11113 the Y, U, V, A or R, G, B components, depending on input format, in the
11114 current frame. Below each graph a color component scale meter is shown.
11115
11116 The filter accepts the following options:
11117
11118 @table @option
11119 @item level_height
11120 Set height of level. Default value is @code{200}.
11121 Allowed range is [50, 2048].
11122
11123 @item scale_height
11124 Set height of color scale. Default value is @code{12}.
11125 Allowed range is [0, 40].
11126
11127 @item display_mode
11128 Set display mode.
11129 It accepts the following values:
11130 @table @samp
11131 @item stack
11132 Per color component graphs are placed below each other.
11133
11134 @item parade
11135 Per color component graphs are placed side by side.
11136
11137 @item overlay
11138 Presents information identical to that in the @code{parade}, except
11139 that the graphs representing color components are superimposed directly
11140 over one another.
11141 @end table
11142 Default is @code{stack}.
11143
11144 @item levels_mode
11145 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11146 Default is @code{linear}.
11147
11148 @item components
11149 Set what color components to display.
11150 Default is @code{7}.
11151
11152 @item fgopacity
11153 Set foreground opacity. Default is @code{0.7}.
11154
11155 @item bgopacity
11156 Set background opacity. Default is @code{0.5}.
11157 @end table
11158
11159 @subsection Examples
11160
11161 @itemize
11162
11163 @item
11164 Calculate and draw histogram:
11165 @example
11166 ffplay -i input -vf histogram
11167 @end example
11168
11169 @end itemize
11170
11171 @anchor{hqdn3d}
11172 @section hqdn3d
11173
11174 This is a high precision/quality 3d denoise filter. It aims to reduce
11175 image noise, producing smooth images and making still images really
11176 still. It should enhance compressibility.
11177
11178 It accepts the following optional parameters:
11179
11180 @table @option
11181 @item luma_spatial
11182 A non-negative floating point number which specifies spatial luma strength.
11183 It defaults to 4.0.
11184
11185 @item chroma_spatial
11186 A non-negative floating point number which specifies spatial chroma strength.
11187 It defaults to 3.0*@var{luma_spatial}/4.0.
11188
11189 @item luma_tmp
11190 A floating point number which specifies luma temporal strength. It defaults to
11191 6.0*@var{luma_spatial}/4.0.
11192
11193 @item chroma_tmp
11194 A floating point number which specifies chroma temporal strength. It defaults to
11195 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11196 @end table
11197
11198 @anchor{hwdownload}
11199 @section hwdownload
11200
11201 Download hardware frames to system memory.
11202
11203 The input must be in hardware frames, and the output a non-hardware format.
11204 Not all formats will be supported on the output - it may be necessary to insert
11205 an additional @option{format} filter immediately following in the graph to get
11206 the output in a supported format.
11207
11208 @section hwmap
11209
11210 Map hardware frames to system memory or to another device.
11211
11212 This filter has several different modes of operation; which one is used depends
11213 on the input and output formats:
11214 @itemize
11215 @item
11216 Hardware frame input, normal frame output
11217
11218 Map the input frames to system memory and pass them to the output.  If the
11219 original hardware frame is later required (for example, after overlaying
11220 something else on part of it), the @option{hwmap} filter can be used again
11221 in the next mode to retrieve it.
11222 @item
11223 Normal frame input, hardware frame output
11224
11225 If the input is actually a software-mapped hardware frame, then unmap it -
11226 that is, return the original hardware frame.
11227
11228 Otherwise, a device must be provided.  Create new hardware surfaces on that
11229 device for the output, then map them back to the software format at the input
11230 and give those frames to the preceding filter.  This will then act like the
11231 @option{hwupload} filter, but may be able to avoid an additional copy when
11232 the input is already in a compatible format.
11233 @item
11234 Hardware frame input and output
11235
11236 A device must be supplied for the output, either directly or with the
11237 @option{derive_device} option.  The input and output devices must be of
11238 different types and compatible - the exact meaning of this is
11239 system-dependent, but typically it means that they must refer to the same
11240 underlying hardware context (for example, refer to the same graphics card).
11241
11242 If the input frames were originally created on the output device, then unmap
11243 to retrieve the original frames.
11244
11245 Otherwise, map the frames to the output device - create new hardware frames
11246 on the output corresponding to the frames on the input.
11247 @end itemize
11248
11249 The following additional parameters are accepted:
11250
11251 @table @option
11252 @item mode
11253 Set the frame mapping mode.  Some combination of:
11254 @table @var
11255 @item read
11256 The mapped frame should be readable.
11257 @item write
11258 The mapped frame should be writeable.
11259 @item overwrite
11260 The mapping will always overwrite the entire frame.
11261
11262 This may improve performance in some cases, as the original contents of the
11263 frame need not be loaded.
11264 @item direct
11265 The mapping must not involve any copying.
11266
11267 Indirect mappings to copies of frames are created in some cases where either
11268 direct mapping is not possible or it would have unexpected properties.
11269 Setting this flag ensures that the mapping is direct and will fail if that is
11270 not possible.
11271 @end table
11272 Defaults to @var{read+write} if not specified.
11273
11274 @item derive_device @var{type}
11275 Rather than using the device supplied at initialisation, instead derive a new
11276 device of type @var{type} from the device the input frames exist on.
11277
11278 @item reverse
11279 In a hardware to hardware mapping, map in reverse - create frames in the sink
11280 and map them back to the source.  This may be necessary in some cases where
11281 a mapping in one direction is required but only the opposite direction is
11282 supported by the devices being used.
11283
11284 This option is dangerous - it may break the preceding filter in undefined
11285 ways if there are any additional constraints on that filter's output.
11286 Do not use it without fully understanding the implications of its use.
11287 @end table
11288
11289 @anchor{hwupload}
11290 @section hwupload
11291
11292 Upload system memory frames to hardware surfaces.
11293
11294 The device to upload to must be supplied when the filter is initialised.  If
11295 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
11296 option.
11297
11298 @anchor{hwupload_cuda}
11299 @section hwupload_cuda
11300
11301 Upload system memory frames to a CUDA device.
11302
11303 It accepts the following optional parameters:
11304
11305 @table @option
11306 @item device
11307 The number of the CUDA device to use
11308 @end table
11309
11310 @section hqx
11311
11312 Apply a high-quality magnification filter designed for pixel art. This filter
11313 was originally created by Maxim Stepin.
11314
11315 It accepts the following option:
11316
11317 @table @option
11318 @item n
11319 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
11320 @code{hq3x} and @code{4} for @code{hq4x}.
11321 Default is @code{3}.
11322 @end table
11323
11324 @section hstack
11325 Stack input videos horizontally.
11326
11327 All streams must be of same pixel format and of same height.
11328
11329 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11330 to create same output.
11331
11332 The filter accept the following option:
11333
11334 @table @option
11335 @item inputs
11336 Set number of input streams. Default is 2.
11337
11338 @item shortest
11339 If set to 1, force the output to terminate when the shortest input
11340 terminates. Default value is 0.
11341 @end table
11342
11343 @section hue
11344
11345 Modify the hue and/or the saturation of the input.
11346
11347 It accepts the following parameters:
11348
11349 @table @option
11350 @item h
11351 Specify the hue angle as a number of degrees. It accepts an expression,
11352 and defaults to "0".
11353
11354 @item s
11355 Specify the saturation in the [-10,10] range. It accepts an expression and
11356 defaults to "1".
11357
11358 @item H
11359 Specify the hue angle as a number of radians. It accepts an
11360 expression, and defaults to "0".
11361
11362 @item b
11363 Specify the brightness in the [-10,10] range. It accepts an expression and
11364 defaults to "0".
11365 @end table
11366
11367 @option{h} and @option{H} are mutually exclusive, and can't be
11368 specified at the same time.
11369
11370 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11371 expressions containing the following constants:
11372
11373 @table @option
11374 @item n
11375 frame count of the input frame starting from 0
11376
11377 @item pts
11378 presentation timestamp of the input frame expressed in time base units
11379
11380 @item r
11381 frame rate of the input video, NAN if the input frame rate is unknown
11382
11383 @item t
11384 timestamp expressed in seconds, NAN if the input timestamp is unknown
11385
11386 @item tb
11387 time base of the input video
11388 @end table
11389
11390 @subsection Examples
11391
11392 @itemize
11393 @item
11394 Set the hue to 90 degrees and the saturation to 1.0:
11395 @example
11396 hue=h=90:s=1
11397 @end example
11398
11399 @item
11400 Same command but expressing the hue in radians:
11401 @example
11402 hue=H=PI/2:s=1
11403 @end example
11404
11405 @item
11406 Rotate hue and make the saturation swing between 0
11407 and 2 over a period of 1 second:
11408 @example
11409 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11410 @end example
11411
11412 @item
11413 Apply a 3 seconds saturation fade-in effect starting at 0:
11414 @example
11415 hue="s=min(t/3\,1)"
11416 @end example
11417
11418 The general fade-in expression can be written as:
11419 @example
11420 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11421 @end example
11422
11423 @item
11424 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11425 @example
11426 hue="s=max(0\, min(1\, (8-t)/3))"
11427 @end example
11428
11429 The general fade-out expression can be written as:
11430 @example
11431 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
11432 @end example
11433
11434 @end itemize
11435
11436 @subsection Commands
11437
11438 This filter supports the following commands:
11439 @table @option
11440 @item b
11441 @item s
11442 @item h
11443 @item H
11444 Modify the hue and/or the saturation and/or brightness of the input video.
11445 The command accepts the same syntax of the corresponding option.
11446
11447 If the specified expression is not valid, it is kept at its current
11448 value.
11449 @end table
11450
11451 @section hysteresis
11452
11453 Grow first stream into second stream by connecting components.
11454 This makes it possible to build more robust edge masks.
11455
11456 This filter accepts the following options:
11457
11458 @table @option
11459 @item planes
11460 Set which planes will be processed as bitmap, unprocessed planes will be
11461 copied from first stream.
11462 By default value 0xf, all planes will be processed.
11463
11464 @item threshold
11465 Set threshold which is used in filtering. If pixel component value is higher than
11466 this value filter algorithm for connecting components is activated.
11467 By default value is 0.
11468 @end table
11469
11470 @section idet
11471
11472 Detect video interlacing type.
11473
11474 This filter tries to detect if the input frames are interlaced, progressive,
11475 top or bottom field first. It will also try to detect fields that are
11476 repeated between adjacent frames (a sign of telecine).
11477
11478 Single frame detection considers only immediately adjacent frames when classifying each frame.
11479 Multiple frame detection incorporates the classification history of previous frames.
11480
11481 The filter will log these metadata values:
11482
11483 @table @option
11484 @item single.current_frame
11485 Detected type of current frame using single-frame detection. One of:
11486 ``tff'' (top field first), ``bff'' (bottom field first),
11487 ``progressive'', or ``undetermined''
11488
11489 @item single.tff
11490 Cumulative number of frames detected as top field first using single-frame detection.
11491
11492 @item multiple.tff
11493 Cumulative number of frames detected as top field first using multiple-frame detection.
11494
11495 @item single.bff
11496 Cumulative number of frames detected as bottom field first using single-frame detection.
11497
11498 @item multiple.current_frame
11499 Detected type of current frame using multiple-frame detection. One of:
11500 ``tff'' (top field first), ``bff'' (bottom field first),
11501 ``progressive'', or ``undetermined''
11502
11503 @item multiple.bff
11504 Cumulative number of frames detected as bottom field first using multiple-frame detection.
11505
11506 @item single.progressive
11507 Cumulative number of frames detected as progressive using single-frame detection.
11508
11509 @item multiple.progressive
11510 Cumulative number of frames detected as progressive using multiple-frame detection.
11511
11512 @item single.undetermined
11513 Cumulative number of frames that could not be classified using single-frame detection.
11514
11515 @item multiple.undetermined
11516 Cumulative number of frames that could not be classified using multiple-frame detection.
11517
11518 @item repeated.current_frame
11519 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
11520
11521 @item repeated.neither
11522 Cumulative number of frames with no repeated field.
11523
11524 @item repeated.top
11525 Cumulative number of frames with the top field repeated from the previous frame's top field.
11526
11527 @item repeated.bottom
11528 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
11529 @end table
11530
11531 The filter accepts the following options:
11532
11533 @table @option
11534 @item intl_thres
11535 Set interlacing threshold.
11536 @item prog_thres
11537 Set progressive threshold.
11538 @item rep_thres
11539 Threshold for repeated field detection.
11540 @item half_life
11541 Number of frames after which a given frame's contribution to the
11542 statistics is halved (i.e., it contributes only 0.5 to its
11543 classification). The default of 0 means that all frames seen are given
11544 full weight of 1.0 forever.
11545 @item analyze_interlaced_flag
11546 When this is not 0 then idet will use the specified number of frames to determine
11547 if the interlaced flag is accurate, it will not count undetermined frames.
11548 If the flag is found to be accurate it will be used without any further
11549 computations, if it is found to be inaccurate it will be cleared without any
11550 further computations. This allows inserting the idet filter as a low computational
11551 method to clean up the interlaced flag
11552 @end table
11553
11554 @section il
11555
11556 Deinterleave or interleave fields.
11557
11558 This filter allows one to process interlaced images fields without
11559 deinterlacing them. Deinterleaving splits the input frame into 2
11560 fields (so called half pictures). Odd lines are moved to the top
11561 half of the output image, even lines to the bottom half.
11562 You can process (filter) them independently and then re-interleave them.
11563
11564 The filter accepts the following options:
11565
11566 @table @option
11567 @item luma_mode, l
11568 @item chroma_mode, c
11569 @item alpha_mode, a
11570 Available values for @var{luma_mode}, @var{chroma_mode} and
11571 @var{alpha_mode} are:
11572
11573 @table @samp
11574 @item none
11575 Do nothing.
11576
11577 @item deinterleave, d
11578 Deinterleave fields, placing one above the other.
11579
11580 @item interleave, i
11581 Interleave fields. Reverse the effect of deinterleaving.
11582 @end table
11583 Default value is @code{none}.
11584
11585 @item luma_swap, ls
11586 @item chroma_swap, cs
11587 @item alpha_swap, as
11588 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
11589 @end table
11590
11591 @section inflate
11592
11593 Apply inflate effect to the video.
11594
11595 This filter replaces the pixel by the local(3x3) average by taking into account
11596 only values higher than the pixel.
11597
11598 It accepts the following options:
11599
11600 @table @option
11601 @item threshold0
11602 @item threshold1
11603 @item threshold2
11604 @item threshold3
11605 Limit the maximum change for each plane, default is 65535.
11606 If 0, plane will remain unchanged.
11607 @end table
11608
11609 @section interlace
11610
11611 Simple interlacing filter from progressive contents. This interleaves upper (or
11612 lower) lines from odd frames with lower (or upper) lines from even frames,
11613 halving the frame rate and preserving image height.
11614
11615 @example
11616    Original        Original             New Frame
11617    Frame 'j'      Frame 'j+1'             (tff)
11618   ==========      ===========       ==================
11619     Line 0  -------------------->    Frame 'j' Line 0
11620     Line 1          Line 1  ---->   Frame 'j+1' Line 1
11621     Line 2 --------------------->    Frame 'j' Line 2
11622     Line 3          Line 3  ---->   Frame 'j+1' Line 3
11623      ...             ...                   ...
11624 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
11625 @end example
11626
11627 It accepts the following optional parameters:
11628
11629 @table @option
11630 @item scan
11631 This determines whether the interlaced frame is taken from the even
11632 (tff - default) or odd (bff) lines of the progressive frame.
11633
11634 @item lowpass
11635 Vertical lowpass filter to avoid twitter interlacing and
11636 reduce moire patterns.
11637
11638 @table @samp
11639 @item 0, off
11640 Disable vertical lowpass filter
11641
11642 @item 1, linear
11643 Enable linear filter (default)
11644
11645 @item 2, complex
11646 Enable complex filter. This will slightly less reduce twitter and moire
11647 but better retain detail and subjective sharpness impression.
11648
11649 @end table
11650 @end table
11651
11652 @section kerndeint
11653
11654 Deinterlace input video by applying Donald Graft's adaptive kernel
11655 deinterling. Work on interlaced parts of a video to produce
11656 progressive frames.
11657
11658 The description of the accepted parameters follows.
11659
11660 @table @option
11661 @item thresh
11662 Set the threshold which affects the filter's tolerance when
11663 determining if a pixel line must be processed. It must be an integer
11664 in the range [0,255] and defaults to 10. A value of 0 will result in
11665 applying the process on every pixels.
11666
11667 @item map
11668 Paint pixels exceeding the threshold value to white if set to 1.
11669 Default is 0.
11670
11671 @item order
11672 Set the fields order. Swap fields if set to 1, leave fields alone if
11673 0. Default is 0.
11674
11675 @item sharp
11676 Enable additional sharpening if set to 1. Default is 0.
11677
11678 @item twoway
11679 Enable twoway sharpening if set to 1. Default is 0.
11680 @end table
11681
11682 @subsection Examples
11683
11684 @itemize
11685 @item
11686 Apply default values:
11687 @example
11688 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
11689 @end example
11690
11691 @item
11692 Enable additional sharpening:
11693 @example
11694 kerndeint=sharp=1
11695 @end example
11696
11697 @item
11698 Paint processed pixels in white:
11699 @example
11700 kerndeint=map=1
11701 @end example
11702 @end itemize
11703
11704 @section lagfun
11705
11706 Slowly update darker pixels.
11707
11708 This filter makes short flashes of light appear longer.
11709 This filter accepts the following options:
11710
11711 @table @option
11712 @item decay
11713 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
11714
11715 @item planes
11716 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
11717 @end table
11718
11719 @section lenscorrection
11720
11721 Correct radial lens distortion
11722
11723 This filter can be used to correct for radial distortion as can result from the use
11724 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
11725 one can use tools available for example as part of opencv or simply trial-and-error.
11726 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
11727 and extract the k1 and k2 coefficients from the resulting matrix.
11728
11729 Note that effectively the same filter is available in the open-source tools Krita and
11730 Digikam from the KDE project.
11731
11732 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
11733 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
11734 brightness distribution, so you may want to use both filters together in certain
11735 cases, though you will have to take care of ordering, i.e. whether vignetting should
11736 be applied before or after lens correction.
11737
11738 @subsection Options
11739
11740 The filter accepts the following options:
11741
11742 @table @option
11743 @item cx
11744 Relative x-coordinate of the focal point of the image, and thereby the center of the
11745 distortion. This value has a range [0,1] and is expressed as fractions of the image
11746 width. Default is 0.5.
11747 @item cy
11748 Relative y-coordinate of the focal point of the image, and thereby the center of the
11749 distortion. This value has a range [0,1] and is expressed as fractions of the image
11750 height. Default is 0.5.
11751 @item k1
11752 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
11753 no correction. Default is 0.
11754 @item k2
11755 Coefficient of the double quadratic correction term. This value has a range [-1,1].
11756 0 means no correction. Default is 0.
11757 @end table
11758
11759 The formula that generates the correction is:
11760
11761 @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)
11762
11763 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
11764 distances from the focal point in the source and target images, respectively.
11765
11766 @section lensfun
11767
11768 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
11769
11770 The @code{lensfun} filter requires the camera make, camera model, and lens model
11771 to apply the lens correction. The filter will load the lensfun database and
11772 query it to find the corresponding camera and lens entries in the database. As
11773 long as these entries can be found with the given options, the filter can
11774 perform corrections on frames. Note that incomplete strings will result in the
11775 filter choosing the best match with the given options, and the filter will
11776 output the chosen camera and lens models (logged with level "info"). You must
11777 provide the make, camera model, and lens model as they are required.
11778
11779 The filter accepts the following options:
11780
11781 @table @option
11782 @item make
11783 The make of the camera (for example, "Canon"). This option is required.
11784
11785 @item model
11786 The model of the camera (for example, "Canon EOS 100D"). This option is
11787 required.
11788
11789 @item lens_model
11790 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
11791 option is required.
11792
11793 @item mode
11794 The type of correction to apply. The following values are valid options:
11795
11796 @table @samp
11797 @item vignetting
11798 Enables fixing lens vignetting.
11799
11800 @item geometry
11801 Enables fixing lens geometry. This is the default.
11802
11803 @item subpixel
11804 Enables fixing chromatic aberrations.
11805
11806 @item vig_geo
11807 Enables fixing lens vignetting and lens geometry.
11808
11809 @item vig_subpixel
11810 Enables fixing lens vignetting and chromatic aberrations.
11811
11812 @item distortion
11813 Enables fixing both lens geometry and chromatic aberrations.
11814
11815 @item all
11816 Enables all possible corrections.
11817
11818 @end table
11819 @item focal_length
11820 The focal length of the image/video (zoom; expected constant for video). For
11821 example, a 18--55mm lens has focal length range of [18--55], so a value in that
11822 range should be chosen when using that lens. Default 18.
11823
11824 @item aperture
11825 The aperture of the image/video (expected constant for video). Note that
11826 aperture is only used for vignetting correction. Default 3.5.
11827
11828 @item focus_distance
11829 The focus distance of the image/video (expected constant for video). Note that
11830 focus distance is only used for vignetting and only slightly affects the
11831 vignetting correction process. If unknown, leave it at the default value (which
11832 is 1000).
11833
11834 @item scale
11835 The scale factor which is applied after transformation. After correction the
11836 video is no longer necessarily rectangular. This parameter controls how much of
11837 the resulting image is visible. The value 0 means that a value will be chosen
11838 automatically such that there is little or no unmapped area in the output
11839 image. 1.0 means that no additional scaling is done. Lower values may result
11840 in more of the corrected image being visible, while higher values may avoid
11841 unmapped areas in the output.
11842
11843 @item target_geometry
11844 The target geometry of the output image/video. The following values are valid
11845 options:
11846
11847 @table @samp
11848 @item rectilinear (default)
11849 @item fisheye
11850 @item panoramic
11851 @item equirectangular
11852 @item fisheye_orthographic
11853 @item fisheye_stereographic
11854 @item fisheye_equisolid
11855 @item fisheye_thoby
11856 @end table
11857 @item reverse
11858 Apply the reverse of image correction (instead of correcting distortion, apply
11859 it).
11860
11861 @item interpolation
11862 The type of interpolation used when correcting distortion. The following values
11863 are valid options:
11864
11865 @table @samp
11866 @item nearest
11867 @item linear (default)
11868 @item lanczos
11869 @end table
11870 @end table
11871
11872 @subsection Examples
11873
11874 @itemize
11875 @item
11876 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
11877 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
11878 aperture of "8.0".
11879
11880 @example
11881 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
11882 @end example
11883
11884 @item
11885 Apply the same as before, but only for the first 5 seconds of video.
11886
11887 @example
11888 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
11889 @end example
11890
11891 @end itemize
11892
11893 @section libvmaf
11894
11895 Obtain the VMAF (Video Multi-Method Assessment Fusion)
11896 score between two input videos.
11897
11898 The obtained VMAF score is printed through the logging system.
11899
11900 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
11901 After installing the library it can be enabled using:
11902 @code{./configure --enable-libvmaf --enable-version3}.
11903 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
11904
11905 The filter has following options:
11906
11907 @table @option
11908 @item model_path
11909 Set the model path which is to be used for SVM.
11910 Default value: @code{"vmaf_v0.6.1.pkl"}
11911
11912 @item log_path
11913 Set the file path to be used to store logs.
11914
11915 @item log_fmt
11916 Set the format of the log file (xml or json).
11917
11918 @item enable_transform
11919 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
11920 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
11921 Default value: @code{false}
11922
11923 @item phone_model
11924 Invokes the phone model which will generate VMAF scores higher than in the
11925 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
11926
11927 @item psnr
11928 Enables computing psnr along with vmaf.
11929
11930 @item ssim
11931 Enables computing ssim along with vmaf.
11932
11933 @item ms_ssim
11934 Enables computing ms_ssim along with vmaf.
11935
11936 @item pool
11937 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
11938
11939 @item n_threads
11940 Set number of threads to be used when computing vmaf.
11941
11942 @item n_subsample
11943 Set interval for frame subsampling used when computing vmaf.
11944
11945 @item enable_conf_interval
11946 Enables confidence interval.
11947 @end table
11948
11949 This filter also supports the @ref{framesync} options.
11950
11951 On the below examples the input file @file{main.mpg} being processed is
11952 compared with the reference file @file{ref.mpg}.
11953
11954 @example
11955 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
11956 @end example
11957
11958 Example with options:
11959 @example
11960 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
11961 @end example
11962
11963 @section limiter
11964
11965 Limits the pixel components values to the specified range [min, max].
11966
11967 The filter accepts the following options:
11968
11969 @table @option
11970 @item min
11971 Lower bound. Defaults to the lowest allowed value for the input.
11972
11973 @item max
11974 Upper bound. Defaults to the highest allowed value for the input.
11975
11976 @item planes
11977 Specify which planes will be processed. Defaults to all available.
11978 @end table
11979
11980 @section loop
11981
11982 Loop video frames.
11983
11984 The filter accepts the following options:
11985
11986 @table @option
11987 @item loop
11988 Set the number of loops. Setting this value to -1 will result in infinite loops.
11989 Default is 0.
11990
11991 @item size
11992 Set maximal size in number of frames. Default is 0.
11993
11994 @item start
11995 Set first frame of loop. Default is 0.
11996 @end table
11997
11998 @subsection Examples
11999
12000 @itemize
12001 @item
12002 Loop single first frame infinitely:
12003 @example
12004 loop=loop=-1:size=1:start=0
12005 @end example
12006
12007 @item
12008 Loop single first frame 10 times:
12009 @example
12010 loop=loop=10:size=1:start=0
12011 @end example
12012
12013 @item
12014 Loop 10 first frames 5 times:
12015 @example
12016 loop=loop=5:size=10:start=0
12017 @end example
12018 @end itemize
12019
12020 @section lut1d
12021
12022 Apply a 1D LUT to an input video.
12023
12024 The filter accepts the following options:
12025
12026 @table @option
12027 @item file
12028 Set the 1D LUT file name.
12029
12030 Currently supported formats:
12031 @table @samp
12032 @item cube
12033 Iridas
12034 @item csp
12035 cineSpace
12036 @end table
12037
12038 @item interp
12039 Select interpolation mode.
12040
12041 Available values are:
12042
12043 @table @samp
12044 @item nearest
12045 Use values from the nearest defined point.
12046 @item linear
12047 Interpolate values using the linear interpolation.
12048 @item cosine
12049 Interpolate values using the cosine interpolation.
12050 @item cubic
12051 Interpolate values using the cubic interpolation.
12052 @item spline
12053 Interpolate values using the spline interpolation.
12054 @end table
12055 @end table
12056
12057 @anchor{lut3d}
12058 @section lut3d
12059
12060 Apply a 3D LUT to an input video.
12061
12062 The filter accepts the following options:
12063
12064 @table @option
12065 @item file
12066 Set the 3D LUT file name.
12067
12068 Currently supported formats:
12069 @table @samp
12070 @item 3dl
12071 AfterEffects
12072 @item cube
12073 Iridas
12074 @item dat
12075 DaVinci
12076 @item m3d
12077 Pandora
12078 @item csp
12079 cineSpace
12080 @end table
12081 @item interp
12082 Select interpolation mode.
12083
12084 Available values are:
12085
12086 @table @samp
12087 @item nearest
12088 Use values from the nearest defined point.
12089 @item trilinear
12090 Interpolate values using the 8 points defining a cube.
12091 @item tetrahedral
12092 Interpolate values using a tetrahedron.
12093 @end table
12094 @end table
12095
12096 @section lumakey
12097
12098 Turn certain luma values into transparency.
12099
12100 The filter accepts the following options:
12101
12102 @table @option
12103 @item threshold
12104 Set the luma which will be used as base for transparency.
12105 Default value is @code{0}.
12106
12107 @item tolerance
12108 Set the range of luma values to be keyed out.
12109 Default value is @code{0}.
12110
12111 @item softness
12112 Set the range of softness. Default value is @code{0}.
12113 Use this to control gradual transition from zero to full transparency.
12114 @end table
12115
12116 @section lut, lutrgb, lutyuv
12117
12118 Compute a look-up table for binding each pixel component input value
12119 to an output value, and apply it to the input video.
12120
12121 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12122 to an RGB input video.
12123
12124 These filters accept the following parameters:
12125 @table @option
12126 @item c0
12127 set first pixel component expression
12128 @item c1
12129 set second pixel component expression
12130 @item c2
12131 set third pixel component expression
12132 @item c3
12133 set fourth pixel component expression, corresponds to the alpha component
12134
12135 @item r
12136 set red component expression
12137 @item g
12138 set green component expression
12139 @item b
12140 set blue component expression
12141 @item a
12142 alpha component expression
12143
12144 @item y
12145 set Y/luminance component expression
12146 @item u
12147 set U/Cb component expression
12148 @item v
12149 set V/Cr component expression
12150 @end table
12151
12152 Each of them specifies the expression to use for computing the lookup table for
12153 the corresponding pixel component values.
12154
12155 The exact component associated to each of the @var{c*} options depends on the
12156 format in input.
12157
12158 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12159 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12160
12161 The expressions can contain the following constants and functions:
12162
12163 @table @option
12164 @item w
12165 @item h
12166 The input width and height.
12167
12168 @item val
12169 The input value for the pixel component.
12170
12171 @item clipval
12172 The input value, clipped to the @var{minval}-@var{maxval} range.
12173
12174 @item maxval
12175 The maximum value for the pixel component.
12176
12177 @item minval
12178 The minimum value for the pixel component.
12179
12180 @item negval
12181 The negated value for the pixel component value, clipped to the
12182 @var{minval}-@var{maxval} range; it corresponds to the expression
12183 "maxval-clipval+minval".
12184
12185 @item clip(val)
12186 The computed value in @var{val}, clipped to the
12187 @var{minval}-@var{maxval} range.
12188
12189 @item gammaval(gamma)
12190 The computed gamma correction value of the pixel component value,
12191 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
12192 expression
12193 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
12194
12195 @end table
12196
12197 All expressions default to "val".
12198
12199 @subsection Examples
12200
12201 @itemize
12202 @item
12203 Negate input video:
12204 @example
12205 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
12206 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
12207 @end example
12208
12209 The above is the same as:
12210 @example
12211 lutrgb="r=negval:g=negval:b=negval"
12212 lutyuv="y=negval:u=negval:v=negval"
12213 @end example
12214
12215 @item
12216 Negate luminance:
12217 @example
12218 lutyuv=y=negval
12219 @end example
12220
12221 @item
12222 Remove chroma components, turning the video into a graytone image:
12223 @example
12224 lutyuv="u=128:v=128"
12225 @end example
12226
12227 @item
12228 Apply a luma burning effect:
12229 @example
12230 lutyuv="y=2*val"
12231 @end example
12232
12233 @item
12234 Remove green and blue components:
12235 @example
12236 lutrgb="g=0:b=0"
12237 @end example
12238
12239 @item
12240 Set a constant alpha channel value on input:
12241 @example
12242 format=rgba,lutrgb=a="maxval-minval/2"
12243 @end example
12244
12245 @item
12246 Correct luminance gamma by a factor of 0.5:
12247 @example
12248 lutyuv=y=gammaval(0.5)
12249 @end example
12250
12251 @item
12252 Discard least significant bits of luma:
12253 @example
12254 lutyuv=y='bitand(val, 128+64+32)'
12255 @end example
12256
12257 @item
12258 Technicolor like effect:
12259 @example
12260 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
12261 @end example
12262 @end itemize
12263
12264 @section lut2, tlut2
12265
12266 The @code{lut2} filter takes two input streams and outputs one
12267 stream.
12268
12269 The @code{tlut2} (time lut2) filter takes two consecutive frames
12270 from one single stream.
12271
12272 This filter accepts the following parameters:
12273 @table @option
12274 @item c0
12275 set first pixel component expression
12276 @item c1
12277 set second pixel component expression
12278 @item c2
12279 set third pixel component expression
12280 @item c3
12281 set fourth pixel component expression, corresponds to the alpha component
12282
12283 @item d
12284 set output bit depth, only available for @code{lut2} filter. By default is 0,
12285 which means bit depth is automatically picked from first input format.
12286 @end table
12287
12288 Each of them specifies the expression to use for computing the lookup table for
12289 the corresponding pixel component values.
12290
12291 The exact component associated to each of the @var{c*} options depends on the
12292 format in inputs.
12293
12294 The expressions can contain the following constants:
12295
12296 @table @option
12297 @item w
12298 @item h
12299 The input width and height.
12300
12301 @item x
12302 The first input value for the pixel component.
12303
12304 @item y
12305 The second input value for the pixel component.
12306
12307 @item bdx
12308 The first input video bit depth.
12309
12310 @item bdy
12311 The second input video bit depth.
12312 @end table
12313
12314 All expressions default to "x".
12315
12316 @subsection Examples
12317
12318 @itemize
12319 @item
12320 Highlight differences between two RGB video streams:
12321 @example
12322 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)'
12323 @end example
12324
12325 @item
12326 Highlight differences between two YUV video streams:
12327 @example
12328 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)'
12329 @end example
12330
12331 @item
12332 Show max difference between two video streams:
12333 @example
12334 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)))'
12335 @end example
12336 @end itemize
12337
12338 @section maskedclamp
12339
12340 Clamp the first input stream with the second input and third input stream.
12341
12342 Returns the value of first stream to be between second input
12343 stream - @code{undershoot} and third input stream + @code{overshoot}.
12344
12345 This filter accepts the following options:
12346 @table @option
12347 @item undershoot
12348 Default value is @code{0}.
12349
12350 @item overshoot
12351 Default value is @code{0}.
12352
12353 @item planes
12354 Set which planes will be processed as bitmap, unprocessed planes will be
12355 copied from first stream.
12356 By default value 0xf, all planes will be processed.
12357 @end table
12358
12359 @section maskedmerge
12360
12361 Merge the first input stream with the second input stream using per pixel
12362 weights in the third input stream.
12363
12364 A value of 0 in the third stream pixel component means that pixel component
12365 from first stream is returned unchanged, while maximum value (eg. 255 for
12366 8-bit videos) means that pixel component from second stream is returned
12367 unchanged. Intermediate values define the amount of merging between both
12368 input stream's pixel components.
12369
12370 This filter accepts the following options:
12371 @table @option
12372 @item planes
12373 Set which planes will be processed as bitmap, unprocessed planes will be
12374 copied from first stream.
12375 By default value 0xf, all planes will be processed.
12376 @end table
12377
12378 @section maskfun
12379 Create mask from input video.
12380
12381 For example it is useful to create motion masks after @code{tblend} filter.
12382
12383 This filter accepts the following options:
12384
12385 @table @option
12386 @item low
12387 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
12388
12389 @item high
12390 Set high threshold. Any pixel component higher than this value will be set to max value
12391 allowed for current pixel format.
12392
12393 @item planes
12394 Set planes to filter, by default all available planes are filtered.
12395
12396 @item fill
12397 Fill all frame pixels with this value.
12398
12399 @item sum
12400 Set max average pixel value for frame. If sum of all pixel components is higher that this
12401 average, output frame will be completely filled with value set by @var{fill} option.
12402 Typically useful for scene changes when used in combination with @code{tblend} filter.
12403 @end table
12404
12405 @section mcdeint
12406
12407 Apply motion-compensation deinterlacing.
12408
12409 It needs one field per frame as input and must thus be used together
12410 with yadif=1/3 or equivalent.
12411
12412 This filter accepts the following options:
12413 @table @option
12414 @item mode
12415 Set the deinterlacing mode.
12416
12417 It accepts one of the following values:
12418 @table @samp
12419 @item fast
12420 @item medium
12421 @item slow
12422 use iterative motion estimation
12423 @item extra_slow
12424 like @samp{slow}, but use multiple reference frames.
12425 @end table
12426 Default value is @samp{fast}.
12427
12428 @item parity
12429 Set the picture field parity assumed for the input video. It must be
12430 one of the following values:
12431
12432 @table @samp
12433 @item 0, tff
12434 assume top field first
12435 @item 1, bff
12436 assume bottom field first
12437 @end table
12438
12439 Default value is @samp{bff}.
12440
12441 @item qp
12442 Set per-block quantization parameter (QP) used by the internal
12443 encoder.
12444
12445 Higher values should result in a smoother motion vector field but less
12446 optimal individual vectors. Default value is 1.
12447 @end table
12448
12449 @section mergeplanes
12450
12451 Merge color channel components from several video streams.
12452
12453 The filter accepts up to 4 input streams, and merge selected input
12454 planes to the output video.
12455
12456 This filter accepts the following options:
12457 @table @option
12458 @item mapping
12459 Set input to output plane mapping. Default is @code{0}.
12460
12461 The mappings is specified as a bitmap. It should be specified as a
12462 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
12463 mapping for the first plane of the output stream. 'A' sets the number of
12464 the input stream to use (from 0 to 3), and 'a' the plane number of the
12465 corresponding input to use (from 0 to 3). The rest of the mappings is
12466 similar, 'Bb' describes the mapping for the output stream second
12467 plane, 'Cc' describes the mapping for the output stream third plane and
12468 'Dd' describes the mapping for the output stream fourth plane.
12469
12470 @item format
12471 Set output pixel format. Default is @code{yuva444p}.
12472 @end table
12473
12474 @subsection Examples
12475
12476 @itemize
12477 @item
12478 Merge three gray video streams of same width and height into single video stream:
12479 @example
12480 [a0][a1][a2]mergeplanes=0x001020:yuv444p
12481 @end example
12482
12483 @item
12484 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
12485 @example
12486 [a0][a1]mergeplanes=0x00010210:yuva444p
12487 @end example
12488
12489 @item
12490 Swap Y and A plane in yuva444p stream:
12491 @example
12492 format=yuva444p,mergeplanes=0x03010200:yuva444p
12493 @end example
12494
12495 @item
12496 Swap U and V plane in yuv420p stream:
12497 @example
12498 format=yuv420p,mergeplanes=0x000201:yuv420p
12499 @end example
12500
12501 @item
12502 Cast a rgb24 clip to yuv444p:
12503 @example
12504 format=rgb24,mergeplanes=0x000102:yuv444p
12505 @end example
12506 @end itemize
12507
12508 @section mestimate
12509
12510 Estimate and export motion vectors using block matching algorithms.
12511 Motion vectors are stored in frame side data to be used by other filters.
12512
12513 This filter accepts the following options:
12514 @table @option
12515 @item method
12516 Specify the motion estimation method. Accepts one of the following values:
12517
12518 @table @samp
12519 @item esa
12520 Exhaustive search algorithm.
12521 @item tss
12522 Three step search algorithm.
12523 @item tdls
12524 Two dimensional logarithmic search algorithm.
12525 @item ntss
12526 New three step search algorithm.
12527 @item fss
12528 Four step search algorithm.
12529 @item ds
12530 Diamond search algorithm.
12531 @item hexbs
12532 Hexagon-based search algorithm.
12533 @item epzs
12534 Enhanced predictive zonal search algorithm.
12535 @item umh
12536 Uneven multi-hexagon search algorithm.
12537 @end table
12538 Default value is @samp{esa}.
12539
12540 @item mb_size
12541 Macroblock size. Default @code{16}.
12542
12543 @item search_param
12544 Search parameter. Default @code{7}.
12545 @end table
12546
12547 @section midequalizer
12548
12549 Apply Midway Image Equalization effect using two video streams.
12550
12551 Midway Image Equalization adjusts a pair of images to have the same
12552 histogram, while maintaining their dynamics as much as possible. It's
12553 useful for e.g. matching exposures from a pair of stereo cameras.
12554
12555 This filter has two inputs and one output, which must be of same pixel format, but
12556 may be of different sizes. The output of filter is first input adjusted with
12557 midway histogram of both inputs.
12558
12559 This filter accepts the following option:
12560
12561 @table @option
12562 @item planes
12563 Set which planes to process. Default is @code{15}, which is all available planes.
12564 @end table
12565
12566 @section minterpolate
12567
12568 Convert the video to specified frame rate using motion interpolation.
12569
12570 This filter accepts the following options:
12571 @table @option
12572 @item fps
12573 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}.
12574
12575 @item mi_mode
12576 Motion interpolation mode. Following values are accepted:
12577 @table @samp
12578 @item dup
12579 Duplicate previous or next frame for interpolating new ones.
12580 @item blend
12581 Blend source frames. Interpolated frame is mean of previous and next frames.
12582 @item mci
12583 Motion compensated interpolation. Following options are effective when this mode is selected:
12584
12585 @table @samp
12586 @item mc_mode
12587 Motion compensation mode. Following values are accepted:
12588 @table @samp
12589 @item obmc
12590 Overlapped block motion compensation.
12591 @item aobmc
12592 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
12593 @end table
12594 Default mode is @samp{obmc}.
12595
12596 @item me_mode
12597 Motion estimation mode. Following values are accepted:
12598 @table @samp
12599 @item bidir
12600 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
12601 @item bilat
12602 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
12603 @end table
12604 Default mode is @samp{bilat}.
12605
12606 @item me
12607 The algorithm to be used for motion estimation. Following values are accepted:
12608 @table @samp
12609 @item esa
12610 Exhaustive search algorithm.
12611 @item tss
12612 Three step search algorithm.
12613 @item tdls
12614 Two dimensional logarithmic search algorithm.
12615 @item ntss
12616 New three step search algorithm.
12617 @item fss
12618 Four step search algorithm.
12619 @item ds
12620 Diamond search algorithm.
12621 @item hexbs
12622 Hexagon-based search algorithm.
12623 @item epzs
12624 Enhanced predictive zonal search algorithm.
12625 @item umh
12626 Uneven multi-hexagon search algorithm.
12627 @end table
12628 Default algorithm is @samp{epzs}.
12629
12630 @item mb_size
12631 Macroblock size. Default @code{16}.
12632
12633 @item search_param
12634 Motion estimation search parameter. Default @code{32}.
12635
12636 @item vsbmc
12637 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).
12638 @end table
12639 @end table
12640
12641 @item scd
12642 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:
12643 @table @samp
12644 @item none
12645 Disable scene change detection.
12646 @item fdiff
12647 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
12648 @end table
12649 Default method is @samp{fdiff}.
12650
12651 @item scd_threshold
12652 Scene change detection threshold. Default is @code{5.0}.
12653 @end table
12654
12655 @section mix
12656
12657 Mix several video input streams into one video stream.
12658
12659 A description of the accepted options follows.
12660
12661 @table @option
12662 @item nb_inputs
12663 The number of inputs. If unspecified, it defaults to 2.
12664
12665 @item weights
12666 Specify weight of each input video stream as sequence.
12667 Each weight is separated by space. If number of weights
12668 is smaller than number of @var{frames} last specified
12669 weight will be used for all remaining unset weights.
12670
12671 @item scale
12672 Specify scale, if it is set it will be multiplied with sum
12673 of each weight multiplied with pixel values to give final destination
12674 pixel value. By default @var{scale} is auto scaled to sum of weights.
12675
12676 @item duration
12677 Specify how end of stream is determined.
12678 @table @samp
12679 @item longest
12680 The duration of the longest input. (default)
12681
12682 @item shortest
12683 The duration of the shortest input.
12684
12685 @item first
12686 The duration of the first input.
12687 @end table
12688 @end table
12689
12690 @section mpdecimate
12691
12692 Drop frames that do not differ greatly from the previous frame in
12693 order to reduce frame rate.
12694
12695 The main use of this filter is for very-low-bitrate encoding
12696 (e.g. streaming over dialup modem), but it could in theory be used for
12697 fixing movies that were inverse-telecined incorrectly.
12698
12699 A description of the accepted options follows.
12700
12701 @table @option
12702 @item max
12703 Set the maximum number of consecutive frames which can be dropped (if
12704 positive), or the minimum interval between dropped frames (if
12705 negative). If the value is 0, the frame is dropped disregarding the
12706 number of previous sequentially dropped frames.
12707
12708 Default value is 0.
12709
12710 @item hi
12711 @item lo
12712 @item frac
12713 Set the dropping threshold values.
12714
12715 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
12716 represent actual pixel value differences, so a threshold of 64
12717 corresponds to 1 unit of difference for each pixel, or the same spread
12718 out differently over the block.
12719
12720 A frame is a candidate for dropping if no 8x8 blocks differ by more
12721 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
12722 meaning the whole image) differ by more than a threshold of @option{lo}.
12723
12724 Default value for @option{hi} is 64*12, default value for @option{lo} is
12725 64*5, and default value for @option{frac} is 0.33.
12726 @end table
12727
12728
12729 @section negate
12730
12731 Negate (invert) the input video.
12732
12733 It accepts the following option:
12734
12735 @table @option
12736
12737 @item negate_alpha
12738 With value 1, it negates the alpha component, if present. Default value is 0.
12739 @end table
12740
12741 @anchor{nlmeans}
12742 @section nlmeans
12743
12744 Denoise frames using Non-Local Means algorithm.
12745
12746 Each pixel is adjusted by looking for other pixels with similar contexts. This
12747 context similarity is defined by comparing their surrounding patches of size
12748 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
12749 around the pixel.
12750
12751 Note that the research area defines centers for patches, which means some
12752 patches will be made of pixels outside that research area.
12753
12754 The filter accepts the following options.
12755
12756 @table @option
12757 @item s
12758 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
12759
12760 @item p
12761 Set patch size. Default is 7. Must be odd number in range [0, 99].
12762
12763 @item pc
12764 Same as @option{p} but for chroma planes.
12765
12766 The default value is @var{0} and means automatic.
12767
12768 @item r
12769 Set research size. Default is 15. Must be odd number in range [0, 99].
12770
12771 @item rc
12772 Same as @option{r} but for chroma planes.
12773
12774 The default value is @var{0} and means automatic.
12775 @end table
12776
12777 @section nnedi
12778
12779 Deinterlace video using neural network edge directed interpolation.
12780
12781 This filter accepts the following options:
12782
12783 @table @option
12784 @item weights
12785 Mandatory option, without binary file filter can not work.
12786 Currently file can be found here:
12787 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
12788
12789 @item deint
12790 Set which frames to deinterlace, by default it is @code{all}.
12791 Can be @code{all} or @code{interlaced}.
12792
12793 @item field
12794 Set mode of operation.
12795
12796 Can be one of the following:
12797
12798 @table @samp
12799 @item af
12800 Use frame flags, both fields.
12801 @item a
12802 Use frame flags, single field.
12803 @item t
12804 Use top field only.
12805 @item b
12806 Use bottom field only.
12807 @item tf
12808 Use both fields, top first.
12809 @item bf
12810 Use both fields, bottom first.
12811 @end table
12812
12813 @item planes
12814 Set which planes to process, by default filter process all frames.
12815
12816 @item nsize
12817 Set size of local neighborhood around each pixel, used by the predictor neural
12818 network.
12819
12820 Can be one of the following:
12821
12822 @table @samp
12823 @item s8x6
12824 @item s16x6
12825 @item s32x6
12826 @item s48x6
12827 @item s8x4
12828 @item s16x4
12829 @item s32x4
12830 @end table
12831
12832 @item nns
12833 Set the number of neurons in predictor neural network.
12834 Can be one of the following:
12835
12836 @table @samp
12837 @item n16
12838 @item n32
12839 @item n64
12840 @item n128
12841 @item n256
12842 @end table
12843
12844 @item qual
12845 Controls the number of different neural network predictions that are blended
12846 together to compute the final output value. Can be @code{fast}, default or
12847 @code{slow}.
12848
12849 @item etype
12850 Set which set of weights to use in the predictor.
12851 Can be one of the following:
12852
12853 @table @samp
12854 @item a
12855 weights trained to minimize absolute error
12856 @item s
12857 weights trained to minimize squared error
12858 @end table
12859
12860 @item pscrn
12861 Controls whether or not the prescreener neural network is used to decide
12862 which pixels should be processed by the predictor neural network and which
12863 can be handled by simple cubic interpolation.
12864 The prescreener is trained to know whether cubic interpolation will be
12865 sufficient for a pixel or whether it should be predicted by the predictor nn.
12866 The computational complexity of the prescreener nn is much less than that of
12867 the predictor nn. Since most pixels can be handled by cubic interpolation,
12868 using the prescreener generally results in much faster processing.
12869 The prescreener is pretty accurate, so the difference between using it and not
12870 using it is almost always unnoticeable.
12871
12872 Can be one of the following:
12873
12874 @table @samp
12875 @item none
12876 @item original
12877 @item new
12878 @end table
12879
12880 Default is @code{new}.
12881
12882 @item fapprox
12883 Set various debugging flags.
12884 @end table
12885
12886 @section noformat
12887
12888 Force libavfilter not to use any of the specified pixel formats for the
12889 input to the next filter.
12890
12891 It accepts the following parameters:
12892 @table @option
12893
12894 @item pix_fmts
12895 A '|'-separated list of pixel format names, such as
12896 pix_fmts=yuv420p|monow|rgb24".
12897
12898 @end table
12899
12900 @subsection Examples
12901
12902 @itemize
12903 @item
12904 Force libavfilter to use a format different from @var{yuv420p} for the
12905 input to the vflip filter:
12906 @example
12907 noformat=pix_fmts=yuv420p,vflip
12908 @end example
12909
12910 @item
12911 Convert the input video to any of the formats not contained in the list:
12912 @example
12913 noformat=yuv420p|yuv444p|yuv410p
12914 @end example
12915 @end itemize
12916
12917 @section noise
12918
12919 Add noise on video input frame.
12920
12921 The filter accepts the following options:
12922
12923 @table @option
12924 @item all_seed
12925 @item c0_seed
12926 @item c1_seed
12927 @item c2_seed
12928 @item c3_seed
12929 Set noise seed for specific pixel component or all pixel components in case
12930 of @var{all_seed}. Default value is @code{123457}.
12931
12932 @item all_strength, alls
12933 @item c0_strength, c0s
12934 @item c1_strength, c1s
12935 @item c2_strength, c2s
12936 @item c3_strength, c3s
12937 Set noise strength for specific pixel component or all pixel components in case
12938 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
12939
12940 @item all_flags, allf
12941 @item c0_flags, c0f
12942 @item c1_flags, c1f
12943 @item c2_flags, c2f
12944 @item c3_flags, c3f
12945 Set pixel component flags or set flags for all components if @var{all_flags}.
12946 Available values for component flags are:
12947 @table @samp
12948 @item a
12949 averaged temporal noise (smoother)
12950 @item p
12951 mix random noise with a (semi)regular pattern
12952 @item t
12953 temporal noise (noise pattern changes between frames)
12954 @item u
12955 uniform noise (gaussian otherwise)
12956 @end table
12957 @end table
12958
12959 @subsection Examples
12960
12961 Add temporal and uniform noise to input video:
12962 @example
12963 noise=alls=20:allf=t+u
12964 @end example
12965
12966 @section normalize
12967
12968 Normalize RGB video (aka histogram stretching, contrast stretching).
12969 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
12970
12971 For each channel of each frame, the filter computes the input range and maps
12972 it linearly to the user-specified output range. The output range defaults
12973 to the full dynamic range from pure black to pure white.
12974
12975 Temporal smoothing can be used on the input range to reduce flickering (rapid
12976 changes in brightness) caused when small dark or bright objects enter or leave
12977 the scene. This is similar to the auto-exposure (automatic gain control) on a
12978 video camera, and, like a video camera, it may cause a period of over- or
12979 under-exposure of the video.
12980
12981 The R,G,B channels can be normalized independently, which may cause some
12982 color shifting, or linked together as a single channel, which prevents
12983 color shifting. Linked normalization preserves hue. Independent normalization
12984 does not, so it can be used to remove some color casts. Independent and linked
12985 normalization can be combined in any ratio.
12986
12987 The normalize filter accepts the following options:
12988
12989 @table @option
12990 @item blackpt
12991 @item whitept
12992 Colors which define the output range. The minimum input value is mapped to
12993 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
12994 The defaults are black and white respectively. Specifying white for
12995 @var{blackpt} and black for @var{whitept} will give color-inverted,
12996 normalized video. Shades of grey can be used to reduce the dynamic range
12997 (contrast). Specifying saturated colors here can create some interesting
12998 effects.
12999
13000 @item smoothing
13001 The number of previous frames to use for temporal smoothing. The input range
13002 of each channel is smoothed using a rolling average over the current frame
13003 and the @var{smoothing} previous frames. The default is 0 (no temporal
13004 smoothing).
13005
13006 @item independence
13007 Controls the ratio of independent (color shifting) channel normalization to
13008 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13009 independent. Defaults to 1.0 (fully independent).
13010
13011 @item strength
13012 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13013 expensive no-op. Defaults to 1.0 (full strength).
13014
13015 @end table
13016
13017 @subsection Examples
13018
13019 Stretch video contrast to use the full dynamic range, with no temporal
13020 smoothing; may flicker depending on the source content:
13021 @example
13022 normalize=blackpt=black:whitept=white:smoothing=0
13023 @end example
13024
13025 As above, but with 50 frames of temporal smoothing; flicker should be
13026 reduced, depending on the source content:
13027 @example
13028 normalize=blackpt=black:whitept=white:smoothing=50
13029 @end example
13030
13031 As above, but with hue-preserving linked channel normalization:
13032 @example
13033 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13034 @end example
13035
13036 As above, but with half strength:
13037 @example
13038 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13039 @end example
13040
13041 Map the darkest input color to red, the brightest input color to cyan:
13042 @example
13043 normalize=blackpt=red:whitept=cyan
13044 @end example
13045
13046 @section null
13047
13048 Pass the video source unchanged to the output.
13049
13050 @section ocr
13051 Optical Character Recognition
13052
13053 This filter uses Tesseract for optical character recognition. To enable
13054 compilation of this filter, you need to configure FFmpeg with
13055 @code{--enable-libtesseract}.
13056
13057 It accepts the following options:
13058
13059 @table @option
13060 @item datapath
13061 Set datapath to tesseract data. Default is to use whatever was
13062 set at installation.
13063
13064 @item language
13065 Set language, default is "eng".
13066
13067 @item whitelist
13068 Set character whitelist.
13069
13070 @item blacklist
13071 Set character blacklist.
13072 @end table
13073
13074 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13075 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13076
13077 @section ocv
13078
13079 Apply a video transform using libopencv.
13080
13081 To enable this filter, install the libopencv library and headers and
13082 configure FFmpeg with @code{--enable-libopencv}.
13083
13084 It accepts the following parameters:
13085
13086 @table @option
13087
13088 @item filter_name
13089 The name of the libopencv filter to apply.
13090
13091 @item filter_params
13092 The parameters to pass to the libopencv filter. If not specified, the default
13093 values are assumed.
13094
13095 @end table
13096
13097 Refer to the official libopencv documentation for more precise
13098 information:
13099 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13100
13101 Several libopencv filters are supported; see the following subsections.
13102
13103 @anchor{dilate}
13104 @subsection dilate
13105
13106 Dilate an image by using a specific structuring element.
13107 It corresponds to the libopencv function @code{cvDilate}.
13108
13109 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
13110
13111 @var{struct_el} represents a structuring element, and has the syntax:
13112 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
13113
13114 @var{cols} and @var{rows} represent the number of columns and rows of
13115 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
13116 point, and @var{shape} the shape for the structuring element. @var{shape}
13117 must be "rect", "cross", "ellipse", or "custom".
13118
13119 If the value for @var{shape} is "custom", it must be followed by a
13120 string of the form "=@var{filename}". The file with name
13121 @var{filename} is assumed to represent a binary image, with each
13122 printable character corresponding to a bright pixel. When a custom
13123 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
13124 or columns and rows of the read file are assumed instead.
13125
13126 The default value for @var{struct_el} is "3x3+0x0/rect".
13127
13128 @var{nb_iterations} specifies the number of times the transform is
13129 applied to the image, and defaults to 1.
13130
13131 Some examples:
13132 @example
13133 # Use the default values
13134 ocv=dilate
13135
13136 # Dilate using a structuring element with a 5x5 cross, iterating two times
13137 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
13138
13139 # Read the shape from the file diamond.shape, iterating two times.
13140 # The file diamond.shape may contain a pattern of characters like this
13141 #   *
13142 #  ***
13143 # *****
13144 #  ***
13145 #   *
13146 # The specified columns and rows are ignored
13147 # but the anchor point coordinates are not
13148 ocv=dilate:0x0+2x2/custom=diamond.shape|2
13149 @end example
13150
13151 @subsection erode
13152
13153 Erode an image by using a specific structuring element.
13154 It corresponds to the libopencv function @code{cvErode}.
13155
13156 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
13157 with the same syntax and semantics as the @ref{dilate} filter.
13158
13159 @subsection smooth
13160
13161 Smooth the input video.
13162
13163 The filter takes the following parameters:
13164 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
13165
13166 @var{type} is the type of smooth filter to apply, and must be one of
13167 the following values: "blur", "blur_no_scale", "median", "gaussian",
13168 or "bilateral". The default value is "gaussian".
13169
13170 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
13171 depend on the smooth type. @var{param1} and
13172 @var{param2} accept integer positive values or 0. @var{param3} and
13173 @var{param4} accept floating point values.
13174
13175 The default value for @var{param1} is 3. The default value for the
13176 other parameters is 0.
13177
13178 These parameters correspond to the parameters assigned to the
13179 libopencv function @code{cvSmooth}.
13180
13181 @section oscilloscope
13182
13183 2D Video Oscilloscope.
13184
13185 Useful to measure spatial impulse, step responses, chroma delays, etc.
13186
13187 It accepts the following parameters:
13188
13189 @table @option
13190 @item x
13191 Set scope center x position.
13192
13193 @item y
13194 Set scope center y position.
13195
13196 @item s
13197 Set scope size, relative to frame diagonal.
13198
13199 @item t
13200 Set scope tilt/rotation.
13201
13202 @item o
13203 Set trace opacity.
13204
13205 @item tx
13206 Set trace center x position.
13207
13208 @item ty
13209 Set trace center y position.
13210
13211 @item tw
13212 Set trace width, relative to width of frame.
13213
13214 @item th
13215 Set trace height, relative to height of frame.
13216
13217 @item c
13218 Set which components to trace. By default it traces first three components.
13219
13220 @item g
13221 Draw trace grid. By default is enabled.
13222
13223 @item st
13224 Draw some statistics. By default is enabled.
13225
13226 @item sc
13227 Draw scope. By default is enabled.
13228 @end table
13229
13230 @subsection Examples
13231
13232 @itemize
13233 @item
13234 Inspect full first row of video frame.
13235 @example
13236 oscilloscope=x=0.5:y=0:s=1
13237 @end example
13238
13239 @item
13240 Inspect full last row of video frame.
13241 @example
13242 oscilloscope=x=0.5:y=1:s=1
13243 @end example
13244
13245 @item
13246 Inspect full 5th line of video frame of height 1080.
13247 @example
13248 oscilloscope=x=0.5:y=5/1080:s=1
13249 @end example
13250
13251 @item
13252 Inspect full last column of video frame.
13253 @example
13254 oscilloscope=x=1:y=0.5:s=1:t=1
13255 @end example
13256
13257 @end itemize
13258
13259 @anchor{overlay}
13260 @section overlay
13261
13262 Overlay one video on top of another.
13263
13264 It takes two inputs and has one output. The first input is the "main"
13265 video on which the second input is overlaid.
13266
13267 It accepts the following parameters:
13268
13269 A description of the accepted options follows.
13270
13271 @table @option
13272 @item x
13273 @item y
13274 Set the expression for the x and y coordinates of the overlaid video
13275 on the main video. Default value is "0" for both expressions. In case
13276 the expression is invalid, it is set to a huge value (meaning that the
13277 overlay will not be displayed within the output visible area).
13278
13279 @item eof_action
13280 See @ref{framesync}.
13281
13282 @item eval
13283 Set when the expressions for @option{x}, and @option{y} are evaluated.
13284
13285 It accepts the following values:
13286 @table @samp
13287 @item init
13288 only evaluate expressions once during the filter initialization or
13289 when a command is processed
13290
13291 @item frame
13292 evaluate expressions for each incoming frame
13293 @end table
13294
13295 Default value is @samp{frame}.
13296
13297 @item shortest
13298 See @ref{framesync}.
13299
13300 @item format
13301 Set the format for the output video.
13302
13303 It accepts the following values:
13304 @table @samp
13305 @item yuv420
13306 force YUV420 output
13307
13308 @item yuv422
13309 force YUV422 output
13310
13311 @item yuv444
13312 force YUV444 output
13313
13314 @item rgb
13315 force packed RGB output
13316
13317 @item gbrp
13318 force planar RGB output
13319
13320 @item auto
13321 automatically pick format
13322 @end table
13323
13324 Default value is @samp{yuv420}.
13325
13326 @item repeatlast
13327 See @ref{framesync}.
13328
13329 @item alpha
13330 Set format of alpha of the overlaid video, it can be @var{straight} or
13331 @var{premultiplied}. Default is @var{straight}.
13332 @end table
13333
13334 The @option{x}, and @option{y} expressions can contain the following
13335 parameters.
13336
13337 @table @option
13338 @item main_w, W
13339 @item main_h, H
13340 The main input width and height.
13341
13342 @item overlay_w, w
13343 @item overlay_h, h
13344 The overlay input width and height.
13345
13346 @item x
13347 @item y
13348 The computed values for @var{x} and @var{y}. They are evaluated for
13349 each new frame.
13350
13351 @item hsub
13352 @item vsub
13353 horizontal and vertical chroma subsample values of the output
13354 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
13355 @var{vsub} is 1.
13356
13357 @item n
13358 the number of input frame, starting from 0
13359
13360 @item pos
13361 the position in the file of the input frame, NAN if unknown
13362
13363 @item t
13364 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
13365
13366 @end table
13367
13368 This filter also supports the @ref{framesync} options.
13369
13370 Note that the @var{n}, @var{pos}, @var{t} variables are available only
13371 when evaluation is done @emph{per frame}, and will evaluate to NAN
13372 when @option{eval} is set to @samp{init}.
13373
13374 Be aware that frames are taken from each input video in timestamp
13375 order, hence, if their initial timestamps differ, it is a good idea
13376 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
13377 have them begin in the same zero timestamp, as the example for
13378 the @var{movie} filter does.
13379
13380 You can chain together more overlays but you should test the
13381 efficiency of such approach.
13382
13383 @subsection Commands
13384
13385 This filter supports the following commands:
13386 @table @option
13387 @item x
13388 @item y
13389 Modify the x and y of the overlay input.
13390 The command accepts the same syntax of the corresponding option.
13391
13392 If the specified expression is not valid, it is kept at its current
13393 value.
13394 @end table
13395
13396 @subsection Examples
13397
13398 @itemize
13399 @item
13400 Draw the overlay at 10 pixels from the bottom right corner of the main
13401 video:
13402 @example
13403 overlay=main_w-overlay_w-10:main_h-overlay_h-10
13404 @end example
13405
13406 Using named options the example above becomes:
13407 @example
13408 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
13409 @end example
13410
13411 @item
13412 Insert a transparent PNG logo in the bottom left corner of the input,
13413 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
13414 @example
13415 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
13416 @end example
13417
13418 @item
13419 Insert 2 different transparent PNG logos (second logo on bottom
13420 right corner) using the @command{ffmpeg} tool:
13421 @example
13422 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
13423 @end example
13424
13425 @item
13426 Add a transparent color layer on top of the main video; @code{WxH}
13427 must specify the size of the main input to the overlay filter:
13428 @example
13429 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
13430 @end example
13431
13432 @item
13433 Play an original video and a filtered version (here with the deshake
13434 filter) side by side using the @command{ffplay} tool:
13435 @example
13436 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
13437 @end example
13438
13439 The above command is the same as:
13440 @example
13441 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
13442 @end example
13443
13444 @item
13445 Make a sliding overlay appearing from the left to the right top part of the
13446 screen starting since time 2:
13447 @example
13448 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
13449 @end example
13450
13451 @item
13452 Compose output by putting two input videos side to side:
13453 @example
13454 ffmpeg -i left.avi -i right.avi -filter_complex "
13455 nullsrc=size=200x100 [background];
13456 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
13457 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
13458 [background][left]       overlay=shortest=1       [background+left];
13459 [background+left][right] overlay=shortest=1:x=100 [left+right]
13460 "
13461 @end example
13462
13463 @item
13464 Mask 10-20 seconds of a video by applying the delogo filter to a section
13465 @example
13466 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
13467 -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]'
13468 masked.avi
13469 @end example
13470
13471 @item
13472 Chain several overlays in cascade:
13473 @example
13474 nullsrc=s=200x200 [bg];
13475 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
13476 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
13477 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
13478 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
13479 [in3] null,       [mid2] overlay=100:100 [out0]
13480 @end example
13481
13482 @end itemize
13483
13484 @section owdenoise
13485
13486 Apply Overcomplete Wavelet denoiser.
13487
13488 The filter accepts the following options:
13489
13490 @table @option
13491 @item depth
13492 Set depth.
13493
13494 Larger depth values will denoise lower frequency components more, but
13495 slow down filtering.
13496
13497 Must be an int in the range 8-16, default is @code{8}.
13498
13499 @item luma_strength, ls
13500 Set luma strength.
13501
13502 Must be a double value in the range 0-1000, default is @code{1.0}.
13503
13504 @item chroma_strength, cs
13505 Set chroma strength.
13506
13507 Must be a double value in the range 0-1000, default is @code{1.0}.
13508 @end table
13509
13510 @anchor{pad}
13511 @section pad
13512
13513 Add paddings to the input image, and place the original input at the
13514 provided @var{x}, @var{y} coordinates.
13515
13516 It accepts the following parameters:
13517
13518 @table @option
13519 @item width, w
13520 @item height, h
13521 Specify an expression for the size of the output image with the
13522 paddings added. If the value for @var{width} or @var{height} is 0, the
13523 corresponding input size is used for the output.
13524
13525 The @var{width} expression can reference the value set by the
13526 @var{height} expression, and vice versa.
13527
13528 The default value of @var{width} and @var{height} is 0.
13529
13530 @item x
13531 @item y
13532 Specify the offsets to place the input image at within the padded area,
13533 with respect to the top/left border of the output image.
13534
13535 The @var{x} expression can reference the value set by the @var{y}
13536 expression, and vice versa.
13537
13538 The default value of @var{x} and @var{y} is 0.
13539
13540 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
13541 so the input image is centered on the padded area.
13542
13543 @item color
13544 Specify the color of the padded area. For the syntax of this option,
13545 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13546 manual,ffmpeg-utils}.
13547
13548 The default value of @var{color} is "black".
13549
13550 @item eval
13551 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
13552
13553 It accepts the following values:
13554
13555 @table @samp
13556 @item init
13557 Only evaluate expressions once during the filter initialization or when
13558 a command is processed.
13559
13560 @item frame
13561 Evaluate expressions for each incoming frame.
13562
13563 @end table
13564
13565 Default value is @samp{init}.
13566
13567 @item aspect
13568 Pad to aspect instead to a resolution.
13569
13570 @end table
13571
13572 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
13573 options are expressions containing the following constants:
13574
13575 @table @option
13576 @item in_w
13577 @item in_h
13578 The input video width and height.
13579
13580 @item iw
13581 @item ih
13582 These are the same as @var{in_w} and @var{in_h}.
13583
13584 @item out_w
13585 @item out_h
13586 The output width and height (the size of the padded area), as
13587 specified by the @var{width} and @var{height} expressions.
13588
13589 @item ow
13590 @item oh
13591 These are the same as @var{out_w} and @var{out_h}.
13592
13593 @item x
13594 @item y
13595 The x and y offsets as specified by the @var{x} and @var{y}
13596 expressions, or NAN if not yet specified.
13597
13598 @item a
13599 same as @var{iw} / @var{ih}
13600
13601 @item sar
13602 input sample aspect ratio
13603
13604 @item dar
13605 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
13606
13607 @item hsub
13608 @item vsub
13609 The horizontal and vertical chroma subsample values. For example for the
13610 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13611 @end table
13612
13613 @subsection Examples
13614
13615 @itemize
13616 @item
13617 Add paddings with the color "violet" to the input video. The output video
13618 size is 640x480, and the top-left corner of the input video is placed at
13619 column 0, row 40
13620 @example
13621 pad=640:480:0:40:violet
13622 @end example
13623
13624 The example above is equivalent to the following command:
13625 @example
13626 pad=width=640:height=480:x=0:y=40:color=violet
13627 @end example
13628
13629 @item
13630 Pad the input to get an output with dimensions increased by 3/2,
13631 and put the input video at the center of the padded area:
13632 @example
13633 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
13634 @end example
13635
13636 @item
13637 Pad the input to get a squared output with size equal to the maximum
13638 value between the input width and height, and put the input video at
13639 the center of the padded area:
13640 @example
13641 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
13642 @end example
13643
13644 @item
13645 Pad the input to get a final w/h ratio of 16:9:
13646 @example
13647 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
13648 @end example
13649
13650 @item
13651 In case of anamorphic video, in order to set the output display aspect
13652 correctly, it is necessary to use @var{sar} in the expression,
13653 according to the relation:
13654 @example
13655 (ih * X / ih) * sar = output_dar
13656 X = output_dar / sar
13657 @end example
13658
13659 Thus the previous example needs to be modified to:
13660 @example
13661 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
13662 @end example
13663
13664 @item
13665 Double the output size and put the input video in the bottom-right
13666 corner of the output padded area:
13667 @example
13668 pad="2*iw:2*ih:ow-iw:oh-ih"
13669 @end example
13670 @end itemize
13671
13672 @anchor{palettegen}
13673 @section palettegen
13674
13675 Generate one palette for a whole video stream.
13676
13677 It accepts the following options:
13678
13679 @table @option
13680 @item max_colors
13681 Set the maximum number of colors to quantize in the palette.
13682 Note: the palette will still contain 256 colors; the unused palette entries
13683 will be black.
13684
13685 @item reserve_transparent
13686 Create a palette of 255 colors maximum and reserve the last one for
13687 transparency. Reserving the transparency color is useful for GIF optimization.
13688 If not set, the maximum of colors in the palette will be 256. You probably want
13689 to disable this option for a standalone image.
13690 Set by default.
13691
13692 @item transparency_color
13693 Set the color that will be used as background for transparency.
13694
13695 @item stats_mode
13696 Set statistics mode.
13697
13698 It accepts the following values:
13699 @table @samp
13700 @item full
13701 Compute full frame histograms.
13702 @item diff
13703 Compute histograms only for the part that differs from previous frame. This
13704 might be relevant to give more importance to the moving part of your input if
13705 the background is static.
13706 @item single
13707 Compute new histogram for each frame.
13708 @end table
13709
13710 Default value is @var{full}.
13711 @end table
13712
13713 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
13714 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
13715 color quantization of the palette. This information is also visible at
13716 @var{info} logging level.
13717
13718 @subsection Examples
13719
13720 @itemize
13721 @item
13722 Generate a representative palette of a given video using @command{ffmpeg}:
13723 @example
13724 ffmpeg -i input.mkv -vf palettegen palette.png
13725 @end example
13726 @end itemize
13727
13728 @section paletteuse
13729
13730 Use a palette to downsample an input video stream.
13731
13732 The filter takes two inputs: one video stream and a palette. The palette must
13733 be a 256 pixels image.
13734
13735 It accepts the following options:
13736
13737 @table @option
13738 @item dither
13739 Select dithering mode. Available algorithms are:
13740 @table @samp
13741 @item bayer
13742 Ordered 8x8 bayer dithering (deterministic)
13743 @item heckbert
13744 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
13745 Note: this dithering is sometimes considered "wrong" and is included as a
13746 reference.
13747 @item floyd_steinberg
13748 Floyd and Steingberg dithering (error diffusion)
13749 @item sierra2
13750 Frankie Sierra dithering v2 (error diffusion)
13751 @item sierra2_4a
13752 Frankie Sierra dithering v2 "Lite" (error diffusion)
13753 @end table
13754
13755 Default is @var{sierra2_4a}.
13756
13757 @item bayer_scale
13758 When @var{bayer} dithering is selected, this option defines the scale of the
13759 pattern (how much the crosshatch pattern is visible). A low value means more
13760 visible pattern for less banding, and higher value means less visible pattern
13761 at the cost of more banding.
13762
13763 The option must be an integer value in the range [0,5]. Default is @var{2}.
13764
13765 @item diff_mode
13766 If set, define the zone to process
13767
13768 @table @samp
13769 @item rectangle
13770 Only the changing rectangle will be reprocessed. This is similar to GIF
13771 cropping/offsetting compression mechanism. This option can be useful for speed
13772 if only a part of the image is changing, and has use cases such as limiting the
13773 scope of the error diffusal @option{dither} to the rectangle that bounds the
13774 moving scene (it leads to more deterministic output if the scene doesn't change
13775 much, and as a result less moving noise and better GIF compression).
13776 @end table
13777
13778 Default is @var{none}.
13779
13780 @item new
13781 Take new palette for each output frame.
13782
13783 @item alpha_threshold
13784 Sets the alpha threshold for transparency. Alpha values above this threshold
13785 will be treated as completely opaque, and values below this threshold will be
13786 treated as completely transparent.
13787
13788 The option must be an integer value in the range [0,255]. Default is @var{128}.
13789 @end table
13790
13791 @subsection Examples
13792
13793 @itemize
13794 @item
13795 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
13796 using @command{ffmpeg}:
13797 @example
13798 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
13799 @end example
13800 @end itemize
13801
13802 @section perspective
13803
13804 Correct perspective of video not recorded perpendicular to the screen.
13805
13806 A description of the accepted parameters follows.
13807
13808 @table @option
13809 @item x0
13810 @item y0
13811 @item x1
13812 @item y1
13813 @item x2
13814 @item y2
13815 @item x3
13816 @item y3
13817 Set coordinates expression for top left, top right, bottom left and bottom right corners.
13818 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
13819 If the @code{sense} option is set to @code{source}, then the specified points will be sent
13820 to the corners of the destination. If the @code{sense} option is set to @code{destination},
13821 then the corners of the source will be sent to the specified coordinates.
13822
13823 The expressions can use the following variables:
13824
13825 @table @option
13826 @item W
13827 @item H
13828 the width and height of video frame.
13829 @item in
13830 Input frame count.
13831 @item on
13832 Output frame count.
13833 @end table
13834
13835 @item interpolation
13836 Set interpolation for perspective correction.
13837
13838 It accepts the following values:
13839 @table @samp
13840 @item linear
13841 @item cubic
13842 @end table
13843
13844 Default value is @samp{linear}.
13845
13846 @item sense
13847 Set interpretation of coordinate options.
13848
13849 It accepts the following values:
13850 @table @samp
13851 @item 0, source
13852
13853 Send point in the source specified by the given coordinates to
13854 the corners of the destination.
13855
13856 @item 1, destination
13857
13858 Send the corners of the source to the point in the destination specified
13859 by the given coordinates.
13860
13861 Default value is @samp{source}.
13862 @end table
13863
13864 @item eval
13865 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
13866
13867 It accepts the following values:
13868 @table @samp
13869 @item init
13870 only evaluate expressions once during the filter initialization or
13871 when a command is processed
13872
13873 @item frame
13874 evaluate expressions for each incoming frame
13875 @end table
13876
13877 Default value is @samp{init}.
13878 @end table
13879
13880 @section phase
13881
13882 Delay interlaced video by one field time so that the field order changes.
13883
13884 The intended use is to fix PAL movies that have been captured with the
13885 opposite field order to the film-to-video transfer.
13886
13887 A description of the accepted parameters follows.
13888
13889 @table @option
13890 @item mode
13891 Set phase mode.
13892
13893 It accepts the following values:
13894 @table @samp
13895 @item t
13896 Capture field order top-first, transfer bottom-first.
13897 Filter will delay the bottom field.
13898
13899 @item b
13900 Capture field order bottom-first, transfer top-first.
13901 Filter will delay the top field.
13902
13903 @item p
13904 Capture and transfer with the same field order. This mode only exists
13905 for the documentation of the other options to refer to, but if you
13906 actually select it, the filter will faithfully do nothing.
13907
13908 @item a
13909 Capture field order determined automatically by field flags, transfer
13910 opposite.
13911 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
13912 basis using field flags. If no field information is available,
13913 then this works just like @samp{u}.
13914
13915 @item u
13916 Capture unknown or varying, transfer opposite.
13917 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
13918 analyzing the images and selecting the alternative that produces best
13919 match between the fields.
13920
13921 @item T
13922 Capture top-first, transfer unknown or varying.
13923 Filter selects among @samp{t} and @samp{p} using image analysis.
13924
13925 @item B
13926 Capture bottom-first, transfer unknown or varying.
13927 Filter selects among @samp{b} and @samp{p} using image analysis.
13928
13929 @item A
13930 Capture determined by field flags, transfer unknown or varying.
13931 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
13932 image analysis. If no field information is available, then this works just
13933 like @samp{U}. This is the default mode.
13934
13935 @item U
13936 Both capture and transfer unknown or varying.
13937 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
13938 @end table
13939 @end table
13940
13941 @section pixdesctest
13942
13943 Pixel format descriptor test filter, mainly useful for internal
13944 testing. The output video should be equal to the input video.
13945
13946 For example:
13947 @example
13948 format=monow, pixdesctest
13949 @end example
13950
13951 can be used to test the monowhite pixel format descriptor definition.
13952
13953 @section pixscope
13954
13955 Display sample values of color channels. Mainly useful for checking color
13956 and levels. Minimum supported resolution is 640x480.
13957
13958 The filters accept the following options:
13959
13960 @table @option
13961 @item x
13962 Set scope X position, relative offset on X axis.
13963
13964 @item y
13965 Set scope Y position, relative offset on Y axis.
13966
13967 @item w
13968 Set scope width.
13969
13970 @item h
13971 Set scope height.
13972
13973 @item o
13974 Set window opacity. This window also holds statistics about pixel area.
13975
13976 @item wx
13977 Set window X position, relative offset on X axis.
13978
13979 @item wy
13980 Set window Y position, relative offset on Y axis.
13981 @end table
13982
13983 @section pp
13984
13985 Enable the specified chain of postprocessing subfilters using libpostproc. This
13986 library should be automatically selected with a GPL build (@code{--enable-gpl}).
13987 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
13988 Each subfilter and some options have a short and a long name that can be used
13989 interchangeably, i.e. dr/dering are the same.
13990
13991 The filters accept the following options:
13992
13993 @table @option
13994 @item subfilters
13995 Set postprocessing subfilters string.
13996 @end table
13997
13998 All subfilters share common options to determine their scope:
13999
14000 @table @option
14001 @item a/autoq
14002 Honor the quality commands for this subfilter.
14003
14004 @item c/chrom
14005 Do chrominance filtering, too (default).
14006
14007 @item y/nochrom
14008 Do luminance filtering only (no chrominance).
14009
14010 @item n/noluma
14011 Do chrominance filtering only (no luminance).
14012 @end table
14013
14014 These options can be appended after the subfilter name, separated by a '|'.
14015
14016 Available subfilters are:
14017
14018 @table @option
14019 @item hb/hdeblock[|difference[|flatness]]
14020 Horizontal deblocking filter
14021 @table @option
14022 @item difference
14023 Difference factor where higher values mean more deblocking (default: @code{32}).
14024 @item flatness
14025 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14026 @end table
14027
14028 @item vb/vdeblock[|difference[|flatness]]
14029 Vertical deblocking filter
14030 @table @option
14031 @item difference
14032 Difference factor where higher values mean more deblocking (default: @code{32}).
14033 @item flatness
14034 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14035 @end table
14036
14037 @item ha/hadeblock[|difference[|flatness]]
14038 Accurate horizontal deblocking filter
14039 @table @option
14040 @item difference
14041 Difference factor where higher values mean more deblocking (default: @code{32}).
14042 @item flatness
14043 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14044 @end table
14045
14046 @item va/vadeblock[|difference[|flatness]]
14047 Accurate vertical deblocking filter
14048 @table @option
14049 @item difference
14050 Difference factor where higher values mean more deblocking (default: @code{32}).
14051 @item flatness
14052 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14053 @end table
14054 @end table
14055
14056 The horizontal and vertical deblocking filters share the difference and
14057 flatness values so you cannot set different horizontal and vertical
14058 thresholds.
14059
14060 @table @option
14061 @item h1/x1hdeblock
14062 Experimental horizontal deblocking filter
14063
14064 @item v1/x1vdeblock
14065 Experimental vertical deblocking filter
14066
14067 @item dr/dering
14068 Deringing filter
14069
14070 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14071 @table @option
14072 @item threshold1
14073 larger -> stronger filtering
14074 @item threshold2
14075 larger -> stronger filtering
14076 @item threshold3
14077 larger -> stronger filtering
14078 @end table
14079
14080 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
14081 @table @option
14082 @item f/fullyrange
14083 Stretch luminance to @code{0-255}.
14084 @end table
14085
14086 @item lb/linblenddeint
14087 Linear blend deinterlacing filter that deinterlaces the given block by
14088 filtering all lines with a @code{(1 2 1)} filter.
14089
14090 @item li/linipoldeint
14091 Linear interpolating deinterlacing filter that deinterlaces the given block by
14092 linearly interpolating every second line.
14093
14094 @item ci/cubicipoldeint
14095 Cubic interpolating deinterlacing filter deinterlaces the given block by
14096 cubically interpolating every second line.
14097
14098 @item md/mediandeint
14099 Median deinterlacing filter that deinterlaces the given block by applying a
14100 median filter to every second line.
14101
14102 @item fd/ffmpegdeint
14103 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
14104 second line with a @code{(-1 4 2 4 -1)} filter.
14105
14106 @item l5/lowpass5
14107 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
14108 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
14109
14110 @item fq/forceQuant[|quantizer]
14111 Overrides the quantizer table from the input with the constant quantizer you
14112 specify.
14113 @table @option
14114 @item quantizer
14115 Quantizer to use
14116 @end table
14117
14118 @item de/default
14119 Default pp filter combination (@code{hb|a,vb|a,dr|a})
14120
14121 @item fa/fast
14122 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
14123
14124 @item ac
14125 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
14126 @end table
14127
14128 @subsection Examples
14129
14130 @itemize
14131 @item
14132 Apply horizontal and vertical deblocking, deringing and automatic
14133 brightness/contrast:
14134 @example
14135 pp=hb/vb/dr/al
14136 @end example
14137
14138 @item
14139 Apply default filters without brightness/contrast correction:
14140 @example
14141 pp=de/-al
14142 @end example
14143
14144 @item
14145 Apply default filters and temporal denoiser:
14146 @example
14147 pp=default/tmpnoise|1|2|3
14148 @end example
14149
14150 @item
14151 Apply deblocking on luminance only, and switch vertical deblocking on or off
14152 automatically depending on available CPU time:
14153 @example
14154 pp=hb|y/vb|a
14155 @end example
14156 @end itemize
14157
14158 @section pp7
14159 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
14160 similar to spp = 6 with 7 point DCT, where only the center sample is
14161 used after IDCT.
14162
14163 The filter accepts the following options:
14164
14165 @table @option
14166 @item qp
14167 Force a constant quantization parameter. It accepts an integer in range
14168 0 to 63. If not set, the filter will use the QP from the video stream
14169 (if available).
14170
14171 @item mode
14172 Set thresholding mode. Available modes are:
14173
14174 @table @samp
14175 @item hard
14176 Set hard thresholding.
14177 @item soft
14178 Set soft thresholding (better de-ringing effect, but likely blurrier).
14179 @item medium
14180 Set medium thresholding (good results, default).
14181 @end table
14182 @end table
14183
14184 @section premultiply
14185 Apply alpha premultiply effect to input video stream using first plane
14186 of second stream as alpha.
14187
14188 Both streams must have same dimensions and same pixel format.
14189
14190 The filter accepts the following option:
14191
14192 @table @option
14193 @item planes
14194 Set which planes will be processed, unprocessed planes will be copied.
14195 By default value 0xf, all planes will be processed.
14196
14197 @item inplace
14198 Do not require 2nd input for processing, instead use alpha plane from input stream.
14199 @end table
14200
14201 @section prewitt
14202 Apply prewitt operator to input video stream.
14203
14204 The filter accepts the following option:
14205
14206 @table @option
14207 @item planes
14208 Set which planes will be processed, unprocessed planes will be copied.
14209 By default value 0xf, all planes will be processed.
14210
14211 @item scale
14212 Set value which will be multiplied with filtered result.
14213
14214 @item delta
14215 Set value which will be added to filtered result.
14216 @end table
14217
14218 @anchor{program_opencl}
14219 @section program_opencl
14220
14221 Filter video using an OpenCL program.
14222
14223 @table @option
14224
14225 @item source
14226 OpenCL program source file.
14227
14228 @item kernel
14229 Kernel name in program.
14230
14231 @item inputs
14232 Number of inputs to the filter.  Defaults to 1.
14233
14234 @item size, s
14235 Size of output frames.  Defaults to the same as the first input.
14236
14237 @end table
14238
14239 The program source file must contain a kernel function with the given name,
14240 which will be run once for each plane of the output.  Each run on a plane
14241 gets enqueued as a separate 2D global NDRange with one work-item for each
14242 pixel to be generated.  The global ID offset for each work-item is therefore
14243 the coordinates of a pixel in the destination image.
14244
14245 The kernel function needs to take the following arguments:
14246 @itemize
14247 @item
14248 Destination image, @var{__write_only image2d_t}.
14249
14250 This image will become the output; the kernel should write all of it.
14251 @item
14252 Frame index, @var{unsigned int}.
14253
14254 This is a counter starting from zero and increasing by one for each frame.
14255 @item
14256 Source images, @var{__read_only image2d_t}.
14257
14258 These are the most recent images on each input.  The kernel may read from
14259 them to generate the output, but they can't be written to.
14260 @end itemize
14261
14262 Example programs:
14263
14264 @itemize
14265 @item
14266 Copy the input to the output (output must be the same size as the input).
14267 @verbatim
14268 __kernel void copy(__write_only image2d_t destination,
14269                    unsigned int index,
14270                    __read_only  image2d_t source)
14271 {
14272     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
14273
14274     int2 location = (int2)(get_global_id(0), get_global_id(1));
14275
14276     float4 value = read_imagef(source, sampler, location);
14277
14278     write_imagef(destination, location, value);
14279 }
14280 @end verbatim
14281
14282 @item
14283 Apply a simple transformation, rotating the input by an amount increasing
14284 with the index counter.  Pixel values are linearly interpolated by the
14285 sampler, and the output need not have the same dimensions as the input.
14286 @verbatim
14287 __kernel void rotate_image(__write_only image2d_t dst,
14288                            unsigned int index,
14289                            __read_only  image2d_t src)
14290 {
14291     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14292                                CLK_FILTER_LINEAR);
14293
14294     float angle = (float)index / 100.0f;
14295
14296     float2 dst_dim = convert_float2(get_image_dim(dst));
14297     float2 src_dim = convert_float2(get_image_dim(src));
14298
14299     float2 dst_cen = dst_dim / 2.0f;
14300     float2 src_cen = src_dim / 2.0f;
14301
14302     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
14303
14304     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
14305     float2 src_pos = {
14306         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
14307         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
14308     };
14309     src_pos = src_pos * src_dim / dst_dim;
14310
14311     float2 src_loc = src_pos + src_cen;
14312
14313     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
14314         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
14315         write_imagef(dst, dst_loc, 0.5f);
14316     else
14317         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
14318 }
14319 @end verbatim
14320
14321 @item
14322 Blend two inputs together, with the amount of each input used varying
14323 with the index counter.
14324 @verbatim
14325 __kernel void blend_images(__write_only image2d_t dst,
14326                            unsigned int index,
14327                            __read_only  image2d_t src1,
14328                            __read_only  image2d_t src2)
14329 {
14330     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14331                                CLK_FILTER_LINEAR);
14332
14333     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
14334
14335     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
14336     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
14337     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
14338
14339     float4 val1 = read_imagef(src1, sampler, src1_loc);
14340     float4 val2 = read_imagef(src2, sampler, src2_loc);
14341
14342     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
14343 }
14344 @end verbatim
14345
14346 @end itemize
14347
14348 @section pseudocolor
14349
14350 Alter frame colors in video with pseudocolors.
14351
14352 This filter accept the following options:
14353
14354 @table @option
14355 @item c0
14356 set pixel first component expression
14357
14358 @item c1
14359 set pixel second component expression
14360
14361 @item c2
14362 set pixel third component expression
14363
14364 @item c3
14365 set pixel fourth component expression, corresponds to the alpha component
14366
14367 @item i
14368 set component to use as base for altering colors
14369 @end table
14370
14371 Each of them specifies the expression to use for computing the lookup table for
14372 the corresponding pixel component values.
14373
14374 The expressions can contain the following constants and functions:
14375
14376 @table @option
14377 @item w
14378 @item h
14379 The input width and height.
14380
14381 @item val
14382 The input value for the pixel component.
14383
14384 @item ymin, umin, vmin, amin
14385 The minimum allowed component value.
14386
14387 @item ymax, umax, vmax, amax
14388 The maximum allowed component value.
14389 @end table
14390
14391 All expressions default to "val".
14392
14393 @subsection Examples
14394
14395 @itemize
14396 @item
14397 Change too high luma values to gradient:
14398 @example
14399 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'"
14400 @end example
14401 @end itemize
14402
14403 @section psnr
14404
14405 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
14406 Ratio) between two input videos.
14407
14408 This filter takes in input two input videos, the first input is
14409 considered the "main" source and is passed unchanged to the
14410 output. The second input is used as a "reference" video for computing
14411 the PSNR.
14412
14413 Both video inputs must have the same resolution and pixel format for
14414 this filter to work correctly. Also it assumes that both inputs
14415 have the same number of frames, which are compared one by one.
14416
14417 The obtained average PSNR is printed through the logging system.
14418
14419 The filter stores the accumulated MSE (mean squared error) of each
14420 frame, and at the end of the processing it is averaged across all frames
14421 equally, and the following formula is applied to obtain the PSNR:
14422
14423 @example
14424 PSNR = 10*log10(MAX^2/MSE)
14425 @end example
14426
14427 Where MAX is the average of the maximum values of each component of the
14428 image.
14429
14430 The description of the accepted parameters follows.
14431
14432 @table @option
14433 @item stats_file, f
14434 If specified the filter will use the named file to save the PSNR of
14435 each individual frame. When filename equals "-" the data is sent to
14436 standard output.
14437
14438 @item stats_version
14439 Specifies which version of the stats file format to use. Details of
14440 each format are written below.
14441 Default value is 1.
14442
14443 @item stats_add_max
14444 Determines whether the max value is output to the stats log.
14445 Default value is 0.
14446 Requires stats_version >= 2. If this is set and stats_version < 2,
14447 the filter will return an error.
14448 @end table
14449
14450 This filter also supports the @ref{framesync} options.
14451
14452 The file printed if @var{stats_file} is selected, contains a sequence of
14453 key/value pairs of the form @var{key}:@var{value} for each compared
14454 couple of frames.
14455
14456 If a @var{stats_version} greater than 1 is specified, a header line precedes
14457 the list of per-frame-pair stats, with key value pairs following the frame
14458 format with the following parameters:
14459
14460 @table @option
14461 @item psnr_log_version
14462 The version of the log file format. Will match @var{stats_version}.
14463
14464 @item fields
14465 A comma separated list of the per-frame-pair parameters included in
14466 the log.
14467 @end table
14468
14469 A description of each shown per-frame-pair parameter follows:
14470
14471 @table @option
14472 @item n
14473 sequential number of the input frame, starting from 1
14474
14475 @item mse_avg
14476 Mean Square Error pixel-by-pixel average difference of the compared
14477 frames, averaged over all the image components.
14478
14479 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
14480 Mean Square Error pixel-by-pixel average difference of the compared
14481 frames for the component specified by the suffix.
14482
14483 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
14484 Peak Signal to Noise ratio of the compared frames for the component
14485 specified by the suffix.
14486
14487 @item max_avg, max_y, max_u, max_v
14488 Maximum allowed value for each channel, and average over all
14489 channels.
14490 @end table
14491
14492 For example:
14493 @example
14494 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14495 [main][ref] psnr="stats_file=stats.log" [out]
14496 @end example
14497
14498 On this example the input file being processed is compared with the
14499 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
14500 is stored in @file{stats.log}.
14501
14502 @anchor{pullup}
14503 @section pullup
14504
14505 Pulldown reversal (inverse telecine) filter, capable of handling mixed
14506 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
14507 content.
14508
14509 The pullup filter is designed to take advantage of future context in making
14510 its decisions. This filter is stateless in the sense that it does not lock
14511 onto a pattern to follow, but it instead looks forward to the following
14512 fields in order to identify matches and rebuild progressive frames.
14513
14514 To produce content with an even framerate, insert the fps filter after
14515 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
14516 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
14517
14518 The filter accepts the following options:
14519
14520 @table @option
14521 @item jl
14522 @item jr
14523 @item jt
14524 @item jb
14525 These options set the amount of "junk" to ignore at the left, right, top, and
14526 bottom of the image, respectively. Left and right are in units of 8 pixels,
14527 while top and bottom are in units of 2 lines.
14528 The default is 8 pixels on each side.
14529
14530 @item sb
14531 Set the strict breaks. Setting this option to 1 will reduce the chances of
14532 filter generating an occasional mismatched frame, but it may also cause an
14533 excessive number of frames to be dropped during high motion sequences.
14534 Conversely, setting it to -1 will make filter match fields more easily.
14535 This may help processing of video where there is slight blurring between
14536 the fields, but may also cause there to be interlaced frames in the output.
14537 Default value is @code{0}.
14538
14539 @item mp
14540 Set the metric plane to use. It accepts the following values:
14541 @table @samp
14542 @item l
14543 Use luma plane.
14544
14545 @item u
14546 Use chroma blue plane.
14547
14548 @item v
14549 Use chroma red plane.
14550 @end table
14551
14552 This option may be set to use chroma plane instead of the default luma plane
14553 for doing filter's computations. This may improve accuracy on very clean
14554 source material, but more likely will decrease accuracy, especially if there
14555 is chroma noise (rainbow effect) or any grayscale video.
14556 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
14557 load and make pullup usable in realtime on slow machines.
14558 @end table
14559
14560 For best results (without duplicated frames in the output file) it is
14561 necessary to change the output frame rate. For example, to inverse
14562 telecine NTSC input:
14563 @example
14564 ffmpeg -i input -vf pullup -r 24000/1001 ...
14565 @end example
14566
14567 @section qp
14568
14569 Change video quantization parameters (QP).
14570
14571 The filter accepts the following option:
14572
14573 @table @option
14574 @item qp
14575 Set expression for quantization parameter.
14576 @end table
14577
14578 The expression is evaluated through the eval API and can contain, among others,
14579 the following constants:
14580
14581 @table @var
14582 @item known
14583 1 if index is not 129, 0 otherwise.
14584
14585 @item qp
14586 Sequential index starting from -129 to 128.
14587 @end table
14588
14589 @subsection Examples
14590
14591 @itemize
14592 @item
14593 Some equation like:
14594 @example
14595 qp=2+2*sin(PI*qp)
14596 @end example
14597 @end itemize
14598
14599 @section random
14600
14601 Flush video frames from internal cache of frames into a random order.
14602 No frame is discarded.
14603 Inspired by @ref{frei0r} nervous filter.
14604
14605 @table @option
14606 @item frames
14607 Set size in number of frames of internal cache, in range from @code{2} to
14608 @code{512}. Default is @code{30}.
14609
14610 @item seed
14611 Set seed for random number generator, must be an integer included between
14612 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14613 less than @code{0}, the filter will try to use a good random seed on a
14614 best effort basis.
14615 @end table
14616
14617 @section readeia608
14618
14619 Read closed captioning (EIA-608) information from the top lines of a video frame.
14620
14621 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
14622 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
14623 with EIA-608 data (starting from 0). A description of each metadata value follows:
14624
14625 @table @option
14626 @item lavfi.readeia608.X.cc
14627 The two bytes stored as EIA-608 data (printed in hexadecimal).
14628
14629 @item lavfi.readeia608.X.line
14630 The number of the line on which the EIA-608 data was identified and read.
14631 @end table
14632
14633 This filter accepts the following options:
14634
14635 @table @option
14636 @item scan_min
14637 Set the line to start scanning for EIA-608 data. Default is @code{0}.
14638
14639 @item scan_max
14640 Set the line to end scanning for EIA-608 data. Default is @code{29}.
14641
14642 @item mac
14643 Set minimal acceptable amplitude change for sync codes detection.
14644 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
14645
14646 @item spw
14647 Set the ratio of width reserved for sync code detection.
14648 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
14649
14650 @item mhd
14651 Set the max peaks height difference for sync code detection.
14652 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14653
14654 @item mpd
14655 Set max peaks period difference for sync code detection.
14656 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14657
14658 @item msd
14659 Set the first two max start code bits differences.
14660 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
14661
14662 @item bhd
14663 Set the minimum ratio of bits height compared to 3rd start code bit.
14664 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
14665
14666 @item th_w
14667 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
14668
14669 @item th_b
14670 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
14671
14672 @item chp
14673 Enable checking the parity bit. In the event of a parity error, the filter will output
14674 @code{0x00} for that character. Default is false.
14675
14676 @item lp
14677 Lowpass lines prior further proccessing. Default is disabled.
14678 @end table
14679
14680 @subsection Examples
14681
14682 @itemize
14683 @item
14684 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
14685 @example
14686 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
14687 @end example
14688 @end itemize
14689
14690 @section readvitc
14691
14692 Read vertical interval timecode (VITC) information from the top lines of a
14693 video frame.
14694
14695 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
14696 timecode value, if a valid timecode has been detected. Further metadata key
14697 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
14698 timecode data has been found or not.
14699
14700 This filter accepts the following options:
14701
14702 @table @option
14703 @item scan_max
14704 Set the maximum number of lines to scan for VITC data. If the value is set to
14705 @code{-1} the full video frame is scanned. Default is @code{45}.
14706
14707 @item thr_b
14708 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
14709 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
14710
14711 @item thr_w
14712 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
14713 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
14714 @end table
14715
14716 @subsection Examples
14717
14718 @itemize
14719 @item
14720 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
14721 draw @code{--:--:--:--} as a placeholder:
14722 @example
14723 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
14724 @end example
14725 @end itemize
14726
14727 @section remap
14728
14729 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
14730
14731 Destination pixel at position (X, Y) will be picked from source (x, y) position
14732 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
14733 value for pixel will be used for destination pixel.
14734
14735 Xmap and Ymap input video streams must be of same dimensions. Output video stream
14736 will have Xmap/Ymap video stream dimensions.
14737 Xmap and Ymap input video streams are 16bit depth, single channel.
14738
14739 @section removegrain
14740
14741 The removegrain filter is a spatial denoiser for progressive video.
14742
14743 @table @option
14744 @item m0
14745 Set mode for the first plane.
14746
14747 @item m1
14748 Set mode for the second plane.
14749
14750 @item m2
14751 Set mode for the third plane.
14752
14753 @item m3
14754 Set mode for the fourth plane.
14755 @end table
14756
14757 Range of mode is from 0 to 24. Description of each mode follows:
14758
14759 @table @var
14760 @item 0
14761 Leave input plane unchanged. Default.
14762
14763 @item 1
14764 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
14765
14766 @item 2
14767 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
14768
14769 @item 3
14770 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
14771
14772 @item 4
14773 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
14774 This is equivalent to a median filter.
14775
14776 @item 5
14777 Line-sensitive clipping giving the minimal change.
14778
14779 @item 6
14780 Line-sensitive clipping, intermediate.
14781
14782 @item 7
14783 Line-sensitive clipping, intermediate.
14784
14785 @item 8
14786 Line-sensitive clipping, intermediate.
14787
14788 @item 9
14789 Line-sensitive clipping on a line where the neighbours pixels are the closest.
14790
14791 @item 10
14792 Replaces the target pixel with the closest neighbour.
14793
14794 @item 11
14795 [1 2 1] horizontal and vertical kernel blur.
14796
14797 @item 12
14798 Same as mode 11.
14799
14800 @item 13
14801 Bob mode, interpolates top field from the line where the neighbours
14802 pixels are the closest.
14803
14804 @item 14
14805 Bob mode, interpolates bottom field from the line where the neighbours
14806 pixels are the closest.
14807
14808 @item 15
14809 Bob mode, interpolates top field. Same as 13 but with a more complicated
14810 interpolation formula.
14811
14812 @item 16
14813 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
14814 interpolation formula.
14815
14816 @item 17
14817 Clips the pixel with the minimum and maximum of respectively the maximum and
14818 minimum of each pair of opposite neighbour pixels.
14819
14820 @item 18
14821 Line-sensitive clipping using opposite neighbours whose greatest distance from
14822 the current pixel is minimal.
14823
14824 @item 19
14825 Replaces the pixel with the average of its 8 neighbours.
14826
14827 @item 20
14828 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
14829
14830 @item 21
14831 Clips pixels using the averages of opposite neighbour.
14832
14833 @item 22
14834 Same as mode 21 but simpler and faster.
14835
14836 @item 23
14837 Small edge and halo removal, but reputed useless.
14838
14839 @item 24
14840 Similar as 23.
14841 @end table
14842
14843 @section removelogo
14844
14845 Suppress a TV station logo, using an image file to determine which
14846 pixels comprise the logo. It works by filling in the pixels that
14847 comprise the logo with neighboring pixels.
14848
14849 The filter accepts the following options:
14850
14851 @table @option
14852 @item filename, f
14853 Set the filter bitmap file, which can be any image format supported by
14854 libavformat. The width and height of the image file must match those of the
14855 video stream being processed.
14856 @end table
14857
14858 Pixels in the provided bitmap image with a value of zero are not
14859 considered part of the logo, non-zero pixels are considered part of
14860 the logo. If you use white (255) for the logo and black (0) for the
14861 rest, you will be safe. For making the filter bitmap, it is
14862 recommended to take a screen capture of a black frame with the logo
14863 visible, and then using a threshold filter followed by the erode
14864 filter once or twice.
14865
14866 If needed, little splotches can be fixed manually. Remember that if
14867 logo pixels are not covered, the filter quality will be much
14868 reduced. Marking too many pixels as part of the logo does not hurt as
14869 much, but it will increase the amount of blurring needed to cover over
14870 the image and will destroy more information than necessary, and extra
14871 pixels will slow things down on a large logo.
14872
14873 @section repeatfields
14874
14875 This filter uses the repeat_field flag from the Video ES headers and hard repeats
14876 fields based on its value.
14877
14878 @section reverse
14879
14880 Reverse a video clip.
14881
14882 Warning: This filter requires memory to buffer the entire clip, so trimming
14883 is suggested.
14884
14885 @subsection Examples
14886
14887 @itemize
14888 @item
14889 Take the first 5 seconds of a clip, and reverse it.
14890 @example
14891 trim=end=5,reverse
14892 @end example
14893 @end itemize
14894
14895 @section rgbashift
14896 Shift R/G/B/A pixels horizontally and/or vertically.
14897
14898 The filter accepts the following options:
14899 @table @option
14900 @item rh
14901 Set amount to shift red horizontally.
14902 @item rv
14903 Set amount to shift red vertically.
14904 @item gh
14905 Set amount to shift green horizontally.
14906 @item gv
14907 Set amount to shift green vertically.
14908 @item bh
14909 Set amount to shift blue horizontally.
14910 @item bv
14911 Set amount to shift blue vertically.
14912 @item ah
14913 Set amount to shift alpha horizontally.
14914 @item av
14915 Set amount to shift alpha vertically.
14916 @item edge
14917 Set edge mode, can be @var{smear}, default, or @var{warp}.
14918 @end table
14919
14920 @section roberts
14921 Apply roberts cross operator to input video stream.
14922
14923 The filter accepts the following option:
14924
14925 @table @option
14926 @item planes
14927 Set which planes will be processed, unprocessed planes will be copied.
14928 By default value 0xf, all planes will be processed.
14929
14930 @item scale
14931 Set value which will be multiplied with filtered result.
14932
14933 @item delta
14934 Set value which will be added to filtered result.
14935 @end table
14936
14937 @section rotate
14938
14939 Rotate video by an arbitrary angle expressed in radians.
14940
14941 The filter accepts the following options:
14942
14943 A description of the optional parameters follows.
14944 @table @option
14945 @item angle, a
14946 Set an expression for the angle by which to rotate the input video
14947 clockwise, expressed as a number of radians. A negative value will
14948 result in a counter-clockwise rotation. By default it is set to "0".
14949
14950 This expression is evaluated for each frame.
14951
14952 @item out_w, ow
14953 Set the output width expression, default value is "iw".
14954 This expression is evaluated just once during configuration.
14955
14956 @item out_h, oh
14957 Set the output height expression, default value is "ih".
14958 This expression is evaluated just once during configuration.
14959
14960 @item bilinear
14961 Enable bilinear interpolation if set to 1, a value of 0 disables
14962 it. Default value is 1.
14963
14964 @item fillcolor, c
14965 Set the color used to fill the output area not covered by the rotated
14966 image. For the general syntax of this option, check the
14967 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
14968 If the special value "none" is selected then no
14969 background is printed (useful for example if the background is never shown).
14970
14971 Default value is "black".
14972 @end table
14973
14974 The expressions for the angle and the output size can contain the
14975 following constants and functions:
14976
14977 @table @option
14978 @item n
14979 sequential number of the input frame, starting from 0. It is always NAN
14980 before the first frame is filtered.
14981
14982 @item t
14983 time in seconds of the input frame, it is set to 0 when the filter is
14984 configured. It is always NAN before the first frame is filtered.
14985
14986 @item hsub
14987 @item vsub
14988 horizontal and vertical chroma subsample values. For example for the
14989 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14990
14991 @item in_w, iw
14992 @item in_h, ih
14993 the input video width and height
14994
14995 @item out_w, ow
14996 @item out_h, oh
14997 the output width and height, that is the size of the padded area as
14998 specified by the @var{width} and @var{height} expressions
14999
15000 @item rotw(a)
15001 @item roth(a)
15002 the minimal width/height required for completely containing the input
15003 video rotated by @var{a} radians.
15004
15005 These are only available when computing the @option{out_w} and
15006 @option{out_h} expressions.
15007 @end table
15008
15009 @subsection Examples
15010
15011 @itemize
15012 @item
15013 Rotate the input by PI/6 radians clockwise:
15014 @example
15015 rotate=PI/6
15016 @end example
15017
15018 @item
15019 Rotate the input by PI/6 radians counter-clockwise:
15020 @example
15021 rotate=-PI/6
15022 @end example
15023
15024 @item
15025 Rotate the input by 45 degrees clockwise:
15026 @example
15027 rotate=45*PI/180
15028 @end example
15029
15030 @item
15031 Apply a constant rotation with period T, starting from an angle of PI/3:
15032 @example
15033 rotate=PI/3+2*PI*t/T
15034 @end example
15035
15036 @item
15037 Make the input video rotation oscillating with a period of T
15038 seconds and an amplitude of A radians:
15039 @example
15040 rotate=A*sin(2*PI/T*t)
15041 @end example
15042
15043 @item
15044 Rotate the video, output size is chosen so that the whole rotating
15045 input video is always completely contained in the output:
15046 @example
15047 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15048 @end example
15049
15050 @item
15051 Rotate the video, reduce the output size so that no background is ever
15052 shown:
15053 @example
15054 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15055 @end example
15056 @end itemize
15057
15058 @subsection Commands
15059
15060 The filter supports the following commands:
15061
15062 @table @option
15063 @item a, angle
15064 Set the angle expression.
15065 The command accepts the same syntax of the corresponding option.
15066
15067 If the specified expression is not valid, it is kept at its current
15068 value.
15069 @end table
15070
15071 @section sab
15072
15073 Apply Shape Adaptive Blur.
15074
15075 The filter accepts the following options:
15076
15077 @table @option
15078 @item luma_radius, lr
15079 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15080 value is 1.0. A greater value will result in a more blurred image, and
15081 in slower processing.
15082
15083 @item luma_pre_filter_radius, lpfr
15084 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15085 value is 1.0.
15086
15087 @item luma_strength, ls
15088 Set luma maximum difference between pixels to still be considered, must
15089 be a value in the 0.1-100.0 range, default value is 1.0.
15090
15091 @item chroma_radius, cr
15092 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15093 greater value will result in a more blurred image, and in slower
15094 processing.
15095
15096 @item chroma_pre_filter_radius, cpfr
15097 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15098
15099 @item chroma_strength, cs
15100 Set chroma maximum difference between pixels to still be considered,
15101 must be a value in the -0.9-100.0 range.
15102 @end table
15103
15104 Each chroma option value, if not explicitly specified, is set to the
15105 corresponding luma option value.
15106
15107 @anchor{scale}
15108 @section scale
15109
15110 Scale (resize) the input video, using the libswscale library.
15111
15112 The scale filter forces the output display aspect ratio to be the same
15113 of the input, by changing the output sample aspect ratio.
15114
15115 If the input image format is different from the format requested by
15116 the next filter, the scale filter will convert the input to the
15117 requested format.
15118
15119 @subsection Options
15120 The filter accepts the following options, or any of the options
15121 supported by the libswscale scaler.
15122
15123 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15124 the complete list of scaler options.
15125
15126 @table @option
15127 @item width, w
15128 @item height, h
15129 Set the output video dimension expression. Default value is the input
15130 dimension.
15131
15132 If the @var{width} or @var{w} value is 0, the input width is used for
15133 the output. If the @var{height} or @var{h} value is 0, the input height
15134 is used for the output.
15135
15136 If one and only one of the values is -n with n >= 1, the scale filter
15137 will use a value that maintains the aspect ratio of the input image,
15138 calculated from the other specified dimension. After that it will,
15139 however, make sure that the calculated dimension is divisible by n and
15140 adjust the value if necessary.
15141
15142 If both values are -n with n >= 1, the behavior will be identical to
15143 both values being set to 0 as previously detailed.
15144
15145 See below for the list of accepted constants for use in the dimension
15146 expression.
15147
15148 @item eval
15149 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15150
15151 @table @samp
15152 @item init
15153 Only evaluate expressions once during the filter initialization or when a command is processed.
15154
15155 @item frame
15156 Evaluate expressions for each incoming frame.
15157
15158 @end table
15159
15160 Default value is @samp{init}.
15161
15162
15163 @item interl
15164 Set the interlacing mode. It accepts the following values:
15165
15166 @table @samp
15167 @item 1
15168 Force interlaced aware scaling.
15169
15170 @item 0
15171 Do not apply interlaced scaling.
15172
15173 @item -1
15174 Select interlaced aware scaling depending on whether the source frames
15175 are flagged as interlaced or not.
15176 @end table
15177
15178 Default value is @samp{0}.
15179
15180 @item flags
15181 Set libswscale scaling flags. See
15182 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15183 complete list of values. If not explicitly specified the filter applies
15184 the default flags.
15185
15186
15187 @item param0, param1
15188 Set libswscale input parameters for scaling algorithms that need them. See
15189 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15190 complete documentation. If not explicitly specified the filter applies
15191 empty parameters.
15192
15193
15194
15195 @item size, s
15196 Set the video size. For the syntax of this option, check the
15197 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15198
15199 @item in_color_matrix
15200 @item out_color_matrix
15201 Set in/output YCbCr color space type.
15202
15203 This allows the autodetected value to be overridden as well as allows forcing
15204 a specific value used for the output and encoder.
15205
15206 If not specified, the color space type depends on the pixel format.
15207
15208 Possible values:
15209
15210 @table @samp
15211 @item auto
15212 Choose automatically.
15213
15214 @item bt709
15215 Format conforming to International Telecommunication Union (ITU)
15216 Recommendation BT.709.
15217
15218 @item fcc
15219 Set color space conforming to the United States Federal Communications
15220 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
15221
15222 @item bt601
15223 @item bt470
15224 @item smpte170m
15225 Set color space conforming to:
15226
15227 @itemize
15228 @item
15229 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
15230
15231 @item
15232 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
15233
15234 @item
15235 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
15236
15237 @end itemize
15238
15239 @item smpte240m
15240 Set color space conforming to SMPTE ST 240:1999.
15241
15242 @item bt2020
15243 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
15244 @end table
15245
15246 @item in_range
15247 @item out_range
15248 Set in/output YCbCr sample range.
15249
15250 This allows the autodetected value to be overridden as well as allows forcing
15251 a specific value used for the output and encoder. If not specified, the
15252 range depends on the pixel format. Possible values:
15253
15254 @table @samp
15255 @item auto/unknown
15256 Choose automatically.
15257
15258 @item jpeg/full/pc
15259 Set full range (0-255 in case of 8-bit luma).
15260
15261 @item mpeg/limited/tv
15262 Set "MPEG" range (16-235 in case of 8-bit luma).
15263 @end table
15264
15265 @item force_original_aspect_ratio
15266 Enable decreasing or increasing output video width or height if necessary to
15267 keep the original aspect ratio. Possible values:
15268
15269 @table @samp
15270 @item disable
15271 Scale the video as specified and disable this feature.
15272
15273 @item decrease
15274 The output video dimensions will automatically be decreased if needed.
15275
15276 @item increase
15277 The output video dimensions will automatically be increased if needed.
15278
15279 @end table
15280
15281 One useful instance of this option is that when you know a specific device's
15282 maximum allowed resolution, you can use this to limit the output video to
15283 that, while retaining the aspect ratio. For example, device A allows
15284 1280x720 playback, and your video is 1920x800. Using this option (set it to
15285 decrease) and specifying 1280x720 to the command line makes the output
15286 1280x533.
15287
15288 Please note that this is a different thing than specifying -1 for @option{w}
15289 or @option{h}, you still need to specify the output resolution for this option
15290 to work.
15291
15292 @end table
15293
15294 The values of the @option{w} and @option{h} options are expressions
15295 containing the following constants:
15296
15297 @table @var
15298 @item in_w
15299 @item in_h
15300 The input width and height
15301
15302 @item iw
15303 @item ih
15304 These are the same as @var{in_w} and @var{in_h}.
15305
15306 @item out_w
15307 @item out_h
15308 The output (scaled) width and height
15309
15310 @item ow
15311 @item oh
15312 These are the same as @var{out_w} and @var{out_h}
15313
15314 @item a
15315 The same as @var{iw} / @var{ih}
15316
15317 @item sar
15318 input sample aspect ratio
15319
15320 @item dar
15321 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15322
15323 @item hsub
15324 @item vsub
15325 horizontal and vertical input chroma subsample values. For example for the
15326 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15327
15328 @item ohsub
15329 @item ovsub
15330 horizontal and vertical output chroma subsample values. For example for the
15331 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15332 @end table
15333
15334 @subsection Examples
15335
15336 @itemize
15337 @item
15338 Scale the input video to a size of 200x100
15339 @example
15340 scale=w=200:h=100
15341 @end example
15342
15343 This is equivalent to:
15344 @example
15345 scale=200:100
15346 @end example
15347
15348 or:
15349 @example
15350 scale=200x100
15351 @end example
15352
15353 @item
15354 Specify a size abbreviation for the output size:
15355 @example
15356 scale=qcif
15357 @end example
15358
15359 which can also be written as:
15360 @example
15361 scale=size=qcif
15362 @end example
15363
15364 @item
15365 Scale the input to 2x:
15366 @example
15367 scale=w=2*iw:h=2*ih
15368 @end example
15369
15370 @item
15371 The above is the same as:
15372 @example
15373 scale=2*in_w:2*in_h
15374 @end example
15375
15376 @item
15377 Scale the input to 2x with forced interlaced scaling:
15378 @example
15379 scale=2*iw:2*ih:interl=1
15380 @end example
15381
15382 @item
15383 Scale the input to half size:
15384 @example
15385 scale=w=iw/2:h=ih/2
15386 @end example
15387
15388 @item
15389 Increase the width, and set the height to the same size:
15390 @example
15391 scale=3/2*iw:ow
15392 @end example
15393
15394 @item
15395 Seek Greek harmony:
15396 @example
15397 scale=iw:1/PHI*iw
15398 scale=ih*PHI:ih
15399 @end example
15400
15401 @item
15402 Increase the height, and set the width to 3/2 of the height:
15403 @example
15404 scale=w=3/2*oh:h=3/5*ih
15405 @end example
15406
15407 @item
15408 Increase the size, making the size a multiple of the chroma
15409 subsample values:
15410 @example
15411 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
15412 @end example
15413
15414 @item
15415 Increase the width to a maximum of 500 pixels,
15416 keeping the same aspect ratio as the input:
15417 @example
15418 scale=w='min(500\, iw*3/2):h=-1'
15419 @end example
15420
15421 @item
15422 Make pixels square by combining scale and setsar:
15423 @example
15424 scale='trunc(ih*dar):ih',setsar=1/1
15425 @end example
15426
15427 @item
15428 Make pixels square by combining scale and setsar,
15429 making sure the resulting resolution is even (required by some codecs):
15430 @example
15431 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
15432 @end example
15433 @end itemize
15434
15435 @subsection Commands
15436
15437 This filter supports the following commands:
15438 @table @option
15439 @item width, w
15440 @item height, h
15441 Set the output video dimension expression.
15442 The command accepts the same syntax of the corresponding option.
15443
15444 If the specified expression is not valid, it is kept at its current
15445 value.
15446 @end table
15447
15448 @section scale_npp
15449
15450 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
15451 format conversion on CUDA video frames. Setting the output width and height
15452 works in the same way as for the @var{scale} filter.
15453
15454 The following additional options are accepted:
15455 @table @option
15456 @item format
15457 The pixel format of the output CUDA frames. If set to the string "same" (the
15458 default), the input format will be kept. Note that automatic format negotiation
15459 and conversion is not yet supported for hardware frames
15460
15461 @item interp_algo
15462 The interpolation algorithm used for resizing. One of the following:
15463 @table @option
15464 @item nn
15465 Nearest neighbour.
15466
15467 @item linear
15468 @item cubic
15469 @item cubic2p_bspline
15470 2-parameter cubic (B=1, C=0)
15471
15472 @item cubic2p_catmullrom
15473 2-parameter cubic (B=0, C=1/2)
15474
15475 @item cubic2p_b05c03
15476 2-parameter cubic (B=1/2, C=3/10)
15477
15478 @item super
15479 Supersampling
15480
15481 @item lanczos
15482 @end table
15483
15484 @end table
15485
15486 @section scale2ref
15487
15488 Scale (resize) the input video, based on a reference video.
15489
15490 See the scale filter for available options, scale2ref supports the same but
15491 uses the reference video instead of the main input as basis. scale2ref also
15492 supports the following additional constants for the @option{w} and
15493 @option{h} options:
15494
15495 @table @var
15496 @item main_w
15497 @item main_h
15498 The main input video's width and height
15499
15500 @item main_a
15501 The same as @var{main_w} / @var{main_h}
15502
15503 @item main_sar
15504 The main input video's sample aspect ratio
15505
15506 @item main_dar, mdar
15507 The main input video's display aspect ratio. Calculated from
15508 @code{(main_w / main_h) * main_sar}.
15509
15510 @item main_hsub
15511 @item main_vsub
15512 The main input video's horizontal and vertical chroma subsample values.
15513 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
15514 is 1.
15515 @end table
15516
15517 @subsection Examples
15518
15519 @itemize
15520 @item
15521 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
15522 @example
15523 'scale2ref[b][a];[a][b]overlay'
15524 @end example
15525
15526 @item
15527 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
15528 @example
15529 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
15530 @end example
15531 @end itemize
15532
15533 @anchor{selectivecolor}
15534 @section selectivecolor
15535
15536 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
15537 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
15538 by the "purity" of the color (that is, how saturated it already is).
15539
15540 This filter is similar to the Adobe Photoshop Selective Color tool.
15541
15542 The filter accepts the following options:
15543
15544 @table @option
15545 @item correction_method
15546 Select color correction method.
15547
15548 Available values are:
15549 @table @samp
15550 @item absolute
15551 Specified adjustments are applied "as-is" (added/subtracted to original pixel
15552 component value).
15553 @item relative
15554 Specified adjustments are relative to the original component value.
15555 @end table
15556 Default is @code{absolute}.
15557 @item reds
15558 Adjustments for red pixels (pixels where the red component is the maximum)
15559 @item yellows
15560 Adjustments for yellow pixels (pixels where the blue component is the minimum)
15561 @item greens
15562 Adjustments for green pixels (pixels where the green component is the maximum)
15563 @item cyans
15564 Adjustments for cyan pixels (pixels where the red component is the minimum)
15565 @item blues
15566 Adjustments for blue pixels (pixels where the blue component is the maximum)
15567 @item magentas
15568 Adjustments for magenta pixels (pixels where the green component is the minimum)
15569 @item whites
15570 Adjustments for white pixels (pixels where all components are greater than 128)
15571 @item neutrals
15572 Adjustments for all pixels except pure black and pure white
15573 @item blacks
15574 Adjustments for black pixels (pixels where all components are lesser than 128)
15575 @item psfile
15576 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
15577 @end table
15578
15579 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
15580 4 space separated floating point adjustment values in the [-1,1] range,
15581 respectively to adjust the amount of cyan, magenta, yellow and black for the
15582 pixels of its range.
15583
15584 @subsection Examples
15585
15586 @itemize
15587 @item
15588 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
15589 increase magenta by 27% in blue areas:
15590 @example
15591 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
15592 @end example
15593
15594 @item
15595 Use a Photoshop selective color preset:
15596 @example
15597 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
15598 @end example
15599 @end itemize
15600
15601 @anchor{separatefields}
15602 @section separatefields
15603
15604 The @code{separatefields} takes a frame-based video input and splits
15605 each frame into its components fields, producing a new half height clip
15606 with twice the frame rate and twice the frame count.
15607
15608 This filter use field-dominance information in frame to decide which
15609 of each pair of fields to place first in the output.
15610 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
15611
15612 @section setdar, setsar
15613
15614 The @code{setdar} filter sets the Display Aspect Ratio for the filter
15615 output video.
15616
15617 This is done by changing the specified Sample (aka Pixel) Aspect
15618 Ratio, according to the following equation:
15619 @example
15620 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
15621 @end example
15622
15623 Keep in mind that the @code{setdar} filter does not modify the pixel
15624 dimensions of the video frame. Also, the display aspect ratio set by
15625 this filter may be changed by later filters in the filterchain,
15626 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
15627 applied.
15628
15629 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
15630 the filter output video.
15631
15632 Note that as a consequence of the application of this filter, the
15633 output display aspect ratio will change according to the equation
15634 above.
15635
15636 Keep in mind that the sample aspect ratio set by the @code{setsar}
15637 filter may be changed by later filters in the filterchain, e.g. if
15638 another "setsar" or a "setdar" filter is applied.
15639
15640 It accepts the following parameters:
15641
15642 @table @option
15643 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
15644 Set the aspect ratio used by the filter.
15645
15646 The parameter can be a floating point number string, an expression, or
15647 a string of the form @var{num}:@var{den}, where @var{num} and
15648 @var{den} are the numerator and denominator of the aspect ratio. If
15649 the parameter is not specified, it is assumed the value "0".
15650 In case the form "@var{num}:@var{den}" is used, the @code{:} character
15651 should be escaped.
15652
15653 @item max
15654 Set the maximum integer value to use for expressing numerator and
15655 denominator when reducing the expressed aspect ratio to a rational.
15656 Default value is @code{100}.
15657
15658 @end table
15659
15660 The parameter @var{sar} is an expression containing
15661 the following constants:
15662
15663 @table @option
15664 @item E, PI, PHI
15665 These are approximated values for the mathematical constants e
15666 (Euler's number), pi (Greek pi), and phi (the golden ratio).
15667
15668 @item w, h
15669 The input width and height.
15670
15671 @item a
15672 These are the same as @var{w} / @var{h}.
15673
15674 @item sar
15675 The input sample aspect ratio.
15676
15677 @item dar
15678 The input display aspect ratio. It is the same as
15679 (@var{w} / @var{h}) * @var{sar}.
15680
15681 @item hsub, vsub
15682 Horizontal and vertical chroma subsample values. For example, for the
15683 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15684 @end table
15685
15686 @subsection Examples
15687
15688 @itemize
15689
15690 @item
15691 To change the display aspect ratio to 16:9, specify one of the following:
15692 @example
15693 setdar=dar=1.77777
15694 setdar=dar=16/9
15695 @end example
15696
15697 @item
15698 To change the sample aspect ratio to 10:11, specify:
15699 @example
15700 setsar=sar=10/11
15701 @end example
15702
15703 @item
15704 To set a display aspect ratio of 16:9, and specify a maximum integer value of
15705 1000 in the aspect ratio reduction, use the command:
15706 @example
15707 setdar=ratio=16/9:max=1000
15708 @end example
15709
15710 @end itemize
15711
15712 @anchor{setfield}
15713 @section setfield
15714
15715 Force field for the output video frame.
15716
15717 The @code{setfield} filter marks the interlace type field for the
15718 output frames. It does not change the input frame, but only sets the
15719 corresponding property, which affects how the frame is treated by
15720 following filters (e.g. @code{fieldorder} or @code{yadif}).
15721
15722 The filter accepts the following options:
15723
15724 @table @option
15725
15726 @item mode
15727 Available values are:
15728
15729 @table @samp
15730 @item auto
15731 Keep the same field property.
15732
15733 @item bff
15734 Mark the frame as bottom-field-first.
15735
15736 @item tff
15737 Mark the frame as top-field-first.
15738
15739 @item prog
15740 Mark the frame as progressive.
15741 @end table
15742 @end table
15743
15744 @anchor{setparams}
15745 @section setparams
15746
15747 Force frame parameter for the output video frame.
15748
15749 The @code{setparams} filter marks interlace and color range for the
15750 output frames. It does not change the input frame, but only sets the
15751 corresponding property, which affects how the frame is treated by
15752 filters/encoders.
15753
15754 @table @option
15755 @item field_mode
15756 Available values are:
15757
15758 @table @samp
15759 @item auto
15760 Keep the same field property (default).
15761
15762 @item bff
15763 Mark the frame as bottom-field-first.
15764
15765 @item tff
15766 Mark the frame as top-field-first.
15767
15768 @item prog
15769 Mark the frame as progressive.
15770 @end table
15771
15772 @item range
15773 Available values are:
15774
15775 @table @samp
15776 @item auto
15777 Keep the same color range property (default).
15778
15779 @item unspecified, unknown
15780 Mark the frame as unspecified color range.
15781
15782 @item limited, tv, mpeg
15783 Mark the frame as limited range.
15784
15785 @item full, pc, jpeg
15786 Mark the frame as full range.
15787 @end table
15788
15789 @item color_primaries
15790 Set the color primaries.
15791 Available values are:
15792
15793 @table @samp
15794 @item auto
15795 Keep the same color primaries property (default).
15796
15797 @item bt709
15798 @item unknown
15799 @item bt470m
15800 @item bt470bg
15801 @item smpte170m
15802 @item smpte240m
15803 @item film
15804 @item bt2020
15805 @item smpte428
15806 @item smpte431
15807 @item smpte432
15808 @item jedec-p22
15809 @end table
15810
15811 @item color_trc
15812 Set the color transfer.
15813 Available values are:
15814
15815 @table @samp
15816 @item auto
15817 Keep the same color trc property (default).
15818
15819 @item bt709
15820 @item unknown
15821 @item bt470m
15822 @item bt470bg
15823 @item smpte170m
15824 @item smpte240m
15825 @item linear
15826 @item log100
15827 @item log316
15828 @item iec61966-2-4
15829 @item bt1361e
15830 @item iec61966-2-1
15831 @item bt2020-10
15832 @item bt2020-12
15833 @item smpte2084
15834 @item smpte428
15835 @item arib-std-b67
15836 @end table
15837
15838 @item colorspace
15839 Set the colorspace.
15840 Available values are:
15841
15842 @table @samp
15843 @item auto
15844 Keep the same colorspace property (default).
15845
15846 @item gbr
15847 @item bt709
15848 @item unknown
15849 @item fcc
15850 @item bt470bg
15851 @item smpte170m
15852 @item smpte240m
15853 @item ycgco
15854 @item bt2020nc
15855 @item bt2020c
15856 @item smpte2085
15857 @item chroma-derived-nc
15858 @item chroma-derived-c
15859 @item ictcp
15860 @end table
15861 @end table
15862
15863 @section showinfo
15864
15865 Show a line containing various information for each input video frame.
15866 The input video is not modified.
15867
15868 This filter supports the following options:
15869
15870 @table @option
15871 @item checksum
15872 Calculate checksums of each plane. By default enabled.
15873 @end table
15874
15875 The shown line contains a sequence of key/value pairs of the form
15876 @var{key}:@var{value}.
15877
15878 The following values are shown in the output:
15879
15880 @table @option
15881 @item n
15882 The (sequential) number of the input frame, starting from 0.
15883
15884 @item pts
15885 The Presentation TimeStamp of the input frame, expressed as a number of
15886 time base units. The time base unit depends on the filter input pad.
15887
15888 @item pts_time
15889 The Presentation TimeStamp of the input frame, expressed as a number of
15890 seconds.
15891
15892 @item pos
15893 The position of the frame in the input stream, or -1 if this information is
15894 unavailable and/or meaningless (for example in case of synthetic video).
15895
15896 @item fmt
15897 The pixel format name.
15898
15899 @item sar
15900 The sample aspect ratio of the input frame, expressed in the form
15901 @var{num}/@var{den}.
15902
15903 @item s
15904 The size of the input frame. For the syntax of this option, check the
15905 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15906
15907 @item i
15908 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
15909 for bottom field first).
15910
15911 @item iskey
15912 This is 1 if the frame is a key frame, 0 otherwise.
15913
15914 @item type
15915 The picture type of the input frame ("I" for an I-frame, "P" for a
15916 P-frame, "B" for a B-frame, or "?" for an unknown type).
15917 Also refer to the documentation of the @code{AVPictureType} enum and of
15918 the @code{av_get_picture_type_char} function defined in
15919 @file{libavutil/avutil.h}.
15920
15921 @item checksum
15922 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
15923
15924 @item plane_checksum
15925 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
15926 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
15927 @end table
15928
15929 @section showpalette
15930
15931 Displays the 256 colors palette of each frame. This filter is only relevant for
15932 @var{pal8} pixel format frames.
15933
15934 It accepts the following option:
15935
15936 @table @option
15937 @item s
15938 Set the size of the box used to represent one palette color entry. Default is
15939 @code{30} (for a @code{30x30} pixel box).
15940 @end table
15941
15942 @section shuffleframes
15943
15944 Reorder and/or duplicate and/or drop video frames.
15945
15946 It accepts the following parameters:
15947
15948 @table @option
15949 @item mapping
15950 Set the destination indexes of input frames.
15951 This is space or '|' separated list of indexes that maps input frames to output
15952 frames. Number of indexes also sets maximal value that each index may have.
15953 '-1' index have special meaning and that is to drop frame.
15954 @end table
15955
15956 The first frame has the index 0. The default is to keep the input unchanged.
15957
15958 @subsection Examples
15959
15960 @itemize
15961 @item
15962 Swap second and third frame of every three frames of the input:
15963 @example
15964 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
15965 @end example
15966
15967 @item
15968 Swap 10th and 1st frame of every ten frames of the input:
15969 @example
15970 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
15971 @end example
15972 @end itemize
15973
15974 @section shuffleplanes
15975
15976 Reorder and/or duplicate video planes.
15977
15978 It accepts the following parameters:
15979
15980 @table @option
15981
15982 @item map0
15983 The index of the input plane to be used as the first output plane.
15984
15985 @item map1
15986 The index of the input plane to be used as the second output plane.
15987
15988 @item map2
15989 The index of the input plane to be used as the third output plane.
15990
15991 @item map3
15992 The index of the input plane to be used as the fourth output plane.
15993
15994 @end table
15995
15996 The first plane has the index 0. The default is to keep the input unchanged.
15997
15998 @subsection Examples
15999
16000 @itemize
16001 @item
16002 Swap the second and third planes of the input:
16003 @example
16004 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16005 @end example
16006 @end itemize
16007
16008 @anchor{signalstats}
16009 @section signalstats
16010 Evaluate various visual metrics that assist in determining issues associated
16011 with the digitization of analog video media.
16012
16013 By default the filter will log these metadata values:
16014
16015 @table @option
16016 @item YMIN
16017 Display the minimal Y value contained within the input frame. Expressed in
16018 range of [0-255].
16019
16020 @item YLOW
16021 Display the Y value at the 10% percentile within the input frame. Expressed in
16022 range of [0-255].
16023
16024 @item YAVG
16025 Display the average Y value within the input frame. Expressed in range of
16026 [0-255].
16027
16028 @item YHIGH
16029 Display the Y value at the 90% percentile within the input frame. Expressed in
16030 range of [0-255].
16031
16032 @item YMAX
16033 Display the maximum Y value contained within the input frame. Expressed in
16034 range of [0-255].
16035
16036 @item UMIN
16037 Display the minimal U value contained within the input frame. Expressed in
16038 range of [0-255].
16039
16040 @item ULOW
16041 Display the U value at the 10% percentile within the input frame. Expressed in
16042 range of [0-255].
16043
16044 @item UAVG
16045 Display the average U value within the input frame. Expressed in range of
16046 [0-255].
16047
16048 @item UHIGH
16049 Display the U value at the 90% percentile within the input frame. Expressed in
16050 range of [0-255].
16051
16052 @item UMAX
16053 Display the maximum U value contained within the input frame. Expressed in
16054 range of [0-255].
16055
16056 @item VMIN
16057 Display the minimal V value contained within the input frame. Expressed in
16058 range of [0-255].
16059
16060 @item VLOW
16061 Display the V value at the 10% percentile within the input frame. Expressed in
16062 range of [0-255].
16063
16064 @item VAVG
16065 Display the average V value within the input frame. Expressed in range of
16066 [0-255].
16067
16068 @item VHIGH
16069 Display the V value at the 90% percentile within the input frame. Expressed in
16070 range of [0-255].
16071
16072 @item VMAX
16073 Display the maximum V value contained within the input frame. Expressed in
16074 range of [0-255].
16075
16076 @item SATMIN
16077 Display the minimal saturation value contained within the input frame.
16078 Expressed in range of [0-~181.02].
16079
16080 @item SATLOW
16081 Display the saturation value at the 10% percentile within the input frame.
16082 Expressed in range of [0-~181.02].
16083
16084 @item SATAVG
16085 Display the average saturation value within the input frame. Expressed in range
16086 of [0-~181.02].
16087
16088 @item SATHIGH
16089 Display the saturation value at the 90% percentile within the input frame.
16090 Expressed in range of [0-~181.02].
16091
16092 @item SATMAX
16093 Display the maximum saturation value contained within the input frame.
16094 Expressed in range of [0-~181.02].
16095
16096 @item HUEMED
16097 Display the median value for hue within the input frame. Expressed in range of
16098 [0-360].
16099
16100 @item HUEAVG
16101 Display the average value for hue within the input frame. Expressed in range of
16102 [0-360].
16103
16104 @item YDIF
16105 Display the average of sample value difference between all values of the Y
16106 plane in the current frame and corresponding values of the previous input frame.
16107 Expressed in range of [0-255].
16108
16109 @item UDIF
16110 Display the average of sample value difference between all values of the U
16111 plane in the current frame and corresponding values of the previous input frame.
16112 Expressed in range of [0-255].
16113
16114 @item VDIF
16115 Display the average of sample value difference between all values of the V
16116 plane in the current frame and corresponding values of the previous input frame.
16117 Expressed in range of [0-255].
16118
16119 @item YBITDEPTH
16120 Display bit depth of Y plane in current frame.
16121 Expressed in range of [0-16].
16122
16123 @item UBITDEPTH
16124 Display bit depth of U plane in current frame.
16125 Expressed in range of [0-16].
16126
16127 @item VBITDEPTH
16128 Display bit depth of V plane in current frame.
16129 Expressed in range of [0-16].
16130 @end table
16131
16132 The filter accepts the following options:
16133
16134 @table @option
16135 @item stat
16136 @item out
16137
16138 @option{stat} specify an additional form of image analysis.
16139 @option{out} output video with the specified type of pixel highlighted.
16140
16141 Both options accept the following values:
16142
16143 @table @samp
16144 @item tout
16145 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
16146 unlike the neighboring pixels of the same field. Examples of temporal outliers
16147 include the results of video dropouts, head clogs, or tape tracking issues.
16148
16149 @item vrep
16150 Identify @var{vertical line repetition}. Vertical line repetition includes
16151 similar rows of pixels within a frame. In born-digital video vertical line
16152 repetition is common, but this pattern is uncommon in video digitized from an
16153 analog source. When it occurs in video that results from the digitization of an
16154 analog source it can indicate concealment from a dropout compensator.
16155
16156 @item brng
16157 Identify pixels that fall outside of legal broadcast range.
16158 @end table
16159
16160 @item color, c
16161 Set the highlight color for the @option{out} option. The default color is
16162 yellow.
16163 @end table
16164
16165 @subsection Examples
16166
16167 @itemize
16168 @item
16169 Output data of various video metrics:
16170 @example
16171 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
16172 @end example
16173
16174 @item
16175 Output specific data about the minimum and maximum values of the Y plane per frame:
16176 @example
16177 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
16178 @end example
16179
16180 @item
16181 Playback video while highlighting pixels that are outside of broadcast range in red.
16182 @example
16183 ffplay example.mov -vf signalstats="out=brng:color=red"
16184 @end example
16185
16186 @item
16187 Playback video with signalstats metadata drawn over the frame.
16188 @example
16189 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
16190 @end example
16191
16192 The contents of signalstat_drawtext.txt used in the command are:
16193 @example
16194 time %@{pts:hms@}
16195 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
16196 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
16197 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
16198 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
16199
16200 @end example
16201 @end itemize
16202
16203 @anchor{signature}
16204 @section signature
16205
16206 Calculates the MPEG-7 Video Signature. The filter can handle more than one
16207 input. In this case the matching between the inputs can be calculated additionally.
16208 The filter always passes through the first input. The signature of each stream can
16209 be written into a file.
16210
16211 It accepts the following options:
16212
16213 @table @option
16214 @item detectmode
16215 Enable or disable the matching process.
16216
16217 Available values are:
16218
16219 @table @samp
16220 @item off
16221 Disable the calculation of a matching (default).
16222 @item full
16223 Calculate the matching for the whole video and output whether the whole video
16224 matches or only parts.
16225 @item fast
16226 Calculate only until a matching is found or the video ends. Should be faster in
16227 some cases.
16228 @end table
16229
16230 @item nb_inputs
16231 Set the number of inputs. The option value must be a non negative integer.
16232 Default value is 1.
16233
16234 @item filename
16235 Set the path to which the output is written. If there is more than one input,
16236 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
16237 integer), that will be replaced with the input number. If no filename is
16238 specified, no output will be written. This is the default.
16239
16240 @item format
16241 Choose the output format.
16242
16243 Available values are:
16244
16245 @table @samp
16246 @item binary
16247 Use the specified binary representation (default).
16248 @item xml
16249 Use the specified xml representation.
16250 @end table
16251
16252 @item th_d
16253 Set threshold to detect one word as similar. The option value must be an integer
16254 greater than zero. The default value is 9000.
16255
16256 @item th_dc
16257 Set threshold to detect all words as similar. The option value must be an integer
16258 greater than zero. The default value is 60000.
16259
16260 @item th_xh
16261 Set threshold to detect frames as similar. The option value must be an integer
16262 greater than zero. The default value is 116.
16263
16264 @item th_di
16265 Set the minimum length of a sequence in frames to recognize it as matching
16266 sequence. The option value must be a non negative integer value.
16267 The default value is 0.
16268
16269 @item th_it
16270 Set the minimum relation, that matching frames to all frames must have.
16271 The option value must be a double value between 0 and 1. The default value is 0.5.
16272 @end table
16273
16274 @subsection Examples
16275
16276 @itemize
16277 @item
16278 To calculate the signature of an input video and store it in signature.bin:
16279 @example
16280 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
16281 @end example
16282
16283 @item
16284 To detect whether two videos match and store the signatures in XML format in
16285 signature0.xml and signature1.xml:
16286 @example
16287 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 -
16288 @end example
16289
16290 @end itemize
16291
16292 @anchor{smartblur}
16293 @section smartblur
16294
16295 Blur the input video without impacting the outlines.
16296
16297 It accepts the following options:
16298
16299 @table @option
16300 @item luma_radius, lr
16301 Set the luma radius. The option value must be a float number in
16302 the range [0.1,5.0] that specifies the variance of the gaussian filter
16303 used to blur the image (slower if larger). Default value is 1.0.
16304
16305 @item luma_strength, ls
16306 Set the luma strength. The option value must be a float number
16307 in the range [-1.0,1.0] that configures the blurring. A value included
16308 in [0.0,1.0] will blur the image whereas a value included in
16309 [-1.0,0.0] will sharpen the image. Default value is 1.0.
16310
16311 @item luma_threshold, lt
16312 Set the luma threshold used as a coefficient to determine
16313 whether a pixel should be blurred or not. The option value must be an
16314 integer in the range [-30,30]. A value of 0 will filter all the image,
16315 a value included in [0,30] will filter flat areas and a value included
16316 in [-30,0] will filter edges. Default value is 0.
16317
16318 @item chroma_radius, cr
16319 Set the chroma radius. The option value must be a float number in
16320 the range [0.1,5.0] that specifies the variance of the gaussian filter
16321 used to blur the image (slower if larger). Default value is @option{luma_radius}.
16322
16323 @item chroma_strength, cs
16324 Set the chroma strength. The option value must be a float number
16325 in the range [-1.0,1.0] that configures the blurring. A value included
16326 in [0.0,1.0] will blur the image whereas a value included in
16327 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
16328
16329 @item chroma_threshold, ct
16330 Set the chroma threshold used as a coefficient to determine
16331 whether a pixel should be blurred or not. The option value must be an
16332 integer in the range [-30,30]. A value of 0 will filter all the image,
16333 a value included in [0,30] will filter flat areas and a value included
16334 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
16335 @end table
16336
16337 If a chroma option is not explicitly set, the corresponding luma value
16338 is set.
16339
16340 @section ssim
16341
16342 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
16343
16344 This filter takes in input two input videos, the first input is
16345 considered the "main" source and is passed unchanged to the
16346 output. The second input is used as a "reference" video for computing
16347 the SSIM.
16348
16349 Both video inputs must have the same resolution and pixel format for
16350 this filter to work correctly. Also it assumes that both inputs
16351 have the same number of frames, which are compared one by one.
16352
16353 The filter stores the calculated SSIM of each frame.
16354
16355 The description of the accepted parameters follows.
16356
16357 @table @option
16358 @item stats_file, f
16359 If specified the filter will use the named file to save the SSIM of
16360 each individual frame. When filename equals "-" the data is sent to
16361 standard output.
16362 @end table
16363
16364 The file printed if @var{stats_file} is selected, contains a sequence of
16365 key/value pairs of the form @var{key}:@var{value} for each compared
16366 couple of frames.
16367
16368 A description of each shown parameter follows:
16369
16370 @table @option
16371 @item n
16372 sequential number of the input frame, starting from 1
16373
16374 @item Y, U, V, R, G, B
16375 SSIM of the compared frames for the component specified by the suffix.
16376
16377 @item All
16378 SSIM of the compared frames for the whole frame.
16379
16380 @item dB
16381 Same as above but in dB representation.
16382 @end table
16383
16384 This filter also supports the @ref{framesync} options.
16385
16386 For example:
16387 @example
16388 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16389 [main][ref] ssim="stats_file=stats.log" [out]
16390 @end example
16391
16392 On this example the input file being processed is compared with the
16393 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
16394 is stored in @file{stats.log}.
16395
16396 Another example with both psnr and ssim at same time:
16397 @example
16398 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
16399 @end example
16400
16401 @section stereo3d
16402
16403 Convert between different stereoscopic image formats.
16404
16405 The filters accept the following options:
16406
16407 @table @option
16408 @item in
16409 Set stereoscopic image format of input.
16410
16411 Available values for input image formats are:
16412 @table @samp
16413 @item sbsl
16414 side by side parallel (left eye left, right eye right)
16415
16416 @item sbsr
16417 side by side crosseye (right eye left, left eye right)
16418
16419 @item sbs2l
16420 side by side parallel with half width resolution
16421 (left eye left, right eye right)
16422
16423 @item sbs2r
16424 side by side crosseye with half width resolution
16425 (right eye left, left eye right)
16426
16427 @item abl
16428 above-below (left eye above, right eye below)
16429
16430 @item abr
16431 above-below (right eye above, left eye below)
16432
16433 @item ab2l
16434 above-below with half height resolution
16435 (left eye above, right eye below)
16436
16437 @item ab2r
16438 above-below with half height resolution
16439 (right eye above, left eye below)
16440
16441 @item al
16442 alternating frames (left eye first, right eye second)
16443
16444 @item ar
16445 alternating frames (right eye first, left eye second)
16446
16447 @item irl
16448 interleaved rows (left eye has top row, right eye starts on next row)
16449
16450 @item irr
16451 interleaved rows (right eye has top row, left eye starts on next row)
16452
16453 @item icl
16454 interleaved columns, left eye first
16455
16456 @item icr
16457 interleaved columns, right eye first
16458
16459 Default value is @samp{sbsl}.
16460 @end table
16461
16462 @item out
16463 Set stereoscopic image format of output.
16464
16465 @table @samp
16466 @item sbsl
16467 side by side parallel (left eye left, right eye right)
16468
16469 @item sbsr
16470 side by side crosseye (right eye left, left eye right)
16471
16472 @item sbs2l
16473 side by side parallel with half width resolution
16474 (left eye left, right eye right)
16475
16476 @item sbs2r
16477 side by side crosseye with half width resolution
16478 (right eye left, left eye right)
16479
16480 @item abl
16481 above-below (left eye above, right eye below)
16482
16483 @item abr
16484 above-below (right eye above, left eye below)
16485
16486 @item ab2l
16487 above-below with half height resolution
16488 (left eye above, right eye below)
16489
16490 @item ab2r
16491 above-below with half height resolution
16492 (right eye above, left eye below)
16493
16494 @item al
16495 alternating frames (left eye first, right eye second)
16496
16497 @item ar
16498 alternating frames (right eye first, left eye second)
16499
16500 @item irl
16501 interleaved rows (left eye has top row, right eye starts on next row)
16502
16503 @item irr
16504 interleaved rows (right eye has top row, left eye starts on next row)
16505
16506 @item arbg
16507 anaglyph red/blue gray
16508 (red filter on left eye, blue filter on right eye)
16509
16510 @item argg
16511 anaglyph red/green gray
16512 (red filter on left eye, green filter on right eye)
16513
16514 @item arcg
16515 anaglyph red/cyan gray
16516 (red filter on left eye, cyan filter on right eye)
16517
16518 @item arch
16519 anaglyph red/cyan half colored
16520 (red filter on left eye, cyan filter on right eye)
16521
16522 @item arcc
16523 anaglyph red/cyan color
16524 (red filter on left eye, cyan filter on right eye)
16525
16526 @item arcd
16527 anaglyph red/cyan color optimized with the least squares projection of dubois
16528 (red filter on left eye, cyan filter on right eye)
16529
16530 @item agmg
16531 anaglyph green/magenta gray
16532 (green filter on left eye, magenta filter on right eye)
16533
16534 @item agmh
16535 anaglyph green/magenta half colored
16536 (green filter on left eye, magenta filter on right eye)
16537
16538 @item agmc
16539 anaglyph green/magenta colored
16540 (green filter on left eye, magenta filter on right eye)
16541
16542 @item agmd
16543 anaglyph green/magenta color optimized with the least squares projection of dubois
16544 (green filter on left eye, magenta filter on right eye)
16545
16546 @item aybg
16547 anaglyph yellow/blue gray
16548 (yellow filter on left eye, blue filter on right eye)
16549
16550 @item aybh
16551 anaglyph yellow/blue half colored
16552 (yellow filter on left eye, blue filter on right eye)
16553
16554 @item aybc
16555 anaglyph yellow/blue colored
16556 (yellow filter on left eye, blue filter on right eye)
16557
16558 @item aybd
16559 anaglyph yellow/blue color optimized with the least squares projection of dubois
16560 (yellow filter on left eye, blue filter on right eye)
16561
16562 @item ml
16563 mono output (left eye only)
16564
16565 @item mr
16566 mono output (right eye only)
16567
16568 @item chl
16569 checkerboard, left eye first
16570
16571 @item chr
16572 checkerboard, right eye first
16573
16574 @item icl
16575 interleaved columns, left eye first
16576
16577 @item icr
16578 interleaved columns, right eye first
16579
16580 @item hdmi
16581 HDMI frame pack
16582 @end table
16583
16584 Default value is @samp{arcd}.
16585 @end table
16586
16587 @subsection Examples
16588
16589 @itemize
16590 @item
16591 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
16592 @example
16593 stereo3d=sbsl:aybd
16594 @end example
16595
16596 @item
16597 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
16598 @example
16599 stereo3d=abl:sbsr
16600 @end example
16601 @end itemize
16602
16603 @section streamselect, astreamselect
16604 Select video or audio streams.
16605
16606 The filter accepts the following options:
16607
16608 @table @option
16609 @item inputs
16610 Set number of inputs. Default is 2.
16611
16612 @item map
16613 Set input indexes to remap to outputs.
16614 @end table
16615
16616 @subsection Commands
16617
16618 The @code{streamselect} and @code{astreamselect} filter supports the following
16619 commands:
16620
16621 @table @option
16622 @item map
16623 Set input indexes to remap to outputs.
16624 @end table
16625
16626 @subsection Examples
16627
16628 @itemize
16629 @item
16630 Select first 5 seconds 1st stream and rest of time 2nd stream:
16631 @example
16632 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
16633 @end example
16634
16635 @item
16636 Same as above, but for audio:
16637 @example
16638 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
16639 @end example
16640 @end itemize
16641
16642 @section sobel
16643 Apply sobel operator to input video stream.
16644
16645 The filter accepts the following option:
16646
16647 @table @option
16648 @item planes
16649 Set which planes will be processed, unprocessed planes will be copied.
16650 By default value 0xf, all planes will be processed.
16651
16652 @item scale
16653 Set value which will be multiplied with filtered result.
16654
16655 @item delta
16656 Set value which will be added to filtered result.
16657 @end table
16658
16659 @anchor{spp}
16660 @section spp
16661
16662 Apply a simple postprocessing filter that compresses and decompresses the image
16663 at several (or - in the case of @option{quality} level @code{6} - all) shifts
16664 and average the results.
16665
16666 The filter accepts the following options:
16667
16668 @table @option
16669 @item quality
16670 Set quality. This option defines the number of levels for averaging. It accepts
16671 an integer in the range 0-6. If set to @code{0}, the filter will have no
16672 effect. A value of @code{6} means the higher quality. For each increment of
16673 that value the speed drops by a factor of approximately 2.  Default value is
16674 @code{3}.
16675
16676 @item qp
16677 Force a constant quantization parameter. If not set, the filter will use the QP
16678 from the video stream (if available).
16679
16680 @item mode
16681 Set thresholding mode. Available modes are:
16682
16683 @table @samp
16684 @item hard
16685 Set hard thresholding (default).
16686 @item soft
16687 Set soft thresholding (better de-ringing effect, but likely blurrier).
16688 @end table
16689
16690 @item use_bframe_qp
16691 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
16692 option may cause flicker since the B-Frames have often larger QP. Default is
16693 @code{0} (not enabled).
16694 @end table
16695
16696 @section sr
16697
16698 Scale the input by applying one of the super-resolution methods based on
16699 convolutional neural networks. Supported models:
16700
16701 @itemize
16702 @item
16703 Super-Resolution Convolutional Neural Network model (SRCNN).
16704 See @url{https://arxiv.org/abs/1501.00092}.
16705
16706 @item
16707 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
16708 See @url{https://arxiv.org/abs/1609.05158}.
16709 @end itemize
16710
16711 Training scripts as well as scripts for model file (.pb) saving can be found at
16712 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
16713 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
16714
16715 Native model files (.model) can be generated from TensorFlow model
16716 files (.pb) by using tools/python/convert.py
16717
16718 The filter accepts the following options:
16719
16720 @table @option
16721 @item dnn_backend
16722 Specify which DNN backend to use for model loading and execution. This option accepts
16723 the following values:
16724
16725 @table @samp
16726 @item native
16727 Native implementation of DNN loading and execution.
16728
16729 @item tensorflow
16730 TensorFlow backend. To enable this backend you
16731 need to install the TensorFlow for C library (see
16732 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
16733 @code{--enable-libtensorflow}
16734 @end table
16735
16736 Default value is @samp{native}.
16737
16738 @item model
16739 Set path to model file specifying network architecture and its parameters.
16740 Note that different backends use different file formats. TensorFlow backend
16741 can load files for both formats, while native backend can load files for only
16742 its format.
16743
16744 @item scale_factor
16745 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
16746 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
16747 input upscaled using bicubic upscaling with proper scale factor.
16748 @end table
16749
16750 @anchor{subtitles}
16751 @section subtitles
16752
16753 Draw subtitles on top of input video using the libass library.
16754
16755 To enable compilation of this filter you need to configure FFmpeg with
16756 @code{--enable-libass}. This filter also requires a build with libavcodec and
16757 libavformat to convert the passed subtitles file to ASS (Advanced Substation
16758 Alpha) subtitles format.
16759
16760 The filter accepts the following options:
16761
16762 @table @option
16763 @item filename, f
16764 Set the filename of the subtitle file to read. It must be specified.
16765
16766 @item original_size
16767 Specify the size of the original video, the video for which the ASS file
16768 was composed. For the syntax of this option, check the
16769 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16770 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
16771 correctly scale the fonts if the aspect ratio has been changed.
16772
16773 @item fontsdir
16774 Set a directory path containing fonts that can be used by the filter.
16775 These fonts will be used in addition to whatever the font provider uses.
16776
16777 @item alpha
16778 Process alpha channel, by default alpha channel is untouched.
16779
16780 @item charenc
16781 Set subtitles input character encoding. @code{subtitles} filter only. Only
16782 useful if not UTF-8.
16783
16784 @item stream_index, si
16785 Set subtitles stream index. @code{subtitles} filter only.
16786
16787 @item force_style
16788 Override default style or script info parameters of the subtitles. It accepts a
16789 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
16790 @end table
16791
16792 If the first key is not specified, it is assumed that the first value
16793 specifies the @option{filename}.
16794
16795 For example, to render the file @file{sub.srt} on top of the input
16796 video, use the command:
16797 @example
16798 subtitles=sub.srt
16799 @end example
16800
16801 which is equivalent to:
16802 @example
16803 subtitles=filename=sub.srt
16804 @end example
16805
16806 To render the default subtitles stream from file @file{video.mkv}, use:
16807 @example
16808 subtitles=video.mkv
16809 @end example
16810
16811 To render the second subtitles stream from that file, use:
16812 @example
16813 subtitles=video.mkv:si=1
16814 @end example
16815
16816 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
16817 @code{DejaVu Serif}, use:
16818 @example
16819 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
16820 @end example
16821
16822 @section super2xsai
16823
16824 Scale the input by 2x and smooth using the Super2xSaI (Scale and
16825 Interpolate) pixel art scaling algorithm.
16826
16827 Useful for enlarging pixel art images without reducing sharpness.
16828
16829 @section swaprect
16830
16831 Swap two rectangular objects in video.
16832
16833 This filter accepts the following options:
16834
16835 @table @option
16836 @item w
16837 Set object width.
16838
16839 @item h
16840 Set object height.
16841
16842 @item x1
16843 Set 1st rect x coordinate.
16844
16845 @item y1
16846 Set 1st rect y coordinate.
16847
16848 @item x2
16849 Set 2nd rect x coordinate.
16850
16851 @item y2
16852 Set 2nd rect y coordinate.
16853
16854 All expressions are evaluated once for each frame.
16855 @end table
16856
16857 The all options are expressions containing the following constants:
16858
16859 @table @option
16860 @item w
16861 @item h
16862 The input width and height.
16863
16864 @item a
16865 same as @var{w} / @var{h}
16866
16867 @item sar
16868 input sample aspect ratio
16869
16870 @item dar
16871 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
16872
16873 @item n
16874 The number of the input frame, starting from 0.
16875
16876 @item t
16877 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
16878
16879 @item pos
16880 the position in the file of the input frame, NAN if unknown
16881 @end table
16882
16883 @section swapuv
16884 Swap U & V plane.
16885
16886 @section telecine
16887
16888 Apply telecine process to the video.
16889
16890 This filter accepts the following options:
16891
16892 @table @option
16893 @item first_field
16894 @table @samp
16895 @item top, t
16896 top field first
16897 @item bottom, b
16898 bottom field first
16899 The default value is @code{top}.
16900 @end table
16901
16902 @item pattern
16903 A string of numbers representing the pulldown pattern you wish to apply.
16904 The default value is @code{23}.
16905 @end table
16906
16907 @example
16908 Some typical patterns:
16909
16910 NTSC output (30i):
16911 27.5p: 32222
16912 24p: 23 (classic)
16913 24p: 2332 (preferred)
16914 20p: 33
16915 18p: 334
16916 16p: 3444
16917
16918 PAL output (25i):
16919 27.5p: 12222
16920 24p: 222222222223 ("Euro pulldown")
16921 16.67p: 33
16922 16p: 33333334
16923 @end example
16924
16925 @section threshold
16926
16927 Apply threshold effect to video stream.
16928
16929 This filter needs four video streams to perform thresholding.
16930 First stream is stream we are filtering.
16931 Second stream is holding threshold values, third stream is holding min values,
16932 and last, fourth stream is holding max values.
16933
16934 The filter accepts the following option:
16935
16936 @table @option
16937 @item planes
16938 Set which planes will be processed, unprocessed planes will be copied.
16939 By default value 0xf, all planes will be processed.
16940 @end table
16941
16942 For example if first stream pixel's component value is less then threshold value
16943 of pixel component from 2nd threshold stream, third stream value will picked,
16944 otherwise fourth stream pixel component value will be picked.
16945
16946 Using color source filter one can perform various types of thresholding:
16947
16948 @subsection Examples
16949
16950 @itemize
16951 @item
16952 Binary threshold, using gray color as threshold:
16953 @example
16954 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
16955 @end example
16956
16957 @item
16958 Inverted binary threshold, using gray color as threshold:
16959 @example
16960 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
16961 @end example
16962
16963 @item
16964 Truncate binary threshold, using gray color as threshold:
16965 @example
16966 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
16967 @end example
16968
16969 @item
16970 Threshold to zero, using gray color as threshold:
16971 @example
16972 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
16973 @end example
16974
16975 @item
16976 Inverted threshold to zero, using gray color as threshold:
16977 @example
16978 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
16979 @end example
16980 @end itemize
16981
16982 @section thumbnail
16983 Select the most representative frame in a given sequence of consecutive frames.
16984
16985 The filter accepts the following options:
16986
16987 @table @option
16988 @item n
16989 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
16990 will pick one of them, and then handle the next batch of @var{n} frames until
16991 the end. Default is @code{100}.
16992 @end table
16993
16994 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
16995 value will result in a higher memory usage, so a high value is not recommended.
16996
16997 @subsection Examples
16998
16999 @itemize
17000 @item
17001 Extract one picture each 50 frames:
17002 @example
17003 thumbnail=50
17004 @end example
17005
17006 @item
17007 Complete example of a thumbnail creation with @command{ffmpeg}:
17008 @example
17009 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
17010 @end example
17011 @end itemize
17012
17013 @section tile
17014
17015 Tile several successive frames together.
17016
17017 The filter accepts the following options:
17018
17019 @table @option
17020
17021 @item layout
17022 Set the grid size (i.e. the number of lines and columns). For the syntax of
17023 this option, check the
17024 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17025
17026 @item nb_frames
17027 Set the maximum number of frames to render in the given area. It must be less
17028 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
17029 the area will be used.
17030
17031 @item margin
17032 Set the outer border margin in pixels.
17033
17034 @item padding
17035 Set the inner border thickness (i.e. the number of pixels between frames). For
17036 more advanced padding options (such as having different values for the edges),
17037 refer to the pad video filter.
17038
17039 @item color
17040 Specify the color of the unused area. For the syntax of this option, check the
17041 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17042 The default value of @var{color} is "black".
17043
17044 @item overlap
17045 Set the number of frames to overlap when tiling several successive frames together.
17046 The value must be between @code{0} and @var{nb_frames - 1}.
17047
17048 @item init_padding
17049 Set the number of frames to initially be empty before displaying first output frame.
17050 This controls how soon will one get first output frame.
17051 The value must be between @code{0} and @var{nb_frames - 1}.
17052 @end table
17053
17054 @subsection Examples
17055
17056 @itemize
17057 @item
17058 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
17059 @example
17060 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
17061 @end example
17062 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
17063 duplicating each output frame to accommodate the originally detected frame
17064 rate.
17065
17066 @item
17067 Display @code{5} pictures in an area of @code{3x2} frames,
17068 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
17069 mixed flat and named options:
17070 @example
17071 tile=3x2:nb_frames=5:padding=7:margin=2
17072 @end example
17073 @end itemize
17074
17075 @section tinterlace
17076
17077 Perform various types of temporal field interlacing.
17078
17079 Frames are counted starting from 1, so the first input frame is
17080 considered odd.
17081
17082 The filter accepts the following options:
17083
17084 @table @option
17085
17086 @item mode
17087 Specify the mode of the interlacing. This option can also be specified
17088 as a value alone. See below for a list of values for this option.
17089
17090 Available values are:
17091
17092 @table @samp
17093 @item merge, 0
17094 Move odd frames into the upper field, even into the lower field,
17095 generating a double height frame at half frame rate.
17096 @example
17097  ------> time
17098 Input:
17099 Frame 1         Frame 2         Frame 3         Frame 4
17100
17101 11111           22222           33333           44444
17102 11111           22222           33333           44444
17103 11111           22222           33333           44444
17104 11111           22222           33333           44444
17105
17106 Output:
17107 11111                           33333
17108 22222                           44444
17109 11111                           33333
17110 22222                           44444
17111 11111                           33333
17112 22222                           44444
17113 11111                           33333
17114 22222                           44444
17115 @end example
17116
17117 @item drop_even, 1
17118 Only output odd frames, even frames are dropped, generating a frame with
17119 unchanged height at half frame rate.
17120
17121 @example
17122  ------> time
17123 Input:
17124 Frame 1         Frame 2         Frame 3         Frame 4
17125
17126 11111           22222           33333           44444
17127 11111           22222           33333           44444
17128 11111           22222           33333           44444
17129 11111           22222           33333           44444
17130
17131 Output:
17132 11111                           33333
17133 11111                           33333
17134 11111                           33333
17135 11111                           33333
17136 @end example
17137
17138 @item drop_odd, 2
17139 Only output even frames, odd frames are dropped, generating a frame with
17140 unchanged height at half frame rate.
17141
17142 @example
17143  ------> time
17144 Input:
17145 Frame 1         Frame 2         Frame 3         Frame 4
17146
17147 11111           22222           33333           44444
17148 11111           22222           33333           44444
17149 11111           22222           33333           44444
17150 11111           22222           33333           44444
17151
17152 Output:
17153                 22222                           44444
17154                 22222                           44444
17155                 22222                           44444
17156                 22222                           44444
17157 @end example
17158
17159 @item pad, 3
17160 Expand each frame to full height, but pad alternate lines with black,
17161 generating a frame with double height at the same input frame rate.
17162
17163 @example
17164  ------> time
17165 Input:
17166 Frame 1         Frame 2         Frame 3         Frame 4
17167
17168 11111           22222           33333           44444
17169 11111           22222           33333           44444
17170 11111           22222           33333           44444
17171 11111           22222           33333           44444
17172
17173 Output:
17174 11111           .....           33333           .....
17175 .....           22222           .....           44444
17176 11111           .....           33333           .....
17177 .....           22222           .....           44444
17178 11111           .....           33333           .....
17179 .....           22222           .....           44444
17180 11111           .....           33333           .....
17181 .....           22222           .....           44444
17182 @end example
17183
17184
17185 @item interleave_top, 4
17186 Interleave the upper field from odd frames with the lower field from
17187 even frames, generating a frame with unchanged height at half frame rate.
17188
17189 @example
17190  ------> time
17191 Input:
17192 Frame 1         Frame 2         Frame 3         Frame 4
17193
17194 11111<-         22222           33333<-         44444
17195 11111           22222<-         33333           44444<-
17196 11111<-         22222           33333<-         44444
17197 11111           22222<-         33333           44444<-
17198
17199 Output:
17200 11111                           33333
17201 22222                           44444
17202 11111                           33333
17203 22222                           44444
17204 @end example
17205
17206
17207 @item interleave_bottom, 5
17208 Interleave the lower field from odd frames with the upper field from
17209 even frames, generating a frame with unchanged height at half frame rate.
17210
17211 @example
17212  ------> time
17213 Input:
17214 Frame 1         Frame 2         Frame 3         Frame 4
17215
17216 11111           22222<-         33333           44444<-
17217 11111<-         22222           33333<-         44444
17218 11111           22222<-         33333           44444<-
17219 11111<-         22222           33333<-         44444
17220
17221 Output:
17222 22222                           44444
17223 11111                           33333
17224 22222                           44444
17225 11111                           33333
17226 @end example
17227
17228
17229 @item interlacex2, 6
17230 Double frame rate with unchanged height. Frames are inserted each
17231 containing the second temporal field from the previous input frame and
17232 the first temporal field from the next input frame. This mode relies on
17233 the top_field_first flag. Useful for interlaced video displays with no
17234 field synchronisation.
17235
17236 @example
17237  ------> time
17238 Input:
17239 Frame 1         Frame 2         Frame 3         Frame 4
17240
17241 11111           22222           33333           44444
17242  11111           22222           33333           44444
17243 11111           22222           33333           44444
17244  11111           22222           33333           44444
17245
17246 Output:
17247 11111   22222   22222   33333   33333   44444   44444
17248  11111   11111   22222   22222   33333   33333   44444
17249 11111   22222   22222   33333   33333   44444   44444
17250  11111   11111   22222   22222   33333   33333   44444
17251 @end example
17252
17253
17254 @item mergex2, 7
17255 Move odd frames into the upper field, even into the lower field,
17256 generating a double height frame at same frame rate.
17257
17258 @example
17259  ------> time
17260 Input:
17261 Frame 1         Frame 2         Frame 3         Frame 4
17262
17263 11111           22222           33333           44444
17264 11111           22222           33333           44444
17265 11111           22222           33333           44444
17266 11111           22222           33333           44444
17267
17268 Output:
17269 11111           33333           33333           55555
17270 22222           22222           44444           44444
17271 11111           33333           33333           55555
17272 22222           22222           44444           44444
17273 11111           33333           33333           55555
17274 22222           22222           44444           44444
17275 11111           33333           33333           55555
17276 22222           22222           44444           44444
17277 @end example
17278
17279 @end table
17280
17281 Numeric values are deprecated but are accepted for backward
17282 compatibility reasons.
17283
17284 Default mode is @code{merge}.
17285
17286 @item flags
17287 Specify flags influencing the filter process.
17288
17289 Available value for @var{flags} is:
17290
17291 @table @option
17292 @item low_pass_filter, vlpf
17293 Enable linear vertical low-pass filtering in the filter.
17294 Vertical low-pass filtering is required when creating an interlaced
17295 destination from a progressive source which contains high-frequency
17296 vertical detail. Filtering will reduce interlace 'twitter' and Moire
17297 patterning.
17298
17299 @item complex_filter, cvlpf
17300 Enable complex vertical low-pass filtering.
17301 This will slightly less reduce interlace 'twitter' and Moire
17302 patterning but better retain detail and subjective sharpness impression.
17303
17304 @end table
17305
17306 Vertical low-pass filtering can only be enabled for @option{mode}
17307 @var{interleave_top} and @var{interleave_bottom}.
17308
17309 @end table
17310
17311 @section tmix
17312
17313 Mix successive video frames.
17314
17315 A description of the accepted options follows.
17316
17317 @table @option
17318 @item frames
17319 The number of successive frames to mix. If unspecified, it defaults to 3.
17320
17321 @item weights
17322 Specify weight of each input video frame.
17323 Each weight is separated by space. If number of weights is smaller than
17324 number of @var{frames} last specified weight will be used for all remaining
17325 unset weights.
17326
17327 @item scale
17328 Specify scale, if it is set it will be multiplied with sum
17329 of each weight multiplied with pixel values to give final destination
17330 pixel value. By default @var{scale} is auto scaled to sum of weights.
17331 @end table
17332
17333 @subsection Examples
17334
17335 @itemize
17336 @item
17337 Average 7 successive frames:
17338 @example
17339 tmix=frames=7:weights="1 1 1 1 1 1 1"
17340 @end example
17341
17342 @item
17343 Apply simple temporal convolution:
17344 @example
17345 tmix=frames=3:weights="-1 3 -1"
17346 @end example
17347
17348 @item
17349 Similar as above but only showing temporal differences:
17350 @example
17351 tmix=frames=3:weights="-1 2 -1":scale=1
17352 @end example
17353 @end itemize
17354
17355 @anchor{tonemap}
17356 @section tonemap
17357 Tone map colors from different dynamic ranges.
17358
17359 This filter expects data in single precision floating point, as it needs to
17360 operate on (and can output) out-of-range values. Another filter, such as
17361 @ref{zscale}, is needed to convert the resulting frame to a usable format.
17362
17363 The tonemapping algorithms implemented only work on linear light, so input
17364 data should be linearized beforehand (and possibly correctly tagged).
17365
17366 @example
17367 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
17368 @end example
17369
17370 @subsection Options
17371 The filter accepts the following options.
17372
17373 @table @option
17374 @item tonemap
17375 Set the tone map algorithm to use.
17376
17377 Possible values are:
17378 @table @var
17379 @item none
17380 Do not apply any tone map, only desaturate overbright pixels.
17381
17382 @item clip
17383 Hard-clip any out-of-range values. Use it for perfect color accuracy for
17384 in-range values, while distorting out-of-range values.
17385
17386 @item linear
17387 Stretch the entire reference gamut to a linear multiple of the display.
17388
17389 @item gamma
17390 Fit a logarithmic transfer between the tone curves.
17391
17392 @item reinhard
17393 Preserve overall image brightness with a simple curve, using nonlinear
17394 contrast, which results in flattening details and degrading color accuracy.
17395
17396 @item hable
17397 Preserve both dark and bright details better than @var{reinhard}, at the cost
17398 of slightly darkening everything. Use it when detail preservation is more
17399 important than color and brightness accuracy.
17400
17401 @item mobius
17402 Smoothly map out-of-range values, while retaining contrast and colors for
17403 in-range material as much as possible. Use it when color accuracy is more
17404 important than detail preservation.
17405 @end table
17406
17407 Default is none.
17408
17409 @item param
17410 Tune the tone mapping algorithm.
17411
17412 This affects the following algorithms:
17413 @table @var
17414 @item none
17415 Ignored.
17416
17417 @item linear
17418 Specifies the scale factor to use while stretching.
17419 Default to 1.0.
17420
17421 @item gamma
17422 Specifies the exponent of the function.
17423 Default to 1.8.
17424
17425 @item clip
17426 Specify an extra linear coefficient to multiply into the signal before clipping.
17427 Default to 1.0.
17428
17429 @item reinhard
17430 Specify the local contrast coefficient at the display peak.
17431 Default to 0.5, which means that in-gamut values will be about half as bright
17432 as when clipping.
17433
17434 @item hable
17435 Ignored.
17436
17437 @item mobius
17438 Specify the transition point from linear to mobius transform. Every value
17439 below this point is guaranteed to be mapped 1:1. The higher the value, the
17440 more accurate the result will be, at the cost of losing bright details.
17441 Default to 0.3, which due to the steep initial slope still preserves in-range
17442 colors fairly accurately.
17443 @end table
17444
17445 @item desat
17446 Apply desaturation for highlights that exceed this level of brightness. The
17447 higher the parameter, the more color information will be preserved. This
17448 setting helps prevent unnaturally blown-out colors for super-highlights, by
17449 (smoothly) turning into white instead. This makes images feel more natural,
17450 at the cost of reducing information about out-of-range colors.
17451
17452 The default of 2.0 is somewhat conservative and will mostly just apply to
17453 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
17454
17455 This option works only if the input frame has a supported color tag.
17456
17457 @item peak
17458 Override signal/nominal/reference peak with this value. Useful when the
17459 embedded peak information in display metadata is not reliable or when tone
17460 mapping from a lower range to a higher range.
17461 @end table
17462
17463 @section tpad
17464
17465 Temporarily pad video frames.
17466
17467 The filter accepts the following options:
17468
17469 @table @option
17470 @item start
17471 Specify number of delay frames before input video stream.
17472
17473 @item stop
17474 Specify number of padding frames after input video stream.
17475 Set to -1 to pad indefinitely.
17476
17477 @item start_mode
17478 Set kind of frames added to beginning of stream.
17479 Can be either @var{add} or @var{clone}.
17480 With @var{add} frames of solid-color are added.
17481 With @var{clone} frames are clones of first frame.
17482
17483 @item stop_mode
17484 Set kind of frames added to end of stream.
17485 Can be either @var{add} or @var{clone}.
17486 With @var{add} frames of solid-color are added.
17487 With @var{clone} frames are clones of last frame.
17488
17489 @item start_duration, stop_duration
17490 Specify the duration of the start/stop delay. See
17491 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17492 for the accepted syntax.
17493 These options override @var{start} and @var{stop}.
17494
17495 @item color
17496 Specify the color of the padded area. For the syntax of this option,
17497 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
17498 manual,ffmpeg-utils}.
17499
17500 The default value of @var{color} is "black".
17501 @end table
17502
17503 @anchor{transpose}
17504 @section transpose
17505
17506 Transpose rows with columns in the input video and optionally flip it.
17507
17508 It accepts the following parameters:
17509
17510 @table @option
17511
17512 @item dir
17513 Specify the transposition direction.
17514
17515 Can assume the following values:
17516 @table @samp
17517 @item 0, 4, cclock_flip
17518 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
17519 @example
17520 L.R     L.l
17521 . . ->  . .
17522 l.r     R.r
17523 @end example
17524
17525 @item 1, 5, clock
17526 Rotate by 90 degrees clockwise, that is:
17527 @example
17528 L.R     l.L
17529 . . ->  . .
17530 l.r     r.R
17531 @end example
17532
17533 @item 2, 6, cclock
17534 Rotate by 90 degrees counterclockwise, that is:
17535 @example
17536 L.R     R.r
17537 . . ->  . .
17538 l.r     L.l
17539 @end example
17540
17541 @item 3, 7, clock_flip
17542 Rotate by 90 degrees clockwise and vertically flip, that is:
17543 @example
17544 L.R     r.R
17545 . . ->  . .
17546 l.r     l.L
17547 @end example
17548 @end table
17549
17550 For values between 4-7, the transposition is only done if the input
17551 video geometry is portrait and not landscape. These values are
17552 deprecated, the @code{passthrough} option should be used instead.
17553
17554 Numerical values are deprecated, and should be dropped in favor of
17555 symbolic constants.
17556
17557 @item passthrough
17558 Do not apply the transposition if the input geometry matches the one
17559 specified by the specified value. It accepts the following values:
17560 @table @samp
17561 @item none
17562 Always apply transposition.
17563 @item portrait
17564 Preserve portrait geometry (when @var{height} >= @var{width}).
17565 @item landscape
17566 Preserve landscape geometry (when @var{width} >= @var{height}).
17567 @end table
17568
17569 Default value is @code{none}.
17570 @end table
17571
17572 For example to rotate by 90 degrees clockwise and preserve portrait
17573 layout:
17574 @example
17575 transpose=dir=1:passthrough=portrait
17576 @end example
17577
17578 The command above can also be specified as:
17579 @example
17580 transpose=1:portrait
17581 @end example
17582
17583 @section transpose_npp
17584
17585 Transpose rows with columns in the input video and optionally flip it.
17586 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
17587
17588 It accepts the following parameters:
17589
17590 @table @option
17591
17592 @item dir
17593 Specify the transposition direction.
17594
17595 Can assume the following values:
17596 @table @samp
17597 @item cclock_flip
17598 Rotate by 90 degrees counterclockwise and vertically flip. (default)
17599
17600 @item clock
17601 Rotate by 90 degrees clockwise.
17602
17603 @item cclock
17604 Rotate by 90 degrees counterclockwise.
17605
17606 @item clock_flip
17607 Rotate by 90 degrees clockwise and vertically flip.
17608 @end table
17609
17610 @item passthrough
17611 Do not apply the transposition if the input geometry matches the one
17612 specified by the specified value. It accepts the following values:
17613 @table @samp
17614 @item none
17615 Always apply transposition. (default)
17616 @item portrait
17617 Preserve portrait geometry (when @var{height} >= @var{width}).
17618 @item landscape
17619 Preserve landscape geometry (when @var{width} >= @var{height}).
17620 @end table
17621
17622 @end table
17623
17624 @section trim
17625 Trim the input so that the output contains one continuous subpart of the input.
17626
17627 It accepts the following parameters:
17628 @table @option
17629 @item start
17630 Specify the time of the start of the kept section, i.e. the frame with the
17631 timestamp @var{start} will be the first frame in the output.
17632
17633 @item end
17634 Specify the time of the first frame that will be dropped, i.e. the frame
17635 immediately preceding the one with the timestamp @var{end} will be the last
17636 frame in the output.
17637
17638 @item start_pts
17639 This is the same as @var{start}, except this option sets the start timestamp
17640 in timebase units instead of seconds.
17641
17642 @item end_pts
17643 This is the same as @var{end}, except this option sets the end timestamp
17644 in timebase units instead of seconds.
17645
17646 @item duration
17647 The maximum duration of the output in seconds.
17648
17649 @item start_frame
17650 The number of the first frame that should be passed to the output.
17651
17652 @item end_frame
17653 The number of the first frame that should be dropped.
17654 @end table
17655
17656 @option{start}, @option{end}, and @option{duration} are expressed as time
17657 duration specifications; see
17658 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17659 for the accepted syntax.
17660
17661 Note that the first two sets of the start/end options and the @option{duration}
17662 option look at the frame timestamp, while the _frame variants simply count the
17663 frames that pass through the filter. Also note that this filter does not modify
17664 the timestamps. If you wish for the output timestamps to start at zero, insert a
17665 setpts filter after the trim filter.
17666
17667 If multiple start or end options are set, this filter tries to be greedy and
17668 keep all the frames that match at least one of the specified constraints. To keep
17669 only the part that matches all the constraints at once, chain multiple trim
17670 filters.
17671
17672 The defaults are such that all the input is kept. So it is possible to set e.g.
17673 just the end values to keep everything before the specified time.
17674
17675 Examples:
17676 @itemize
17677 @item
17678 Drop everything except the second minute of input:
17679 @example
17680 ffmpeg -i INPUT -vf trim=60:120
17681 @end example
17682
17683 @item
17684 Keep only the first second:
17685 @example
17686 ffmpeg -i INPUT -vf trim=duration=1
17687 @end example
17688
17689 @end itemize
17690
17691 @section unpremultiply
17692 Apply alpha unpremultiply effect to input video stream using first plane
17693 of second stream as alpha.
17694
17695 Both streams must have same dimensions and same pixel format.
17696
17697 The filter accepts the following option:
17698
17699 @table @option
17700 @item planes
17701 Set which planes will be processed, unprocessed planes will be copied.
17702 By default value 0xf, all planes will be processed.
17703
17704 If the format has 1 or 2 components, then luma is bit 0.
17705 If the format has 3 or 4 components:
17706 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
17707 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
17708 If present, the alpha channel is always the last bit.
17709
17710 @item inplace
17711 Do not require 2nd input for processing, instead use alpha plane from input stream.
17712 @end table
17713
17714 @anchor{unsharp}
17715 @section unsharp
17716
17717 Sharpen or blur the input video.
17718
17719 It accepts the following parameters:
17720
17721 @table @option
17722 @item luma_msize_x, lx
17723 Set the luma matrix horizontal size. It must be an odd integer between
17724 3 and 23. The default value is 5.
17725
17726 @item luma_msize_y, ly
17727 Set the luma matrix vertical size. It must be an odd integer between 3
17728 and 23. The default value is 5.
17729
17730 @item luma_amount, la
17731 Set the luma effect strength. It must be a floating point number, reasonable
17732 values lay between -1.5 and 1.5.
17733
17734 Negative values will blur the input video, while positive values will
17735 sharpen it, a value of zero will disable the effect.
17736
17737 Default value is 1.0.
17738
17739 @item chroma_msize_x, cx
17740 Set the chroma matrix horizontal size. It must be an odd integer
17741 between 3 and 23. The default value is 5.
17742
17743 @item chroma_msize_y, cy
17744 Set the chroma matrix vertical size. It must be an odd integer
17745 between 3 and 23. The default value is 5.
17746
17747 @item chroma_amount, ca
17748 Set the chroma effect strength. It must be a floating point number, reasonable
17749 values lay between -1.5 and 1.5.
17750
17751 Negative values will blur the input video, while positive values will
17752 sharpen it, a value of zero will disable the effect.
17753
17754 Default value is 0.0.
17755
17756 @end table
17757
17758 All parameters are optional and default to the equivalent of the
17759 string '5:5:1.0:5:5:0.0'.
17760
17761 @subsection Examples
17762
17763 @itemize
17764 @item
17765 Apply strong luma sharpen effect:
17766 @example
17767 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
17768 @end example
17769
17770 @item
17771 Apply a strong blur of both luma and chroma parameters:
17772 @example
17773 unsharp=7:7:-2:7:7:-2
17774 @end example
17775 @end itemize
17776
17777 @section uspp
17778
17779 Apply ultra slow/simple postprocessing filter that compresses and decompresses
17780 the image at several (or - in the case of @option{quality} level @code{8} - all)
17781 shifts and average the results.
17782
17783 The way this differs from the behavior of spp is that uspp actually encodes &
17784 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
17785 DCT similar to MJPEG.
17786
17787 The filter accepts the following options:
17788
17789 @table @option
17790 @item quality
17791 Set quality. This option defines the number of levels for averaging. It accepts
17792 an integer in the range 0-8. If set to @code{0}, the filter will have no
17793 effect. A value of @code{8} means the higher quality. For each increment of
17794 that value the speed drops by a factor of approximately 2.  Default value is
17795 @code{3}.
17796
17797 @item qp
17798 Force a constant quantization parameter. If not set, the filter will use the QP
17799 from the video stream (if available).
17800 @end table
17801
17802 @section vaguedenoiser
17803
17804 Apply a wavelet based denoiser.
17805
17806 It transforms each frame from the video input into the wavelet domain,
17807 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
17808 the obtained coefficients. It does an inverse wavelet transform after.
17809 Due to wavelet properties, it should give a nice smoothed result, and
17810 reduced noise, without blurring picture features.
17811
17812 This filter accepts the following options:
17813
17814 @table @option
17815 @item threshold
17816 The filtering strength. The higher, the more filtered the video will be.
17817 Hard thresholding can use a higher threshold than soft thresholding
17818 before the video looks overfiltered. Default value is 2.
17819
17820 @item method
17821 The filtering method the filter will use.
17822
17823 It accepts the following values:
17824 @table @samp
17825 @item hard
17826 All values under the threshold will be zeroed.
17827
17828 @item soft
17829 All values under the threshold will be zeroed. All values above will be
17830 reduced by the threshold.
17831
17832 @item garrote
17833 Scales or nullifies coefficients - intermediary between (more) soft and
17834 (less) hard thresholding.
17835 @end table
17836
17837 Default is garrote.
17838
17839 @item nsteps
17840 Number of times, the wavelet will decompose the picture. Picture can't
17841 be decomposed beyond a particular point (typically, 8 for a 640x480
17842 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
17843
17844 @item percent
17845 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
17846
17847 @item planes
17848 A list of the planes to process. By default all planes are processed.
17849 @end table
17850
17851 @section vectorscope
17852
17853 Display 2 color component values in the two dimensional graph (which is called
17854 a vectorscope).
17855
17856 This filter accepts the following options:
17857
17858 @table @option
17859 @item mode, m
17860 Set vectorscope mode.
17861
17862 It accepts the following values:
17863 @table @samp
17864 @item gray
17865 Gray values are displayed on graph, higher brightness means more pixels have
17866 same component color value on location in graph. This is the default mode.
17867
17868 @item color
17869 Gray values are displayed on graph. Surrounding pixels values which are not
17870 present in video frame are drawn in gradient of 2 color components which are
17871 set by option @code{x} and @code{y}. The 3rd color component is static.
17872
17873 @item color2
17874 Actual color components values present in video frame are displayed on graph.
17875
17876 @item color3
17877 Similar as color2 but higher frequency of same values @code{x} and @code{y}
17878 on graph increases value of another color component, which is luminance by
17879 default values of @code{x} and @code{y}.
17880
17881 @item color4
17882 Actual colors present in video frame are displayed on graph. If two different
17883 colors map to same position on graph then color with higher value of component
17884 not present in graph is picked.
17885
17886 @item color5
17887 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
17888 component picked from radial gradient.
17889 @end table
17890
17891 @item x
17892 Set which color component will be represented on X-axis. Default is @code{1}.
17893
17894 @item y
17895 Set which color component will be represented on Y-axis. Default is @code{2}.
17896
17897 @item intensity, i
17898 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
17899 of color component which represents frequency of (X, Y) location in graph.
17900
17901 @item envelope, e
17902 @table @samp
17903 @item none
17904 No envelope, this is default.
17905
17906 @item instant
17907 Instant envelope, even darkest single pixel will be clearly highlighted.
17908
17909 @item peak
17910 Hold maximum and minimum values presented in graph over time. This way you
17911 can still spot out of range values without constantly looking at vectorscope.
17912
17913 @item peak+instant
17914 Peak and instant envelope combined together.
17915 @end table
17916
17917 @item graticule, g
17918 Set what kind of graticule to draw.
17919 @table @samp
17920 @item none
17921 @item green
17922 @item color
17923 @end table
17924
17925 @item opacity, o
17926 Set graticule opacity.
17927
17928 @item flags, f
17929 Set graticule flags.
17930
17931 @table @samp
17932 @item white
17933 Draw graticule for white point.
17934
17935 @item black
17936 Draw graticule for black point.
17937
17938 @item name
17939 Draw color points short names.
17940 @end table
17941
17942 @item bgopacity, b
17943 Set background opacity.
17944
17945 @item lthreshold, l
17946 Set low threshold for color component not represented on X or Y axis.
17947 Values lower than this value will be ignored. Default is 0.
17948 Note this value is multiplied with actual max possible value one pixel component
17949 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
17950 is 0.1 * 255 = 25.
17951
17952 @item hthreshold, h
17953 Set high threshold for color component not represented on X or Y axis.
17954 Values higher than this value will be ignored. Default is 1.
17955 Note this value is multiplied with actual max possible value one pixel component
17956 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
17957 is 0.9 * 255 = 230.
17958
17959 @item colorspace, c
17960 Set what kind of colorspace to use when drawing graticule.
17961 @table @samp
17962 @item auto
17963 @item 601
17964 @item 709
17965 @end table
17966 Default is auto.
17967 @end table
17968
17969 @anchor{vidstabdetect}
17970 @section vidstabdetect
17971
17972 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
17973 @ref{vidstabtransform} for pass 2.
17974
17975 This filter generates a file with relative translation and rotation
17976 transform information about subsequent frames, which is then used by
17977 the @ref{vidstabtransform} filter.
17978
17979 To enable compilation of this filter you need to configure FFmpeg with
17980 @code{--enable-libvidstab}.
17981
17982 This filter accepts the following options:
17983
17984 @table @option
17985 @item result
17986 Set the path to the file used to write the transforms information.
17987 Default value is @file{transforms.trf}.
17988
17989 @item shakiness
17990 Set how shaky the video is and how quick the camera is. It accepts an
17991 integer in the range 1-10, a value of 1 means little shakiness, a
17992 value of 10 means strong shakiness. Default value is 5.
17993
17994 @item accuracy
17995 Set the accuracy of the detection process. It must be a value in the
17996 range 1-15. A value of 1 means low accuracy, a value of 15 means high
17997 accuracy. Default value is 15.
17998
17999 @item stepsize
18000 Set stepsize of the search process. The region around minimum is
18001 scanned with 1 pixel resolution. Default value is 6.
18002
18003 @item mincontrast
18004 Set minimum contrast. Below this value a local measurement field is
18005 discarded. Must be a floating point value in the range 0-1. Default
18006 value is 0.3.
18007
18008 @item tripod
18009 Set reference frame number for tripod mode.
18010
18011 If enabled, the motion of the frames is compared to a reference frame
18012 in the filtered stream, identified by the specified number. The idea
18013 is to compensate all movements in a more-or-less static scene and keep
18014 the camera view absolutely still.
18015
18016 If set to 0, it is disabled. The frames are counted starting from 1.
18017
18018 @item show
18019 Show fields and transforms in the resulting frames. It accepts an
18020 integer in the range 0-2. Default value is 0, which disables any
18021 visualization.
18022 @end table
18023
18024 @subsection Examples
18025
18026 @itemize
18027 @item
18028 Use default values:
18029 @example
18030 vidstabdetect
18031 @end example
18032
18033 @item
18034 Analyze strongly shaky movie and put the results in file
18035 @file{mytransforms.trf}:
18036 @example
18037 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
18038 @end example
18039
18040 @item
18041 Visualize the result of internal transformations in the resulting
18042 video:
18043 @example
18044 vidstabdetect=show=1
18045 @end example
18046
18047 @item
18048 Analyze a video with medium shakiness using @command{ffmpeg}:
18049 @example
18050 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
18051 @end example
18052 @end itemize
18053
18054 @anchor{vidstabtransform}
18055 @section vidstabtransform
18056
18057 Video stabilization/deshaking: pass 2 of 2,
18058 see @ref{vidstabdetect} for pass 1.
18059
18060 Read a file with transform information for each frame and
18061 apply/compensate them. Together with the @ref{vidstabdetect}
18062 filter this can be used to deshake videos. See also
18063 @url{http://public.hronopik.de/vid.stab}. It is important to also use
18064 the @ref{unsharp} filter, see below.
18065
18066 To enable compilation of this filter you need to configure FFmpeg with
18067 @code{--enable-libvidstab}.
18068
18069 @subsection Options
18070
18071 @table @option
18072 @item input
18073 Set path to the file used to read the transforms. Default value is
18074 @file{transforms.trf}.
18075
18076 @item smoothing
18077 Set the number of frames (value*2 + 1) used for lowpass filtering the
18078 camera movements. Default value is 10.
18079
18080 For example a number of 10 means that 21 frames are used (10 in the
18081 past and 10 in the future) to smoothen the motion in the video. A
18082 larger value leads to a smoother video, but limits the acceleration of
18083 the camera (pan/tilt movements). 0 is a special case where a static
18084 camera is simulated.
18085
18086 @item optalgo
18087 Set the camera path optimization algorithm.
18088
18089 Accepted values are:
18090 @table @samp
18091 @item gauss
18092 gaussian kernel low-pass filter on camera motion (default)
18093 @item avg
18094 averaging on transformations
18095 @end table
18096
18097 @item maxshift
18098 Set maximal number of pixels to translate frames. Default value is -1,
18099 meaning no limit.
18100
18101 @item maxangle
18102 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
18103 value is -1, meaning no limit.
18104
18105 @item crop
18106 Specify how to deal with borders that may be visible due to movement
18107 compensation.
18108
18109 Available values are:
18110 @table @samp
18111 @item keep
18112 keep image information from previous frame (default)
18113 @item black
18114 fill the border black
18115 @end table
18116
18117 @item invert
18118 Invert transforms if set to 1. Default value is 0.
18119
18120 @item relative
18121 Consider transforms as relative to previous frame if set to 1,
18122 absolute if set to 0. Default value is 0.
18123
18124 @item zoom
18125 Set percentage to zoom. A positive value will result in a zoom-in
18126 effect, a negative value in a zoom-out effect. Default value is 0 (no
18127 zoom).
18128
18129 @item optzoom
18130 Set optimal zooming to avoid borders.
18131
18132 Accepted values are:
18133 @table @samp
18134 @item 0
18135 disabled
18136 @item 1
18137 optimal static zoom value is determined (only very strong movements
18138 will lead to visible borders) (default)
18139 @item 2
18140 optimal adaptive zoom value is determined (no borders will be
18141 visible), see @option{zoomspeed}
18142 @end table
18143
18144 Note that the value given at zoom is added to the one calculated here.
18145
18146 @item zoomspeed
18147 Set percent to zoom maximally each frame (enabled when
18148 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
18149 0.25.
18150
18151 @item interpol
18152 Specify type of interpolation.
18153
18154 Available values are:
18155 @table @samp
18156 @item no
18157 no interpolation
18158 @item linear
18159 linear only horizontal
18160 @item bilinear
18161 linear in both directions (default)
18162 @item bicubic
18163 cubic in both directions (slow)
18164 @end table
18165
18166 @item tripod
18167 Enable virtual tripod mode if set to 1, which is equivalent to
18168 @code{relative=0:smoothing=0}. Default value is 0.
18169
18170 Use also @code{tripod} option of @ref{vidstabdetect}.
18171
18172 @item debug
18173 Increase log verbosity if set to 1. Also the detected global motions
18174 are written to the temporary file @file{global_motions.trf}. Default
18175 value is 0.
18176 @end table
18177
18178 @subsection Examples
18179
18180 @itemize
18181 @item
18182 Use @command{ffmpeg} for a typical stabilization with default values:
18183 @example
18184 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
18185 @end example
18186
18187 Note the use of the @ref{unsharp} filter which is always recommended.
18188
18189 @item
18190 Zoom in a bit more and load transform data from a given file:
18191 @example
18192 vidstabtransform=zoom=5:input="mytransforms.trf"
18193 @end example
18194
18195 @item
18196 Smoothen the video even more:
18197 @example
18198 vidstabtransform=smoothing=30
18199 @end example
18200 @end itemize
18201
18202 @section vflip
18203
18204 Flip the input video vertically.
18205
18206 For example, to vertically flip a video with @command{ffmpeg}:
18207 @example
18208 ffmpeg -i in.avi -vf "vflip" out.avi
18209 @end example
18210
18211 @section vfrdet
18212
18213 Detect variable frame rate video.
18214
18215 This filter tries to detect if the input is variable or constant frame rate.
18216
18217 At end it will output number of frames detected as having variable delta pts,
18218 and ones with constant delta pts.
18219 If there was frames with variable delta, than it will also show min and max delta
18220 encountered.
18221
18222 @section vibrance
18223
18224 Boost or alter saturation.
18225
18226 The filter accepts the following options:
18227 @table @option
18228 @item intensity
18229 Set strength of boost if positive value or strength of alter if negative value.
18230 Default is 0. Allowed range is from -2 to 2.
18231
18232 @item rbal
18233 Set the red balance. Default is 1. Allowed range is from -10 to 10.
18234
18235 @item gbal
18236 Set the green balance. Default is 1. Allowed range is from -10 to 10.
18237
18238 @item bbal
18239 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
18240
18241 @item rlum
18242 Set the red luma coefficient.
18243
18244 @item glum
18245 Set the green luma coefficient.
18246
18247 @item blum
18248 Set the blue luma coefficient.
18249
18250 @item alternate
18251 If @code{intensity} is negative and this is set to 1, colors will change,
18252 otherwise colors will be less saturated, more towards gray.
18253 @end table
18254
18255 @anchor{vignette}
18256 @section vignette
18257
18258 Make or reverse a natural vignetting effect.
18259
18260 The filter accepts the following options:
18261
18262 @table @option
18263 @item angle, a
18264 Set lens angle expression as a number of radians.
18265
18266 The value is clipped in the @code{[0,PI/2]} range.
18267
18268 Default value: @code{"PI/5"}
18269
18270 @item x0
18271 @item y0
18272 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
18273 by default.
18274
18275 @item mode
18276 Set forward/backward mode.
18277
18278 Available modes are:
18279 @table @samp
18280 @item forward
18281 The larger the distance from the central point, the darker the image becomes.
18282
18283 @item backward
18284 The larger the distance from the central point, the brighter the image becomes.
18285 This can be used to reverse a vignette effect, though there is no automatic
18286 detection to extract the lens @option{angle} and other settings (yet). It can
18287 also be used to create a burning effect.
18288 @end table
18289
18290 Default value is @samp{forward}.
18291
18292 @item eval
18293 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
18294
18295 It accepts the following values:
18296 @table @samp
18297 @item init
18298 Evaluate expressions only once during the filter initialization.
18299
18300 @item frame
18301 Evaluate expressions for each incoming frame. This is way slower than the
18302 @samp{init} mode since it requires all the scalers to be re-computed, but it
18303 allows advanced dynamic expressions.
18304 @end table
18305
18306 Default value is @samp{init}.
18307
18308 @item dither
18309 Set dithering to reduce the circular banding effects. Default is @code{1}
18310 (enabled).
18311
18312 @item aspect
18313 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
18314 Setting this value to the SAR of the input will make a rectangular vignetting
18315 following the dimensions of the video.
18316
18317 Default is @code{1/1}.
18318 @end table
18319
18320 @subsection Expressions
18321
18322 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
18323 following parameters.
18324
18325 @table @option
18326 @item w
18327 @item h
18328 input width and height
18329
18330 @item n
18331 the number of input frame, starting from 0
18332
18333 @item pts
18334 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
18335 @var{TB} units, NAN if undefined
18336
18337 @item r
18338 frame rate of the input video, NAN if the input frame rate is unknown
18339
18340 @item t
18341 the PTS (Presentation TimeStamp) of the filtered video frame,
18342 expressed in seconds, NAN if undefined
18343
18344 @item tb
18345 time base of the input video
18346 @end table
18347
18348
18349 @subsection Examples
18350
18351 @itemize
18352 @item
18353 Apply simple strong vignetting effect:
18354 @example
18355 vignette=PI/4
18356 @end example
18357
18358 @item
18359 Make a flickering vignetting:
18360 @example
18361 vignette='PI/4+random(1)*PI/50':eval=frame
18362 @end example
18363
18364 @end itemize
18365
18366 @section vmafmotion
18367
18368 Obtain the average vmaf motion score of a video.
18369 It is one of the component filters of VMAF.
18370
18371 The obtained average motion score is printed through the logging system.
18372
18373 In the below example the input file @file{ref.mpg} is being processed and score
18374 is computed.
18375
18376 @example
18377 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
18378 @end example
18379
18380 @section vstack
18381 Stack input videos vertically.
18382
18383 All streams must be of same pixel format and of same width.
18384
18385 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
18386 to create same output.
18387
18388 The filter accept the following option:
18389
18390 @table @option
18391 @item inputs
18392 Set number of input streams. Default is 2.
18393
18394 @item shortest
18395 If set to 1, force the output to terminate when the shortest input
18396 terminates. Default value is 0.
18397 @end table
18398
18399 @section w3fdif
18400
18401 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
18402 Deinterlacing Filter").
18403
18404 Based on the process described by Martin Weston for BBC R&D, and
18405 implemented based on the de-interlace algorithm written by Jim
18406 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
18407 uses filter coefficients calculated by BBC R&D.
18408
18409 This filter use field-dominance information in frame to decide which
18410 of each pair of fields to place first in the output.
18411 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
18412
18413 There are two sets of filter coefficients, so called "simple":
18414 and "complex". Which set of filter coefficients is used can
18415 be set by passing an optional parameter:
18416
18417 @table @option
18418 @item filter
18419 Set the interlacing filter coefficients. Accepts one of the following values:
18420
18421 @table @samp
18422 @item simple
18423 Simple filter coefficient set.
18424 @item complex
18425 More-complex filter coefficient set.
18426 @end table
18427 Default value is @samp{complex}.
18428
18429 @item deint
18430 Specify which frames to deinterlace. Accept one of the following values:
18431
18432 @table @samp
18433 @item all
18434 Deinterlace all frames,
18435 @item interlaced
18436 Only deinterlace frames marked as interlaced.
18437 @end table
18438
18439 Default value is @samp{all}.
18440 @end table
18441
18442 @section waveform
18443 Video waveform monitor.
18444
18445 The waveform monitor plots color component intensity. By default luminance
18446 only. Each column of the waveform corresponds to a column of pixels in the
18447 source video.
18448
18449 It accepts the following options:
18450
18451 @table @option
18452 @item mode, m
18453 Can be either @code{row}, or @code{column}. Default is @code{column}.
18454 In row mode, the graph on the left side represents color component value 0 and
18455 the right side represents value = 255. In column mode, the top side represents
18456 color component value = 0 and bottom side represents value = 255.
18457
18458 @item intensity, i
18459 Set intensity. Smaller values are useful to find out how many values of the same
18460 luminance are distributed across input rows/columns.
18461 Default value is @code{0.04}. Allowed range is [0, 1].
18462
18463 @item mirror, r
18464 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
18465 In mirrored mode, higher values will be represented on the left
18466 side for @code{row} mode and at the top for @code{column} mode. Default is
18467 @code{1} (mirrored).
18468
18469 @item display, d
18470 Set display mode.
18471 It accepts the following values:
18472 @table @samp
18473 @item overlay
18474 Presents information identical to that in the @code{parade}, except
18475 that the graphs representing color components are superimposed directly
18476 over one another.
18477
18478 This display mode makes it easier to spot relative differences or similarities
18479 in overlapping areas of the color components that are supposed to be identical,
18480 such as neutral whites, grays, or blacks.
18481
18482 @item stack
18483 Display separate graph for the color components side by side in
18484 @code{row} mode or one below the other in @code{column} mode.
18485
18486 @item parade
18487 Display separate graph for the color components side by side in
18488 @code{column} mode or one below the other in @code{row} mode.
18489
18490 Using this display mode makes it easy to spot color casts in the highlights
18491 and shadows of an image, by comparing the contours of the top and the bottom
18492 graphs of each waveform. Since whites, grays, and blacks are characterized
18493 by exactly equal amounts of red, green, and blue, neutral areas of the picture
18494 should display three waveforms of roughly equal width/height. If not, the
18495 correction is easy to perform by making level adjustments the three waveforms.
18496 @end table
18497 Default is @code{stack}.
18498
18499 @item components, c
18500 Set which color components to display. Default is 1, which means only luminance
18501 or red color component if input is in RGB colorspace. If is set for example to
18502 7 it will display all 3 (if) available color components.
18503
18504 @item envelope, e
18505 @table @samp
18506 @item none
18507 No envelope, this is default.
18508
18509 @item instant
18510 Instant envelope, minimum and maximum values presented in graph will be easily
18511 visible even with small @code{step} value.
18512
18513 @item peak
18514 Hold minimum and maximum values presented in graph across time. This way you
18515 can still spot out of range values without constantly looking at waveforms.
18516
18517 @item peak+instant
18518 Peak and instant envelope combined together.
18519 @end table
18520
18521 @item filter, f
18522 @table @samp
18523 @item lowpass
18524 No filtering, this is default.
18525
18526 @item flat
18527 Luma and chroma combined together.
18528
18529 @item aflat
18530 Similar as above, but shows difference between blue and red chroma.
18531
18532 @item xflat
18533 Similar as above, but use different colors.
18534
18535 @item chroma
18536 Displays only chroma.
18537
18538 @item color
18539 Displays actual color value on waveform.
18540
18541 @item acolor
18542 Similar as above, but with luma showing frequency of chroma values.
18543 @end table
18544
18545 @item graticule, g
18546 Set which graticule to display.
18547
18548 @table @samp
18549 @item none
18550 Do not display graticule.
18551
18552 @item green
18553 Display green graticule showing legal broadcast ranges.
18554
18555 @item orange
18556 Display orange graticule showing legal broadcast ranges.
18557 @end table
18558
18559 @item opacity, o
18560 Set graticule opacity.
18561
18562 @item flags, fl
18563 Set graticule flags.
18564
18565 @table @samp
18566 @item numbers
18567 Draw numbers above lines. By default enabled.
18568
18569 @item dots
18570 Draw dots instead of lines.
18571 @end table
18572
18573 @item scale, s
18574 Set scale used for displaying graticule.
18575
18576 @table @samp
18577 @item digital
18578 @item millivolts
18579 @item ire
18580 @end table
18581 Default is digital.
18582
18583 @item bgopacity, b
18584 Set background opacity.
18585 @end table
18586
18587 @section weave, doubleweave
18588
18589 The @code{weave} takes a field-based video input and join
18590 each two sequential fields into single frame, producing a new double
18591 height clip with half the frame rate and half the frame count.
18592
18593 The @code{doubleweave} works same as @code{weave} but without
18594 halving frame rate and frame count.
18595
18596 It accepts the following option:
18597
18598 @table @option
18599 @item first_field
18600 Set first field. Available values are:
18601
18602 @table @samp
18603 @item top, t
18604 Set the frame as top-field-first.
18605
18606 @item bottom, b
18607 Set the frame as bottom-field-first.
18608 @end table
18609 @end table
18610
18611 @subsection Examples
18612
18613 @itemize
18614 @item
18615 Interlace video using @ref{select} and @ref{separatefields} filter:
18616 @example
18617 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
18618 @end example
18619 @end itemize
18620
18621 @section xbr
18622 Apply the xBR high-quality magnification filter which is designed for pixel
18623 art. It follows a set of edge-detection rules, see
18624 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
18625
18626 It accepts the following option:
18627
18628 @table @option
18629 @item n
18630 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
18631 @code{3xBR} and @code{4} for @code{4xBR}.
18632 Default is @code{3}.
18633 @end table
18634
18635 @section xmedian
18636 Pick median pixels from several input videos.
18637
18638 The filter accept the following options:
18639
18640 @table @option
18641 @item inputs
18642 Set number of inputs.
18643 Default is 3. Allowed range is from 3 to 255.
18644 If number of inputs is even number, than result will be mean value between two median values.
18645
18646 @item planes
18647 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
18648 @end table
18649
18650 @section xstack
18651 Stack video inputs into custom layout.
18652
18653 All streams must be of same pixel format.
18654
18655 The filter accept the following option:
18656
18657 @table @option
18658 @item inputs
18659 Set number of input streams. Default is 2.
18660
18661 @item layout
18662 Specify layout of inputs.
18663 This option requires the desired layout configuration to be explicitly set by the user.
18664 This sets position of each video input in output. Each input
18665 is separated by '|'.
18666 The first number represents the column, and the second number represents the row.
18667 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
18668 where X is video input from which to take width or height.
18669 Multiple values can be used when separated by '+'. In such
18670 case values are summed together.
18671
18672 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
18673 a layout must be set by the user.
18674
18675 @item shortest
18676 If set to 1, force the output to terminate when the shortest input
18677 terminates. Default value is 0.
18678 @end table
18679
18680 @subsection Examples
18681
18682 @itemize
18683 @item
18684 Display 4 inputs into 2x2 grid,
18685 note that if inputs are of different sizes unused gaps might appear,
18686 as not all of output video is used.
18687 @example
18688 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
18689 @end example
18690
18691 @item
18692 Display 4 inputs into 1x4 grid,
18693 note that if inputs are of different sizes unused gaps might appear,
18694 as not all of output video is used.
18695 @example
18696 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
18697 @end example
18698
18699 @item
18700 Display 9 inputs into 3x3 grid,
18701 note that if inputs are of different sizes unused gaps might appear,
18702 as not all of output video is used.
18703 @example
18704 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
18705 @end example
18706 @end itemize
18707
18708 @anchor{yadif}
18709 @section yadif
18710
18711 Deinterlace the input video ("yadif" means "yet another deinterlacing
18712 filter").
18713
18714 It accepts the following parameters:
18715
18716
18717 @table @option
18718
18719 @item mode
18720 The interlacing mode to adopt. It accepts one of the following values:
18721
18722 @table @option
18723 @item 0, send_frame
18724 Output one frame for each frame.
18725 @item 1, send_field
18726 Output one frame for each field.
18727 @item 2, send_frame_nospatial
18728 Like @code{send_frame}, but it skips the spatial interlacing check.
18729 @item 3, send_field_nospatial
18730 Like @code{send_field}, but it skips the spatial interlacing check.
18731 @end table
18732
18733 The default value is @code{send_frame}.
18734
18735 @item parity
18736 The picture field parity assumed for the input interlaced video. It accepts one
18737 of the following values:
18738
18739 @table @option
18740 @item 0, tff
18741 Assume the top field is first.
18742 @item 1, bff
18743 Assume the bottom field is first.
18744 @item -1, auto
18745 Enable automatic detection of field parity.
18746 @end table
18747
18748 The default value is @code{auto}.
18749 If the interlacing is unknown or the decoder does not export this information,
18750 top field first will be assumed.
18751
18752 @item deint
18753 Specify which frames to deinterlace. Accept one of the following
18754 values:
18755
18756 @table @option
18757 @item 0, all
18758 Deinterlace all frames.
18759 @item 1, interlaced
18760 Only deinterlace frames marked as interlaced.
18761 @end table
18762
18763 The default value is @code{all}.
18764 @end table
18765
18766 @section yadif_cuda
18767
18768 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
18769 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
18770 and/or nvenc.
18771
18772 It accepts the following parameters:
18773
18774
18775 @table @option
18776
18777 @item mode
18778 The interlacing mode to adopt. It accepts one of the following values:
18779
18780 @table @option
18781 @item 0, send_frame
18782 Output one frame for each frame.
18783 @item 1, send_field
18784 Output one frame for each field.
18785 @item 2, send_frame_nospatial
18786 Like @code{send_frame}, but it skips the spatial interlacing check.
18787 @item 3, send_field_nospatial
18788 Like @code{send_field}, but it skips the spatial interlacing check.
18789 @end table
18790
18791 The default value is @code{send_frame}.
18792
18793 @item parity
18794 The picture field parity assumed for the input interlaced video. It accepts one
18795 of the following values:
18796
18797 @table @option
18798 @item 0, tff
18799 Assume the top field is first.
18800 @item 1, bff
18801 Assume the bottom field is first.
18802 @item -1, auto
18803 Enable automatic detection of field parity.
18804 @end table
18805
18806 The default value is @code{auto}.
18807 If the interlacing is unknown or the decoder does not export this information,
18808 top field first will be assumed.
18809
18810 @item deint
18811 Specify which frames to deinterlace. Accept one of the following
18812 values:
18813
18814 @table @option
18815 @item 0, all
18816 Deinterlace all frames.
18817 @item 1, interlaced
18818 Only deinterlace frames marked as interlaced.
18819 @end table
18820
18821 The default value is @code{all}.
18822 @end table
18823
18824 @section zoompan
18825
18826 Apply Zoom & Pan effect.
18827
18828 This filter accepts the following options:
18829
18830 @table @option
18831 @item zoom, z
18832 Set the zoom expression. Range is 1-10. Default is 1.
18833
18834 @item x
18835 @item y
18836 Set the x and y expression. Default is 0.
18837
18838 @item d
18839 Set the duration expression in number of frames.
18840 This sets for how many number of frames effect will last for
18841 single input image.
18842
18843 @item s
18844 Set the output image size, default is 'hd720'.
18845
18846 @item fps
18847 Set the output frame rate, default is '25'.
18848 @end table
18849
18850 Each expression can contain the following constants:
18851
18852 @table @option
18853 @item in_w, iw
18854 Input width.
18855
18856 @item in_h, ih
18857 Input height.
18858
18859 @item out_w, ow
18860 Output width.
18861
18862 @item out_h, oh
18863 Output height.
18864
18865 @item in
18866 Input frame count.
18867
18868 @item on
18869 Output frame count.
18870
18871 @item x
18872 @item y
18873 Last calculated 'x' and 'y' position from 'x' and 'y' expression
18874 for current input frame.
18875
18876 @item px
18877 @item py
18878 'x' and 'y' of last output frame of previous input frame or 0 when there was
18879 not yet such frame (first input frame).
18880
18881 @item zoom
18882 Last calculated zoom from 'z' expression for current input frame.
18883
18884 @item pzoom
18885 Last calculated zoom of last output frame of previous input frame.
18886
18887 @item duration
18888 Number of output frames for current input frame. Calculated from 'd' expression
18889 for each input frame.
18890
18891 @item pduration
18892 number of output frames created for previous input frame
18893
18894 @item a
18895 Rational number: input width / input height
18896
18897 @item sar
18898 sample aspect ratio
18899
18900 @item dar
18901 display aspect ratio
18902
18903 @end table
18904
18905 @subsection Examples
18906
18907 @itemize
18908 @item
18909 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
18910 @example
18911 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
18912 @end example
18913
18914 @item
18915 Zoom-in up to 1.5 and pan always at center of picture:
18916 @example
18917 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18918 @end example
18919
18920 @item
18921 Same as above but without pausing:
18922 @example
18923 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18924 @end example
18925 @end itemize
18926
18927 @anchor{zscale}
18928 @section zscale
18929 Scale (resize) the input video, using the z.lib library:
18930 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
18931 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
18932
18933 The zscale filter forces the output display aspect ratio to be the same
18934 as the input, by changing the output sample aspect ratio.
18935
18936 If the input image format is different from the format requested by
18937 the next filter, the zscale filter will convert the input to the
18938 requested format.
18939
18940 @subsection Options
18941 The filter accepts the following options.
18942
18943 @table @option
18944 @item width, w
18945 @item height, h
18946 Set the output video dimension expression. Default value is the input
18947 dimension.
18948
18949 If the @var{width} or @var{w} value is 0, the input width is used for
18950 the output. If the @var{height} or @var{h} value is 0, the input height
18951 is used for the output.
18952
18953 If one and only one of the values is -n with n >= 1, the zscale filter
18954 will use a value that maintains the aspect ratio of the input image,
18955 calculated from the other specified dimension. After that it will,
18956 however, make sure that the calculated dimension is divisible by n and
18957 adjust the value if necessary.
18958
18959 If both values are -n with n >= 1, the behavior will be identical to
18960 both values being set to 0 as previously detailed.
18961
18962 See below for the list of accepted constants for use in the dimension
18963 expression.
18964
18965 @item size, s
18966 Set the video size. For the syntax of this option, check the
18967 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18968
18969 @item dither, d
18970 Set the dither type.
18971
18972 Possible values are:
18973 @table @var
18974 @item none
18975 @item ordered
18976 @item random
18977 @item error_diffusion
18978 @end table
18979
18980 Default is none.
18981
18982 @item filter, f
18983 Set the resize filter type.
18984
18985 Possible values are:
18986 @table @var
18987 @item point
18988 @item bilinear
18989 @item bicubic
18990 @item spline16
18991 @item spline36
18992 @item lanczos
18993 @end table
18994
18995 Default is bilinear.
18996
18997 @item range, r
18998 Set the color range.
18999
19000 Possible values are:
19001 @table @var
19002 @item input
19003 @item limited
19004 @item full
19005 @end table
19006
19007 Default is same as input.
19008
19009 @item primaries, p
19010 Set the color primaries.
19011
19012 Possible values are:
19013 @table @var
19014 @item input
19015 @item 709
19016 @item unspecified
19017 @item 170m
19018 @item 240m
19019 @item 2020
19020 @end table
19021
19022 Default is same as input.
19023
19024 @item transfer, t
19025 Set the transfer characteristics.
19026
19027 Possible values are:
19028 @table @var
19029 @item input
19030 @item 709
19031 @item unspecified
19032 @item 601
19033 @item linear
19034 @item 2020_10
19035 @item 2020_12
19036 @item smpte2084
19037 @item iec61966-2-1
19038 @item arib-std-b67
19039 @end table
19040
19041 Default is same as input.
19042
19043 @item matrix, m
19044 Set the colorspace matrix.
19045
19046 Possible value are:
19047 @table @var
19048 @item input
19049 @item 709
19050 @item unspecified
19051 @item 470bg
19052 @item 170m
19053 @item 2020_ncl
19054 @item 2020_cl
19055 @end table
19056
19057 Default is same as input.
19058
19059 @item rangein, rin
19060 Set the input color range.
19061
19062 Possible values are:
19063 @table @var
19064 @item input
19065 @item limited
19066 @item full
19067 @end table
19068
19069 Default is same as input.
19070
19071 @item primariesin, pin
19072 Set the input color primaries.
19073
19074 Possible values are:
19075 @table @var
19076 @item input
19077 @item 709
19078 @item unspecified
19079 @item 170m
19080 @item 240m
19081 @item 2020
19082 @end table
19083
19084 Default is same as input.
19085
19086 @item transferin, tin
19087 Set the input transfer characteristics.
19088
19089 Possible values are:
19090 @table @var
19091 @item input
19092 @item 709
19093 @item unspecified
19094 @item 601
19095 @item linear
19096 @item 2020_10
19097 @item 2020_12
19098 @end table
19099
19100 Default is same as input.
19101
19102 @item matrixin, min
19103 Set the input colorspace matrix.
19104
19105 Possible value are:
19106 @table @var
19107 @item input
19108 @item 709
19109 @item unspecified
19110 @item 470bg
19111 @item 170m
19112 @item 2020_ncl
19113 @item 2020_cl
19114 @end table
19115
19116 @item chromal, c
19117 Set the output chroma location.
19118
19119 Possible values are:
19120 @table @var
19121 @item input
19122 @item left
19123 @item center
19124 @item topleft
19125 @item top
19126 @item bottomleft
19127 @item bottom
19128 @end table
19129
19130 @item chromalin, cin
19131 Set the input chroma location.
19132
19133 Possible values are:
19134 @table @var
19135 @item input
19136 @item left
19137 @item center
19138 @item topleft
19139 @item top
19140 @item bottomleft
19141 @item bottom
19142 @end table
19143
19144 @item npl
19145 Set the nominal peak luminance.
19146 @end table
19147
19148 The values of the @option{w} and @option{h} options are expressions
19149 containing the following constants:
19150
19151 @table @var
19152 @item in_w
19153 @item in_h
19154 The input width and height
19155
19156 @item iw
19157 @item ih
19158 These are the same as @var{in_w} and @var{in_h}.
19159
19160 @item out_w
19161 @item out_h
19162 The output (scaled) width and height
19163
19164 @item ow
19165 @item oh
19166 These are the same as @var{out_w} and @var{out_h}
19167
19168 @item a
19169 The same as @var{iw} / @var{ih}
19170
19171 @item sar
19172 input sample aspect ratio
19173
19174 @item dar
19175 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
19176
19177 @item hsub
19178 @item vsub
19179 horizontal and vertical input chroma subsample values. For example for the
19180 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19181
19182 @item ohsub
19183 @item ovsub
19184 horizontal and vertical output chroma subsample values. For example for the
19185 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19186 @end table
19187
19188 @table @option
19189 @end table
19190
19191 @c man end VIDEO FILTERS
19192
19193 @chapter OpenCL Video Filters
19194 @c man begin OPENCL VIDEO FILTERS
19195
19196 Below is a description of the currently available OpenCL video filters.
19197
19198 To enable compilation of these filters you need to configure FFmpeg with
19199 @code{--enable-opencl}.
19200
19201 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
19202 @table @option
19203
19204 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
19205 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
19206 given device parameters.
19207
19208 @item -filter_hw_device @var{name}
19209 Pass the hardware device called @var{name} to all filters in any filter graph.
19210
19211 @end table
19212
19213 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
19214
19215 @itemize
19216 @item
19217 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
19218 @example
19219 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
19220 @end example
19221 @end itemize
19222
19223 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.
19224
19225 @section avgblur_opencl
19226
19227 Apply average blur filter.
19228
19229 The filter accepts the following options:
19230
19231 @table @option
19232 @item sizeX
19233 Set horizontal radius size.
19234 Range is @code{[1, 1024]} and default value is @code{1}.
19235
19236 @item planes
19237 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19238
19239 @item sizeY
19240 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
19241 @end table
19242
19243 @subsection Example
19244
19245 @itemize
19246 @item
19247 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.
19248 @example
19249 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
19250 @end example
19251 @end itemize
19252
19253 @section boxblur_opencl
19254
19255 Apply a boxblur algorithm to the input video.
19256
19257 It accepts the following parameters:
19258
19259 @table @option
19260
19261 @item luma_radius, lr
19262 @item luma_power, lp
19263 @item chroma_radius, cr
19264 @item chroma_power, cp
19265 @item alpha_radius, ar
19266 @item alpha_power, ap
19267
19268 @end table
19269
19270 A description of the accepted options follows.
19271
19272 @table @option
19273 @item luma_radius, lr
19274 @item chroma_radius, cr
19275 @item alpha_radius, ar
19276 Set an expression for the box radius in pixels used for blurring the
19277 corresponding input plane.
19278
19279 The radius value must be a non-negative number, and must not be
19280 greater than the value of the expression @code{min(w,h)/2} for the
19281 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
19282 planes.
19283
19284 Default value for @option{luma_radius} is "2". If not specified,
19285 @option{chroma_radius} and @option{alpha_radius} default to the
19286 corresponding value set for @option{luma_radius}.
19287
19288 The expressions can contain the following constants:
19289 @table @option
19290 @item w
19291 @item h
19292 The input width and height in pixels.
19293
19294 @item cw
19295 @item ch
19296 The input chroma image width and height in pixels.
19297
19298 @item hsub
19299 @item vsub
19300 The horizontal and vertical chroma subsample values. For example, for the
19301 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
19302 @end table
19303
19304 @item luma_power, lp
19305 @item chroma_power, cp
19306 @item alpha_power, ap
19307 Specify how many times the boxblur filter is applied to the
19308 corresponding plane.
19309
19310 Default value for @option{luma_power} is 2. If not specified,
19311 @option{chroma_power} and @option{alpha_power} default to the
19312 corresponding value set for @option{luma_power}.
19313
19314 A value of 0 will disable the effect.
19315 @end table
19316
19317 @subsection Examples
19318
19319 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.
19320
19321 @itemize
19322 @item
19323 Apply a boxblur filter with the luma, chroma, and alpha radius
19324 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.
19325 @example
19326 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
19327 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
19328 @end example
19329
19330 @item
19331 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.
19332
19333 For the luma plane, a 2x2 box radius will be run once.
19334
19335 For the chroma plane, a 4x4 box radius will be run 5 times.
19336
19337 For the alpha plane, a 3x3 box radius will be run 7 times.
19338 @example
19339 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
19340 @end example
19341 @end itemize
19342
19343 @section convolution_opencl
19344
19345 Apply convolution of 3x3, 5x5, 7x7 matrix.
19346
19347 The filter accepts the following options:
19348
19349 @table @option
19350 @item 0m
19351 @item 1m
19352 @item 2m
19353 @item 3m
19354 Set matrix for each plane.
19355 Matrix is sequence of 9, 25 or 49 signed numbers.
19356 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
19357
19358 @item 0rdiv
19359 @item 1rdiv
19360 @item 2rdiv
19361 @item 3rdiv
19362 Set multiplier for calculated value for each plane.
19363 If unset or 0, it will be sum of all matrix elements.
19364 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
19365
19366 @item 0bias
19367 @item 1bias
19368 @item 2bias
19369 @item 3bias
19370 Set bias for each plane. This value is added to the result of the multiplication.
19371 Useful for making the overall image brighter or darker.
19372 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
19373
19374 @end table
19375
19376 @subsection Examples
19377
19378 @itemize
19379 @item
19380 Apply sharpen:
19381 @example
19382 -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
19383 @end example
19384
19385 @item
19386 Apply blur:
19387 @example
19388 -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
19389 @end example
19390
19391 @item
19392 Apply edge enhance:
19393 @example
19394 -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
19395 @end example
19396
19397 @item
19398 Apply edge detect:
19399 @example
19400 -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
19401 @end example
19402
19403 @item
19404 Apply laplacian edge detector which includes diagonals:
19405 @example
19406 -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
19407 @end example
19408
19409 @item
19410 Apply emboss:
19411 @example
19412 -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
19413 @end example
19414 @end itemize
19415
19416 @section dilation_opencl
19417
19418 Apply dilation effect to the video.
19419
19420 This filter replaces the pixel by the local(3x3) maximum.
19421
19422 It accepts the following options:
19423
19424 @table @option
19425 @item threshold0
19426 @item threshold1
19427 @item threshold2
19428 @item threshold3
19429 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19430 If @code{0}, plane will remain unchanged.
19431
19432 @item coordinates
19433 Flag which specifies the pixel to refer to.
19434 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19435
19436 Flags to local 3x3 coordinates region centered on @code{x}:
19437
19438     1 2 3
19439
19440     4 x 5
19441
19442     6 7 8
19443 @end table
19444
19445 @subsection Example
19446
19447 @itemize
19448 @item
19449 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.
19450 @example
19451 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19452 @end example
19453 @end itemize
19454
19455 @section erosion_opencl
19456
19457 Apply erosion effect to the video.
19458
19459 This filter replaces the pixel by the local(3x3) minimum.
19460
19461 It accepts the following options:
19462
19463 @table @option
19464 @item threshold0
19465 @item threshold1
19466 @item threshold2
19467 @item threshold3
19468 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19469 If @code{0}, plane will remain unchanged.
19470
19471 @item coordinates
19472 Flag which specifies the pixel to refer to.
19473 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19474
19475 Flags to local 3x3 coordinates region centered on @code{x}:
19476
19477     1 2 3
19478
19479     4 x 5
19480
19481     6 7 8
19482 @end table
19483
19484 @subsection Example
19485
19486 @itemize
19487 @item
19488 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.
19489 @example
19490 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19491 @end example
19492 @end itemize
19493
19494 @section colorkey_opencl
19495 RGB colorspace color keying.
19496
19497 The filter accepts the following options:
19498
19499 @table @option
19500 @item color
19501 The color which will be replaced with transparency.
19502
19503 @item similarity
19504 Similarity percentage with the key color.
19505
19506 0.01 matches only the exact key color, while 1.0 matches everything.
19507
19508 @item blend
19509 Blend percentage.
19510
19511 0.0 makes pixels either fully transparent, or not transparent at all.
19512
19513 Higher values result in semi-transparent pixels, with a higher transparency
19514 the more similar the pixels color is to the key color.
19515 @end table
19516
19517 @subsection Examples
19518
19519 @itemize
19520 @item
19521 Make every semi-green pixel in the input transparent with some slight blending:
19522 @example
19523 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
19524 @end example
19525 @end itemize
19526
19527 @section nlmeans_opencl
19528
19529 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
19530
19531 @section overlay_opencl
19532
19533 Overlay one video on top of another.
19534
19535 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
19536 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
19537
19538 The filter accepts the following options:
19539
19540 @table @option
19541
19542 @item x
19543 Set the x coordinate of the overlaid video on the main video.
19544 Default value is @code{0}.
19545
19546 @item y
19547 Set the x coordinate of the overlaid video on the main video.
19548 Default value is @code{0}.
19549
19550 @end table
19551
19552 @subsection Examples
19553
19554 @itemize
19555 @item
19556 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
19557 @example
19558 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19559 @end example
19560 @item
19561 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
19562 @example
19563 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19564 @end example
19565
19566 @end itemize
19567
19568 @section prewitt_opencl
19569
19570 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
19571
19572 The filter accepts the following option:
19573
19574 @table @option
19575 @item planes
19576 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19577
19578 @item scale
19579 Set value which will be multiplied with filtered result.
19580 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19581
19582 @item delta
19583 Set value which will be added to filtered result.
19584 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19585 @end table
19586
19587 @subsection Example
19588
19589 @itemize
19590 @item
19591 Apply the Prewitt operator with scale set to 2 and delta set to 10.
19592 @example
19593 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
19594 @end example
19595 @end itemize
19596
19597 @section roberts_opencl
19598 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
19599
19600 The filter accepts the following option:
19601
19602 @table @option
19603 @item planes
19604 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19605
19606 @item scale
19607 Set value which will be multiplied with filtered result.
19608 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19609
19610 @item delta
19611 Set value which will be added to filtered result.
19612 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19613 @end table
19614
19615 @subsection Example
19616
19617 @itemize
19618 @item
19619 Apply the Roberts cross operator with scale set to 2 and delta set to 10
19620 @example
19621 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
19622 @end example
19623 @end itemize
19624
19625 @section sobel_opencl
19626
19627 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
19628
19629 The filter accepts the following option:
19630
19631 @table @option
19632 @item planes
19633 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19634
19635 @item scale
19636 Set value which will be multiplied with filtered result.
19637 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19638
19639 @item delta
19640 Set value which will be added to filtered result.
19641 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19642 @end table
19643
19644 @subsection Example
19645
19646 @itemize
19647 @item
19648 Apply sobel operator with scale set to 2 and delta set to 10
19649 @example
19650 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
19651 @end example
19652 @end itemize
19653
19654 @section tonemap_opencl
19655
19656 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
19657
19658 It accepts the following parameters:
19659
19660 @table @option
19661 @item tonemap
19662 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
19663
19664 @item param
19665 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
19666
19667 @item desat
19668 Apply desaturation for highlights that exceed this level of brightness. The
19669 higher the parameter, the more color information will be preserved. This
19670 setting helps prevent unnaturally blown-out colors for super-highlights, by
19671 (smoothly) turning into white instead. This makes images feel more natural,
19672 at the cost of reducing information about out-of-range colors.
19673
19674 The default value is 0.5, and the algorithm here is a little different from
19675 the cpu version tonemap currently. A setting of 0.0 disables this option.
19676
19677 @item threshold
19678 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
19679 is used to detect whether the scene has changed or not. If the distance between
19680 the current frame average brightness and the current running average exceeds
19681 a threshold value, we would re-calculate scene average and peak brightness.
19682 The default value is 0.2.
19683
19684 @item format
19685 Specify the output pixel format.
19686
19687 Currently supported formats are:
19688 @table @var
19689 @item p010
19690 @item nv12
19691 @end table
19692
19693 @item range, r
19694 Set the output color range.
19695
19696 Possible values are:
19697 @table @var
19698 @item tv/mpeg
19699 @item pc/jpeg
19700 @end table
19701
19702 Default is same as input.
19703
19704 @item primaries, p
19705 Set the output color primaries.
19706
19707 Possible values are:
19708 @table @var
19709 @item bt709
19710 @item bt2020
19711 @end table
19712
19713 Default is same as input.
19714
19715 @item transfer, t
19716 Set the output transfer characteristics.
19717
19718 Possible values are:
19719 @table @var
19720 @item bt709
19721 @item bt2020
19722 @end table
19723
19724 Default is bt709.
19725
19726 @item matrix, m
19727 Set the output colorspace matrix.
19728
19729 Possible value are:
19730 @table @var
19731 @item bt709
19732 @item bt2020
19733 @end table
19734
19735 Default is same as input.
19736
19737 @end table
19738
19739 @subsection Example
19740
19741 @itemize
19742 @item
19743 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
19744 @example
19745 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
19746 @end example
19747 @end itemize
19748
19749 @section unsharp_opencl
19750
19751 Sharpen or blur the input video.
19752
19753 It accepts the following parameters:
19754
19755 @table @option
19756 @item luma_msize_x, lx
19757 Set the luma matrix horizontal size.
19758 Range is @code{[1, 23]} and default value is @code{5}.
19759
19760 @item luma_msize_y, ly
19761 Set the luma matrix vertical size.
19762 Range is @code{[1, 23]} and default value is @code{5}.
19763
19764 @item luma_amount, la
19765 Set the luma effect strength.
19766 Range is @code{[-10, 10]} and default value is @code{1.0}.
19767
19768 Negative values will blur the input video, while positive values will
19769 sharpen it, a value of zero will disable the effect.
19770
19771 @item chroma_msize_x, cx
19772 Set the chroma matrix horizontal size.
19773 Range is @code{[1, 23]} and default value is @code{5}.
19774
19775 @item chroma_msize_y, cy
19776 Set the chroma matrix vertical size.
19777 Range is @code{[1, 23]} and default value is @code{5}.
19778
19779 @item chroma_amount, ca
19780 Set the chroma effect strength.
19781 Range is @code{[-10, 10]} and default value is @code{0.0}.
19782
19783 Negative values will blur the input video, while positive values will
19784 sharpen it, a value of zero will disable the effect.
19785
19786 @end table
19787
19788 All parameters are optional and default to the equivalent of the
19789 string '5:5:1.0:5:5:0.0'.
19790
19791 @subsection Examples
19792
19793 @itemize
19794 @item
19795 Apply strong luma sharpen effect:
19796 @example
19797 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
19798 @end example
19799
19800 @item
19801 Apply a strong blur of both luma and chroma parameters:
19802 @example
19803 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
19804 @end example
19805 @end itemize
19806
19807 @c man end OPENCL VIDEO FILTERS
19808
19809 @chapter Video Sources
19810 @c man begin VIDEO SOURCES
19811
19812 Below is a description of the currently available video sources.
19813
19814 @section buffer
19815
19816 Buffer video frames, and make them available to the filter chain.
19817
19818 This source is mainly intended for a programmatic use, in particular
19819 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
19820
19821 It accepts the following parameters:
19822
19823 @table @option
19824
19825 @item video_size
19826 Specify the size (width and height) of the buffered video frames. For the
19827 syntax of this option, check the
19828 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19829
19830 @item width
19831 The input video width.
19832
19833 @item height
19834 The input video height.
19835
19836 @item pix_fmt
19837 A string representing the pixel format of the buffered video frames.
19838 It may be a number corresponding to a pixel format, or a pixel format
19839 name.
19840
19841 @item time_base
19842 Specify the timebase assumed by the timestamps of the buffered frames.
19843
19844 @item frame_rate
19845 Specify the frame rate expected for the video stream.
19846
19847 @item pixel_aspect, sar
19848 The sample (pixel) aspect ratio of the input video.
19849
19850 @item sws_param
19851 Specify the optional parameters to be used for the scale filter which
19852 is automatically inserted when an input change is detected in the
19853 input size or format.
19854
19855 @item hw_frames_ctx
19856 When using a hardware pixel format, this should be a reference to an
19857 AVHWFramesContext describing input frames.
19858 @end table
19859
19860 For example:
19861 @example
19862 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
19863 @end example
19864
19865 will instruct the source to accept video frames with size 320x240 and
19866 with format "yuv410p", assuming 1/24 as the timestamps timebase and
19867 square pixels (1:1 sample aspect ratio).
19868 Since the pixel format with name "yuv410p" corresponds to the number 6
19869 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
19870 this example corresponds to:
19871 @example
19872 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
19873 @end example
19874
19875 Alternatively, the options can be specified as a flat string, but this
19876 syntax is deprecated:
19877
19878 @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}]
19879
19880 @section cellauto
19881
19882 Create a pattern generated by an elementary cellular automaton.
19883
19884 The initial state of the cellular automaton can be defined through the
19885 @option{filename} and @option{pattern} options. If such options are
19886 not specified an initial state is created randomly.
19887
19888 At each new frame a new row in the video is filled with the result of
19889 the cellular automaton next generation. The behavior when the whole
19890 frame is filled is defined by the @option{scroll} option.
19891
19892 This source accepts the following options:
19893
19894 @table @option
19895 @item filename, f
19896 Read the initial cellular automaton state, i.e. the starting row, from
19897 the specified file.
19898 In the file, each non-whitespace character is considered an alive
19899 cell, a newline will terminate the row, and further characters in the
19900 file will be ignored.
19901
19902 @item pattern, p
19903 Read the initial cellular automaton state, i.e. the starting row, from
19904 the specified string.
19905
19906 Each non-whitespace character in the string is considered an alive
19907 cell, a newline will terminate the row, and further characters in the
19908 string will be ignored.
19909
19910 @item rate, r
19911 Set the video rate, that is the number of frames generated per second.
19912 Default is 25.
19913
19914 @item random_fill_ratio, ratio
19915 Set the random fill ratio for the initial cellular automaton row. It
19916 is a floating point number value ranging from 0 to 1, defaults to
19917 1/PHI.
19918
19919 This option is ignored when a file or a pattern is specified.
19920
19921 @item random_seed, seed
19922 Set the seed for filling randomly the initial row, must be an integer
19923 included between 0 and UINT32_MAX. If not specified, or if explicitly
19924 set to -1, the filter will try to use a good random seed on a best
19925 effort basis.
19926
19927 @item rule
19928 Set the cellular automaton rule, it is a number ranging from 0 to 255.
19929 Default value is 110.
19930
19931 @item size, s
19932 Set the size of the output video. For the syntax of this option, check the
19933 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19934
19935 If @option{filename} or @option{pattern} is specified, the size is set
19936 by default to the width of the specified initial state row, and the
19937 height is set to @var{width} * PHI.
19938
19939 If @option{size} is set, it must contain the width of the specified
19940 pattern string, and the specified pattern will be centered in the
19941 larger row.
19942
19943 If a filename or a pattern string is not specified, the size value
19944 defaults to "320x518" (used for a randomly generated initial state).
19945
19946 @item scroll
19947 If set to 1, scroll the output upward when all the rows in the output
19948 have been already filled. If set to 0, the new generated row will be
19949 written over the top row just after the bottom row is filled.
19950 Defaults to 1.
19951
19952 @item start_full, full
19953 If set to 1, completely fill the output with generated rows before
19954 outputting the first frame.
19955 This is the default behavior, for disabling set the value to 0.
19956
19957 @item stitch
19958 If set to 1, stitch the left and right row edges together.
19959 This is the default behavior, for disabling set the value to 0.
19960 @end table
19961
19962 @subsection Examples
19963
19964 @itemize
19965 @item
19966 Read the initial state from @file{pattern}, and specify an output of
19967 size 200x400.
19968 @example
19969 cellauto=f=pattern:s=200x400
19970 @end example
19971
19972 @item
19973 Generate a random initial row with a width of 200 cells, with a fill
19974 ratio of 2/3:
19975 @example
19976 cellauto=ratio=2/3:s=200x200
19977 @end example
19978
19979 @item
19980 Create a pattern generated by rule 18 starting by a single alive cell
19981 centered on an initial row with width 100:
19982 @example
19983 cellauto=p=@@:s=100x400:full=0:rule=18
19984 @end example
19985
19986 @item
19987 Specify a more elaborated initial pattern:
19988 @example
19989 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
19990 @end example
19991
19992 @end itemize
19993
19994 @anchor{coreimagesrc}
19995 @section coreimagesrc
19996 Video source generated on GPU using Apple's CoreImage API on OSX.
19997
19998 This video source is a specialized version of the @ref{coreimage} video filter.
19999 Use a core image generator at the beginning of the applied filterchain to
20000 generate the content.
20001
20002 The coreimagesrc video source accepts the following options:
20003 @table @option
20004 @item list_generators
20005 List all available generators along with all their respective options as well as
20006 possible minimum and maximum values along with the default values.
20007 @example
20008 list_generators=true
20009 @end example
20010
20011 @item size, s
20012 Specify the size of the sourced video. For the syntax of this option, check the
20013 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20014 The default value is @code{320x240}.
20015
20016 @item rate, r
20017 Specify the frame rate of the sourced video, as the number of frames
20018 generated per second. It has to be a string in the format
20019 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20020 number or a valid video frame rate abbreviation. The default value is
20021 "25".
20022
20023 @item sar
20024 Set the sample aspect ratio of the sourced video.
20025
20026 @item duration, d
20027 Set the duration of the sourced video. See
20028 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20029 for the accepted syntax.
20030
20031 If not specified, or the expressed duration is negative, the video is
20032 supposed to be generated forever.
20033 @end table
20034
20035 Additionally, all options of the @ref{coreimage} video filter are accepted.
20036 A complete filterchain can be used for further processing of the
20037 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
20038 and examples for details.
20039
20040 @subsection Examples
20041
20042 @itemize
20043
20044 @item
20045 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
20046 given as complete and escaped command-line for Apple's standard bash shell:
20047 @example
20048 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
20049 @end example
20050 This example is equivalent to the QRCode example of @ref{coreimage} without the
20051 need for a nullsrc video source.
20052 @end itemize
20053
20054
20055 @section mandelbrot
20056
20057 Generate a Mandelbrot set fractal, and progressively zoom towards the
20058 point specified with @var{start_x} and @var{start_y}.
20059
20060 This source accepts the following options:
20061
20062 @table @option
20063
20064 @item end_pts
20065 Set the terminal pts value. Default value is 400.
20066
20067 @item end_scale
20068 Set the terminal scale value.
20069 Must be a floating point value. Default value is 0.3.
20070
20071 @item inner
20072 Set the inner coloring mode, that is the algorithm used to draw the
20073 Mandelbrot fractal internal region.
20074
20075 It shall assume one of the following values:
20076 @table @option
20077 @item black
20078 Set black mode.
20079 @item convergence
20080 Show time until convergence.
20081 @item mincol
20082 Set color based on point closest to the origin of the iterations.
20083 @item period
20084 Set period mode.
20085 @end table
20086
20087 Default value is @var{mincol}.
20088
20089 @item bailout
20090 Set the bailout value. Default value is 10.0.
20091
20092 @item maxiter
20093 Set the maximum of iterations performed by the rendering
20094 algorithm. Default value is 7189.
20095
20096 @item outer
20097 Set outer coloring mode.
20098 It shall assume one of following values:
20099 @table @option
20100 @item iteration_count
20101 Set iteration count mode.
20102 @item normalized_iteration_count
20103 set normalized iteration count mode.
20104 @end table
20105 Default value is @var{normalized_iteration_count}.
20106
20107 @item rate, r
20108 Set frame rate, expressed as number of frames per second. Default
20109 value is "25".
20110
20111 @item size, s
20112 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
20113 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
20114
20115 @item start_scale
20116 Set the initial scale value. Default value is 3.0.
20117
20118 @item start_x
20119 Set the initial x position. Must be a floating point value between
20120 -100 and 100. Default value is -0.743643887037158704752191506114774.
20121
20122 @item start_y
20123 Set the initial y position. Must be a floating point value between
20124 -100 and 100. Default value is -0.131825904205311970493132056385139.
20125 @end table
20126
20127 @section mptestsrc
20128
20129 Generate various test patterns, as generated by the MPlayer test filter.
20130
20131 The size of the generated video is fixed, and is 256x256.
20132 This source is useful in particular for testing encoding features.
20133
20134 This source accepts the following options:
20135
20136 @table @option
20137
20138 @item rate, r
20139 Specify the frame rate of the sourced video, as the number of frames
20140 generated per second. It has to be a string in the format
20141 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20142 number or a valid video frame rate abbreviation. The default value is
20143 "25".
20144
20145 @item duration, d
20146 Set the duration of the sourced video. See
20147 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20148 for the accepted syntax.
20149
20150 If not specified, or the expressed duration is negative, the video is
20151 supposed to be generated forever.
20152
20153 @item test, t
20154
20155 Set the number or the name of the test to perform. Supported tests are:
20156 @table @option
20157 @item dc_luma
20158 @item dc_chroma
20159 @item freq_luma
20160 @item freq_chroma
20161 @item amp_luma
20162 @item amp_chroma
20163 @item cbp
20164 @item mv
20165 @item ring1
20166 @item ring2
20167 @item all
20168
20169 @end table
20170
20171 Default value is "all", which will cycle through the list of all tests.
20172 @end table
20173
20174 Some examples:
20175 @example
20176 mptestsrc=t=dc_luma
20177 @end example
20178
20179 will generate a "dc_luma" test pattern.
20180
20181 @section frei0r_src
20182
20183 Provide a frei0r source.
20184
20185 To enable compilation of this filter you need to install the frei0r
20186 header and configure FFmpeg with @code{--enable-frei0r}.
20187
20188 This source accepts the following parameters:
20189
20190 @table @option
20191
20192 @item size
20193 The size of the video to generate. For the syntax of this option, check the
20194 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20195
20196 @item framerate
20197 The framerate of the generated video. It may be a string of the form
20198 @var{num}/@var{den} or a frame rate abbreviation.
20199
20200 @item filter_name
20201 The name to the frei0r source to load. For more information regarding frei0r and
20202 how to set the parameters, read the @ref{frei0r} section in the video filters
20203 documentation.
20204
20205 @item filter_params
20206 A '|'-separated list of parameters to pass to the frei0r source.
20207
20208 @end table
20209
20210 For example, to generate a frei0r partik0l source with size 200x200
20211 and frame rate 10 which is overlaid on the overlay filter main input:
20212 @example
20213 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
20214 @end example
20215
20216 @section life
20217
20218 Generate a life pattern.
20219
20220 This source is based on a generalization of John Conway's life game.
20221
20222 The sourced input represents a life grid, each pixel represents a cell
20223 which can be in one of two possible states, alive or dead. Every cell
20224 interacts with its eight neighbours, which are the cells that are
20225 horizontally, vertically, or diagonally adjacent.
20226
20227 At each interaction the grid evolves according to the adopted rule,
20228 which specifies the number of neighbor alive cells which will make a
20229 cell stay alive or born. The @option{rule} option allows one to specify
20230 the rule to adopt.
20231
20232 This source accepts the following options:
20233
20234 @table @option
20235 @item filename, f
20236 Set the file from which to read the initial grid state. In the file,
20237 each non-whitespace character is considered an alive cell, and newline
20238 is used to delimit the end of each row.
20239
20240 If this option is not specified, the initial grid is generated
20241 randomly.
20242
20243 @item rate, r
20244 Set the video rate, that is the number of frames generated per second.
20245 Default is 25.
20246
20247 @item random_fill_ratio, ratio
20248 Set the random fill ratio for the initial random grid. It is a
20249 floating point number value ranging from 0 to 1, defaults to 1/PHI.
20250 It is ignored when a file is specified.
20251
20252 @item random_seed, seed
20253 Set the seed for filling the initial random grid, must be an integer
20254 included between 0 and UINT32_MAX. If not specified, or if explicitly
20255 set to -1, the filter will try to use a good random seed on a best
20256 effort basis.
20257
20258 @item rule
20259 Set the life rule.
20260
20261 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
20262 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
20263 @var{NS} specifies the number of alive neighbor cells which make a
20264 live cell stay alive, and @var{NB} the number of alive neighbor cells
20265 which make a dead cell to become alive (i.e. to "born").
20266 "s" and "b" can be used in place of "S" and "B", respectively.
20267
20268 Alternatively a rule can be specified by an 18-bits integer. The 9
20269 high order bits are used to encode the next cell state if it is alive
20270 for each number of neighbor alive cells, the low order bits specify
20271 the rule for "borning" new cells. Higher order bits encode for an
20272 higher number of neighbor cells.
20273 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
20274 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
20275
20276 Default value is "S23/B3", which is the original Conway's game of life
20277 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
20278 cells, and will born a new cell if there are three alive cells around
20279 a dead cell.
20280
20281 @item size, s
20282 Set the size of the output video. For the syntax of this option, check the
20283 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20284
20285 If @option{filename} is specified, the size is set by default to the
20286 same size of the input file. If @option{size} is set, it must contain
20287 the size specified in the input file, and the initial grid defined in
20288 that file is centered in the larger resulting area.
20289
20290 If a filename is not specified, the size value defaults to "320x240"
20291 (used for a randomly generated initial grid).
20292
20293 @item stitch
20294 If set to 1, stitch the left and right grid edges together, and the
20295 top and bottom edges also. Defaults to 1.
20296
20297 @item mold
20298 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
20299 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
20300 value from 0 to 255.
20301
20302 @item life_color
20303 Set the color of living (or new born) cells.
20304
20305 @item death_color
20306 Set the color of dead cells. If @option{mold} is set, this is the first color
20307 used to represent a dead cell.
20308
20309 @item mold_color
20310 Set mold color, for definitely dead and moldy cells.
20311
20312 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
20313 ffmpeg-utils manual,ffmpeg-utils}.
20314 @end table
20315
20316 @subsection Examples
20317
20318 @itemize
20319 @item
20320 Read a grid from @file{pattern}, and center it on a grid of size
20321 300x300 pixels:
20322 @example
20323 life=f=pattern:s=300x300
20324 @end example
20325
20326 @item
20327 Generate a random grid of size 200x200, with a fill ratio of 2/3:
20328 @example
20329 life=ratio=2/3:s=200x200
20330 @end example
20331
20332 @item
20333 Specify a custom rule for evolving a randomly generated grid:
20334 @example
20335 life=rule=S14/B34
20336 @end example
20337
20338 @item
20339 Full example with slow death effect (mold) using @command{ffplay}:
20340 @example
20341 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
20342 @end example
20343 @end itemize
20344
20345 @anchor{allrgb}
20346 @anchor{allyuv}
20347 @anchor{color}
20348 @anchor{haldclutsrc}
20349 @anchor{nullsrc}
20350 @anchor{pal75bars}
20351 @anchor{pal100bars}
20352 @anchor{rgbtestsrc}
20353 @anchor{smptebars}
20354 @anchor{smptehdbars}
20355 @anchor{testsrc}
20356 @anchor{testsrc2}
20357 @anchor{yuvtestsrc}
20358 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
20359
20360 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
20361
20362 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
20363
20364 The @code{color} source provides an uniformly colored input.
20365
20366 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
20367 @ref{haldclut} filter.
20368
20369 The @code{nullsrc} source returns unprocessed video frames. It is
20370 mainly useful to be employed in analysis / debugging tools, or as the
20371 source for filters which ignore the input data.
20372
20373 The @code{pal75bars} source generates a color bars pattern, based on
20374 EBU PAL recommendations with 75% color levels.
20375
20376 The @code{pal100bars} source generates a color bars pattern, based on
20377 EBU PAL recommendations with 100% color levels.
20378
20379 The @code{rgbtestsrc} source generates an RGB test pattern useful for
20380 detecting RGB vs BGR issues. You should see a red, green and blue
20381 stripe from top to bottom.
20382
20383 The @code{smptebars} source generates a color bars pattern, based on
20384 the SMPTE Engineering Guideline EG 1-1990.
20385
20386 The @code{smptehdbars} source generates a color bars pattern, based on
20387 the SMPTE RP 219-2002.
20388
20389 The @code{testsrc} source generates a test video pattern, showing a
20390 color pattern, a scrolling gradient and a timestamp. This is mainly
20391 intended for testing purposes.
20392
20393 The @code{testsrc2} source is similar to testsrc, but supports more
20394 pixel formats instead of just @code{rgb24}. This allows using it as an
20395 input for other tests without requiring a format conversion.
20396
20397 The @code{yuvtestsrc} source generates an YUV test pattern. You should
20398 see a y, cb and cr stripe from top to bottom.
20399
20400 The sources accept the following parameters:
20401
20402 @table @option
20403
20404 @item level
20405 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
20406 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
20407 pixels to be used as identity matrix for 3D lookup tables. Each component is
20408 coded on a @code{1/(N*N)} scale.
20409
20410 @item color, c
20411 Specify the color of the source, only available in the @code{color}
20412 source. For the syntax of this option, check the
20413 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
20414
20415 @item size, s
20416 Specify the size of the sourced video. For the syntax of this option, check the
20417 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20418 The default value is @code{320x240}.
20419
20420 This option is not available with the @code{allrgb}, @code{allyuv}, and
20421 @code{haldclutsrc} filters.
20422
20423 @item rate, r
20424 Specify the frame rate of the sourced video, as the number of frames
20425 generated per second. It has to be a string in the format
20426 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20427 number or a valid video frame rate abbreviation. The default value is
20428 "25".
20429
20430 @item duration, d
20431 Set the duration of the sourced video. See
20432 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20433 for the accepted syntax.
20434
20435 If not specified, or the expressed duration is negative, the video is
20436 supposed to be generated forever.
20437
20438 @item sar
20439 Set the sample aspect ratio of the sourced video.
20440
20441 @item alpha
20442 Specify the alpha (opacity) of the background, only available in the
20443 @code{testsrc2} source. The value must be between 0 (fully transparent) and
20444 255 (fully opaque, the default).
20445
20446 @item decimals, n
20447 Set the number of decimals to show in the timestamp, only available in the
20448 @code{testsrc} source.
20449
20450 The displayed timestamp value will correspond to the original
20451 timestamp value multiplied by the power of 10 of the specified
20452 value. Default value is 0.
20453 @end table
20454
20455 @subsection Examples
20456
20457 @itemize
20458 @item
20459 Generate a video with a duration of 5.3 seconds, with size
20460 176x144 and a frame rate of 10 frames per second:
20461 @example
20462 testsrc=duration=5.3:size=qcif:rate=10
20463 @end example
20464
20465 @item
20466 The following graph description will generate a red source
20467 with an opacity of 0.2, with size "qcif" and a frame rate of 10
20468 frames per second:
20469 @example
20470 color=c=red@@0.2:s=qcif:r=10
20471 @end example
20472
20473 @item
20474 If the input content is to be ignored, @code{nullsrc} can be used. The
20475 following command generates noise in the luminance plane by employing
20476 the @code{geq} filter:
20477 @example
20478 nullsrc=s=256x256, geq=random(1)*255:128:128
20479 @end example
20480 @end itemize
20481
20482 @subsection Commands
20483
20484 The @code{color} source supports the following commands:
20485
20486 @table @option
20487 @item c, color
20488 Set the color of the created image. Accepts the same syntax of the
20489 corresponding @option{color} option.
20490 @end table
20491
20492 @section openclsrc
20493
20494 Generate video using an OpenCL program.
20495
20496 @table @option
20497
20498 @item source
20499 OpenCL program source file.
20500
20501 @item kernel
20502 Kernel name in program.
20503
20504 @item size, s
20505 Size of frames to generate.  This must be set.
20506
20507 @item format
20508 Pixel format to use for the generated frames.  This must be set.
20509
20510 @item rate, r
20511 Number of frames generated every second.  Default value is '25'.
20512
20513 @end table
20514
20515 For details of how the program loading works, see the @ref{program_opencl}
20516 filter.
20517
20518 Example programs:
20519
20520 @itemize
20521 @item
20522 Generate a colour ramp by setting pixel values from the position of the pixel
20523 in the output image.  (Note that this will work with all pixel formats, but
20524 the generated output will not be the same.)
20525 @verbatim
20526 __kernel void ramp(__write_only image2d_t dst,
20527                    unsigned int index)
20528 {
20529     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20530
20531     float4 val;
20532     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
20533
20534     write_imagef(dst, loc, val);
20535 }
20536 @end verbatim
20537
20538 @item
20539 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
20540 @verbatim
20541 __kernel void sierpinski_carpet(__write_only image2d_t dst,
20542                                 unsigned int index)
20543 {
20544     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20545
20546     float4 value = 0.0f;
20547     int x = loc.x + index;
20548     int y = loc.y + index;
20549     while (x > 0 || y > 0) {
20550         if (x % 3 == 1 && y % 3 == 1) {
20551             value = 1.0f;
20552             break;
20553         }
20554         x /= 3;
20555         y /= 3;
20556     }
20557
20558     write_imagef(dst, loc, value);
20559 }
20560 @end verbatim
20561
20562 @end itemize
20563
20564 @c man end VIDEO SOURCES
20565
20566 @chapter Video Sinks
20567 @c man begin VIDEO SINKS
20568
20569 Below is a description of the currently available video sinks.
20570
20571 @section buffersink
20572
20573 Buffer video frames, and make them available to the end of the filter
20574 graph.
20575
20576 This sink is mainly intended for programmatic use, in particular
20577 through the interface defined in @file{libavfilter/buffersink.h}
20578 or the options system.
20579
20580 It accepts a pointer to an AVBufferSinkContext structure, which
20581 defines the incoming buffers' formats, to be passed as the opaque
20582 parameter to @code{avfilter_init_filter} for initialization.
20583
20584 @section nullsink
20585
20586 Null video sink: do absolutely nothing with the input video. It is
20587 mainly useful as a template and for use in analysis / debugging
20588 tools.
20589
20590 @c man end VIDEO SINKS
20591
20592 @chapter Multimedia Filters
20593 @c man begin MULTIMEDIA FILTERS
20594
20595 Below is a description of the currently available multimedia filters.
20596
20597 @section abitscope
20598
20599 Convert input audio to a video output, displaying the audio bit scope.
20600
20601 The filter accepts the following options:
20602
20603 @table @option
20604 @item rate, r
20605 Set frame rate, expressed as number of frames per second. Default
20606 value is "25".
20607
20608 @item size, s
20609 Specify the video size for the output. For the syntax of this option, check the
20610 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20611 Default value is @code{1024x256}.
20612
20613 @item colors
20614 Specify list of colors separated by space or by '|' which will be used to
20615 draw channels. Unrecognized or missing colors will be replaced
20616 by white color.
20617 @end table
20618
20619 @section ahistogram
20620
20621 Convert input audio to a video output, displaying the volume histogram.
20622
20623 The filter accepts the following options:
20624
20625 @table @option
20626 @item dmode
20627 Specify how histogram is calculated.
20628
20629 It accepts the following values:
20630 @table @samp
20631 @item single
20632 Use single histogram for all channels.
20633 @item separate
20634 Use separate histogram for each channel.
20635 @end table
20636 Default is @code{single}.
20637
20638 @item rate, r
20639 Set frame rate, expressed as number of frames per second. Default
20640 value is "25".
20641
20642 @item size, s
20643 Specify the video size for the output. For the syntax of this option, check the
20644 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20645 Default value is @code{hd720}.
20646
20647 @item scale
20648 Set display scale.
20649
20650 It accepts the following values:
20651 @table @samp
20652 @item log
20653 logarithmic
20654 @item sqrt
20655 square root
20656 @item cbrt
20657 cubic root
20658 @item lin
20659 linear
20660 @item rlog
20661 reverse logarithmic
20662 @end table
20663 Default is @code{log}.
20664
20665 @item ascale
20666 Set amplitude scale.
20667
20668 It accepts the following values:
20669 @table @samp
20670 @item log
20671 logarithmic
20672 @item lin
20673 linear
20674 @end table
20675 Default is @code{log}.
20676
20677 @item acount
20678 Set how much frames to accumulate in histogram.
20679 Default is 1. Setting this to -1 accumulates all frames.
20680
20681 @item rheight
20682 Set histogram ratio of window height.
20683
20684 @item slide
20685 Set sonogram sliding.
20686
20687 It accepts the following values:
20688 @table @samp
20689 @item replace
20690 replace old rows with new ones.
20691 @item scroll
20692 scroll from top to bottom.
20693 @end table
20694 Default is @code{replace}.
20695 @end table
20696
20697 @section aphasemeter
20698
20699 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
20700 representing mean phase of current audio frame. A video output can also be produced and is
20701 enabled by default. The audio is passed through as first output.
20702
20703 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
20704 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
20705 and @code{1} means channels are in phase.
20706
20707 The filter accepts the following options, all related to its video output:
20708
20709 @table @option
20710 @item rate, r
20711 Set the output frame rate. Default value is @code{25}.
20712
20713 @item size, s
20714 Set the video size for the output. For the syntax of this option, check the
20715 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20716 Default value is @code{800x400}.
20717
20718 @item rc
20719 @item gc
20720 @item bc
20721 Specify the red, green, blue contrast. Default values are @code{2},
20722 @code{7} and @code{1}.
20723 Allowed range is @code{[0, 255]}.
20724
20725 @item mpc
20726 Set color which will be used for drawing median phase. If color is
20727 @code{none} which is default, no median phase value will be drawn.
20728
20729 @item video
20730 Enable video output. Default is enabled.
20731 @end table
20732
20733 @section avectorscope
20734
20735 Convert input audio to a video output, representing the audio vector
20736 scope.
20737
20738 The filter is used to measure the difference between channels of stereo
20739 audio stream. A monoaural signal, consisting of identical left and right
20740 signal, results in straight vertical line. Any stereo separation is visible
20741 as a deviation from this line, creating a Lissajous figure.
20742 If the straight (or deviation from it) but horizontal line appears this
20743 indicates that the left and right channels are out of phase.
20744
20745 The filter accepts the following options:
20746
20747 @table @option
20748 @item mode, m
20749 Set the vectorscope mode.
20750
20751 Available values are:
20752 @table @samp
20753 @item lissajous
20754 Lissajous rotated by 45 degrees.
20755
20756 @item lissajous_xy
20757 Same as above but not rotated.
20758
20759 @item polar
20760 Shape resembling half of circle.
20761 @end table
20762
20763 Default value is @samp{lissajous}.
20764
20765 @item size, s
20766 Set the video size for the output. For the syntax of this option, check the
20767 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20768 Default value is @code{400x400}.
20769
20770 @item rate, r
20771 Set the output frame rate. Default value is @code{25}.
20772
20773 @item rc
20774 @item gc
20775 @item bc
20776 @item ac
20777 Specify the red, green, blue and alpha contrast. Default values are @code{40},
20778 @code{160}, @code{80} and @code{255}.
20779 Allowed range is @code{[0, 255]}.
20780
20781 @item rf
20782 @item gf
20783 @item bf
20784 @item af
20785 Specify the red, green, blue and alpha fade. Default values are @code{15},
20786 @code{10}, @code{5} and @code{5}.
20787 Allowed range is @code{[0, 255]}.
20788
20789 @item zoom
20790 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
20791 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
20792
20793 @item draw
20794 Set the vectorscope drawing mode.
20795
20796 Available values are:
20797 @table @samp
20798 @item dot
20799 Draw dot for each sample.
20800
20801 @item line
20802 Draw line between previous and current sample.
20803 @end table
20804
20805 Default value is @samp{dot}.
20806
20807 @item scale
20808 Specify amplitude scale of audio samples.
20809
20810 Available values are:
20811 @table @samp
20812 @item lin
20813 Linear.
20814
20815 @item sqrt
20816 Square root.
20817
20818 @item cbrt
20819 Cubic root.
20820
20821 @item log
20822 Logarithmic.
20823 @end table
20824
20825 @item swap
20826 Swap left channel axis with right channel axis.
20827
20828 @item mirror
20829 Mirror axis.
20830
20831 @table @samp
20832 @item none
20833 No mirror.
20834
20835 @item x
20836 Mirror only x axis.
20837
20838 @item y
20839 Mirror only y axis.
20840
20841 @item xy
20842 Mirror both axis.
20843 @end table
20844
20845 @end table
20846
20847 @subsection Examples
20848
20849 @itemize
20850 @item
20851 Complete example using @command{ffplay}:
20852 @example
20853 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
20854              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
20855 @end example
20856 @end itemize
20857
20858 @section bench, abench
20859
20860 Benchmark part of a filtergraph.
20861
20862 The filter accepts the following options:
20863
20864 @table @option
20865 @item action
20866 Start or stop a timer.
20867
20868 Available values are:
20869 @table @samp
20870 @item start
20871 Get the current time, set it as frame metadata (using the key
20872 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
20873
20874 @item stop
20875 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
20876 the input frame metadata to get the time difference. Time difference, average,
20877 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
20878 @code{min}) are then printed. The timestamps are expressed in seconds.
20879 @end table
20880 @end table
20881
20882 @subsection Examples
20883
20884 @itemize
20885 @item
20886 Benchmark @ref{selectivecolor} filter:
20887 @example
20888 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
20889 @end example
20890 @end itemize
20891
20892 @section concat
20893
20894 Concatenate audio and video streams, joining them together one after the
20895 other.
20896
20897 The filter works on segments of synchronized video and audio streams. All
20898 segments must have the same number of streams of each type, and that will
20899 also be the number of streams at output.
20900
20901 The filter accepts the following options:
20902
20903 @table @option
20904
20905 @item n
20906 Set the number of segments. Default is 2.
20907
20908 @item v
20909 Set the number of output video streams, that is also the number of video
20910 streams in each segment. Default is 1.
20911
20912 @item a
20913 Set the number of output audio streams, that is also the number of audio
20914 streams in each segment. Default is 0.
20915
20916 @item unsafe
20917 Activate unsafe mode: do not fail if segments have a different format.
20918
20919 @end table
20920
20921 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
20922 @var{a} audio outputs.
20923
20924 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
20925 segment, in the same order as the outputs, then the inputs for the second
20926 segment, etc.
20927
20928 Related streams do not always have exactly the same duration, for various
20929 reasons including codec frame size or sloppy authoring. For that reason,
20930 related synchronized streams (e.g. a video and its audio track) should be
20931 concatenated at once. The concat filter will use the duration of the longest
20932 stream in each segment (except the last one), and if necessary pad shorter
20933 audio streams with silence.
20934
20935 For this filter to work correctly, all segments must start at timestamp 0.
20936
20937 All corresponding streams must have the same parameters in all segments; the
20938 filtering system will automatically select a common pixel format for video
20939 streams, and a common sample format, sample rate and channel layout for
20940 audio streams, but other settings, such as resolution, must be converted
20941 explicitly by the user.
20942
20943 Different frame rates are acceptable but will result in variable frame rate
20944 at output; be sure to configure the output file to handle it.
20945
20946 @subsection Examples
20947
20948 @itemize
20949 @item
20950 Concatenate an opening, an episode and an ending, all in bilingual version
20951 (video in stream 0, audio in streams 1 and 2):
20952 @example
20953 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
20954   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
20955    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
20956   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
20957 @end example
20958
20959 @item
20960 Concatenate two parts, handling audio and video separately, using the
20961 (a)movie sources, and adjusting the resolution:
20962 @example
20963 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
20964 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
20965 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
20966 @end example
20967 Note that a desync will happen at the stitch if the audio and video streams
20968 do not have exactly the same duration in the first file.
20969
20970 @end itemize
20971
20972 @subsection Commands
20973
20974 This filter supports the following commands:
20975 @table @option
20976 @item next
20977 Close the current segment and step to the next one
20978 @end table
20979
20980 @section drawgraph, adrawgraph
20981
20982 Draw a graph using input video or audio metadata.
20983
20984 It accepts the following parameters:
20985
20986 @table @option
20987 @item m1
20988 Set 1st frame metadata key from which metadata values will be used to draw a graph.
20989
20990 @item fg1
20991 Set 1st foreground color expression.
20992
20993 @item m2
20994 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
20995
20996 @item fg2
20997 Set 2nd foreground color expression.
20998
20999 @item m3
21000 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
21001
21002 @item fg3
21003 Set 3rd foreground color expression.
21004
21005 @item m4
21006 Set 4th frame metadata key from which metadata values will be used to draw a graph.
21007
21008 @item fg4
21009 Set 4th foreground color expression.
21010
21011 @item min
21012 Set minimal value of metadata value.
21013
21014 @item max
21015 Set maximal value of metadata value.
21016
21017 @item bg
21018 Set graph background color. Default is white.
21019
21020 @item mode
21021 Set graph mode.
21022
21023 Available values for mode is:
21024 @table @samp
21025 @item bar
21026 @item dot
21027 @item line
21028 @end table
21029
21030 Default is @code{line}.
21031
21032 @item slide
21033 Set slide mode.
21034
21035 Available values for slide is:
21036 @table @samp
21037 @item frame
21038 Draw new frame when right border is reached.
21039
21040 @item replace
21041 Replace old columns with new ones.
21042
21043 @item scroll
21044 Scroll from right to left.
21045
21046 @item rscroll
21047 Scroll from left to right.
21048
21049 @item picture
21050 Draw single picture.
21051 @end table
21052
21053 Default is @code{frame}.
21054
21055 @item size
21056 Set size of graph video. For the syntax of this option, check the
21057 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21058 The default value is @code{900x256}.
21059
21060 The foreground color expressions can use the following variables:
21061 @table @option
21062 @item MIN
21063 Minimal value of metadata value.
21064
21065 @item MAX
21066 Maximal value of metadata value.
21067
21068 @item VAL
21069 Current metadata key value.
21070 @end table
21071
21072 The color is defined as 0xAABBGGRR.
21073 @end table
21074
21075 Example using metadata from @ref{signalstats} filter:
21076 @example
21077 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
21078 @end example
21079
21080 Example using metadata from @ref{ebur128} filter:
21081 @example
21082 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
21083 @end example
21084
21085 @anchor{ebur128}
21086 @section ebur128
21087
21088 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
21089 level. By default, it logs a message at a frequency of 10Hz with the
21090 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
21091 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
21092
21093 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
21094 sample format is double-precision floating point. The input stream will be converted to
21095 this specification, if needed. Users may need to insert aformat and/or aresample filters
21096 after this filter to obtain the original parameters.
21097
21098 The filter also has a video output (see the @var{video} option) with a real
21099 time graph to observe the loudness evolution. The graphic contains the logged
21100 message mentioned above, so it is not printed anymore when this option is set,
21101 unless the verbose logging is set. The main graphing area contains the
21102 short-term loudness (3 seconds of analysis), and the gauge on the right is for
21103 the momentary loudness (400 milliseconds), but can optionally be configured
21104 to instead display short-term loudness (see @var{gauge}).
21105
21106 The green area marks a  +/- 1LU target range around the target loudness
21107 (-23LUFS by default, unless modified through @var{target}).
21108
21109 More information about the Loudness Recommendation EBU R128 on
21110 @url{http://tech.ebu.ch/loudness}.
21111
21112 The filter accepts the following options:
21113
21114 @table @option
21115
21116 @item video
21117 Activate the video output. The audio stream is passed unchanged whether this
21118 option is set or no. The video stream will be the first output stream if
21119 activated. Default is @code{0}.
21120
21121 @item size
21122 Set the video size. This option is for video only. For the syntax of this
21123 option, check the
21124 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21125 Default and minimum resolution is @code{640x480}.
21126
21127 @item meter
21128 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
21129 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
21130 other integer value between this range is allowed.
21131
21132 @item metadata
21133 Set metadata injection. If set to @code{1}, the audio input will be segmented
21134 into 100ms output frames, each of them containing various loudness information
21135 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
21136
21137 Default is @code{0}.
21138
21139 @item framelog
21140 Force the frame logging level.
21141
21142 Available values are:
21143 @table @samp
21144 @item info
21145 information logging level
21146 @item verbose
21147 verbose logging level
21148 @end table
21149
21150 By default, the logging level is set to @var{info}. If the @option{video} or
21151 the @option{metadata} options are set, it switches to @var{verbose}.
21152
21153 @item peak
21154 Set peak mode(s).
21155
21156 Available modes can be cumulated (the option is a @code{flag} type). Possible
21157 values are:
21158 @table @samp
21159 @item none
21160 Disable any peak mode (default).
21161 @item sample
21162 Enable sample-peak mode.
21163
21164 Simple peak mode looking for the higher sample value. It logs a message
21165 for sample-peak (identified by @code{SPK}).
21166 @item true
21167 Enable true-peak mode.
21168
21169 If enabled, the peak lookup is done on an over-sampled version of the input
21170 stream for better peak accuracy. It logs a message for true-peak.
21171 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
21172 This mode requires a build with @code{libswresample}.
21173 @end table
21174
21175 @item dualmono
21176 Treat mono input files as "dual mono". If a mono file is intended for playback
21177 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
21178 If set to @code{true}, this option will compensate for this effect.
21179 Multi-channel input files are not affected by this option.
21180
21181 @item panlaw
21182 Set a specific pan law to be used for the measurement of dual mono files.
21183 This parameter is optional, and has a default value of -3.01dB.
21184
21185 @item target
21186 Set a specific target level (in LUFS) used as relative zero in the visualization.
21187 This parameter is optional and has a default value of -23LUFS as specified
21188 by EBU R128. However, material published online may prefer a level of -16LUFS
21189 (e.g. for use with podcasts or video platforms).
21190
21191 @item gauge
21192 Set the value displayed by the gauge. Valid values are @code{momentary} and s
21193 @code{shortterm}. By default the momentary value will be used, but in certain
21194 scenarios it may be more useful to observe the short term value instead (e.g.
21195 live mixing).
21196
21197 @item scale
21198 Sets the display scale for the loudness. Valid parameters are @code{absolute}
21199 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
21200 video output, not the summary or continuous log output.
21201 @end table
21202
21203 @subsection Examples
21204
21205 @itemize
21206 @item
21207 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
21208 @example
21209 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
21210 @end example
21211
21212 @item
21213 Run an analysis with @command{ffmpeg}:
21214 @example
21215 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
21216 @end example
21217 @end itemize
21218
21219 @section interleave, ainterleave
21220
21221 Temporally interleave frames from several inputs.
21222
21223 @code{interleave} works with video inputs, @code{ainterleave} with audio.
21224
21225 These filters read frames from several inputs and send the oldest
21226 queued frame to the output.
21227
21228 Input streams must have well defined, monotonically increasing frame
21229 timestamp values.
21230
21231 In order to submit one frame to output, these filters need to enqueue
21232 at least one frame for each input, so they cannot work in case one
21233 input is not yet terminated and will not receive incoming frames.
21234
21235 For example consider the case when one input is a @code{select} filter
21236 which always drops input frames. The @code{interleave} filter will keep
21237 reading from that input, but it will never be able to send new frames
21238 to output until the input sends an end-of-stream signal.
21239
21240 Also, depending on inputs synchronization, the filters will drop
21241 frames in case one input receives more frames than the other ones, and
21242 the queue is already filled.
21243
21244 These filters accept the following options:
21245
21246 @table @option
21247 @item nb_inputs, n
21248 Set the number of different inputs, it is 2 by default.
21249 @end table
21250
21251 @subsection Examples
21252
21253 @itemize
21254 @item
21255 Interleave frames belonging to different streams using @command{ffmpeg}:
21256 @example
21257 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
21258 @end example
21259
21260 @item
21261 Add flickering blur effect:
21262 @example
21263 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
21264 @end example
21265 @end itemize
21266
21267 @section metadata, ametadata
21268
21269 Manipulate frame metadata.
21270
21271 This filter accepts the following options:
21272
21273 @table @option
21274 @item mode
21275 Set mode of operation of the filter.
21276
21277 Can be one of the following:
21278
21279 @table @samp
21280 @item select
21281 If both @code{value} and @code{key} is set, select frames
21282 which have such metadata. If only @code{key} is set, select
21283 every frame that has such key in metadata.
21284
21285 @item add
21286 Add new metadata @code{key} and @code{value}. If key is already available
21287 do nothing.
21288
21289 @item modify
21290 Modify value of already present key.
21291
21292 @item delete
21293 If @code{value} is set, delete only keys that have such value.
21294 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
21295 the frame.
21296
21297 @item print
21298 Print key and its value if metadata was found. If @code{key} is not set print all
21299 metadata values available in frame.
21300 @end table
21301
21302 @item key
21303 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
21304
21305 @item value
21306 Set metadata value which will be used. This option is mandatory for
21307 @code{modify} and @code{add} mode.
21308
21309 @item function
21310 Which function to use when comparing metadata value and @code{value}.
21311
21312 Can be one of following:
21313
21314 @table @samp
21315 @item same_str
21316 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
21317
21318 @item starts_with
21319 Values are interpreted as strings, returns true if metadata value starts with
21320 the @code{value} option string.
21321
21322 @item less
21323 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
21324
21325 @item equal
21326 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
21327
21328 @item greater
21329 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
21330
21331 @item expr
21332 Values are interpreted as floats, returns true if expression from option @code{expr}
21333 evaluates to true.
21334 @end table
21335
21336 @item expr
21337 Set expression which is used when @code{function} is set to @code{expr}.
21338 The expression is evaluated through the eval API and can contain the following
21339 constants:
21340
21341 @table @option
21342 @item VALUE1
21343 Float representation of @code{value} from metadata key.
21344
21345 @item VALUE2
21346 Float representation of @code{value} as supplied by user in @code{value} option.
21347 @end table
21348
21349 @item file
21350 If specified in @code{print} mode, output is written to the named file. Instead of
21351 plain filename any writable url can be specified. Filename ``-'' is a shorthand
21352 for standard output. If @code{file} option is not set, output is written to the log
21353 with AV_LOG_INFO loglevel.
21354
21355 @end table
21356
21357 @subsection Examples
21358
21359 @itemize
21360 @item
21361 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
21362 between 0 and 1.
21363 @example
21364 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
21365 @end example
21366 @item
21367 Print silencedetect output to file @file{metadata.txt}.
21368 @example
21369 silencedetect,ametadata=mode=print:file=metadata.txt
21370 @end example
21371 @item
21372 Direct all metadata to a pipe with file descriptor 4.
21373 @example
21374 metadata=mode=print:file='pipe\:4'
21375 @end example
21376 @end itemize
21377
21378 @section perms, aperms
21379
21380 Set read/write permissions for the output frames.
21381
21382 These filters are mainly aimed at developers to test direct path in the
21383 following filter in the filtergraph.
21384
21385 The filters accept the following options:
21386
21387 @table @option
21388 @item mode
21389 Select the permissions mode.
21390
21391 It accepts the following values:
21392 @table @samp
21393 @item none
21394 Do nothing. This is the default.
21395 @item ro
21396 Set all the output frames read-only.
21397 @item rw
21398 Set all the output frames directly writable.
21399 @item toggle
21400 Make the frame read-only if writable, and writable if read-only.
21401 @item random
21402 Set each output frame read-only or writable randomly.
21403 @end table
21404
21405 @item seed
21406 Set the seed for the @var{random} mode, must be an integer included between
21407 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
21408 @code{-1}, the filter will try to use a good random seed on a best effort
21409 basis.
21410 @end table
21411
21412 Note: in case of auto-inserted filter between the permission filter and the
21413 following one, the permission might not be received as expected in that
21414 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
21415 perms/aperms filter can avoid this problem.
21416
21417 @section realtime, arealtime
21418
21419 Slow down filtering to match real time approximately.
21420
21421 These filters will pause the filtering for a variable amount of time to
21422 match the output rate with the input timestamps.
21423 They are similar to the @option{re} option to @code{ffmpeg}.
21424
21425 They accept the following options:
21426
21427 @table @option
21428 @item limit
21429 Time limit for the pauses. Any pause longer than that will be considered
21430 a timestamp discontinuity and reset the timer. Default is 2 seconds.
21431 @item speed
21432 Speed factor for processing. The value must be a float larger than zero.
21433 Values larger than 1.0 will result in faster than realtime processing,
21434 smaller will slow processing down. The @var{limit} is automatically adapted
21435 accordingly. Default is 1.0.
21436
21437 A processing speed faster than what is possible without these filters cannot
21438 be achieved.
21439 @end table
21440
21441 @anchor{select}
21442 @section select, aselect
21443
21444 Select frames to pass in output.
21445
21446 This filter accepts the following options:
21447
21448 @table @option
21449
21450 @item expr, e
21451 Set expression, which is evaluated for each input frame.
21452
21453 If the expression is evaluated to zero, the frame is discarded.
21454
21455 If the evaluation result is negative or NaN, the frame is sent to the
21456 first output; otherwise it is sent to the output with index
21457 @code{ceil(val)-1}, assuming that the input index starts from 0.
21458
21459 For example a value of @code{1.2} corresponds to the output with index
21460 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
21461
21462 @item outputs, n
21463 Set the number of outputs. The output to which to send the selected
21464 frame is based on the result of the evaluation. Default value is 1.
21465 @end table
21466
21467 The expression can contain the following constants:
21468
21469 @table @option
21470 @item n
21471 The (sequential) number of the filtered frame, starting from 0.
21472
21473 @item selected_n
21474 The (sequential) number of the selected frame, starting from 0.
21475
21476 @item prev_selected_n
21477 The sequential number of the last selected frame. It's NAN if undefined.
21478
21479 @item TB
21480 The timebase of the input timestamps.
21481
21482 @item pts
21483 The PTS (Presentation TimeStamp) of the filtered video frame,
21484 expressed in @var{TB} units. It's NAN if undefined.
21485
21486 @item t
21487 The PTS of the filtered video frame,
21488 expressed in seconds. It's NAN if undefined.
21489
21490 @item prev_pts
21491 The PTS of the previously filtered video frame. It's NAN if undefined.
21492
21493 @item prev_selected_pts
21494 The PTS of the last previously filtered video frame. It's NAN if undefined.
21495
21496 @item prev_selected_t
21497 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
21498
21499 @item start_pts
21500 The PTS of the first video frame in the video. It's NAN if undefined.
21501
21502 @item start_t
21503 The time of the first video frame in the video. It's NAN if undefined.
21504
21505 @item pict_type @emph{(video only)}
21506 The type of the filtered frame. It can assume one of the following
21507 values:
21508 @table @option
21509 @item I
21510 @item P
21511 @item B
21512 @item S
21513 @item SI
21514 @item SP
21515 @item BI
21516 @end table
21517
21518 @item interlace_type @emph{(video only)}
21519 The frame interlace type. It can assume one of the following values:
21520 @table @option
21521 @item PROGRESSIVE
21522 The frame is progressive (not interlaced).
21523 @item TOPFIRST
21524 The frame is top-field-first.
21525 @item BOTTOMFIRST
21526 The frame is bottom-field-first.
21527 @end table
21528
21529 @item consumed_sample_n @emph{(audio only)}
21530 the number of selected samples before the current frame
21531
21532 @item samples_n @emph{(audio only)}
21533 the number of samples in the current frame
21534
21535 @item sample_rate @emph{(audio only)}
21536 the input sample rate
21537
21538 @item key
21539 This is 1 if the filtered frame is a key-frame, 0 otherwise.
21540
21541 @item pos
21542 the position in the file of the filtered frame, -1 if the information
21543 is not available (e.g. for synthetic video)
21544
21545 @item scene @emph{(video only)}
21546 value between 0 and 1 to indicate a new scene; a low value reflects a low
21547 probability for the current frame to introduce a new scene, while a higher
21548 value means the current frame is more likely to be one (see the example below)
21549
21550 @item concatdec_select
21551 The concat demuxer can select only part of a concat input file by setting an
21552 inpoint and an outpoint, but the output packets may not be entirely contained
21553 in the selected interval. By using this variable, it is possible to skip frames
21554 generated by the concat demuxer which are not exactly contained in the selected
21555 interval.
21556
21557 This works by comparing the frame pts against the @var{lavf.concat.start_time}
21558 and the @var{lavf.concat.duration} packet metadata values which are also
21559 present in the decoded frames.
21560
21561 The @var{concatdec_select} variable is -1 if the frame pts is at least
21562 start_time and either the duration metadata is missing or the frame pts is less
21563 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
21564 missing.
21565
21566 That basically means that an input frame is selected if its pts is within the
21567 interval set by the concat demuxer.
21568
21569 @end table
21570
21571 The default value of the select expression is "1".
21572
21573 @subsection Examples
21574
21575 @itemize
21576 @item
21577 Select all frames in input:
21578 @example
21579 select
21580 @end example
21581
21582 The example above is the same as:
21583 @example
21584 select=1
21585 @end example
21586
21587 @item
21588 Skip all frames:
21589 @example
21590 select=0
21591 @end example
21592
21593 @item
21594 Select only I-frames:
21595 @example
21596 select='eq(pict_type\,I)'
21597 @end example
21598
21599 @item
21600 Select one frame every 100:
21601 @example
21602 select='not(mod(n\,100))'
21603 @end example
21604
21605 @item
21606 Select only frames contained in the 10-20 time interval:
21607 @example
21608 select=between(t\,10\,20)
21609 @end example
21610
21611 @item
21612 Select only I-frames contained in the 10-20 time interval:
21613 @example
21614 select=between(t\,10\,20)*eq(pict_type\,I)
21615 @end example
21616
21617 @item
21618 Select frames with a minimum distance of 10 seconds:
21619 @example
21620 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
21621 @end example
21622
21623 @item
21624 Use aselect to select only audio frames with samples number > 100:
21625 @example
21626 aselect='gt(samples_n\,100)'
21627 @end example
21628
21629 @item
21630 Create a mosaic of the first scenes:
21631 @example
21632 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
21633 @end example
21634
21635 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
21636 choice.
21637
21638 @item
21639 Send even and odd frames to separate outputs, and compose them:
21640 @example
21641 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
21642 @end example
21643
21644 @item
21645 Select useful frames from an ffconcat file which is using inpoints and
21646 outpoints but where the source files are not intra frame only.
21647 @example
21648 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
21649 @end example
21650 @end itemize
21651
21652 @section sendcmd, asendcmd
21653
21654 Send commands to filters in the filtergraph.
21655
21656 These filters read commands to be sent to other filters in the
21657 filtergraph.
21658
21659 @code{sendcmd} must be inserted between two video filters,
21660 @code{asendcmd} must be inserted between two audio filters, but apart
21661 from that they act the same way.
21662
21663 The specification of commands can be provided in the filter arguments
21664 with the @var{commands} option, or in a file specified by the
21665 @var{filename} option.
21666
21667 These filters accept the following options:
21668 @table @option
21669 @item commands, c
21670 Set the commands to be read and sent to the other filters.
21671 @item filename, f
21672 Set the filename of the commands to be read and sent to the other
21673 filters.
21674 @end table
21675
21676 @subsection Commands syntax
21677
21678 A commands description consists of a sequence of interval
21679 specifications, comprising a list of commands to be executed when a
21680 particular event related to that interval occurs. The occurring event
21681 is typically the current frame time entering or leaving a given time
21682 interval.
21683
21684 An interval is specified by the following syntax:
21685 @example
21686 @var{START}[-@var{END}] @var{COMMANDS};
21687 @end example
21688
21689 The time interval is specified by the @var{START} and @var{END} times.
21690 @var{END} is optional and defaults to the maximum time.
21691
21692 The current frame time is considered within the specified interval if
21693 it is included in the interval [@var{START}, @var{END}), that is when
21694 the time is greater or equal to @var{START} and is lesser than
21695 @var{END}.
21696
21697 @var{COMMANDS} consists of a sequence of one or more command
21698 specifications, separated by ",", relating to that interval.  The
21699 syntax of a command specification is given by:
21700 @example
21701 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
21702 @end example
21703
21704 @var{FLAGS} is optional and specifies the type of events relating to
21705 the time interval which enable sending the specified command, and must
21706 be a non-null sequence of identifier flags separated by "+" or "|" and
21707 enclosed between "[" and "]".
21708
21709 The following flags are recognized:
21710 @table @option
21711 @item enter
21712 The command is sent when the current frame timestamp enters the
21713 specified interval. In other words, the command is sent when the
21714 previous frame timestamp was not in the given interval, and the
21715 current is.
21716
21717 @item leave
21718 The command is sent when the current frame timestamp leaves the
21719 specified interval. In other words, the command is sent when the
21720 previous frame timestamp was in the given interval, and the
21721 current is not.
21722 @end table
21723
21724 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
21725 assumed.
21726
21727 @var{TARGET} specifies the target of the command, usually the name of
21728 the filter class or a specific filter instance name.
21729
21730 @var{COMMAND} specifies the name of the command for the target filter.
21731
21732 @var{ARG} is optional and specifies the optional list of argument for
21733 the given @var{COMMAND}.
21734
21735 Between one interval specification and another, whitespaces, or
21736 sequences of characters starting with @code{#} until the end of line,
21737 are ignored and can be used to annotate comments.
21738
21739 A simplified BNF description of the commands specification syntax
21740 follows:
21741 @example
21742 @var{COMMAND_FLAG}  ::= "enter" | "leave"
21743 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
21744 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
21745 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
21746 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
21747 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
21748 @end example
21749
21750 @subsection Examples
21751
21752 @itemize
21753 @item
21754 Specify audio tempo change at second 4:
21755 @example
21756 asendcmd=c='4.0 atempo tempo 1.5',atempo
21757 @end example
21758
21759 @item
21760 Target a specific filter instance:
21761 @example
21762 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
21763 @end example
21764
21765 @item
21766 Specify a list of drawtext and hue commands in a file.
21767 @example
21768 # show text in the interval 5-10
21769 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
21770          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
21771
21772 # desaturate the image in the interval 15-20
21773 15.0-20.0 [enter] hue s 0,
21774           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
21775           [leave] hue s 1,
21776           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
21777
21778 # apply an exponential saturation fade-out effect, starting from time 25
21779 25 [enter] hue s exp(25-t)
21780 @end example
21781
21782 A filtergraph allowing to read and process the above command list
21783 stored in a file @file{test.cmd}, can be specified with:
21784 @example
21785 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
21786 @end example
21787 @end itemize
21788
21789 @anchor{setpts}
21790 @section setpts, asetpts
21791
21792 Change the PTS (presentation timestamp) of the input frames.
21793
21794 @code{setpts} works on video frames, @code{asetpts} on audio frames.
21795
21796 This filter accepts the following options:
21797
21798 @table @option
21799
21800 @item expr
21801 The expression which is evaluated for each frame to construct its timestamp.
21802
21803 @end table
21804
21805 The expression is evaluated through the eval API and can contain the following
21806 constants:
21807
21808 @table @option
21809 @item FRAME_RATE, FR
21810 frame rate, only defined for constant frame-rate video
21811
21812 @item PTS
21813 The presentation timestamp in input
21814
21815 @item N
21816 The count of the input frame for video or the number of consumed samples,
21817 not including the current frame for audio, starting from 0.
21818
21819 @item NB_CONSUMED_SAMPLES
21820 The number of consumed samples, not including the current frame (only
21821 audio)
21822
21823 @item NB_SAMPLES, S
21824 The number of samples in the current frame (only audio)
21825
21826 @item SAMPLE_RATE, SR
21827 The audio sample rate.
21828
21829 @item STARTPTS
21830 The PTS of the first frame.
21831
21832 @item STARTT
21833 the time in seconds of the first frame
21834
21835 @item INTERLACED
21836 State whether the current frame is interlaced.
21837
21838 @item T
21839 the time in seconds of the current frame
21840
21841 @item POS
21842 original position in the file of the frame, or undefined if undefined
21843 for the current frame
21844
21845 @item PREV_INPTS
21846 The previous input PTS.
21847
21848 @item PREV_INT
21849 previous input time in seconds
21850
21851 @item PREV_OUTPTS
21852 The previous output PTS.
21853
21854 @item PREV_OUTT
21855 previous output time in seconds
21856
21857 @item RTCTIME
21858 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
21859 instead.
21860
21861 @item RTCSTART
21862 The wallclock (RTC) time at the start of the movie in microseconds.
21863
21864 @item TB
21865 The timebase of the input timestamps.
21866
21867 @end table
21868
21869 @subsection Examples
21870
21871 @itemize
21872 @item
21873 Start counting PTS from zero
21874 @example
21875 setpts=PTS-STARTPTS
21876 @end example
21877
21878 @item
21879 Apply fast motion effect:
21880 @example
21881 setpts=0.5*PTS
21882 @end example
21883
21884 @item
21885 Apply slow motion effect:
21886 @example
21887 setpts=2.0*PTS
21888 @end example
21889
21890 @item
21891 Set fixed rate of 25 frames per second:
21892 @example
21893 setpts=N/(25*TB)
21894 @end example
21895
21896 @item
21897 Set fixed rate 25 fps with some jitter:
21898 @example
21899 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
21900 @end example
21901
21902 @item
21903 Apply an offset of 10 seconds to the input PTS:
21904 @example
21905 setpts=PTS+10/TB
21906 @end example
21907
21908 @item
21909 Generate timestamps from a "live source" and rebase onto the current timebase:
21910 @example
21911 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
21912 @end example
21913
21914 @item
21915 Generate timestamps by counting samples:
21916 @example
21917 asetpts=N/SR/TB
21918 @end example
21919
21920 @end itemize
21921
21922 @section setrange
21923
21924 Force color range for the output video frame.
21925
21926 The @code{setrange} filter marks the color range property for the
21927 output frames. It does not change the input frame, but only sets the
21928 corresponding property, which affects how the frame is treated by
21929 following filters.
21930
21931 The filter accepts the following options:
21932
21933 @table @option
21934
21935 @item range
21936 Available values are:
21937
21938 @table @samp
21939 @item auto
21940 Keep the same color range property.
21941
21942 @item unspecified, unknown
21943 Set the color range as unspecified.
21944
21945 @item limited, tv, mpeg
21946 Set the color range as limited.
21947
21948 @item full, pc, jpeg
21949 Set the color range as full.
21950 @end table
21951 @end table
21952
21953 @section settb, asettb
21954
21955 Set the timebase to use for the output frames timestamps.
21956 It is mainly useful for testing timebase configuration.
21957
21958 It accepts the following parameters:
21959
21960 @table @option
21961
21962 @item expr, tb
21963 The expression which is evaluated into the output timebase.
21964
21965 @end table
21966
21967 The value for @option{tb} is an arithmetic expression representing a
21968 rational. The expression can contain the constants "AVTB" (the default
21969 timebase), "intb" (the input timebase) and "sr" (the sample rate,
21970 audio only). Default value is "intb".
21971
21972 @subsection Examples
21973
21974 @itemize
21975 @item
21976 Set the timebase to 1/25:
21977 @example
21978 settb=expr=1/25
21979 @end example
21980
21981 @item
21982 Set the timebase to 1/10:
21983 @example
21984 settb=expr=0.1
21985 @end example
21986
21987 @item
21988 Set the timebase to 1001/1000:
21989 @example
21990 settb=1+0.001
21991 @end example
21992
21993 @item
21994 Set the timebase to 2*intb:
21995 @example
21996 settb=2*intb
21997 @end example
21998
21999 @item
22000 Set the default timebase value:
22001 @example
22002 settb=AVTB
22003 @end example
22004 @end itemize
22005
22006 @section showcqt
22007 Convert input audio to a video output representing frequency spectrum
22008 logarithmically using Brown-Puckette constant Q transform algorithm with
22009 direct frequency domain coefficient calculation (but the transform itself
22010 is not really constant Q, instead the Q factor is actually variable/clamped),
22011 with musical tone scale, from E0 to D#10.
22012
22013 The filter accepts the following options:
22014
22015 @table @option
22016 @item size, s
22017 Specify the video size for the output. It must be even. For the syntax of this option,
22018 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22019 Default value is @code{1920x1080}.
22020
22021 @item fps, rate, r
22022 Set the output frame rate. Default value is @code{25}.
22023
22024 @item bar_h
22025 Set the bargraph height. It must be even. Default value is @code{-1} which
22026 computes the bargraph height automatically.
22027
22028 @item axis_h
22029 Set the axis height. It must be even. Default value is @code{-1} which computes
22030 the axis height automatically.
22031
22032 @item sono_h
22033 Set the sonogram height. It must be even. Default value is @code{-1} which
22034 computes the sonogram height automatically.
22035
22036 @item fullhd
22037 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
22038 instead. Default value is @code{1}.
22039
22040 @item sono_v, volume
22041 Specify the sonogram volume expression. It can contain variables:
22042 @table @option
22043 @item bar_v
22044 the @var{bar_v} evaluated expression
22045 @item frequency, freq, f
22046 the frequency where it is evaluated
22047 @item timeclamp, tc
22048 the value of @var{timeclamp} option
22049 @end table
22050 and functions:
22051 @table @option
22052 @item a_weighting(f)
22053 A-weighting of equal loudness
22054 @item b_weighting(f)
22055 B-weighting of equal loudness
22056 @item c_weighting(f)
22057 C-weighting of equal loudness.
22058 @end table
22059 Default value is @code{16}.
22060
22061 @item bar_v, volume2
22062 Specify the bargraph volume expression. It can contain variables:
22063 @table @option
22064 @item sono_v
22065 the @var{sono_v} evaluated expression
22066 @item frequency, freq, f
22067 the frequency where it is evaluated
22068 @item timeclamp, tc
22069 the value of @var{timeclamp} option
22070 @end table
22071 and functions:
22072 @table @option
22073 @item a_weighting(f)
22074 A-weighting of equal loudness
22075 @item b_weighting(f)
22076 B-weighting of equal loudness
22077 @item c_weighting(f)
22078 C-weighting of equal loudness.
22079 @end table
22080 Default value is @code{sono_v}.
22081
22082 @item sono_g, gamma
22083 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
22084 higher gamma makes the spectrum having more range. Default value is @code{3}.
22085 Acceptable range is @code{[1, 7]}.
22086
22087 @item bar_g, gamma2
22088 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
22089 @code{[1, 7]}.
22090
22091 @item bar_t
22092 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
22093 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
22094
22095 @item timeclamp, tc
22096 Specify the transform timeclamp. At low frequency, there is trade-off between
22097 accuracy in time domain and frequency domain. If timeclamp is lower,
22098 event in time domain is represented more accurately (such as fast bass drum),
22099 otherwise event in frequency domain is represented more accurately
22100 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
22101
22102 @item attack
22103 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
22104 limits future samples by applying asymmetric windowing in time domain, useful
22105 when low latency is required. Accepted range is @code{[0, 1]}.
22106
22107 @item basefreq
22108 Specify the transform base frequency. Default value is @code{20.01523126408007475},
22109 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
22110
22111 @item endfreq
22112 Specify the transform end frequency. Default value is @code{20495.59681441799654},
22113 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
22114
22115 @item coeffclamp
22116 This option is deprecated and ignored.
22117
22118 @item tlength
22119 Specify the transform length in time domain. Use this option to control accuracy
22120 trade-off between time domain and frequency domain at every frequency sample.
22121 It can contain variables:
22122 @table @option
22123 @item frequency, freq, f
22124 the frequency where it is evaluated
22125 @item timeclamp, tc
22126 the value of @var{timeclamp} option.
22127 @end table
22128 Default value is @code{384*tc/(384+tc*f)}.
22129
22130 @item count
22131 Specify the transform count for every video frame. Default value is @code{6}.
22132 Acceptable range is @code{[1, 30]}.
22133
22134 @item fcount
22135 Specify the transform count for every single pixel. Default value is @code{0},
22136 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
22137
22138 @item fontfile
22139 Specify font file for use with freetype to draw the axis. If not specified,
22140 use embedded font. Note that drawing with font file or embedded font is not
22141 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
22142 option instead.
22143
22144 @item font
22145 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
22146 The : in the pattern may be replaced by | to avoid unnecessary escaping.
22147
22148 @item fontcolor
22149 Specify font color expression. This is arithmetic expression that should return
22150 integer value 0xRRGGBB. It can contain variables:
22151 @table @option
22152 @item frequency, freq, f
22153 the frequency where it is evaluated
22154 @item timeclamp, tc
22155 the value of @var{timeclamp} option
22156 @end table
22157 and functions:
22158 @table @option
22159 @item midi(f)
22160 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
22161 @item r(x), g(x), b(x)
22162 red, green, and blue value of intensity x.
22163 @end table
22164 Default value is @code{st(0, (midi(f)-59.5)/12);
22165 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
22166 r(1-ld(1)) + b(ld(1))}.
22167
22168 @item axisfile
22169 Specify image file to draw the axis. This option override @var{fontfile} and
22170 @var{fontcolor} option.
22171
22172 @item axis, text
22173 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
22174 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
22175 Default value is @code{1}.
22176
22177 @item csp
22178 Set colorspace. The accepted values are:
22179 @table @samp
22180 @item unspecified
22181 Unspecified (default)
22182
22183 @item bt709
22184 BT.709
22185
22186 @item fcc
22187 FCC
22188
22189 @item bt470bg
22190 BT.470BG or BT.601-6 625
22191
22192 @item smpte170m
22193 SMPTE-170M or BT.601-6 525
22194
22195 @item smpte240m
22196 SMPTE-240M
22197
22198 @item bt2020ncl
22199 BT.2020 with non-constant luminance
22200
22201 @end table
22202
22203 @item cscheme
22204 Set spectrogram color scheme. This is list of floating point values with format
22205 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
22206 The default is @code{1|0.5|0|0|0.5|1}.
22207
22208 @end table
22209
22210 @subsection Examples
22211
22212 @itemize
22213 @item
22214 Playing audio while showing the spectrum:
22215 @example
22216 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
22217 @end example
22218
22219 @item
22220 Same as above, but with frame rate 30 fps:
22221 @example
22222 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
22223 @end example
22224
22225 @item
22226 Playing at 1280x720:
22227 @example
22228 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
22229 @end example
22230
22231 @item
22232 Disable sonogram display:
22233 @example
22234 sono_h=0
22235 @end example
22236
22237 @item
22238 A1 and its harmonics: A1, A2, (near)E3, A3:
22239 @example
22240 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),
22241                  asplit[a][out1]; [a] showcqt [out0]'
22242 @end example
22243
22244 @item
22245 Same as above, but with more accuracy in frequency domain:
22246 @example
22247 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),
22248                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
22249 @end example
22250
22251 @item
22252 Custom volume:
22253 @example
22254 bar_v=10:sono_v=bar_v*a_weighting(f)
22255 @end example
22256
22257 @item
22258 Custom gamma, now spectrum is linear to the amplitude.
22259 @example
22260 bar_g=2:sono_g=2
22261 @end example
22262
22263 @item
22264 Custom tlength equation:
22265 @example
22266 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)))'
22267 @end example
22268
22269 @item
22270 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
22271 @example
22272 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
22273 @end example
22274
22275 @item
22276 Custom font using fontconfig:
22277 @example
22278 font='Courier New,Monospace,mono|bold'
22279 @end example
22280
22281 @item
22282 Custom frequency range with custom axis using image file:
22283 @example
22284 axisfile=myaxis.png:basefreq=40:endfreq=10000
22285 @end example
22286 @end itemize
22287
22288 @section showfreqs
22289
22290 Convert input audio to video output representing the audio power spectrum.
22291 Audio amplitude is on Y-axis while frequency is on X-axis.
22292
22293 The filter accepts the following options:
22294
22295 @table @option
22296 @item size, s
22297 Specify size of video. For the syntax of this option, check the
22298 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22299 Default is @code{1024x512}.
22300
22301 @item mode
22302 Set display mode.
22303 This set how each frequency bin will be represented.
22304
22305 It accepts the following values:
22306 @table @samp
22307 @item line
22308 @item bar
22309 @item dot
22310 @end table
22311 Default is @code{bar}.
22312
22313 @item ascale
22314 Set amplitude scale.
22315
22316 It accepts the following values:
22317 @table @samp
22318 @item lin
22319 Linear scale.
22320
22321 @item sqrt
22322 Square root scale.
22323
22324 @item cbrt
22325 Cubic root scale.
22326
22327 @item log
22328 Logarithmic scale.
22329 @end table
22330 Default is @code{log}.
22331
22332 @item fscale
22333 Set frequency scale.
22334
22335 It accepts the following values:
22336 @table @samp
22337 @item lin
22338 Linear scale.
22339
22340 @item log
22341 Logarithmic scale.
22342
22343 @item rlog
22344 Reverse logarithmic scale.
22345 @end table
22346 Default is @code{lin}.
22347
22348 @item win_size
22349 Set window size.
22350
22351 It accepts the following values:
22352 @table @samp
22353 @item w16
22354 @item w32
22355 @item w64
22356 @item w128
22357 @item w256
22358 @item w512
22359 @item w1024
22360 @item w2048
22361 @item w4096
22362 @item w8192
22363 @item w16384
22364 @item w32768
22365 @item w65536
22366 @end table
22367 Default is @code{w2048}
22368
22369 @item win_func
22370 Set windowing function.
22371
22372 It accepts the following values:
22373 @table @samp
22374 @item rect
22375 @item bartlett
22376 @item hanning
22377 @item hamming
22378 @item blackman
22379 @item welch
22380 @item flattop
22381 @item bharris
22382 @item bnuttall
22383 @item bhann
22384 @item sine
22385 @item nuttall
22386 @item lanczos
22387 @item gauss
22388 @item tukey
22389 @item dolph
22390 @item cauchy
22391 @item parzen
22392 @item poisson
22393 @item bohman
22394 @end table
22395 Default is @code{hanning}.
22396
22397 @item overlap
22398 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
22399 which means optimal overlap for selected window function will be picked.
22400
22401 @item averaging
22402 Set time averaging. Setting this to 0 will display current maximal peaks.
22403 Default is @code{1}, which means time averaging is disabled.
22404
22405 @item colors
22406 Specify list of colors separated by space or by '|' which will be used to
22407 draw channel frequencies. Unrecognized or missing colors will be replaced
22408 by white color.
22409
22410 @item cmode
22411 Set channel display mode.
22412
22413 It accepts the following values:
22414 @table @samp
22415 @item combined
22416 @item separate
22417 @end table
22418 Default is @code{combined}.
22419
22420 @item minamp
22421 Set minimum amplitude used in @code{log} amplitude scaler.
22422
22423 @end table
22424
22425 @section showspatial
22426
22427 Convert stereo input audio to a video output, representing the spatial relationship
22428 between two channels.
22429
22430 The filter accepts the following options:
22431
22432 @table @option
22433 @item size, s
22434 Specify the video size for the output. For the syntax of this option, check the
22435 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22436 Default value is @code{512x512}.
22437
22438 @item win_size
22439 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
22440
22441 @item win_func
22442 Set window function.
22443
22444 It accepts the following values:
22445 @table @samp
22446 @item rect
22447 @item bartlett
22448 @item hann
22449 @item hanning
22450 @item hamming
22451 @item blackman
22452 @item welch
22453 @item flattop
22454 @item bharris
22455 @item bnuttall
22456 @item bhann
22457 @item sine
22458 @item nuttall
22459 @item lanczos
22460 @item gauss
22461 @item tukey
22462 @item dolph
22463 @item cauchy
22464 @item parzen
22465 @item poisson
22466 @item bohman
22467 @end table
22468
22469 Default value is @code{hann}.
22470
22471 @item overlap
22472 Set ratio of overlap window. Default value is @code{0.5}.
22473 When value is @code{1} overlap is set to recommended size for specific
22474 window function currently used.
22475 @end table
22476
22477 @anchor{showspectrum}
22478 @section showspectrum
22479
22480 Convert input audio to a video output, representing the audio frequency
22481 spectrum.
22482
22483 The filter accepts the following options:
22484
22485 @table @option
22486 @item size, s
22487 Specify the video size for the output. For the syntax of this option, check the
22488 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22489 Default value is @code{640x512}.
22490
22491 @item slide
22492 Specify how the spectrum should slide along the window.
22493
22494 It accepts the following values:
22495 @table @samp
22496 @item replace
22497 the samples start again on the left when they reach the right
22498 @item scroll
22499 the samples scroll from right to left
22500 @item fullframe
22501 frames are only produced when the samples reach the right
22502 @item rscroll
22503 the samples scroll from left to right
22504 @end table
22505
22506 Default value is @code{replace}.
22507
22508 @item mode
22509 Specify display mode.
22510
22511 It accepts the following values:
22512 @table @samp
22513 @item combined
22514 all channels are displayed in the same row
22515 @item separate
22516 all channels are displayed in separate rows
22517 @end table
22518
22519 Default value is @samp{combined}.
22520
22521 @item color
22522 Specify display color mode.
22523
22524 It accepts the following values:
22525 @table @samp
22526 @item channel
22527 each channel is displayed in a separate color
22528 @item intensity
22529 each channel is displayed using the same color scheme
22530 @item rainbow
22531 each channel is displayed using the rainbow color scheme
22532 @item moreland
22533 each channel is displayed using the moreland color scheme
22534 @item nebulae
22535 each channel is displayed using the nebulae color scheme
22536 @item fire
22537 each channel is displayed using the fire color scheme
22538 @item fiery
22539 each channel is displayed using the fiery color scheme
22540 @item fruit
22541 each channel is displayed using the fruit color scheme
22542 @item cool
22543 each channel is displayed using the cool color scheme
22544 @item magma
22545 each channel is displayed using the magma color scheme
22546 @item green
22547 each channel is displayed using the green color scheme
22548 @item viridis
22549 each channel is displayed using the viridis color scheme
22550 @item plasma
22551 each channel is displayed using the plasma color scheme
22552 @item cividis
22553 each channel is displayed using the cividis color scheme
22554 @item terrain
22555 each channel is displayed using the terrain color scheme
22556 @end table
22557
22558 Default value is @samp{channel}.
22559
22560 @item scale
22561 Specify scale used for calculating intensity color values.
22562
22563 It accepts the following values:
22564 @table @samp
22565 @item lin
22566 linear
22567 @item sqrt
22568 square root, default
22569 @item cbrt
22570 cubic root
22571 @item log
22572 logarithmic
22573 @item 4thrt
22574 4th root
22575 @item 5thrt
22576 5th root
22577 @end table
22578
22579 Default value is @samp{sqrt}.
22580
22581 @item fscale
22582 Specify frequency scale.
22583
22584 It accepts the following values:
22585 @table @samp
22586 @item lin
22587 linear
22588 @item log
22589 logarithmic
22590 @end table
22591
22592 Default value is @samp{lin}.
22593
22594 @item saturation
22595 Set saturation modifier for displayed colors. Negative values provide
22596 alternative color scheme. @code{0} is no saturation at all.
22597 Saturation must be in [-10.0, 10.0] range.
22598 Default value is @code{1}.
22599
22600 @item win_func
22601 Set window function.
22602
22603 It accepts the following values:
22604 @table @samp
22605 @item rect
22606 @item bartlett
22607 @item hann
22608 @item hanning
22609 @item hamming
22610 @item blackman
22611 @item welch
22612 @item flattop
22613 @item bharris
22614 @item bnuttall
22615 @item bhann
22616 @item sine
22617 @item nuttall
22618 @item lanczos
22619 @item gauss
22620 @item tukey
22621 @item dolph
22622 @item cauchy
22623 @item parzen
22624 @item poisson
22625 @item bohman
22626 @end table
22627
22628 Default value is @code{hann}.
22629
22630 @item orientation
22631 Set orientation of time vs frequency axis. Can be @code{vertical} or
22632 @code{horizontal}. Default is @code{vertical}.
22633
22634 @item overlap
22635 Set ratio of overlap window. Default value is @code{0}.
22636 When value is @code{1} overlap is set to recommended size for specific
22637 window function currently used.
22638
22639 @item gain
22640 Set scale gain for calculating intensity color values.
22641 Default value is @code{1}.
22642
22643 @item data
22644 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
22645
22646 @item rotation
22647 Set color rotation, must be in [-1.0, 1.0] range.
22648 Default value is @code{0}.
22649
22650 @item start
22651 Set start frequency from which to display spectrogram. Default is @code{0}.
22652
22653 @item stop
22654 Set stop frequency to which to display spectrogram. Default is @code{0}.
22655
22656 @item fps
22657 Set upper frame rate limit. Default is @code{auto}, unlimited.
22658
22659 @item legend
22660 Draw time and frequency axes and legends. Default is disabled.
22661 @end table
22662
22663 The usage is very similar to the showwaves filter; see the examples in that
22664 section.
22665
22666 @subsection Examples
22667
22668 @itemize
22669 @item
22670 Large window with logarithmic color scaling:
22671 @example
22672 showspectrum=s=1280x480:scale=log
22673 @end example
22674
22675 @item
22676 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
22677 @example
22678 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22679              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
22680 @end example
22681 @end itemize
22682
22683 @section showspectrumpic
22684
22685 Convert input audio to a single video frame, representing the audio frequency
22686 spectrum.
22687
22688 The filter accepts the following options:
22689
22690 @table @option
22691 @item size, s
22692 Specify the video size for the output. For the syntax of this option, check the
22693 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22694 Default value is @code{4096x2048}.
22695
22696 @item mode
22697 Specify display mode.
22698
22699 It accepts the following values:
22700 @table @samp
22701 @item combined
22702 all channels are displayed in the same row
22703 @item separate
22704 all channels are displayed in separate rows
22705 @end table
22706 Default value is @samp{combined}.
22707
22708 @item color
22709 Specify display color mode.
22710
22711 It accepts the following values:
22712 @table @samp
22713 @item channel
22714 each channel is displayed in a separate color
22715 @item intensity
22716 each channel is displayed using the same color scheme
22717 @item rainbow
22718 each channel is displayed using the rainbow color scheme
22719 @item moreland
22720 each channel is displayed using the moreland color scheme
22721 @item nebulae
22722 each channel is displayed using the nebulae color scheme
22723 @item fire
22724 each channel is displayed using the fire color scheme
22725 @item fiery
22726 each channel is displayed using the fiery color scheme
22727 @item fruit
22728 each channel is displayed using the fruit color scheme
22729 @item cool
22730 each channel is displayed using the cool color scheme
22731 @item magma
22732 each channel is displayed using the magma color scheme
22733 @item green
22734 each channel is displayed using the green color scheme
22735 @item viridis
22736 each channel is displayed using the viridis color scheme
22737 @item plasma
22738 each channel is displayed using the plasma color scheme
22739 @item cividis
22740 each channel is displayed using the cividis color scheme
22741 @item terrain
22742 each channel is displayed using the terrain color scheme
22743 @end table
22744 Default value is @samp{intensity}.
22745
22746 @item scale
22747 Specify scale used for calculating intensity color values.
22748
22749 It accepts the following values:
22750 @table @samp
22751 @item lin
22752 linear
22753 @item sqrt
22754 square root, default
22755 @item cbrt
22756 cubic root
22757 @item log
22758 logarithmic
22759 @item 4thrt
22760 4th root
22761 @item 5thrt
22762 5th root
22763 @end table
22764 Default value is @samp{log}.
22765
22766 @item fscale
22767 Specify frequency scale.
22768
22769 It accepts the following values:
22770 @table @samp
22771 @item lin
22772 linear
22773 @item log
22774 logarithmic
22775 @end table
22776
22777 Default value is @samp{lin}.
22778
22779 @item saturation
22780 Set saturation modifier for displayed colors. Negative values provide
22781 alternative color scheme. @code{0} is no saturation at all.
22782 Saturation must be in [-10.0, 10.0] range.
22783 Default value is @code{1}.
22784
22785 @item win_func
22786 Set window function.
22787
22788 It accepts the following values:
22789 @table @samp
22790 @item rect
22791 @item bartlett
22792 @item hann
22793 @item hanning
22794 @item hamming
22795 @item blackman
22796 @item welch
22797 @item flattop
22798 @item bharris
22799 @item bnuttall
22800 @item bhann
22801 @item sine
22802 @item nuttall
22803 @item lanczos
22804 @item gauss
22805 @item tukey
22806 @item dolph
22807 @item cauchy
22808 @item parzen
22809 @item poisson
22810 @item bohman
22811 @end table
22812 Default value is @code{hann}.
22813
22814 @item orientation
22815 Set orientation of time vs frequency axis. Can be @code{vertical} or
22816 @code{horizontal}. Default is @code{vertical}.
22817
22818 @item gain
22819 Set scale gain for calculating intensity color values.
22820 Default value is @code{1}.
22821
22822 @item legend
22823 Draw time and frequency axes and legends. Default is enabled.
22824
22825 @item rotation
22826 Set color rotation, must be in [-1.0, 1.0] range.
22827 Default value is @code{0}.
22828
22829 @item start
22830 Set start frequency from which to display spectrogram. Default is @code{0}.
22831
22832 @item stop
22833 Set stop frequency to which to display spectrogram. Default is @code{0}.
22834 @end table
22835
22836 @subsection Examples
22837
22838 @itemize
22839 @item
22840 Extract an audio spectrogram of a whole audio track
22841 in a 1024x1024 picture using @command{ffmpeg}:
22842 @example
22843 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
22844 @end example
22845 @end itemize
22846
22847 @section showvolume
22848
22849 Convert input audio volume to a video output.
22850
22851 The filter accepts the following options:
22852
22853 @table @option
22854 @item rate, r
22855 Set video rate.
22856
22857 @item b
22858 Set border width, allowed range is [0, 5]. Default is 1.
22859
22860 @item w
22861 Set channel width, allowed range is [80, 8192]. Default is 400.
22862
22863 @item h
22864 Set channel height, allowed range is [1, 900]. Default is 20.
22865
22866 @item f
22867 Set fade, allowed range is [0, 1]. Default is 0.95.
22868
22869 @item c
22870 Set volume color expression.
22871
22872 The expression can use the following variables:
22873
22874 @table @option
22875 @item VOLUME
22876 Current max volume of channel in dB.
22877
22878 @item PEAK
22879 Current peak.
22880
22881 @item CHANNEL
22882 Current channel number, starting from 0.
22883 @end table
22884
22885 @item t
22886 If set, displays channel names. Default is enabled.
22887
22888 @item v
22889 If set, displays volume values. Default is enabled.
22890
22891 @item o
22892 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
22893 default is @code{h}.
22894
22895 @item s
22896 Set step size, allowed range is [0, 5]. Default is 0, which means
22897 step is disabled.
22898
22899 @item p
22900 Set background opacity, allowed range is [0, 1]. Default is 0.
22901
22902 @item m
22903 Set metering mode, can be peak: @code{p} or rms: @code{r},
22904 default is @code{p}.
22905
22906 @item ds
22907 Set display scale, can be linear: @code{lin} or log: @code{log},
22908 default is @code{lin}.
22909
22910 @item dm
22911 In second.
22912 If set to > 0., display a line for the max level
22913 in the previous seconds.
22914 default is disabled: @code{0.}
22915
22916 @item dmc
22917 The color of the max line. Use when @code{dm} option is set to > 0.
22918 default is: @code{orange}
22919 @end table
22920
22921 @section showwaves
22922
22923 Convert input audio to a video output, representing the samples waves.
22924
22925 The filter accepts the following options:
22926
22927 @table @option
22928 @item size, s
22929 Specify the video size for the output. For the syntax of this option, check the
22930 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22931 Default value is @code{600x240}.
22932
22933 @item mode
22934 Set display mode.
22935
22936 Available values are:
22937 @table @samp
22938 @item point
22939 Draw a point for each sample.
22940
22941 @item line
22942 Draw a vertical line for each sample.
22943
22944 @item p2p
22945 Draw a point for each sample and a line between them.
22946
22947 @item cline
22948 Draw a centered vertical line for each sample.
22949 @end table
22950
22951 Default value is @code{point}.
22952
22953 @item n
22954 Set the number of samples which are printed on the same column. A
22955 larger value will decrease the frame rate. Must be a positive
22956 integer. This option can be set only if the value for @var{rate}
22957 is not explicitly specified.
22958
22959 @item rate, r
22960 Set the (approximate) output frame rate. This is done by setting the
22961 option @var{n}. Default value is "25".
22962
22963 @item split_channels
22964 Set if channels should be drawn separately or overlap. Default value is 0.
22965
22966 @item colors
22967 Set colors separated by '|' which are going to be used for drawing of each channel.
22968
22969 @item scale
22970 Set amplitude scale.
22971
22972 Available values are:
22973 @table @samp
22974 @item lin
22975 Linear.
22976
22977 @item log
22978 Logarithmic.
22979
22980 @item sqrt
22981 Square root.
22982
22983 @item cbrt
22984 Cubic root.
22985 @end table
22986
22987 Default is linear.
22988
22989 @item draw
22990 Set the draw mode. This is mostly useful to set for high @var{n}.
22991
22992 Available values are:
22993 @table @samp
22994 @item scale
22995 Scale pixel values for each drawn sample.
22996
22997 @item full
22998 Draw every sample directly.
22999 @end table
23000
23001 Default value is @code{scale}.
23002 @end table
23003
23004 @subsection Examples
23005
23006 @itemize
23007 @item
23008 Output the input file audio and the corresponding video representation
23009 at the same time:
23010 @example
23011 amovie=a.mp3,asplit[out0],showwaves[out1]
23012 @end example
23013
23014 @item
23015 Create a synthetic signal and show it with showwaves, forcing a
23016 frame rate of 30 frames per second:
23017 @example
23018 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
23019 @end example
23020 @end itemize
23021
23022 @section showwavespic
23023
23024 Convert input audio to a single video frame, representing the samples waves.
23025
23026 The filter accepts the following options:
23027
23028 @table @option
23029 @item size, s
23030 Specify the video size for the output. For the syntax of this option, check the
23031 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23032 Default value is @code{600x240}.
23033
23034 @item split_channels
23035 Set if channels should be drawn separately or overlap. Default value is 0.
23036
23037 @item colors
23038 Set colors separated by '|' which are going to be used for drawing of each channel.
23039
23040 @item scale
23041 Set amplitude scale.
23042
23043 Available values are:
23044 @table @samp
23045 @item lin
23046 Linear.
23047
23048 @item log
23049 Logarithmic.
23050
23051 @item sqrt
23052 Square root.
23053
23054 @item cbrt
23055 Cubic root.
23056 @end table
23057
23058 Default is linear.
23059
23060 @item draw
23061 Set the draw mode.
23062
23063 Available values are:
23064 @table @samp
23065 @item scale
23066 Scale pixel values for each drawn sample.
23067
23068 @item full
23069 Draw every sample directly.
23070 @end table
23071
23072 Default value is @code{scale}.
23073 @end table
23074
23075 @subsection Examples
23076
23077 @itemize
23078 @item
23079 Extract a channel split representation of the wave form of a whole audio track
23080 in a 1024x800 picture using @command{ffmpeg}:
23081 @example
23082 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
23083 @end example
23084 @end itemize
23085
23086 @section sidedata, asidedata
23087
23088 Delete frame side data, or select frames based on it.
23089
23090 This filter accepts the following options:
23091
23092 @table @option
23093 @item mode
23094 Set mode of operation of the filter.
23095
23096 Can be one of the following:
23097
23098 @table @samp
23099 @item select
23100 Select every frame with side data of @code{type}.
23101
23102 @item delete
23103 Delete side data of @code{type}. If @code{type} is not set, delete all side
23104 data in the frame.
23105
23106 @end table
23107
23108 @item type
23109 Set side data type used with all modes. Must be set for @code{select} mode. For
23110 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
23111 in @file{libavutil/frame.h}. For example, to choose
23112 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
23113
23114 @end table
23115
23116 @section spectrumsynth
23117
23118 Sythesize audio from 2 input video spectrums, first input stream represents
23119 magnitude across time and second represents phase across time.
23120 The filter will transform from frequency domain as displayed in videos back
23121 to time domain as presented in audio output.
23122
23123 This filter is primarily created for reversing processed @ref{showspectrum}
23124 filter outputs, but can synthesize sound from other spectrograms too.
23125 But in such case results are going to be poor if the phase data is not
23126 available, because in such cases phase data need to be recreated, usually
23127 it's just recreated from random noise.
23128 For best results use gray only output (@code{channel} color mode in
23129 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
23130 @code{lin} scale for phase video. To produce phase, for 2nd video, use
23131 @code{data} option. Inputs videos should generally use @code{fullframe}
23132 slide mode as that saves resources needed for decoding video.
23133
23134 The filter accepts the following options:
23135
23136 @table @option
23137 @item sample_rate
23138 Specify sample rate of output audio, the sample rate of audio from which
23139 spectrum was generated may differ.
23140
23141 @item channels
23142 Set number of channels represented in input video spectrums.
23143
23144 @item scale
23145 Set scale which was used when generating magnitude input spectrum.
23146 Can be @code{lin} or @code{log}. Default is @code{log}.
23147
23148 @item slide
23149 Set slide which was used when generating inputs spectrums.
23150 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
23151 Default is @code{fullframe}.
23152
23153 @item win_func
23154 Set window function used for resynthesis.
23155
23156 @item overlap
23157 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
23158 which means optimal overlap for selected window function will be picked.
23159
23160 @item orientation
23161 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
23162 Default is @code{vertical}.
23163 @end table
23164
23165 @subsection Examples
23166
23167 @itemize
23168 @item
23169 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
23170 then resynthesize videos back to audio with spectrumsynth:
23171 @example
23172 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
23173 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
23174 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
23175 @end example
23176 @end itemize
23177
23178 @section split, asplit
23179
23180 Split input into several identical outputs.
23181
23182 @code{asplit} works with audio input, @code{split} with video.
23183
23184 The filter accepts a single parameter which specifies the number of outputs. If
23185 unspecified, it defaults to 2.
23186
23187 @subsection Examples
23188
23189 @itemize
23190 @item
23191 Create two separate outputs from the same input:
23192 @example
23193 [in] split [out0][out1]
23194 @end example
23195
23196 @item
23197 To create 3 or more outputs, you need to specify the number of
23198 outputs, like in:
23199 @example
23200 [in] asplit=3 [out0][out1][out2]
23201 @end example
23202
23203 @item
23204 Create two separate outputs from the same input, one cropped and
23205 one padded:
23206 @example
23207 [in] split [splitout1][splitout2];
23208 [splitout1] crop=100:100:0:0    [cropout];
23209 [splitout2] pad=200:200:100:100 [padout];
23210 @end example
23211
23212 @item
23213 Create 5 copies of the input audio with @command{ffmpeg}:
23214 @example
23215 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
23216 @end example
23217 @end itemize
23218
23219 @section zmq, azmq
23220
23221 Receive commands sent through a libzmq client, and forward them to
23222 filters in the filtergraph.
23223
23224 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
23225 must be inserted between two video filters, @code{azmq} between two
23226 audio filters. Both are capable to send messages to any filter type.
23227
23228 To enable these filters you need to install the libzmq library and
23229 headers and configure FFmpeg with @code{--enable-libzmq}.
23230
23231 For more information about libzmq see:
23232 @url{http://www.zeromq.org/}
23233
23234 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
23235 receives messages sent through a network interface defined by the
23236 @option{bind_address} (or the abbreviation "@option{b}") option.
23237 Default value of this option is @file{tcp://localhost:5555}. You may
23238 want to alter this value to your needs, but do not forget to escape any
23239 ':' signs (see @ref{filtergraph escaping}).
23240
23241 The received message must be in the form:
23242 @example
23243 @var{TARGET} @var{COMMAND} [@var{ARG}]
23244 @end example
23245
23246 @var{TARGET} specifies the target of the command, usually the name of
23247 the filter class or a specific filter instance name. The default
23248 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
23249 but you can override this by using the @samp{filter_name@@id} syntax
23250 (see @ref{Filtergraph syntax}).
23251
23252 @var{COMMAND} specifies the name of the command for the target filter.
23253
23254 @var{ARG} is optional and specifies the optional argument list for the
23255 given @var{COMMAND}.
23256
23257 Upon reception, the message is processed and the corresponding command
23258 is injected into the filtergraph. Depending on the result, the filter
23259 will send a reply to the client, adopting the format:
23260 @example
23261 @var{ERROR_CODE} @var{ERROR_REASON}
23262 @var{MESSAGE}
23263 @end example
23264
23265 @var{MESSAGE} is optional.
23266
23267 @subsection Examples
23268
23269 Look at @file{tools/zmqsend} for an example of a zmq client which can
23270 be used to send commands processed by these filters.
23271
23272 Consider the following filtergraph generated by @command{ffplay}.
23273 In this example the last overlay filter has an instance name. All other
23274 filters will have default instance names.
23275
23276 @example
23277 ffplay -dumpgraph 1 -f lavfi "
23278 color=s=100x100:c=red  [l];
23279 color=s=100x100:c=blue [r];
23280 nullsrc=s=200x100, zmq [bg];
23281 [bg][l]   overlay     [bg+l];
23282 [bg+l][r] overlay@@my=x=100 "
23283 @end example
23284
23285 To change the color of the left side of the video, the following
23286 command can be used:
23287 @example
23288 echo Parsed_color_0 c yellow | tools/zmqsend
23289 @end example
23290
23291 To change the right side:
23292 @example
23293 echo Parsed_color_1 c pink | tools/zmqsend
23294 @end example
23295
23296 To change the position of the right side:
23297 @example
23298 echo overlay@@my x 150 | tools/zmqsend
23299 @end example
23300
23301
23302 @c man end MULTIMEDIA FILTERS
23303
23304 @chapter Multimedia Sources
23305 @c man begin MULTIMEDIA SOURCES
23306
23307 Below is a description of the currently available multimedia sources.
23308
23309 @section amovie
23310
23311 This is the same as @ref{movie} source, except it selects an audio
23312 stream by default.
23313
23314 @anchor{movie}
23315 @section movie
23316
23317 Read audio and/or video stream(s) from a movie container.
23318
23319 It accepts the following parameters:
23320
23321 @table @option
23322 @item filename
23323 The name of the resource to read (not necessarily a file; it can also be a
23324 device or a stream accessed through some protocol).
23325
23326 @item format_name, f
23327 Specifies the format assumed for the movie to read, and can be either
23328 the name of a container or an input device. If not specified, the
23329 format is guessed from @var{movie_name} or by probing.
23330
23331 @item seek_point, sp
23332 Specifies the seek point in seconds. The frames will be output
23333 starting from this seek point. The parameter is evaluated with
23334 @code{av_strtod}, so the numerical value may be suffixed by an IS
23335 postfix. The default value is "0".
23336
23337 @item streams, s
23338 Specifies the streams to read. Several streams can be specified,
23339 separated by "+". The source will then have as many outputs, in the
23340 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
23341 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
23342 respectively the default (best suited) video and audio stream. Default
23343 is "dv", or "da" if the filter is called as "amovie".
23344
23345 @item stream_index, si
23346 Specifies the index of the video stream to read. If the value is -1,
23347 the most suitable video stream will be automatically selected. The default
23348 value is "-1". Deprecated. If the filter is called "amovie", it will select
23349 audio instead of video.
23350
23351 @item loop
23352 Specifies how many times to read the stream in sequence.
23353 If the value is 0, the stream will be looped infinitely.
23354 Default value is "1".
23355
23356 Note that when the movie is looped the source timestamps are not
23357 changed, so it will generate non monotonically increasing timestamps.
23358
23359 @item discontinuity
23360 Specifies the time difference between frames above which the point is
23361 considered a timestamp discontinuity which is removed by adjusting the later
23362 timestamps.
23363 @end table
23364
23365 It allows overlaying a second video on top of the main input of
23366 a filtergraph, as shown in this graph:
23367 @example
23368 input -----------> deltapts0 --> overlay --> output
23369                                     ^
23370                                     |
23371 movie --> scale--> deltapts1 -------+
23372 @end example
23373 @subsection Examples
23374
23375 @itemize
23376 @item
23377 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
23378 on top of the input labelled "in":
23379 @example
23380 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
23381 [in] setpts=PTS-STARTPTS [main];
23382 [main][over] overlay=16:16 [out]
23383 @end example
23384
23385 @item
23386 Read from a video4linux2 device, and overlay it on top of the input
23387 labelled "in":
23388 @example
23389 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
23390 [in] setpts=PTS-STARTPTS [main];
23391 [main][over] overlay=16:16 [out]
23392 @end example
23393
23394 @item
23395 Read the first video stream and the audio stream with id 0x81 from
23396 dvd.vob; the video is connected to the pad named "video" and the audio is
23397 connected to the pad named "audio":
23398 @example
23399 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
23400 @end example
23401 @end itemize
23402
23403 @subsection Commands
23404
23405 Both movie and amovie support the following commands:
23406 @table @option
23407 @item seek
23408 Perform seek using "av_seek_frame".
23409 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
23410 @itemize
23411 @item
23412 @var{stream_index}: If stream_index is -1, a default
23413 stream is selected, and @var{timestamp} is automatically converted
23414 from AV_TIME_BASE units to the stream specific time_base.
23415 @item
23416 @var{timestamp}: Timestamp in AVStream.time_base units
23417 or, if no stream is specified, in AV_TIME_BASE units.
23418 @item
23419 @var{flags}: Flags which select direction and seeking mode.
23420 @end itemize
23421
23422 @item get_duration
23423 Get movie duration in AV_TIME_BASE units.
23424
23425 @end table
23426
23427 @c man end MULTIMEDIA SOURCES