]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/f_interleave: add duration option
[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{commands}
316 @chapter Changing options at runtime with a command
317
318 Some options can be changed during the operation of the filter using
319 a command. These options are marked 'T' on the output of
320 @command{ffmpeg} @option{-h filter=<name of filter>}.
321 The name of the command is the name of the option and the argument is
322 the new value.
323
324 @anchor{framesync}
325 @chapter Options for filters with several inputs (framesync)
326 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
327
328 Some filters with several inputs support a common set of options.
329 These options can only be set by name, not with the short notation.
330
331 @table @option
332 @item eof_action
333 The action to take when EOF is encountered on the secondary input; it accepts
334 one of the following values:
335
336 @table @option
337 @item repeat
338 Repeat the last frame (the default).
339 @item endall
340 End both streams.
341 @item pass
342 Pass the main input through.
343 @end table
344
345 @item shortest
346 If set to 1, force the output to terminate when the shortest input
347 terminates. Default value is 0.
348
349 @item repeatlast
350 If set to 1, force the filter to extend the last frame of secondary streams
351 until the end of the primary stream. A value of 0 disables this behavior.
352 Default value is 1.
353 @end table
354
355 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
356
357 @chapter Audio Filters
358 @c man begin AUDIO FILTERS
359
360 When you configure your FFmpeg build, you can disable any of the
361 existing filters using @code{--disable-filters}.
362 The configure output will show the audio filters included in your
363 build.
364
365 Below is a description of the currently available audio filters.
366
367 @section acompressor
368
369 A compressor is mainly used to reduce the dynamic range of a signal.
370 Especially modern music is mostly compressed at a high ratio to
371 improve the overall loudness. It's done to get the highest attention
372 of a listener, "fatten" the sound and bring more "power" to the track.
373 If a signal is compressed too much it may sound dull or "dead"
374 afterwards or it may start to "pump" (which could be a powerful effect
375 but can also destroy a track completely).
376 The right compression is the key to reach a professional sound and is
377 the high art of mixing and mastering. Because of its complex settings
378 it may take a long time to get the right feeling for this kind of effect.
379
380 Compression is done by detecting the volume above a chosen level
381 @code{threshold} and dividing it by the factor set with @code{ratio}.
382 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
383 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
384 the signal would cause distortion of the waveform the reduction can be
385 levelled over the time. This is done by setting "Attack" and "Release".
386 @code{attack} determines how long the signal has to rise above the threshold
387 before any reduction will occur and @code{release} sets the time the signal
388 has to fall below the threshold to reduce the reduction again. Shorter signals
389 than the chosen attack time will be left untouched.
390 The overall reduction of the signal can be made up afterwards with the
391 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
392 raising the makeup to this level results in a signal twice as loud than the
393 source. To gain a softer entry in the compression the @code{knee} flattens the
394 hard edge at the threshold in the range of the chosen decibels.
395
396 The filter accepts the following options:
397
398 @table @option
399 @item level_in
400 Set input gain. Default is 1. Range is between 0.015625 and 64.
401
402 @item mode
403 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
404 Default is @code{downward}.
405
406 @item threshold
407 If a signal of stream rises above this level it will affect the gain
408 reduction.
409 By default it is 0.125. Range is between 0.00097563 and 1.
410
411 @item ratio
412 Set a ratio by which the signal is reduced. 1:2 means that if the level
413 rose 4dB above the threshold, it will be only 2dB above after the reduction.
414 Default is 2. Range is between 1 and 20.
415
416 @item attack
417 Amount of milliseconds the signal has to rise above the threshold before gain
418 reduction starts. Default is 20. Range is between 0.01 and 2000.
419
420 @item release
421 Amount of milliseconds the signal has to fall below the threshold before
422 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
423
424 @item makeup
425 Set the amount by how much signal will be amplified after processing.
426 Default is 1. Range is from 1 to 64.
427
428 @item knee
429 Curve the sharp knee around the threshold to enter gain reduction more softly.
430 Default is 2.82843. Range is between 1 and 8.
431
432 @item link
433 Choose if the @code{average} level between all channels of input stream
434 or the louder(@code{maximum}) channel of input stream affects the
435 reduction. Default is @code{average}.
436
437 @item detection
438 Should the exact signal be taken in case of @code{peak} or an RMS one in case
439 of @code{rms}. Default is @code{rms} which is mostly smoother.
440
441 @item mix
442 How much to use compressed signal in output. Default is 1.
443 Range is between 0 and 1.
444 @end table
445
446 @subsection Commands
447
448 This filter supports the all above options as @ref{commands}.
449
450 @section acontrast
451 Simple audio dynamic range compression/expansion filter.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item contrast
457 Set contrast. Default is 33. Allowed range is between 0 and 100.
458 @end table
459
460 @section acopy
461
462 Copy the input audio source unchanged to the output. This is mainly useful for
463 testing purposes.
464
465 @section acrossfade
466
467 Apply cross fade from one input audio stream to another input audio stream.
468 The cross fade is applied for specified duration near the end of first stream.
469
470 The filter accepts the following options:
471
472 @table @option
473 @item nb_samples, ns
474 Specify the number of samples for which the cross fade effect has to last.
475 At the end of the cross fade effect the first input audio will be completely
476 silent. Default is 44100.
477
478 @item duration, d
479 Specify the duration of the cross fade effect. See
480 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
481 for the accepted syntax.
482 By default the duration is determined by @var{nb_samples}.
483 If set this option is used instead of @var{nb_samples}.
484
485 @item overlap, o
486 Should first stream end overlap with second stream start. Default is enabled.
487
488 @item curve1
489 Set curve for cross fade transition for first stream.
490
491 @item curve2
492 Set curve for cross fade transition for second stream.
493
494 For description of available curve types see @ref{afade} filter description.
495 @end table
496
497 @subsection Examples
498
499 @itemize
500 @item
501 Cross fade from one input to another:
502 @example
503 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
504 @end example
505
506 @item
507 Cross fade from one input to another but without overlapping:
508 @example
509 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
510 @end example
511 @end itemize
512
513 @section acrossover
514 Split audio stream into several bands.
515
516 This filter splits audio stream into two or more frequency ranges.
517 Summing all streams back will give flat output.
518
519 The filter accepts the following options:
520
521 @table @option
522 @item split
523 Set split frequencies. Those must be positive and increasing.
524
525 @item order
526 Set filter order, can be @var{2nd}, @var{4th} or @var{8th}.
527 Default is @var{4th}.
528 @end table
529
530 @section acrusher
531
532 Reduce audio bit resolution.
533
534 This filter is bit crusher with enhanced functionality. A bit crusher
535 is used to audibly reduce number of bits an audio signal is sampled
536 with. This doesn't change the bit depth at all, it just produces the
537 effect. Material reduced in bit depth sounds more harsh and "digital".
538 This filter is able to even round to continuous values instead of discrete
539 bit depths.
540 Additionally it has a D/C offset which results in different crushing of
541 the lower and the upper half of the signal.
542 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
543
544 Another feature of this filter is the logarithmic mode.
545 This setting switches from linear distances between bits to logarithmic ones.
546 The result is a much more "natural" sounding crusher which doesn't gate low
547 signals for example. The human ear has a logarithmic perception,
548 so this kind of crushing is much more pleasant.
549 Logarithmic crushing is also able to get anti-aliased.
550
551 The filter accepts the following options:
552
553 @table @option
554 @item level_in
555 Set level in.
556
557 @item level_out
558 Set level out.
559
560 @item bits
561 Set bit reduction.
562
563 @item mix
564 Set mixing amount.
565
566 @item mode
567 Can be linear: @code{lin} or logarithmic: @code{log}.
568
569 @item dc
570 Set DC.
571
572 @item aa
573 Set anti-aliasing.
574
575 @item samples
576 Set sample reduction.
577
578 @item lfo
579 Enable LFO. By default disabled.
580
581 @item lforange
582 Set LFO range.
583
584 @item lforate
585 Set LFO rate.
586 @end table
587
588 @section acue
589
590 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
591 filter.
592
593 @section adeclick
594 Remove impulsive noise from input audio.
595
596 Samples detected as impulsive noise are replaced by interpolated samples using
597 autoregressive modelling.
598
599 @table @option
600 @item w
601 Set window size, in milliseconds. Allowed range is from @code{10} to
602 @code{100}. Default value is @code{55} milliseconds.
603 This sets size of window which will be processed at once.
604
605 @item o
606 Set window overlap, in percentage of window size. Allowed range is from
607 @code{50} to @code{95}. Default value is @code{75} percent.
608 Setting this to a very high value increases impulsive noise removal but makes
609 whole process much slower.
610
611 @item a
612 Set autoregression order, in percentage of window size. Allowed range is from
613 @code{0} to @code{25}. Default value is @code{2} percent. This option also
614 controls quality of interpolated samples using neighbour good samples.
615
616 @item t
617 Set threshold value. Allowed range is from @code{1} to @code{100}.
618 Default value is @code{2}.
619 This controls the strength of impulsive noise which is going to be removed.
620 The lower value, the more samples will be detected as impulsive noise.
621
622 @item b
623 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
624 @code{10}. Default value is @code{2}.
625 If any two samples detected as noise are spaced less than this value then any
626 sample between those two samples will be also detected as noise.
627
628 @item m
629 Set overlap method.
630
631 It accepts the following values:
632 @table @option
633 @item a
634 Select overlap-add method. Even not interpolated samples are slightly
635 changed with this method.
636
637 @item s
638 Select overlap-save method. Not interpolated samples remain unchanged.
639 @end table
640
641 Default value is @code{a}.
642 @end table
643
644 @section adeclip
645 Remove clipped samples from input audio.
646
647 Samples detected as clipped are replaced by interpolated samples using
648 autoregressive modelling.
649
650 @table @option
651 @item w
652 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
653 Default value is @code{55} milliseconds.
654 This sets size of window which will be processed at once.
655
656 @item o
657 Set window overlap, in percentage of window size. Allowed range is from @code{50}
658 to @code{95}. Default value is @code{75} percent.
659
660 @item a
661 Set autoregression order, in percentage of window size. Allowed range is from
662 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
663 quality of interpolated samples using neighbour good samples.
664
665 @item t
666 Set threshold value. Allowed range is from @code{1} to @code{100}.
667 Default value is @code{10}. Higher values make clip detection less aggressive.
668
669 @item n
670 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
671 Default value is @code{1000}. Higher values make clip detection less aggressive.
672
673 @item m
674 Set overlap method.
675
676 It accepts the following values:
677 @table @option
678 @item a
679 Select overlap-add method. Even not interpolated samples are slightly changed
680 with this method.
681
682 @item s
683 Select overlap-save method. Not interpolated samples remain unchanged.
684 @end table
685
686 Default value is @code{a}.
687 @end table
688
689 @section adelay
690
691 Delay one or more audio channels.
692
693 Samples in delayed channel are filled with silence.
694
695 The filter accepts the following option:
696
697 @table @option
698 @item delays
699 Set list of delays in milliseconds for each channel separated by '|'.
700 Unused delays will be silently ignored. If number of given delays is
701 smaller than number of channels all remaining channels will not be delayed.
702 If you want to delay exact number of samples, append 'S' to number.
703 If you want instead to delay in seconds, append 's' to number.
704
705 @item all
706 Use last set delay for all remaining channels. By default is disabled.
707 This option if enabled changes how option @code{delays} is interpreted.
708 @end table
709
710 @subsection Examples
711
712 @itemize
713 @item
714 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
715 the second channel (and any other channels that may be present) unchanged.
716 @example
717 adelay=1500|0|500
718 @end example
719
720 @item
721 Delay second channel by 500 samples, the third channel by 700 samples and leave
722 the first channel (and any other channels that may be present) unchanged.
723 @example
724 adelay=0|500S|700S
725 @end example
726
727 @item
728 Delay all channels by same number of samples:
729 @example
730 adelay=delays=64S:all=1
731 @end example
732 @end itemize
733
734 @section aderivative, aintegral
735
736 Compute derivative/integral of audio stream.
737
738 Applying both filters one after another produces original audio.
739
740 @section aecho
741
742 Apply echoing to the input audio.
743
744 Echoes are reflected sound and can occur naturally amongst mountains
745 (and sometimes large buildings) when talking or shouting; digital echo
746 effects emulate this behaviour and are often used to help fill out the
747 sound of a single instrument or vocal. The time difference between the
748 original signal and the reflection is the @code{delay}, and the
749 loudness of the reflected signal is the @code{decay}.
750 Multiple echoes can have different delays and decays.
751
752 A description of the accepted parameters follows.
753
754 @table @option
755 @item in_gain
756 Set input gain of reflected signal. Default is @code{0.6}.
757
758 @item out_gain
759 Set output gain of reflected signal. Default is @code{0.3}.
760
761 @item delays
762 Set list of time intervals in milliseconds between original signal and reflections
763 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
764 Default is @code{1000}.
765
766 @item decays
767 Set list of loudness of reflected signals separated by '|'.
768 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
769 Default is @code{0.5}.
770 @end table
771
772 @subsection Examples
773
774 @itemize
775 @item
776 Make it sound as if there are twice as many instruments as are actually playing:
777 @example
778 aecho=0.8:0.88:60:0.4
779 @end example
780
781 @item
782 If delay is very short, then it sounds like a (metallic) robot playing music:
783 @example
784 aecho=0.8:0.88:6:0.4
785 @end example
786
787 @item
788 A longer delay will sound like an open air concert in the mountains:
789 @example
790 aecho=0.8:0.9:1000:0.3
791 @end example
792
793 @item
794 Same as above but with one more mountain:
795 @example
796 aecho=0.8:0.9:1000|1800:0.3|0.25
797 @end example
798 @end itemize
799
800 @section aemphasis
801 Audio emphasis filter creates or restores material directly taken from LPs or
802 emphased CDs with different filter curves. E.g. to store music on vinyl the
803 signal has to be altered by a filter first to even out the disadvantages of
804 this recording medium.
805 Once the material is played back the inverse filter has to be applied to
806 restore the distortion of the frequency response.
807
808 The filter accepts the following options:
809
810 @table @option
811 @item level_in
812 Set input gain.
813
814 @item level_out
815 Set output gain.
816
817 @item mode
818 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
819 use @code{production} mode. Default is @code{reproduction} mode.
820
821 @item type
822 Set filter type. Selects medium. Can be one of the following:
823
824 @table @option
825 @item col
826 select Columbia.
827 @item emi
828 select EMI.
829 @item bsi
830 select BSI (78RPM).
831 @item riaa
832 select RIAA.
833 @item cd
834 select Compact Disc (CD).
835 @item 50fm
836 select 50µs (FM).
837 @item 75fm
838 select 75µs (FM).
839 @item 50kf
840 select 50µs (FM-KF).
841 @item 75kf
842 select 75µs (FM-KF).
843 @end table
844 @end table
845
846 @section aeval
847
848 Modify an audio signal according to the specified expressions.
849
850 This filter accepts one or more expressions (one for each channel),
851 which are evaluated and used to modify a corresponding audio signal.
852
853 It accepts the following parameters:
854
855 @table @option
856 @item exprs
857 Set the '|'-separated expressions list for each separate channel. If
858 the number of input channels is greater than the number of
859 expressions, the last specified expression is used for the remaining
860 output channels.
861
862 @item channel_layout, c
863 Set output channel layout. If not specified, the channel layout is
864 specified by the number of expressions. If set to @samp{same}, it will
865 use by default the same input channel layout.
866 @end table
867
868 Each expression in @var{exprs} can contain the following constants and functions:
869
870 @table @option
871 @item ch
872 channel number of the current expression
873
874 @item n
875 number of the evaluated sample, starting from 0
876
877 @item s
878 sample rate
879
880 @item t
881 time of the evaluated sample expressed in seconds
882
883 @item nb_in_channels
884 @item nb_out_channels
885 input and output number of channels
886
887 @item val(CH)
888 the value of input channel with number @var{CH}
889 @end table
890
891 Note: this filter is slow. For faster processing you should use a
892 dedicated filter.
893
894 @subsection Examples
895
896 @itemize
897 @item
898 Half volume:
899 @example
900 aeval=val(ch)/2:c=same
901 @end example
902
903 @item
904 Invert phase of the second channel:
905 @example
906 aeval=val(0)|-val(1)
907 @end example
908 @end itemize
909
910 @anchor{afade}
911 @section afade
912
913 Apply fade-in/out effect to input audio.
914
915 A description of the accepted parameters follows.
916
917 @table @option
918 @item type, t
919 Specify the effect type, can be either @code{in} for fade-in, or
920 @code{out} for a fade-out effect. Default is @code{in}.
921
922 @item start_sample, ss
923 Specify the number of the start sample for starting to apply the fade
924 effect. Default is 0.
925
926 @item nb_samples, ns
927 Specify the number of samples for which the fade effect has to last. At
928 the end of the fade-in effect the output audio will have the same
929 volume as the input audio, at the end of the fade-out transition
930 the output audio will be silence. Default is 44100.
931
932 @item start_time, st
933 Specify the start time of the fade effect. Default is 0.
934 The value must be specified as a time duration; see
935 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
936 for the accepted syntax.
937 If set this option is used instead of @var{start_sample}.
938
939 @item duration, d
940 Specify the duration of the fade effect. See
941 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
942 for the accepted syntax.
943 At the end of the fade-in effect the output audio will have the same
944 volume as the input audio, at the end of the fade-out transition
945 the output audio will be silence.
946 By default the duration is determined by @var{nb_samples}.
947 If set this option is used instead of @var{nb_samples}.
948
949 @item curve
950 Set curve for fade transition.
951
952 It accepts the following values:
953 @table @option
954 @item tri
955 select triangular, linear slope (default)
956 @item qsin
957 select quarter of sine wave
958 @item hsin
959 select half of sine wave
960 @item esin
961 select exponential sine wave
962 @item log
963 select logarithmic
964 @item ipar
965 select inverted parabola
966 @item qua
967 select quadratic
968 @item cub
969 select cubic
970 @item squ
971 select square root
972 @item cbr
973 select cubic root
974 @item par
975 select parabola
976 @item exp
977 select exponential
978 @item iqsin
979 select inverted quarter of sine wave
980 @item ihsin
981 select inverted half of sine wave
982 @item dese
983 select double-exponential seat
984 @item desi
985 select double-exponential sigmoid
986 @item losi
987 select logistic sigmoid
988 @item nofade
989 no fade applied
990 @end table
991 @end table
992
993 @subsection Examples
994
995 @itemize
996 @item
997 Fade in first 15 seconds of audio:
998 @example
999 afade=t=in:ss=0:d=15
1000 @end example
1001
1002 @item
1003 Fade out last 25 seconds of a 900 seconds audio:
1004 @example
1005 afade=t=out:st=875:d=25
1006 @end example
1007 @end itemize
1008
1009 @section afftdn
1010 Denoise audio samples with FFT.
1011
1012 A description of the accepted parameters follows.
1013
1014 @table @option
1015 @item nr
1016 Set the noise reduction in dB, allowed range is 0.01 to 97.
1017 Default value is 12 dB.
1018
1019 @item nf
1020 Set the noise floor in dB, allowed range is -80 to -20.
1021 Default value is -50 dB.
1022
1023 @item nt
1024 Set the noise type.
1025
1026 It accepts the following values:
1027 @table @option
1028 @item w
1029 Select white noise.
1030
1031 @item v
1032 Select vinyl noise.
1033
1034 @item s
1035 Select shellac noise.
1036
1037 @item c
1038 Select custom noise, defined in @code{bn} option.
1039
1040 Default value is white noise.
1041 @end table
1042
1043 @item bn
1044 Set custom band noise for every one of 15 bands.
1045 Bands are separated by ' ' or '|'.
1046
1047 @item rf
1048 Set the residual floor in dB, allowed range is -80 to -20.
1049 Default value is -38 dB.
1050
1051 @item tn
1052 Enable noise tracking. By default is disabled.
1053 With this enabled, noise floor is automatically adjusted.
1054
1055 @item tr
1056 Enable residual tracking. By default is disabled.
1057
1058 @item om
1059 Set the output mode.
1060
1061 It accepts the following values:
1062 @table @option
1063 @item i
1064 Pass input unchanged.
1065
1066 @item o
1067 Pass noise filtered out.
1068
1069 @item n
1070 Pass only noise.
1071
1072 Default value is @var{o}.
1073 @end table
1074 @end table
1075
1076 @subsection Commands
1077
1078 This filter supports the following commands:
1079 @table @option
1080 @item sample_noise, sn
1081 Start or stop measuring noise profile.
1082 Syntax for the command is : "start" or "stop" string.
1083 After measuring noise profile is stopped it will be
1084 automatically applied in filtering.
1085
1086 @item noise_reduction, nr
1087 Change noise reduction. Argument is single float number.
1088 Syntax for the command is : "@var{noise_reduction}"
1089
1090 @item noise_floor, nf
1091 Change noise floor. Argument is single float number.
1092 Syntax for the command is : "@var{noise_floor}"
1093
1094 @item output_mode, om
1095 Change output mode operation.
1096 Syntax for the command is : "i", "o" or "n" string.
1097 @end table
1098
1099 @section afftfilt
1100 Apply arbitrary expressions to samples in frequency domain.
1101
1102 @table @option
1103 @item real
1104 Set frequency domain real expression for each separate channel separated
1105 by '|'. Default is "re".
1106 If the number of input channels is greater than the number of
1107 expressions, the last specified expression is used for the remaining
1108 output channels.
1109
1110 @item imag
1111 Set frequency domain imaginary expression for each separate channel
1112 separated by '|'. Default is "im".
1113
1114 Each expression in @var{real} and @var{imag} can contain the following
1115 constants and functions:
1116
1117 @table @option
1118 @item sr
1119 sample rate
1120
1121 @item b
1122 current frequency bin number
1123
1124 @item nb
1125 number of available bins
1126
1127 @item ch
1128 channel number of the current expression
1129
1130 @item chs
1131 number of channels
1132
1133 @item pts
1134 current frame pts
1135
1136 @item re
1137 current real part of frequency bin of current channel
1138
1139 @item im
1140 current imaginary part of frequency bin of current channel
1141
1142 @item real(b, ch)
1143 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1144
1145 @item imag(b, ch)
1146 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1147 @end table
1148
1149 @item win_size
1150 Set window size. Allowed range is from 16 to 131072.
1151 Default is @code{4096}
1152
1153 @item win_func
1154 Set window function. Default is @code{hann}.
1155
1156 @item overlap
1157 Set window overlap. If set to 1, the recommended overlap for selected
1158 window function will be picked. Default is @code{0.75}.
1159 @end table
1160
1161 @subsection Examples
1162
1163 @itemize
1164 @item
1165 Leave almost only low frequencies in audio:
1166 @example
1167 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1168 @end example
1169
1170 @item
1171 Apply robotize effect:
1172 @example
1173 afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75"
1174 @end example
1175
1176 @item
1177 Apply whisper effect:
1178 @example
1179 afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8"
1180 @end example
1181 @end itemize
1182
1183 @anchor{afir}
1184 @section afir
1185
1186 Apply an arbitrary Finite Impulse Response filter.
1187
1188 This filter is designed for applying long FIR filters,
1189 up to 60 seconds long.
1190
1191 It can be used as component for digital crossover filters,
1192 room equalization, cross talk cancellation, wavefield synthesis,
1193 auralization, ambiophonics, ambisonics and spatialization.
1194
1195 This filter uses the streams higher than first one as FIR coefficients.
1196 If the non-first stream holds a single channel, it will be used
1197 for all input channels in the first stream, otherwise
1198 the number of channels in the non-first stream must be same as
1199 the number of channels in the first stream.
1200
1201 It accepts the following parameters:
1202
1203 @table @option
1204 @item dry
1205 Set dry gain. This sets input gain.
1206
1207 @item wet
1208 Set wet gain. This sets final output gain.
1209
1210 @item length
1211 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1212
1213 @item gtype
1214 Enable applying gain measured from power of IR.
1215
1216 Set which approach to use for auto gain measurement.
1217
1218 @table @option
1219 @item none
1220 Do not apply any gain.
1221
1222 @item peak
1223 select peak gain, very conservative approach. This is default value.
1224
1225 @item dc
1226 select DC gain, limited application.
1227
1228 @item gn
1229 select gain to noise approach, this is most popular one.
1230 @end table
1231
1232 @item irgain
1233 Set gain to be applied to IR coefficients before filtering.
1234 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1235
1236 @item irfmt
1237 Set format of IR stream. Can be @code{mono} or @code{input}.
1238 Default is @code{input}.
1239
1240 @item maxir
1241 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1242 Allowed range is 0.1 to 60 seconds.
1243
1244 @item response
1245 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1246 By default it is disabled.
1247
1248 @item channel
1249 Set for which IR channel to display frequency response. By default is first channel
1250 displayed. This option is used only when @var{response} is enabled.
1251
1252 @item size
1253 Set video stream size. This option is used only when @var{response} is enabled.
1254
1255 @item rate
1256 Set video stream frame rate. This option is used only when @var{response} is enabled.
1257
1258 @item minp
1259 Set minimal partition size used for convolution. Default is @var{8192}.
1260 Allowed range is from @var{1} to @var{32768}.
1261 Lower values decreases latency at cost of higher CPU usage.
1262
1263 @item maxp
1264 Set maximal partition size used for convolution. Default is @var{8192}.
1265 Allowed range is from @var{8} to @var{32768}.
1266 Lower values may increase CPU usage.
1267
1268 @item nbirs
1269 Set number of input impulse responses streams which will be switchable at runtime.
1270 Allowed range is from @var{1} to @var{32}. Default is @var{1}.
1271
1272 @item ir
1273 Set IR stream which will be used for convolution, starting from @var{0}, should always be
1274 lower than supplied value by @code{nbirs} option. Default is @var{0}.
1275 This option can be changed at runtime via @ref{commands}.
1276 @end table
1277
1278 @subsection Examples
1279
1280 @itemize
1281 @item
1282 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1283 @example
1284 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1285 @end example
1286 @end itemize
1287
1288 @anchor{aformat}
1289 @section aformat
1290
1291 Set output format constraints for the input audio. The framework will
1292 negotiate the most appropriate format to minimize conversions.
1293
1294 It accepts the following parameters:
1295 @table @option
1296
1297 @item sample_fmts, f
1298 A '|'-separated list of requested sample formats.
1299
1300 @item sample_rates, r
1301 A '|'-separated list of requested sample rates.
1302
1303 @item channel_layouts, cl
1304 A '|'-separated list of requested channel layouts.
1305
1306 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1307 for the required syntax.
1308 @end table
1309
1310 If a parameter is omitted, all values are allowed.
1311
1312 Force the output to either unsigned 8-bit or signed 16-bit stereo
1313 @example
1314 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1315 @end example
1316
1317 @section agate
1318
1319 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1320 processing reduces disturbing noise between useful signals.
1321
1322 Gating is done by detecting the volume below a chosen level @var{threshold}
1323 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1324 floor is set via @var{range}. Because an exact manipulation of the signal
1325 would cause distortion of the waveform the reduction can be levelled over
1326 time. This is done by setting @var{attack} and @var{release}.
1327
1328 @var{attack} determines how long the signal has to fall below the threshold
1329 before any reduction will occur and @var{release} sets the time the signal
1330 has to rise above the threshold to reduce the reduction again.
1331 Shorter signals than the chosen attack time will be left untouched.
1332
1333 @table @option
1334 @item level_in
1335 Set input level before filtering.
1336 Default is 1. Allowed range is from 0.015625 to 64.
1337
1338 @item mode
1339 Set the mode of operation. Can be @code{upward} or @code{downward}.
1340 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1341 will be amplified, expanding dynamic range in upward direction.
1342 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1343
1344 @item range
1345 Set the level of gain reduction when the signal is below the threshold.
1346 Default is 0.06125. Allowed range is from 0 to 1.
1347 Setting this to 0 disables reduction and then filter behaves like expander.
1348
1349 @item threshold
1350 If a signal rises above this level the gain reduction is released.
1351 Default is 0.125. Allowed range is from 0 to 1.
1352
1353 @item ratio
1354 Set a ratio by which the signal is reduced.
1355 Default is 2. Allowed range is from 1 to 9000.
1356
1357 @item attack
1358 Amount of milliseconds the signal has to rise above the threshold before gain
1359 reduction stops.
1360 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1361
1362 @item release
1363 Amount of milliseconds the signal has to fall below the threshold before the
1364 reduction is increased again. Default is 250 milliseconds.
1365 Allowed range is from 0.01 to 9000.
1366
1367 @item makeup
1368 Set amount of amplification of signal after processing.
1369 Default is 1. Allowed range is from 1 to 64.
1370
1371 @item knee
1372 Curve the sharp knee around the threshold to enter gain reduction more softly.
1373 Default is 2.828427125. Allowed range is from 1 to 8.
1374
1375 @item detection
1376 Choose if exact signal should be taken for detection or an RMS like one.
1377 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1378
1379 @item link
1380 Choose if the average level between all channels or the louder channel affects
1381 the reduction.
1382 Default is @code{average}. Can be @code{average} or @code{maximum}.
1383 @end table
1384
1385 @section aiir
1386
1387 Apply an arbitrary Infinite Impulse Response filter.
1388
1389 It accepts the following parameters:
1390
1391 @table @option
1392 @item z
1393 Set numerator/zeros coefficients.
1394
1395 @item p
1396 Set denominator/poles coefficients.
1397
1398 @item k
1399 Set channels gains.
1400
1401 @item dry_gain
1402 Set input gain.
1403
1404 @item wet_gain
1405 Set output gain.
1406
1407 @item f
1408 Set coefficients format.
1409
1410 @table @samp
1411 @item tf
1412 transfer function
1413 @item zp
1414 Z-plane zeros/poles, cartesian (default)
1415 @item pr
1416 Z-plane zeros/poles, polar radians
1417 @item pd
1418 Z-plane zeros/poles, polar degrees
1419 @end table
1420
1421 @item r
1422 Set kind of processing.
1423 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1424
1425 @item e
1426 Set filtering precision.
1427
1428 @table @samp
1429 @item dbl
1430 double-precision floating-point (default)
1431 @item flt
1432 single-precision floating-point
1433 @item i32
1434 32-bit integers
1435 @item i16
1436 16-bit integers
1437 @end table
1438
1439 @item mix
1440 How much to use filtered signal in output. Default is 1.
1441 Range is between 0 and 1.
1442
1443 @item response
1444 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1445 By default it is disabled.
1446
1447 @item channel
1448 Set for which IR channel to display frequency response. By default is first channel
1449 displayed. This option is used only when @var{response} is enabled.
1450
1451 @item size
1452 Set video stream size. This option is used only when @var{response} is enabled.
1453 @end table
1454
1455 Coefficients in @code{tf} format are separated by spaces and are in ascending
1456 order.
1457
1458 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1459 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1460 imaginary unit.
1461
1462 Different coefficients and gains can be provided for every channel, in such case
1463 use '|' to separate coefficients or gains. Last provided coefficients will be
1464 used for all remaining channels.
1465
1466 @subsection Examples
1467
1468 @itemize
1469 @item
1470 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1471 @example
1472 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
1473 @end example
1474
1475 @item
1476 Same as above but in @code{zp} format:
1477 @example
1478 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
1479 @end example
1480 @end itemize
1481
1482 @section alimiter
1483
1484 The limiter prevents an input signal from rising over a desired threshold.
1485 This limiter uses lookahead technology to prevent your signal from distorting.
1486 It means that there is a small delay after the signal is processed. Keep in mind
1487 that the delay it produces is the attack time you set.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item level_in
1493 Set input gain. Default is 1.
1494
1495 @item level_out
1496 Set output gain. Default is 1.
1497
1498 @item limit
1499 Don't let signals above this level pass the limiter. Default is 1.
1500
1501 @item attack
1502 The limiter will reach its attenuation level in this amount of time in
1503 milliseconds. Default is 5 milliseconds.
1504
1505 @item release
1506 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1507 Default is 50 milliseconds.
1508
1509 @item asc
1510 When gain reduction is always needed ASC takes care of releasing to an
1511 average reduction level rather than reaching a reduction of 0 in the release
1512 time.
1513
1514 @item asc_level
1515 Select how much the release time is affected by ASC, 0 means nearly no changes
1516 in release time while 1 produces higher release times.
1517
1518 @item level
1519 Auto level output signal. Default is enabled.
1520 This normalizes audio back to 0dB if enabled.
1521 @end table
1522
1523 Depending on picked setting it is recommended to upsample input 2x or 4x times
1524 with @ref{aresample} before applying this filter.
1525
1526 @section allpass
1527
1528 Apply a two-pole all-pass filter with central frequency (in Hz)
1529 @var{frequency}, and filter-width @var{width}.
1530 An all-pass filter changes the audio's frequency to phase relationship
1531 without changing its frequency to amplitude relationship.
1532
1533 The filter accepts the following options:
1534
1535 @table @option
1536 @item frequency, f
1537 Set frequency in Hz.
1538
1539 @item width_type, t
1540 Set method to specify band-width of filter.
1541 @table @option
1542 @item h
1543 Hz
1544 @item q
1545 Q-Factor
1546 @item o
1547 octave
1548 @item s
1549 slope
1550 @item k
1551 kHz
1552 @end table
1553
1554 @item width, w
1555 Specify the band-width of a filter in width_type units.
1556
1557 @item mix, m
1558 How much to use filtered signal in output. Default is 1.
1559 Range is between 0 and 1.
1560
1561 @item channels, c
1562 Specify which channels to filter, by default all available are filtered.
1563
1564 @item normalize, n
1565 Normalize biquad coefficients, by default is disabled.
1566 Enabling it will normalize magnitude response at DC to 0dB.
1567 @end table
1568
1569 @subsection Commands
1570
1571 This filter supports the following commands:
1572 @table @option
1573 @item frequency, f
1574 Change allpass frequency.
1575 Syntax for the command is : "@var{frequency}"
1576
1577 @item width_type, t
1578 Change allpass width_type.
1579 Syntax for the command is : "@var{width_type}"
1580
1581 @item width, w
1582 Change allpass width.
1583 Syntax for the command is : "@var{width}"
1584
1585 @item mix, m
1586 Change allpass mix.
1587 Syntax for the command is : "@var{mix}"
1588 @end table
1589
1590 @section aloop
1591
1592 Loop audio samples.
1593
1594 The filter accepts the following options:
1595
1596 @table @option
1597 @item loop
1598 Set the number of loops. Setting this value to -1 will result in infinite loops.
1599 Default is 0.
1600
1601 @item size
1602 Set maximal number of samples. Default is 0.
1603
1604 @item start
1605 Set first sample of loop. Default is 0.
1606 @end table
1607
1608 @anchor{amerge}
1609 @section amerge
1610
1611 Merge two or more audio streams into a single multi-channel stream.
1612
1613 The filter accepts the following options:
1614
1615 @table @option
1616
1617 @item inputs
1618 Set the number of inputs. Default is 2.
1619
1620 @end table
1621
1622 If the channel layouts of the inputs are disjoint, and therefore compatible,
1623 the channel layout of the output will be set accordingly and the channels
1624 will be reordered as necessary. If the channel layouts of the inputs are not
1625 disjoint, the output will have all the channels of the first input then all
1626 the channels of the second input, in that order, and the channel layout of
1627 the output will be the default value corresponding to the total number of
1628 channels.
1629
1630 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1631 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1632 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1633 first input, b1 is the first channel of the second input).
1634
1635 On the other hand, if both input are in stereo, the output channels will be
1636 in the default order: a1, a2, b1, b2, and the channel layout will be
1637 arbitrarily set to 4.0, which may or may not be the expected value.
1638
1639 All inputs must have the same sample rate, and format.
1640
1641 If inputs do not have the same duration, the output will stop with the
1642 shortest.
1643
1644 @subsection Examples
1645
1646 @itemize
1647 @item
1648 Merge two mono files into a stereo stream:
1649 @example
1650 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1651 @end example
1652
1653 @item
1654 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1655 @example
1656 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
1657 @end example
1658 @end itemize
1659
1660 @section amix
1661
1662 Mixes multiple audio inputs into a single output.
1663
1664 Note that this filter only supports float samples (the @var{amerge}
1665 and @var{pan} audio filters support many formats). If the @var{amix}
1666 input has integer samples then @ref{aresample} will be automatically
1667 inserted to perform the conversion to float samples.
1668
1669 For example
1670 @example
1671 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1672 @end example
1673 will mix 3 input audio streams to a single output with the same duration as the
1674 first input and a dropout transition time of 3 seconds.
1675
1676 It accepts the following parameters:
1677 @table @option
1678
1679 @item inputs
1680 The number of inputs. If unspecified, it defaults to 2.
1681
1682 @item duration
1683 How to determine the end-of-stream.
1684 @table @option
1685
1686 @item longest
1687 The duration of the longest input. (default)
1688
1689 @item shortest
1690 The duration of the shortest input.
1691
1692 @item first
1693 The duration of the first input.
1694
1695 @end table
1696
1697 @item dropout_transition
1698 The transition time, in seconds, for volume renormalization when an input
1699 stream ends. The default value is 2 seconds.
1700
1701 @item weights
1702 Specify weight of each input audio stream as sequence.
1703 Each weight is separated by space. By default all inputs have same weight.
1704 @end table
1705
1706 @section amultiply
1707
1708 Multiply first audio stream with second audio stream and store result
1709 in output audio stream. Multiplication is done by multiplying each
1710 sample from first stream with sample at same position from second stream.
1711
1712 With this element-wise multiplication one can create amplitude fades and
1713 amplitude modulations.
1714
1715 @section anequalizer
1716
1717 High-order parametric multiband equalizer for each channel.
1718
1719 It accepts the following parameters:
1720 @table @option
1721 @item params
1722
1723 This option string is in format:
1724 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1725 Each equalizer band is separated by '|'.
1726
1727 @table @option
1728 @item chn
1729 Set channel number to which equalization will be applied.
1730 If input doesn't have that channel the entry is ignored.
1731
1732 @item f
1733 Set central frequency for band.
1734 If input doesn't have that frequency the entry is ignored.
1735
1736 @item w
1737 Set band width in hertz.
1738
1739 @item g
1740 Set band gain in dB.
1741
1742 @item t
1743 Set filter type for band, optional, can be:
1744
1745 @table @samp
1746 @item 0
1747 Butterworth, this is default.
1748
1749 @item 1
1750 Chebyshev type 1.
1751
1752 @item 2
1753 Chebyshev type 2.
1754 @end table
1755 @end table
1756
1757 @item curves
1758 With this option activated frequency response of anequalizer is displayed
1759 in video stream.
1760
1761 @item size
1762 Set video stream size. Only useful if curves option is activated.
1763
1764 @item mgain
1765 Set max gain that will be displayed. Only useful if curves option is activated.
1766 Setting this to a reasonable value makes it possible to display gain which is derived from
1767 neighbour bands which are too close to each other and thus produce higher gain
1768 when both are activated.
1769
1770 @item fscale
1771 Set frequency scale used to draw frequency response in video output.
1772 Can be linear or logarithmic. Default is logarithmic.
1773
1774 @item colors
1775 Set color for each channel curve which is going to be displayed in video stream.
1776 This is list of color names separated by space or by '|'.
1777 Unrecognised or missing colors will be replaced by white color.
1778 @end table
1779
1780 @subsection Examples
1781
1782 @itemize
1783 @item
1784 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1785 for first 2 channels using Chebyshev type 1 filter:
1786 @example
1787 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1788 @end example
1789 @end itemize
1790
1791 @subsection Commands
1792
1793 This filter supports the following commands:
1794 @table @option
1795 @item change
1796 Alter existing filter parameters.
1797 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1798
1799 @var{fN} is existing filter number, starting from 0, if no such filter is available
1800 error is returned.
1801 @var{freq} set new frequency parameter.
1802 @var{width} set new width parameter in herz.
1803 @var{gain} set new gain parameter in dB.
1804
1805 Full filter invocation with asendcmd may look like this:
1806 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1807 @end table
1808
1809 @section anlmdn
1810
1811 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1812
1813 Each sample is adjusted by looking for other samples with similar contexts. This
1814 context similarity is defined by comparing their surrounding patches of size
1815 @option{p}. Patches are searched in an area of @option{r} around the sample.
1816
1817 The filter accepts the following options:
1818
1819 @table @option
1820 @item s
1821 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1822
1823 @item p
1824 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1825 Default value is 2 milliseconds.
1826
1827 @item r
1828 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1829 Default value is 6 milliseconds.
1830
1831 @item o
1832 Set the output mode.
1833
1834 It accepts the following values:
1835 @table @option
1836 @item i
1837 Pass input unchanged.
1838
1839 @item o
1840 Pass noise filtered out.
1841
1842 @item n
1843 Pass only noise.
1844
1845 Default value is @var{o}.
1846 @end table
1847
1848 @item m
1849 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1850 @end table
1851
1852 @subsection Commands
1853
1854 This filter supports the following commands:
1855 @table @option
1856 @item s
1857 Change denoise strength. Argument is single float number.
1858 Syntax for the command is : "@var{s}"
1859
1860 @item o
1861 Change output mode.
1862 Syntax for the command is : "i", "o" or "n" string.
1863 @end table
1864
1865 @section anlms
1866 Apply Normalized Least-Mean-Squares algorithm to the first audio stream using the second audio stream.
1867
1868 This adaptive filter is used to mimic a desired filter by finding the filter coefficients that
1869 relate to producing the least mean square of the error signal (difference between the desired,
1870 2nd input audio stream and the actual signal, the 1st input audio stream).
1871
1872 A description of the accepted options follows.
1873
1874 @table @option
1875 @item order
1876 Set filter order.
1877
1878 @item mu
1879 Set filter mu.
1880
1881 @item eps
1882 Set the filter eps.
1883
1884 @item leakage
1885 Set the filter leakage.
1886
1887 @item out_mode
1888 It accepts the following values:
1889 @table @option
1890 @item i
1891 Pass the 1st input.
1892
1893 @item d
1894 Pass the 2nd input.
1895
1896 @item o
1897 Pass filtered samples.
1898
1899 @item n
1900 Pass difference between desired and filtered samples.
1901
1902 Default value is @var{o}.
1903 @end table
1904 @end table
1905
1906 @subsection Examples
1907
1908 @itemize
1909 @item
1910 One of many usages of this filter is noise reduction, input audio is filtered
1911 with same samples that are delayed by fixed amount, one such example for stereo audio is:
1912 @example
1913 asplit[a][b],[a]adelay=32S|32S[a],[b][a]anlms=order=128:leakage=0.0005:mu=.5:out_mode=o
1914 @end example
1915 @end itemize
1916
1917 @subsection Commands
1918
1919 This filter supports the same commands as options, excluding option @code{order}.
1920
1921 @section anull
1922
1923 Pass the audio source unchanged to the output.
1924
1925 @section apad
1926
1927 Pad the end of an audio stream with silence.
1928
1929 This can be used together with @command{ffmpeg} @option{-shortest} to
1930 extend audio streams to the same length as the video stream.
1931
1932 A description of the accepted options follows.
1933
1934 @table @option
1935 @item packet_size
1936 Set silence packet size. Default value is 4096.
1937
1938 @item pad_len
1939 Set the number of samples of silence to add to the end. After the
1940 value is reached, the stream is terminated. This option is mutually
1941 exclusive with @option{whole_len}.
1942
1943 @item whole_len
1944 Set the minimum total number of samples in the output audio stream. If
1945 the value is longer than the input audio length, silence is added to
1946 the end, until the value is reached. This option is mutually exclusive
1947 with @option{pad_len}.
1948
1949 @item pad_dur
1950 Specify the duration of samples of silence to add. See
1951 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1952 for the accepted syntax. Used only if set to non-zero value.
1953
1954 @item whole_dur
1955 Specify the minimum total duration in the output audio stream. See
1956 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1957 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1958 the input audio length, silence is added to the end, until the value is reached.
1959 This option is mutually exclusive with @option{pad_dur}
1960 @end table
1961
1962 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1963 nor @option{whole_dur} option is set, the filter will add silence to the end of
1964 the input stream indefinitely.
1965
1966 @subsection Examples
1967
1968 @itemize
1969 @item
1970 Add 1024 samples of silence to the end of the input:
1971 @example
1972 apad=pad_len=1024
1973 @end example
1974
1975 @item
1976 Make sure the audio output will contain at least 10000 samples, pad
1977 the input with silence if required:
1978 @example
1979 apad=whole_len=10000
1980 @end example
1981
1982 @item
1983 Use @command{ffmpeg} to pad the audio input with silence, so that the
1984 video stream will always result the shortest and will be converted
1985 until the end in the output file when using the @option{shortest}
1986 option:
1987 @example
1988 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1989 @end example
1990 @end itemize
1991
1992 @section aphaser
1993 Add a phasing effect to the input audio.
1994
1995 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1996 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1997
1998 A description of the accepted parameters follows.
1999
2000 @table @option
2001 @item in_gain
2002 Set input gain. Default is 0.4.
2003
2004 @item out_gain
2005 Set output gain. Default is 0.74
2006
2007 @item delay
2008 Set delay in milliseconds. Default is 3.0.
2009
2010 @item decay
2011 Set decay. Default is 0.4.
2012
2013 @item speed
2014 Set modulation speed in Hz. Default is 0.5.
2015
2016 @item type
2017 Set modulation type. Default is triangular.
2018
2019 It accepts the following values:
2020 @table @samp
2021 @item triangular, t
2022 @item sinusoidal, s
2023 @end table
2024 @end table
2025
2026 @section apulsator
2027
2028 Audio pulsator is something between an autopanner and a tremolo.
2029 But it can produce funny stereo effects as well. Pulsator changes the volume
2030 of the left and right channel based on a LFO (low frequency oscillator) with
2031 different waveforms and shifted phases.
2032 This filter have the ability to define an offset between left and right
2033 channel. An offset of 0 means that both LFO shapes match each other.
2034 The left and right channel are altered equally - a conventional tremolo.
2035 An offset of 50% means that the shape of the right channel is exactly shifted
2036 in phase (or moved backwards about half of the frequency) - pulsator acts as
2037 an autopanner. At 1 both curves match again. Every setting in between moves the
2038 phase shift gapless between all stages and produces some "bypassing" sounds with
2039 sine and triangle waveforms. The more you set the offset near 1 (starting from
2040 the 0.5) the faster the signal passes from the left to the right speaker.
2041
2042 The filter accepts the following options:
2043
2044 @table @option
2045 @item level_in
2046 Set input gain. By default it is 1. Range is [0.015625 - 64].
2047
2048 @item level_out
2049 Set output gain. By default it is 1. Range is [0.015625 - 64].
2050
2051 @item mode
2052 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
2053 sawup or sawdown. Default is sine.
2054
2055 @item amount
2056 Set modulation. Define how much of original signal is affected by the LFO.
2057
2058 @item offset_l
2059 Set left channel offset. Default is 0. Allowed range is [0 - 1].
2060
2061 @item offset_r
2062 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
2063
2064 @item width
2065 Set pulse width. Default is 1. Allowed range is [0 - 2].
2066
2067 @item timing
2068 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
2069
2070 @item bpm
2071 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
2072 is set to bpm.
2073
2074 @item ms
2075 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
2076 is set to ms.
2077
2078 @item hz
2079 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
2080 if timing is set to hz.
2081 @end table
2082
2083 @anchor{aresample}
2084 @section aresample
2085
2086 Resample the input audio to the specified parameters, using the
2087 libswresample library. If none are specified then the filter will
2088 automatically convert between its input and output.
2089
2090 This filter is also able to stretch/squeeze the audio data to make it match
2091 the timestamps or to inject silence / cut out audio to make it match the
2092 timestamps, do a combination of both or do neither.
2093
2094 The filter accepts the syntax
2095 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
2096 expresses a sample rate and @var{resampler_options} is a list of
2097 @var{key}=@var{value} pairs, separated by ":". See the
2098 @ref{Resampler Options,,"Resampler Options" section in the
2099 ffmpeg-resampler(1) manual,ffmpeg-resampler}
2100 for the complete list of supported options.
2101
2102 @subsection Examples
2103
2104 @itemize
2105 @item
2106 Resample the input audio to 44100Hz:
2107 @example
2108 aresample=44100
2109 @end example
2110
2111 @item
2112 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2113 samples per second compensation:
2114 @example
2115 aresample=async=1000
2116 @end example
2117 @end itemize
2118
2119 @section areverse
2120
2121 Reverse an audio clip.
2122
2123 Warning: This filter requires memory to buffer the entire clip, so trimming
2124 is suggested.
2125
2126 @subsection Examples
2127
2128 @itemize
2129 @item
2130 Take the first 5 seconds of a clip, and reverse it.
2131 @example
2132 atrim=end=5,areverse
2133 @end example
2134 @end itemize
2135
2136 @section arnndn
2137
2138 Reduce noise from speech using Recurrent Neural Networks.
2139
2140 This filter accepts the following options:
2141
2142 @table @option
2143 @item model, m
2144 Set train model file to load. This option is always required.
2145 @end table
2146
2147 @section asetnsamples
2148
2149 Set the number of samples per each output audio frame.
2150
2151 The last output packet may contain a different number of samples, as
2152 the filter will flush all the remaining samples when the input audio
2153 signals its end.
2154
2155 The filter accepts the following options:
2156
2157 @table @option
2158
2159 @item nb_out_samples, n
2160 Set the number of frames per each output audio frame. The number is
2161 intended as the number of samples @emph{per each channel}.
2162 Default value is 1024.
2163
2164 @item pad, p
2165 If set to 1, the filter will pad the last audio frame with zeroes, so
2166 that the last frame will contain the same number of samples as the
2167 previous ones. Default value is 1.
2168 @end table
2169
2170 For example, to set the number of per-frame samples to 1234 and
2171 disable padding for the last frame, use:
2172 @example
2173 asetnsamples=n=1234:p=0
2174 @end example
2175
2176 @section asetrate
2177
2178 Set the sample rate without altering the PCM data.
2179 This will result in a change of speed and pitch.
2180
2181 The filter accepts the following options:
2182
2183 @table @option
2184 @item sample_rate, r
2185 Set the output sample rate. Default is 44100 Hz.
2186 @end table
2187
2188 @section ashowinfo
2189
2190 Show a line containing various information for each input audio frame.
2191 The input audio is not modified.
2192
2193 The shown line contains a sequence of key/value pairs of the form
2194 @var{key}:@var{value}.
2195
2196 The following values are shown in the output:
2197
2198 @table @option
2199 @item n
2200 The (sequential) number of the input frame, starting from 0.
2201
2202 @item pts
2203 The presentation timestamp of the input frame, in time base units; the time base
2204 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2205
2206 @item pts_time
2207 The presentation timestamp of the input frame in seconds.
2208
2209 @item pos
2210 position of the frame in the input stream, -1 if this information in
2211 unavailable and/or meaningless (for example in case of synthetic audio)
2212
2213 @item fmt
2214 The sample format.
2215
2216 @item chlayout
2217 The channel layout.
2218
2219 @item rate
2220 The sample rate for the audio frame.
2221
2222 @item nb_samples
2223 The number of samples (per channel) in the frame.
2224
2225 @item checksum
2226 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2227 audio, the data is treated as if all the planes were concatenated.
2228
2229 @item plane_checksums
2230 A list of Adler-32 checksums for each data plane.
2231 @end table
2232
2233 @section asoftclip
2234 Apply audio soft clipping.
2235
2236 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2237 along a smooth curve, rather than the abrupt shape of hard-clipping.
2238
2239 This filter accepts the following options:
2240
2241 @table @option
2242 @item type
2243 Set type of soft-clipping.
2244
2245 It accepts the following values:
2246 @table @option
2247 @item tanh
2248 @item atan
2249 @item cubic
2250 @item exp
2251 @item alg
2252 @item quintic
2253 @item sin
2254 @end table
2255
2256 @item param
2257 Set additional parameter which controls sigmoid function.
2258 @end table
2259
2260 @subsection Commands
2261
2262 This filter supports the all above options as @ref{commands}.
2263
2264 @section asr
2265 Automatic Speech Recognition
2266
2267 This filter uses PocketSphinx for speech recognition. To enable
2268 compilation of this filter, you need to configure FFmpeg with
2269 @code{--enable-pocketsphinx}.
2270
2271 It accepts the following options:
2272
2273 @table @option
2274 @item rate
2275 Set sampling rate of input audio. Defaults is @code{16000}.
2276 This need to match speech models, otherwise one will get poor results.
2277
2278 @item hmm
2279 Set dictionary containing acoustic model files.
2280
2281 @item dict
2282 Set pronunciation dictionary.
2283
2284 @item lm
2285 Set language model file.
2286
2287 @item lmctl
2288 Set language model set.
2289
2290 @item lmname
2291 Set which language model to use.
2292
2293 @item logfn
2294 Set output for log messages.
2295 @end table
2296
2297 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2298
2299 @anchor{astats}
2300 @section astats
2301
2302 Display time domain statistical information about the audio channels.
2303 Statistics are calculated and displayed for each audio channel and,
2304 where applicable, an overall figure is also given.
2305
2306 It accepts the following option:
2307 @table @option
2308 @item length
2309 Short window length in seconds, used for peak and trough RMS measurement.
2310 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2311
2312 @item metadata
2313
2314 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2315 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2316 disabled.
2317
2318 Available keys for each channel are:
2319 DC_offset
2320 Min_level
2321 Max_level
2322 Min_difference
2323 Max_difference
2324 Mean_difference
2325 RMS_difference
2326 Peak_level
2327 RMS_peak
2328 RMS_trough
2329 Crest_factor
2330 Flat_factor
2331 Peak_count
2332 Noise_floor
2333 Noise_floor_count
2334 Bit_depth
2335 Dynamic_range
2336 Zero_crossings
2337 Zero_crossings_rate
2338 Number_of_NaNs
2339 Number_of_Infs
2340 Number_of_denormals
2341
2342 and for Overall:
2343 DC_offset
2344 Min_level
2345 Max_level
2346 Min_difference
2347 Max_difference
2348 Mean_difference
2349 RMS_difference
2350 Peak_level
2351 RMS_level
2352 RMS_peak
2353 RMS_trough
2354 Flat_factor
2355 Peak_count
2356 Noise_floor
2357 Noise_floor_count
2358 Bit_depth
2359 Number_of_samples
2360 Number_of_NaNs
2361 Number_of_Infs
2362 Number_of_denormals
2363
2364 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2365 this @code{lavfi.astats.Overall.Peak_count}.
2366
2367 For description what each key means read below.
2368
2369 @item reset
2370 Set number of frame after which stats are going to be recalculated.
2371 Default is disabled.
2372
2373 @item measure_perchannel
2374 Select the entries which need to be measured per channel. The metadata keys can
2375 be used as flags, default is @option{all} which measures everything.
2376 @option{none} disables all per channel measurement.
2377
2378 @item measure_overall
2379 Select the entries which need to be measured overall. The metadata keys can
2380 be used as flags, default is @option{all} which measures everything.
2381 @option{none} disables all overall measurement.
2382
2383 @end table
2384
2385 A description of each shown parameter follows:
2386
2387 @table @option
2388 @item DC offset
2389 Mean amplitude displacement from zero.
2390
2391 @item Min level
2392 Minimal sample level.
2393
2394 @item Max level
2395 Maximal sample level.
2396
2397 @item Min difference
2398 Minimal difference between two consecutive samples.
2399
2400 @item Max difference
2401 Maximal difference between two consecutive samples.
2402
2403 @item Mean difference
2404 Mean difference between two consecutive samples.
2405 The average of each difference between two consecutive samples.
2406
2407 @item RMS difference
2408 Root Mean Square difference between two consecutive samples.
2409
2410 @item Peak level dB
2411 @item RMS level dB
2412 Standard peak and RMS level measured in dBFS.
2413
2414 @item RMS peak dB
2415 @item RMS trough dB
2416 Peak and trough values for RMS level measured over a short window.
2417
2418 @item Crest factor
2419 Standard ratio of peak to RMS level (note: not in dB).
2420
2421 @item Flat factor
2422 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2423 (i.e. either @var{Min level} or @var{Max level}).
2424
2425 @item Peak count
2426 Number of occasions (not the number of samples) that the signal attained either
2427 @var{Min level} or @var{Max level}.
2428
2429 @item Noise floor dB
2430 Minimum local peak measured in dBFS over a short window.
2431
2432 @item Noise floor count
2433 Number of occasions (not the number of samples) that the signal attained
2434 @var{Noise floor}.
2435
2436 @item Bit depth
2437 Overall bit depth of audio. Number of bits used for each sample.
2438
2439 @item Dynamic range
2440 Measured dynamic range of audio in dB.
2441
2442 @item Zero crossings
2443 Number of points where the waveform crosses the zero level axis.
2444
2445 @item Zero crossings rate
2446 Rate of Zero crossings and number of audio samples.
2447 @end table
2448
2449 @section atempo
2450
2451 Adjust audio tempo.
2452
2453 The filter accepts exactly one parameter, the audio tempo. If not
2454 specified then the filter will assume nominal 1.0 tempo. Tempo must
2455 be in the [0.5, 100.0] range.
2456
2457 Note that tempo greater than 2 will skip some samples rather than
2458 blend them in.  If for any reason this is a concern it is always
2459 possible to daisy-chain several instances of atempo to achieve the
2460 desired product tempo.
2461
2462 @subsection Examples
2463
2464 @itemize
2465 @item
2466 Slow down audio to 80% tempo:
2467 @example
2468 atempo=0.8
2469 @end example
2470
2471 @item
2472 To speed up audio to 300% tempo:
2473 @example
2474 atempo=3
2475 @end example
2476
2477 @item
2478 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2479 @example
2480 atempo=sqrt(3),atempo=sqrt(3)
2481 @end example
2482 @end itemize
2483
2484 @subsection Commands
2485
2486 This filter supports the following commands:
2487 @table @option
2488 @item tempo
2489 Change filter tempo scale factor.
2490 Syntax for the command is : "@var{tempo}"
2491 @end table
2492
2493 @section atrim
2494
2495 Trim the input so that the output contains one continuous subpart of the input.
2496
2497 It accepts the following parameters:
2498 @table @option
2499 @item start
2500 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2501 sample with the timestamp @var{start} will be the first sample in the output.
2502
2503 @item end
2504 Specify time of the first audio sample that will be dropped, i.e. the
2505 audio sample immediately preceding the one with the timestamp @var{end} will be
2506 the last sample in the output.
2507
2508 @item start_pts
2509 Same as @var{start}, except this option sets the start timestamp in samples
2510 instead of seconds.
2511
2512 @item end_pts
2513 Same as @var{end}, except this option sets the end timestamp in samples instead
2514 of seconds.
2515
2516 @item duration
2517 The maximum duration of the output in seconds.
2518
2519 @item start_sample
2520 The number of the first sample that should be output.
2521
2522 @item end_sample
2523 The number of the first sample that should be dropped.
2524 @end table
2525
2526 @option{start}, @option{end}, and @option{duration} are expressed as time
2527 duration specifications; see
2528 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2529
2530 Note that the first two sets of the start/end options and the @option{duration}
2531 option look at the frame timestamp, while the _sample options simply count the
2532 samples that pass through the filter. So start/end_pts and start/end_sample will
2533 give different results when the timestamps are wrong, inexact or do not start at
2534 zero. Also note that this filter does not modify the timestamps. If you wish
2535 to have the output timestamps start at zero, insert the asetpts filter after the
2536 atrim filter.
2537
2538 If multiple start or end options are set, this filter tries to be greedy and
2539 keep all samples that match at least one of the specified constraints. To keep
2540 only the part that matches all the constraints at once, chain multiple atrim
2541 filters.
2542
2543 The defaults are such that all the input is kept. So it is possible to set e.g.
2544 just the end values to keep everything before the specified time.
2545
2546 Examples:
2547 @itemize
2548 @item
2549 Drop everything except the second minute of input:
2550 @example
2551 ffmpeg -i INPUT -af atrim=60:120
2552 @end example
2553
2554 @item
2555 Keep only the first 1000 samples:
2556 @example
2557 ffmpeg -i INPUT -af atrim=end_sample=1000
2558 @end example
2559
2560 @end itemize
2561
2562 @section axcorrelate
2563 Calculate normalized cross-correlation between two input audio streams.
2564
2565 Resulted samples are always between -1 and 1 inclusive.
2566 If result is 1 it means two input samples are highly correlated in that selected segment.
2567 Result 0 means they are not correlated at all.
2568 If result is -1 it means two input samples are out of phase, which means they cancel each
2569 other.
2570
2571 The filter accepts the following options:
2572
2573 @table @option
2574 @item size
2575 Set size of segment over which cross-correlation is calculated.
2576 Default is 256. Allowed range is from 2 to 131072.
2577
2578 @item algo
2579 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2580 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2581 are always zero and thus need much less calculations to make.
2582 This is generally not true, but is valid for typical audio streams.
2583 @end table
2584
2585 @subsection Examples
2586
2587 @itemize
2588 @item
2589 Calculate correlation between channels in stereo audio stream:
2590 @example
2591 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2592 @end example
2593 @end itemize
2594
2595 @section bandpass
2596
2597 Apply a two-pole Butterworth band-pass filter with central
2598 frequency @var{frequency}, and (3dB-point) band-width width.
2599 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2600 instead of the default: constant 0dB peak gain.
2601 The filter roll off at 6dB per octave (20dB per decade).
2602
2603 The filter accepts the following options:
2604
2605 @table @option
2606 @item frequency, f
2607 Set the filter's central frequency. Default is @code{3000}.
2608
2609 @item csg
2610 Constant skirt gain if set to 1. Defaults to 0.
2611
2612 @item width_type, t
2613 Set method to specify band-width of filter.
2614 @table @option
2615 @item h
2616 Hz
2617 @item q
2618 Q-Factor
2619 @item o
2620 octave
2621 @item s
2622 slope
2623 @item k
2624 kHz
2625 @end table
2626
2627 @item width, w
2628 Specify the band-width of a filter in width_type units.
2629
2630 @item mix, m
2631 How much to use filtered signal in output. Default is 1.
2632 Range is between 0 and 1.
2633
2634 @item channels, c
2635 Specify which channels to filter, by default all available are filtered.
2636
2637 @item normalize, n
2638 Normalize biquad coefficients, by default is disabled.
2639 Enabling it will normalize magnitude response at DC to 0dB.
2640 @end table
2641
2642 @subsection Commands
2643
2644 This filter supports the following commands:
2645 @table @option
2646 @item frequency, f
2647 Change bandpass frequency.
2648 Syntax for the command is : "@var{frequency}"
2649
2650 @item width_type, t
2651 Change bandpass width_type.
2652 Syntax for the command is : "@var{width_type}"
2653
2654 @item width, w
2655 Change bandpass width.
2656 Syntax for the command is : "@var{width}"
2657
2658 @item mix, m
2659 Change bandpass mix.
2660 Syntax for the command is : "@var{mix}"
2661 @end table
2662
2663 @section bandreject
2664
2665 Apply a two-pole Butterworth band-reject filter with central
2666 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2667 The filter roll off at 6dB per octave (20dB per decade).
2668
2669 The filter accepts the following options:
2670
2671 @table @option
2672 @item frequency, f
2673 Set the filter's central frequency. Default is @code{3000}.
2674
2675 @item width_type, t
2676 Set method to specify band-width of filter.
2677 @table @option
2678 @item h
2679 Hz
2680 @item q
2681 Q-Factor
2682 @item o
2683 octave
2684 @item s
2685 slope
2686 @item k
2687 kHz
2688 @end table
2689
2690 @item width, w
2691 Specify the band-width of a filter in width_type units.
2692
2693 @item mix, m
2694 How much to use filtered signal in output. Default is 1.
2695 Range is between 0 and 1.
2696
2697 @item channels, c
2698 Specify which channels to filter, by default all available are filtered.
2699
2700 @item normalize, n
2701 Normalize biquad coefficients, by default is disabled.
2702 Enabling it will normalize magnitude response at DC to 0dB.
2703 @end table
2704
2705 @subsection Commands
2706
2707 This filter supports the following commands:
2708 @table @option
2709 @item frequency, f
2710 Change bandreject frequency.
2711 Syntax for the command is : "@var{frequency}"
2712
2713 @item width_type, t
2714 Change bandreject width_type.
2715 Syntax for the command is : "@var{width_type}"
2716
2717 @item width, w
2718 Change bandreject width.
2719 Syntax for the command is : "@var{width}"
2720
2721 @item mix, m
2722 Change bandreject mix.
2723 Syntax for the command is : "@var{mix}"
2724 @end table
2725
2726 @section bass, lowshelf
2727
2728 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2729 shelving filter with a response similar to that of a standard
2730 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2731
2732 The filter accepts the following options:
2733
2734 @table @option
2735 @item gain, g
2736 Give the gain at 0 Hz. Its useful range is about -20
2737 (for a large cut) to +20 (for a large boost).
2738 Beware of clipping when using a positive gain.
2739
2740 @item frequency, f
2741 Set the filter's central frequency and so can be used
2742 to extend or reduce the frequency range to be boosted or cut.
2743 The default value is @code{100} Hz.
2744
2745 @item width_type, t
2746 Set method to specify band-width of filter.
2747 @table @option
2748 @item h
2749 Hz
2750 @item q
2751 Q-Factor
2752 @item o
2753 octave
2754 @item s
2755 slope
2756 @item k
2757 kHz
2758 @end table
2759
2760 @item width, w
2761 Determine how steep is the filter's shelf transition.
2762
2763 @item mix, m
2764 How much to use filtered signal in output. Default is 1.
2765 Range is between 0 and 1.
2766
2767 @item channels, c
2768 Specify which channels to filter, by default all available are filtered.
2769
2770 @item normalize, n
2771 Normalize biquad coefficients, by default is disabled.
2772 Enabling it will normalize magnitude response at DC to 0dB.
2773 @end table
2774
2775 @subsection Commands
2776
2777 This filter supports the following commands:
2778 @table @option
2779 @item frequency, f
2780 Change bass frequency.
2781 Syntax for the command is : "@var{frequency}"
2782
2783 @item width_type, t
2784 Change bass width_type.
2785 Syntax for the command is : "@var{width_type}"
2786
2787 @item width, w
2788 Change bass width.
2789 Syntax for the command is : "@var{width}"
2790
2791 @item gain, g
2792 Change bass gain.
2793 Syntax for the command is : "@var{gain}"
2794
2795 @item mix, m
2796 Change bass mix.
2797 Syntax for the command is : "@var{mix}"
2798 @end table
2799
2800 @section biquad
2801
2802 Apply a biquad IIR filter with the given coefficients.
2803 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2804 are the numerator and denominator coefficients respectively.
2805 and @var{channels}, @var{c} specify which channels to filter, by default all
2806 available are filtered.
2807
2808 @subsection Commands
2809
2810 This filter supports the following commands:
2811 @table @option
2812 @item a0
2813 @item a1
2814 @item a2
2815 @item b0
2816 @item b1
2817 @item b2
2818 Change biquad parameter.
2819 Syntax for the command is : "@var{value}"
2820
2821 @item mix, m
2822 How much to use filtered signal in output. Default is 1.
2823 Range is between 0 and 1.
2824
2825 @item channels, c
2826 Specify which channels to filter, by default all available are filtered.
2827
2828 @item normalize, n
2829 Normalize biquad coefficients, by default is disabled.
2830 Enabling it will normalize magnitude response at DC to 0dB.
2831 @end table
2832
2833 @section bs2b
2834 Bauer stereo to binaural transformation, which improves headphone listening of
2835 stereo audio records.
2836
2837 To enable compilation of this filter you need to configure FFmpeg with
2838 @code{--enable-libbs2b}.
2839
2840 It accepts the following parameters:
2841 @table @option
2842
2843 @item profile
2844 Pre-defined crossfeed level.
2845 @table @option
2846
2847 @item default
2848 Default level (fcut=700, feed=50).
2849
2850 @item cmoy
2851 Chu Moy circuit (fcut=700, feed=60).
2852
2853 @item jmeier
2854 Jan Meier circuit (fcut=650, feed=95).
2855
2856 @end table
2857
2858 @item fcut
2859 Cut frequency (in Hz).
2860
2861 @item feed
2862 Feed level (in Hz).
2863
2864 @end table
2865
2866 @section channelmap
2867
2868 Remap input channels to new locations.
2869
2870 It accepts the following parameters:
2871 @table @option
2872 @item map
2873 Map channels from input to output. The argument is a '|'-separated list of
2874 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2875 @var{in_channel} form. @var{in_channel} can be either the name of the input
2876 channel (e.g. FL for front left) or its index in the input channel layout.
2877 @var{out_channel} is the name of the output channel or its index in the output
2878 channel layout. If @var{out_channel} is not given then it is implicitly an
2879 index, starting with zero and increasing by one for each mapping.
2880
2881 @item channel_layout
2882 The channel layout of the output stream.
2883 @end table
2884
2885 If no mapping is present, the filter will implicitly map input channels to
2886 output channels, preserving indices.
2887
2888 @subsection Examples
2889
2890 @itemize
2891 @item
2892 For example, assuming a 5.1+downmix input MOV file,
2893 @example
2894 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2895 @end example
2896 will create an output WAV file tagged as stereo from the downmix channels of
2897 the input.
2898
2899 @item
2900 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2901 @example
2902 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2903 @end example
2904 @end itemize
2905
2906 @section channelsplit
2907
2908 Split each channel from an input audio stream into a separate output stream.
2909
2910 It accepts the following parameters:
2911 @table @option
2912 @item channel_layout
2913 The channel layout of the input stream. The default is "stereo".
2914 @item channels
2915 A channel layout describing the channels to be extracted as separate output streams
2916 or "all" to extract each input channel as a separate stream. The default is "all".
2917
2918 Choosing channels not present in channel layout in the input will result in an error.
2919 @end table
2920
2921 @subsection Examples
2922
2923 @itemize
2924 @item
2925 For example, assuming a stereo input MP3 file,
2926 @example
2927 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2928 @end example
2929 will create an output Matroska file with two audio streams, one containing only
2930 the left channel and the other the right channel.
2931
2932 @item
2933 Split a 5.1 WAV file into per-channel files:
2934 @example
2935 ffmpeg -i in.wav -filter_complex
2936 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2937 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2938 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2939 side_right.wav
2940 @end example
2941
2942 @item
2943 Extract only LFE from a 5.1 WAV file:
2944 @example
2945 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2946 -map '[LFE]' lfe.wav
2947 @end example
2948 @end itemize
2949
2950 @section chorus
2951 Add a chorus effect to the audio.
2952
2953 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2954
2955 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2956 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2957 The modulation depth defines the range the modulated delay is played before or after
2958 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2959 sound tuned around the original one, like in a chorus where some vocals are slightly
2960 off key.
2961
2962 It accepts the following parameters:
2963 @table @option
2964 @item in_gain
2965 Set input gain. Default is 0.4.
2966
2967 @item out_gain
2968 Set output gain. Default is 0.4.
2969
2970 @item delays
2971 Set delays. A typical delay is around 40ms to 60ms.
2972
2973 @item decays
2974 Set decays.
2975
2976 @item speeds
2977 Set speeds.
2978
2979 @item depths
2980 Set depths.
2981 @end table
2982
2983 @subsection Examples
2984
2985 @itemize
2986 @item
2987 A single delay:
2988 @example
2989 chorus=0.7:0.9:55:0.4:0.25:2
2990 @end example
2991
2992 @item
2993 Two delays:
2994 @example
2995 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2996 @end example
2997
2998 @item
2999 Fuller sounding chorus with three delays:
3000 @example
3001 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
3002 @end example
3003 @end itemize
3004
3005 @section compand
3006 Compress or expand the audio's dynamic range.
3007
3008 It accepts the following parameters:
3009
3010 @table @option
3011
3012 @item attacks
3013 @item decays
3014 A list of times in seconds for each channel over which the instantaneous level
3015 of the input signal is averaged to determine its volume. @var{attacks} refers to
3016 increase of volume and @var{decays} refers to decrease of volume. For most
3017 situations, the attack time (response to the audio getting louder) should be
3018 shorter than the decay time, because the human ear is more sensitive to sudden
3019 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3020 a typical value for decay is 0.8 seconds.
3021 If specified number of attacks & decays is lower than number of channels, the last
3022 set attack/decay will be used for all remaining channels.
3023
3024 @item points
3025 A list of points for the transfer function, specified in dB relative to the
3026 maximum possible signal amplitude. Each key points list must be defined using
3027 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3028 @code{x0/y0 x1/y1 x2/y2 ....}
3029
3030 The input values must be in strictly increasing order but the transfer function
3031 does not have to be monotonically rising. The point @code{0/0} is assumed but
3032 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3033 function are @code{-70/-70|-60/-20|1/0}.
3034
3035 @item soft-knee
3036 Set the curve radius in dB for all joints. It defaults to 0.01.
3037
3038 @item gain
3039 Set the additional gain in dB to be applied at all points on the transfer
3040 function. This allows for easy adjustment of the overall gain.
3041 It defaults to 0.
3042
3043 @item volume
3044 Set an initial volume, in dB, to be assumed for each channel when filtering
3045 starts. This permits the user to supply a nominal level initially, so that, for
3046 example, a very large gain is not applied to initial signal levels before the
3047 companding has begun to operate. A typical value for audio which is initially
3048 quiet is -90 dB. It defaults to 0.
3049
3050 @item delay
3051 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3052 delayed before being fed to the volume adjuster. Specifying a delay
3053 approximately equal to the attack/decay times allows the filter to effectively
3054 operate in predictive rather than reactive mode. It defaults to 0.
3055
3056 @end table
3057
3058 @subsection Examples
3059
3060 @itemize
3061 @item
3062 Make music with both quiet and loud passages suitable for listening to in a
3063 noisy environment:
3064 @example
3065 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3066 @end example
3067
3068 Another example for audio with whisper and explosion parts:
3069 @example
3070 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3071 @end example
3072
3073 @item
3074 A noise gate for when the noise is at a lower level than the signal:
3075 @example
3076 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3077 @end example
3078
3079 @item
3080 Here is another noise gate, this time for when the noise is at a higher level
3081 than the signal (making it, in some ways, similar to squelch):
3082 @example
3083 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3084 @end example
3085
3086 @item
3087 2:1 compression starting at -6dB:
3088 @example
3089 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3090 @end example
3091
3092 @item
3093 2:1 compression starting at -9dB:
3094 @example
3095 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3096 @end example
3097
3098 @item
3099 2:1 compression starting at -12dB:
3100 @example
3101 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3102 @end example
3103
3104 @item
3105 2:1 compression starting at -18dB:
3106 @example
3107 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3108 @end example
3109
3110 @item
3111 3:1 compression starting at -15dB:
3112 @example
3113 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3114 @end example
3115
3116 @item
3117 Compressor/Gate:
3118 @example
3119 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3120 @end example
3121
3122 @item
3123 Expander:
3124 @example
3125 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
3126 @end example
3127
3128 @item
3129 Hard limiter at -6dB:
3130 @example
3131 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3132 @end example
3133
3134 @item
3135 Hard limiter at -12dB:
3136 @example
3137 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3138 @end example
3139
3140 @item
3141 Hard noise gate at -35 dB:
3142 @example
3143 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3144 @end example
3145
3146 @item
3147 Soft limiter:
3148 @example
3149 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3150 @end example
3151 @end itemize
3152
3153 @section compensationdelay
3154
3155 Compensation Delay Line is a metric based delay to compensate differing
3156 positions of microphones or speakers.
3157
3158 For example, you have recorded guitar with two microphones placed in
3159 different locations. Because the front of sound wave has fixed speed in
3160 normal conditions, the phasing of microphones can vary and depends on
3161 their location and interposition. The best sound mix can be achieved when
3162 these microphones are in phase (synchronized). Note that a distance of
3163 ~30 cm between microphones makes one microphone capture the signal in
3164 antiphase to the other microphone. That makes the final mix sound moody.
3165 This filter helps to solve phasing problems by adding different delays
3166 to each microphone track and make them synchronized.
3167
3168 The best result can be reached when you take one track as base and
3169 synchronize other tracks one by one with it.
3170 Remember that synchronization/delay tolerance depends on sample rate, too.
3171 Higher sample rates will give more tolerance.
3172
3173 The filter accepts the following parameters:
3174
3175 @table @option
3176 @item mm
3177 Set millimeters distance. This is compensation distance for fine tuning.
3178 Default is 0.
3179
3180 @item cm
3181 Set cm distance. This is compensation distance for tightening distance setup.
3182 Default is 0.
3183
3184 @item m
3185 Set meters distance. This is compensation distance for hard distance setup.
3186 Default is 0.
3187
3188 @item dry
3189 Set dry amount. Amount of unprocessed (dry) signal.
3190 Default is 0.
3191
3192 @item wet
3193 Set wet amount. Amount of processed (wet) signal.
3194 Default is 1.
3195
3196 @item temp
3197 Set temperature in degrees Celsius. This is the temperature of the environment.
3198 Default is 20.
3199 @end table
3200
3201 @section crossfeed
3202 Apply headphone crossfeed filter.
3203
3204 Crossfeed is the process of blending the left and right channels of stereo
3205 audio recording.
3206 It is mainly used to reduce extreme stereo separation of low frequencies.
3207
3208 The intent is to produce more speaker like sound to the listener.
3209
3210 The filter accepts the following options:
3211
3212 @table @option
3213 @item strength
3214 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3215 This sets gain of low shelf filter for side part of stereo image.
3216 Default is -6dB. Max allowed is -30db when strength is set to 1.
3217
3218 @item range
3219 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3220 This sets cut off frequency of low shelf filter. Default is cut off near
3221 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3222
3223 @item level_in
3224 Set input gain. Default is 0.9.
3225
3226 @item level_out
3227 Set output gain. Default is 1.
3228 @end table
3229
3230 @section crystalizer
3231 Simple algorithm to expand audio dynamic range.
3232
3233 The filter accepts the following options:
3234
3235 @table @option
3236 @item i
3237 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3238 (unchanged sound) to 10.0 (maximum effect).
3239
3240 @item c
3241 Enable clipping. By default is enabled.
3242 @end table
3243
3244 @subsection Commands
3245
3246 This filter supports the all above options as @ref{commands}.
3247
3248 @section dcshift
3249 Apply a DC shift to the audio.
3250
3251 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3252 in the recording chain) from the audio. The effect of a DC offset is reduced
3253 headroom and hence volume. The @ref{astats} filter can be used to determine if
3254 a signal has a DC offset.
3255
3256 @table @option
3257 @item shift
3258 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3259 the audio.
3260
3261 @item limitergain
3262 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3263 used to prevent clipping.
3264 @end table
3265
3266 @section deesser
3267
3268 Apply de-essing to the audio samples.
3269
3270 @table @option
3271 @item i
3272 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3273 Default is 0.
3274
3275 @item m
3276 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3277 Default is 0.5.
3278
3279 @item f
3280 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3281 Default is 0.5.
3282
3283 @item s
3284 Set the output mode.
3285
3286 It accepts the following values:
3287 @table @option
3288 @item i
3289 Pass input unchanged.
3290
3291 @item o
3292 Pass ess filtered out.
3293
3294 @item e
3295 Pass only ess.
3296
3297 Default value is @var{o}.
3298 @end table
3299
3300 @end table
3301
3302 @section drmeter
3303 Measure audio dynamic range.
3304
3305 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3306 is found in transition material. And anything less that 8 have very poor dynamics
3307 and is very compressed.
3308
3309 The filter accepts the following options:
3310
3311 @table @option
3312 @item length
3313 Set window length in seconds used to split audio into segments of equal length.
3314 Default is 3 seconds.
3315 @end table
3316
3317 @section dynaudnorm
3318 Dynamic Audio Normalizer.
3319
3320 This filter applies a certain amount of gain to the input audio in order
3321 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3322 contrast to more "simple" normalization algorithms, the Dynamic Audio
3323 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3324 This allows for applying extra gain to the "quiet" sections of the audio
3325 while avoiding distortions or clipping the "loud" sections. In other words:
3326 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3327 sections, in the sense that the volume of each section is brought to the
3328 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3329 this goal *without* applying "dynamic range compressing". It will retain 100%
3330 of the dynamic range *within* each section of the audio file.
3331
3332 @table @option
3333 @item framelen, f
3334 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3335 Default is 500 milliseconds.
3336 The Dynamic Audio Normalizer processes the input audio in small chunks,
3337 referred to as frames. This is required, because a peak magnitude has no
3338 meaning for just a single sample value. Instead, we need to determine the
3339 peak magnitude for a contiguous sequence of sample values. While a "standard"
3340 normalizer would simply use the peak magnitude of the complete file, the
3341 Dynamic Audio Normalizer determines the peak magnitude individually for each
3342 frame. The length of a frame is specified in milliseconds. By default, the
3343 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3344 been found to give good results with most files.
3345 Note that the exact frame length, in number of samples, will be determined
3346 automatically, based on the sampling rate of the individual input audio file.
3347
3348 @item gausssize, g
3349 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3350 number. Default is 31.
3351 Probably the most important parameter of the Dynamic Audio Normalizer is the
3352 @code{window size} of the Gaussian smoothing filter. The filter's window size
3353 is specified in frames, centered around the current frame. For the sake of
3354 simplicity, this must be an odd number. Consequently, the default value of 31
3355 takes into account the current frame, as well as the 15 preceding frames and
3356 the 15 subsequent frames. Using a larger window results in a stronger
3357 smoothing effect and thus in less gain variation, i.e. slower gain
3358 adaptation. Conversely, using a smaller window results in a weaker smoothing
3359 effect and thus in more gain variation, i.e. faster gain adaptation.
3360 In other words, the more you increase this value, the more the Dynamic Audio
3361 Normalizer will behave like a "traditional" normalization filter. On the
3362 contrary, the more you decrease this value, the more the Dynamic Audio
3363 Normalizer will behave like a dynamic range compressor.
3364
3365 @item peak, p
3366 Set the target peak value. This specifies the highest permissible magnitude
3367 level for the normalized audio input. This filter will try to approach the
3368 target peak magnitude as closely as possible, but at the same time it also
3369 makes sure that the normalized signal will never exceed the peak magnitude.
3370 A frame's maximum local gain factor is imposed directly by the target peak
3371 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3372 It is not recommended to go above this value.
3373
3374 @item maxgain, m
3375 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3376 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3377 factor for each input frame, i.e. the maximum gain factor that does not
3378 result in clipping or distortion. The maximum gain factor is determined by
3379 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3380 additionally bounds the frame's maximum gain factor by a predetermined
3381 (global) maximum gain factor. This is done in order to avoid excessive gain
3382 factors in "silent" or almost silent frames. By default, the maximum gain
3383 factor is 10.0, For most inputs the default value should be sufficient and
3384 it usually is not recommended to increase this value. Though, for input
3385 with an extremely low overall volume level, it may be necessary to allow even
3386 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3387 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3388 Instead, a "sigmoid" threshold function will be applied. This way, the
3389 gain factors will smoothly approach the threshold value, but never exceed that
3390 value.
3391
3392 @item targetrms, r
3393 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3394 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3395 This means that the maximum local gain factor for each frame is defined
3396 (only) by the frame's highest magnitude sample. This way, the samples can
3397 be amplified as much as possible without exceeding the maximum signal
3398 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3399 Normalizer can also take into account the frame's root mean square,
3400 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3401 determine the power of a time-varying signal. It is therefore considered
3402 that the RMS is a better approximation of the "perceived loudness" than
3403 just looking at the signal's peak magnitude. Consequently, by adjusting all
3404 frames to a constant RMS value, a uniform "perceived loudness" can be
3405 established. If a target RMS value has been specified, a frame's local gain
3406 factor is defined as the factor that would result in exactly that RMS value.
3407 Note, however, that the maximum local gain factor is still restricted by the
3408 frame's highest magnitude sample, in order to prevent clipping.
3409
3410 @item coupling, n
3411 Enable channels coupling. By default is enabled.
3412 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3413 amount. This means the same gain factor will be applied to all channels, i.e.
3414 the maximum possible gain factor is determined by the "loudest" channel.
3415 However, in some recordings, it may happen that the volume of the different
3416 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3417 In this case, this option can be used to disable the channel coupling. This way,
3418 the gain factor will be determined independently for each channel, depending
3419 only on the individual channel's highest magnitude sample. This allows for
3420 harmonizing the volume of the different channels.
3421
3422 @item correctdc, c
3423 Enable DC bias correction. By default is disabled.
3424 An audio signal (in the time domain) is a sequence of sample values.
3425 In the Dynamic Audio Normalizer these sample values are represented in the
3426 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3427 audio signal, or "waveform", should be centered around the zero point.
3428 That means if we calculate the mean value of all samples in a file, or in a
3429 single frame, then the result should be 0.0 or at least very close to that
3430 value. If, however, there is a significant deviation of the mean value from
3431 0.0, in either positive or negative direction, this is referred to as a
3432 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3433 Audio Normalizer provides optional DC bias correction.
3434 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3435 the mean value, or "DC correction" offset, of each input frame and subtract
3436 that value from all of the frame's sample values which ensures those samples
3437 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3438 boundaries, the DC correction offset values will be interpolated smoothly
3439 between neighbouring frames.
3440
3441 @item altboundary, b
3442 Enable alternative boundary mode. By default is disabled.
3443 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3444 around each frame. This includes the preceding frames as well as the
3445 subsequent frames. However, for the "boundary" frames, located at the very
3446 beginning and at the very end of the audio file, not all neighbouring
3447 frames are available. In particular, for the first few frames in the audio
3448 file, the preceding frames are not known. And, similarly, for the last few
3449 frames in the audio file, the subsequent frames are not known. Thus, the
3450 question arises which gain factors should be assumed for the missing frames
3451 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3452 to deal with this situation. The default boundary mode assumes a gain factor
3453 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3454 "fade out" at the beginning and at the end of the input, respectively.
3455
3456 @item compress, s
3457 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3458 By default, the Dynamic Audio Normalizer does not apply "traditional"
3459 compression. This means that signal peaks will not be pruned and thus the
3460 full dynamic range will be retained within each local neighbourhood. However,
3461 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3462 normalization algorithm with a more "traditional" compression.
3463 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3464 (thresholding) function. If (and only if) the compression feature is enabled,
3465 all input frames will be processed by a soft knee thresholding function prior
3466 to the actual normalization process. Put simply, the thresholding function is
3467 going to prune all samples whose magnitude exceeds a certain threshold value.
3468 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3469 value. Instead, the threshold value will be adjusted for each individual
3470 frame.
3471 In general, smaller parameters result in stronger compression, and vice versa.
3472 Values below 3.0 are not recommended, because audible distortion may appear.
3473
3474 @item threshold, t
3475 Set the target threshold value. This specifies the lowest permissible
3476 magnitude level for the audio input which will be normalized.
3477 If input frame volume is above this value frame will be normalized.
3478 Otherwise frame may not be normalized at all. The default value is set
3479 to 0, which means all input frames will be normalized.
3480 This option is mostly useful if digital noise is not wanted to be amplified.
3481 @end table
3482
3483 @subsection Commands
3484
3485 This filter supports the all above options as @ref{commands}.
3486
3487 @section earwax
3488
3489 Make audio easier to listen to on headphones.
3490
3491 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3492 so that when listened to on headphones the stereo image is moved from
3493 inside your head (standard for headphones) to outside and in front of
3494 the listener (standard for speakers).
3495
3496 Ported from SoX.
3497
3498 @section equalizer
3499
3500 Apply a two-pole peaking equalisation (EQ) filter. With this
3501 filter, the signal-level at and around a selected frequency can
3502 be increased or decreased, whilst (unlike bandpass and bandreject
3503 filters) that at all other frequencies is unchanged.
3504
3505 In order to produce complex equalisation curves, this filter can
3506 be given several times, each with a different central frequency.
3507
3508 The filter accepts the following options:
3509
3510 @table @option
3511 @item frequency, f
3512 Set the filter's central frequency in Hz.
3513
3514 @item width_type, t
3515 Set method to specify band-width of filter.
3516 @table @option
3517 @item h
3518 Hz
3519 @item q
3520 Q-Factor
3521 @item o
3522 octave
3523 @item s
3524 slope
3525 @item k
3526 kHz
3527 @end table
3528
3529 @item width, w
3530 Specify the band-width of a filter in width_type units.
3531
3532 @item gain, g
3533 Set the required gain or attenuation in dB.
3534 Beware of clipping when using a positive gain.
3535
3536 @item mix, m
3537 How much to use filtered signal in output. Default is 1.
3538 Range is between 0 and 1.
3539
3540 @item channels, c
3541 Specify which channels to filter, by default all available are filtered.
3542
3543 @item normalize, n
3544 Normalize biquad coefficients, by default is disabled.
3545 Enabling it will normalize magnitude response at DC to 0dB.
3546 @end table
3547
3548 @subsection Examples
3549 @itemize
3550 @item
3551 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3552 @example
3553 equalizer=f=1000:t=h:width=200:g=-10
3554 @end example
3555
3556 @item
3557 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3558 @example
3559 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3560 @end example
3561 @end itemize
3562
3563 @subsection Commands
3564
3565 This filter supports the following commands:
3566 @table @option
3567 @item frequency, f
3568 Change equalizer frequency.
3569 Syntax for the command is : "@var{frequency}"
3570
3571 @item width_type, t
3572 Change equalizer width_type.
3573 Syntax for the command is : "@var{width_type}"
3574
3575 @item width, w
3576 Change equalizer width.
3577 Syntax for the command is : "@var{width}"
3578
3579 @item gain, g
3580 Change equalizer gain.
3581 Syntax for the command is : "@var{gain}"
3582
3583 @item mix, m
3584 Change equalizer mix.
3585 Syntax for the command is : "@var{mix}"
3586 @end table
3587
3588 @section extrastereo
3589
3590 Linearly increases the difference between left and right channels which
3591 adds some sort of "live" effect to playback.
3592
3593 The filter accepts the following options:
3594
3595 @table @option
3596 @item m
3597 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3598 (average of both channels), with 1.0 sound will be unchanged, with
3599 -1.0 left and right channels will be swapped.
3600
3601 @item c
3602 Enable clipping. By default is enabled.
3603 @end table
3604
3605 @subsection Commands
3606
3607 This filter supports the all above options as @ref{commands}.
3608
3609 @section firequalizer
3610 Apply FIR Equalization using arbitrary frequency response.
3611
3612 The filter accepts the following option:
3613
3614 @table @option
3615 @item gain
3616 Set gain curve equation (in dB). The expression can contain variables:
3617 @table @option
3618 @item f
3619 the evaluated frequency
3620 @item sr
3621 sample rate
3622 @item ch
3623 channel number, set to 0 when multichannels evaluation is disabled
3624 @item chid
3625 channel id, see libavutil/channel_layout.h, set to the first channel id when
3626 multichannels evaluation is disabled
3627 @item chs
3628 number of channels
3629 @item chlayout
3630 channel_layout, see libavutil/channel_layout.h
3631
3632 @end table
3633 and functions:
3634 @table @option
3635 @item gain_interpolate(f)
3636 interpolate gain on frequency f based on gain_entry
3637 @item cubic_interpolate(f)
3638 same as gain_interpolate, but smoother
3639 @end table
3640 This option is also available as command. Default is @code{gain_interpolate(f)}.
3641
3642 @item gain_entry
3643 Set gain entry for gain_interpolate function. The expression can
3644 contain functions:
3645 @table @option
3646 @item entry(f, g)
3647 store gain entry at frequency f with value g
3648 @end table
3649 This option is also available as command.
3650
3651 @item delay
3652 Set filter delay in seconds. Higher value means more accurate.
3653 Default is @code{0.01}.
3654
3655 @item accuracy
3656 Set filter accuracy in Hz. Lower value means more accurate.
3657 Default is @code{5}.
3658
3659 @item wfunc
3660 Set window function. Acceptable values are:
3661 @table @option
3662 @item rectangular
3663 rectangular window, useful when gain curve is already smooth
3664 @item hann
3665 hann window (default)
3666 @item hamming
3667 hamming window
3668 @item blackman
3669 blackman window
3670 @item nuttall3
3671 3-terms continuous 1st derivative nuttall window
3672 @item mnuttall3
3673 minimum 3-terms discontinuous nuttall window
3674 @item nuttall
3675 4-terms continuous 1st derivative nuttall window
3676 @item bnuttall
3677 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3678 @item bharris
3679 blackman-harris window
3680 @item tukey
3681 tukey window
3682 @end table
3683
3684 @item fixed
3685 If enabled, use fixed number of audio samples. This improves speed when
3686 filtering with large delay. Default is disabled.
3687
3688 @item multi
3689 Enable multichannels evaluation on gain. Default is disabled.
3690
3691 @item zero_phase
3692 Enable zero phase mode by subtracting timestamp to compensate delay.
3693 Default is disabled.
3694
3695 @item scale
3696 Set scale used by gain. Acceptable values are:
3697 @table @option
3698 @item linlin
3699 linear frequency, linear gain
3700 @item linlog
3701 linear frequency, logarithmic (in dB) gain (default)
3702 @item loglin
3703 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3704 @item loglog
3705 logarithmic frequency, logarithmic gain
3706 @end table
3707
3708 @item dumpfile
3709 Set file for dumping, suitable for gnuplot.
3710
3711 @item dumpscale
3712 Set scale for dumpfile. Acceptable values are same with scale option.
3713 Default is linlog.
3714
3715 @item fft2
3716 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3717 Default is disabled.
3718
3719 @item min_phase
3720 Enable minimum phase impulse response. Default is disabled.
3721 @end table
3722
3723 @subsection Examples
3724 @itemize
3725 @item
3726 lowpass at 1000 Hz:
3727 @example
3728 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3729 @end example
3730 @item
3731 lowpass at 1000 Hz with gain_entry:
3732 @example
3733 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3734 @end example
3735 @item
3736 custom equalization:
3737 @example
3738 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3739 @end example
3740 @item
3741 higher delay with zero phase to compensate delay:
3742 @example
3743 firequalizer=delay=0.1:fixed=on:zero_phase=on
3744 @end example
3745 @item
3746 lowpass on left channel, highpass on right channel:
3747 @example
3748 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3749 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3750 @end example
3751 @end itemize
3752
3753 @section flanger
3754 Apply a flanging effect to the audio.
3755
3756 The filter accepts the following options:
3757
3758 @table @option
3759 @item delay
3760 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3761
3762 @item depth
3763 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3764
3765 @item regen
3766 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3767 Default value is 0.
3768
3769 @item width
3770 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3771 Default value is 71.
3772
3773 @item speed
3774 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3775
3776 @item shape
3777 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3778 Default value is @var{sinusoidal}.
3779
3780 @item phase
3781 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3782 Default value is 25.
3783
3784 @item interp
3785 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3786 Default is @var{linear}.
3787 @end table
3788
3789 @section haas
3790 Apply Haas effect to audio.
3791
3792 Note that this makes most sense to apply on mono signals.
3793 With this filter applied to mono signals it give some directionality and
3794 stretches its stereo image.
3795
3796 The filter accepts the following options:
3797
3798 @table @option
3799 @item level_in
3800 Set input level. By default is @var{1}, or 0dB
3801
3802 @item level_out
3803 Set output level. By default is @var{1}, or 0dB.
3804
3805 @item side_gain
3806 Set gain applied to side part of signal. By default is @var{1}.
3807
3808 @item middle_source
3809 Set kind of middle source. Can be one of the following:
3810
3811 @table @samp
3812 @item left
3813 Pick left channel.
3814
3815 @item right
3816 Pick right channel.
3817
3818 @item mid
3819 Pick middle part signal of stereo image.
3820
3821 @item side
3822 Pick side part signal of stereo image.
3823 @end table
3824
3825 @item middle_phase
3826 Change middle phase. By default is disabled.
3827
3828 @item left_delay
3829 Set left channel delay. By default is @var{2.05} milliseconds.
3830
3831 @item left_balance
3832 Set left channel balance. By default is @var{-1}.
3833
3834 @item left_gain
3835 Set left channel gain. By default is @var{1}.
3836
3837 @item left_phase
3838 Change left phase. By default is disabled.
3839
3840 @item right_delay
3841 Set right channel delay. By defaults is @var{2.12} milliseconds.
3842
3843 @item right_balance
3844 Set right channel balance. By default is @var{1}.
3845
3846 @item right_gain
3847 Set right channel gain. By default is @var{1}.
3848
3849 @item right_phase
3850 Change right phase. By default is enabled.
3851 @end table
3852
3853 @section hdcd
3854
3855 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3856 embedded HDCD codes is expanded into a 20-bit PCM stream.
3857
3858 The filter supports the Peak Extend and Low-level Gain Adjustment features
3859 of HDCD, and detects the Transient Filter flag.
3860
3861 @example
3862 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3863 @end example
3864
3865 When using the filter with wav, note the default encoding for wav is 16-bit,
3866 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3867 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3868 @example
3869 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3870 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3871 @end example
3872
3873 The filter accepts the following options:
3874
3875 @table @option
3876 @item disable_autoconvert
3877 Disable any automatic format conversion or resampling in the filter graph.
3878
3879 @item process_stereo
3880 Process the stereo channels together. If target_gain does not match between
3881 channels, consider it invalid and use the last valid target_gain.
3882
3883 @item cdt_ms
3884 Set the code detect timer period in ms.
3885
3886 @item force_pe
3887 Always extend peaks above -3dBFS even if PE isn't signaled.
3888
3889 @item analyze_mode
3890 Replace audio with a solid tone and adjust the amplitude to signal some
3891 specific aspect of the decoding process. The output file can be loaded in
3892 an audio editor alongside the original to aid analysis.
3893
3894 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3895
3896 Modes are:
3897 @table @samp
3898 @item 0, off
3899 Disabled
3900 @item 1, lle
3901 Gain adjustment level at each sample
3902 @item 2, pe
3903 Samples where peak extend occurs
3904 @item 3, cdt
3905 Samples where the code detect timer is active
3906 @item 4, tgm
3907 Samples where the target gain does not match between channels
3908 @end table
3909 @end table
3910
3911 @section headphone
3912
3913 Apply head-related transfer functions (HRTFs) to create virtual
3914 loudspeakers around the user for binaural listening via headphones.
3915 The HRIRs are provided via additional streams, for each channel
3916 one stereo input stream is needed.
3917
3918 The filter accepts the following options:
3919
3920 @table @option
3921 @item map
3922 Set mapping of input streams for convolution.
3923 The argument is a '|'-separated list of channel names in order as they
3924 are given as additional stream inputs for filter.
3925 This also specify number of input streams. Number of input streams
3926 must be not less than number of channels in first stream plus one.
3927
3928 @item gain
3929 Set gain applied to audio. Value is in dB. Default is 0.
3930
3931 @item type
3932 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3933 processing audio in time domain which is slow.
3934 @var{freq} is processing audio in frequency domain which is fast.
3935 Default is @var{freq}.
3936
3937 @item lfe
3938 Set custom gain for LFE channels. Value is in dB. Default is 0.
3939
3940 @item size
3941 Set size of frame in number of samples which will be processed at once.
3942 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3943
3944 @item hrir
3945 Set format of hrir stream.
3946 Default value is @var{stereo}. Alternative value is @var{multich}.
3947 If value is set to @var{stereo}, number of additional streams should
3948 be greater or equal to number of input channels in first input stream.
3949 Also each additional stream should have stereo number of channels.
3950 If value is set to @var{multich}, number of additional streams should
3951 be exactly one. Also number of input channels of additional stream
3952 should be equal or greater than twice number of channels of first input
3953 stream.
3954 @end table
3955
3956 @subsection Examples
3957
3958 @itemize
3959 @item
3960 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3961 each amovie filter use stereo file with IR coefficients as input.
3962 The files give coefficients for each position of virtual loudspeaker:
3963 @example
3964 ffmpeg -i input.wav
3965 -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"
3966 output.wav
3967 @end example
3968
3969 @item
3970 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3971 but now in @var{multich} @var{hrir} format.
3972 @example
3973 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"
3974 output.wav
3975 @end example
3976 @end itemize
3977
3978 @section highpass
3979
3980 Apply a high-pass filter with 3dB point frequency.
3981 The filter can be either single-pole, or double-pole (the default).
3982 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3983
3984 The filter accepts the following options:
3985
3986 @table @option
3987 @item frequency, f
3988 Set frequency in Hz. Default is 3000.
3989
3990 @item poles, p
3991 Set number of poles. Default is 2.
3992
3993 @item width_type, t
3994 Set method to specify band-width of filter.
3995 @table @option
3996 @item h
3997 Hz
3998 @item q
3999 Q-Factor
4000 @item o
4001 octave
4002 @item s
4003 slope
4004 @item k
4005 kHz
4006 @end table
4007
4008 @item width, w
4009 Specify the band-width of a filter in width_type units.
4010 Applies only to double-pole filter.
4011 The default is 0.707q and gives a Butterworth response.
4012
4013 @item mix, m
4014 How much to use filtered signal in output. Default is 1.
4015 Range is between 0 and 1.
4016
4017 @item channels, c
4018 Specify which channels to filter, by default all available are filtered.
4019
4020 @item normalize, n
4021 Normalize biquad coefficients, by default is disabled.
4022 Enabling it will normalize magnitude response at DC to 0dB.
4023 @end table
4024
4025 @subsection Commands
4026
4027 This filter supports the following commands:
4028 @table @option
4029 @item frequency, f
4030 Change highpass frequency.
4031 Syntax for the command is : "@var{frequency}"
4032
4033 @item width_type, t
4034 Change highpass width_type.
4035 Syntax for the command is : "@var{width_type}"
4036
4037 @item width, w
4038 Change highpass width.
4039 Syntax for the command is : "@var{width}"
4040
4041 @item mix, m
4042 Change highpass mix.
4043 Syntax for the command is : "@var{mix}"
4044 @end table
4045
4046 @section join
4047
4048 Join multiple input streams into one multi-channel stream.
4049
4050 It accepts the following parameters:
4051 @table @option
4052
4053 @item inputs
4054 The number of input streams. It defaults to 2.
4055
4056 @item channel_layout
4057 The desired output channel layout. It defaults to stereo.
4058
4059 @item map
4060 Map channels from inputs to output. The argument is a '|'-separated list of
4061 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4062 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4063 can be either the name of the input channel (e.g. FL for front left) or its
4064 index in the specified input stream. @var{out_channel} is the name of the output
4065 channel.
4066 @end table
4067
4068 The filter will attempt to guess the mappings when they are not specified
4069 explicitly. It does so by first trying to find an unused matching input channel
4070 and if that fails it picks the first unused input channel.
4071
4072 Join 3 inputs (with properly set channel layouts):
4073 @example
4074 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4075 @end example
4076
4077 Build a 5.1 output from 6 single-channel streams:
4078 @example
4079 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4080 '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'
4081 out
4082 @end example
4083
4084 @section ladspa
4085
4086 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4087
4088 To enable compilation of this filter you need to configure FFmpeg with
4089 @code{--enable-ladspa}.
4090
4091 @table @option
4092 @item file, f
4093 Specifies the name of LADSPA plugin library to load. If the environment
4094 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4095 each one of the directories specified by the colon separated list in
4096 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4097 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4098 @file{/usr/lib/ladspa/}.
4099
4100 @item plugin, p
4101 Specifies the plugin within the library. Some libraries contain only
4102 one plugin, but others contain many of them. If this is not set filter
4103 will list all available plugins within the specified library.
4104
4105 @item controls, c
4106 Set the '|' separated list of controls which are zero or more floating point
4107 values that determine the behavior of the loaded plugin (for example delay,
4108 threshold or gain).
4109 Controls need to be defined using the following syntax:
4110 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4111 @var{valuei} is the value set on the @var{i}-th control.
4112 Alternatively they can be also defined using the following syntax:
4113 @var{value0}|@var{value1}|@var{value2}|..., where
4114 @var{valuei} is the value set on the @var{i}-th control.
4115 If @option{controls} is set to @code{help}, all available controls and
4116 their valid ranges are printed.
4117
4118 @item sample_rate, s
4119 Specify the sample rate, default to 44100. Only used if plugin have
4120 zero inputs.
4121
4122 @item nb_samples, n
4123 Set the number of samples per channel per each output frame, default
4124 is 1024. Only used if plugin have zero inputs.
4125
4126 @item duration, d
4127 Set the minimum duration of the sourced audio. See
4128 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4129 for the accepted syntax.
4130 Note that the resulting duration may be greater than the specified duration,
4131 as the generated audio is always cut at the end of a complete frame.
4132 If not specified, or the expressed duration is negative, the audio is
4133 supposed to be generated forever.
4134 Only used if plugin have zero inputs.
4135
4136 @end table
4137
4138 @subsection Examples
4139
4140 @itemize
4141 @item
4142 List all available plugins within amp (LADSPA example plugin) library:
4143 @example
4144 ladspa=file=amp
4145 @end example
4146
4147 @item
4148 List all available controls and their valid ranges for @code{vcf_notch}
4149 plugin from @code{VCF} library:
4150 @example
4151 ladspa=f=vcf:p=vcf_notch:c=help
4152 @end example
4153
4154 @item
4155 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4156 plugin library:
4157 @example
4158 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4159 @end example
4160
4161 @item
4162 Add reverberation to the audio using TAP-plugins
4163 (Tom's Audio Processing plugins):
4164 @example
4165 ladspa=file=tap_reverb:tap_reverb
4166 @end example
4167
4168 @item
4169 Generate white noise, with 0.2 amplitude:
4170 @example
4171 ladspa=file=cmt:noise_source_white:c=c0=.2
4172 @end example
4173
4174 @item
4175 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4176 @code{C* Audio Plugin Suite} (CAPS) library:
4177 @example
4178 ladspa=file=caps:Click:c=c1=20'
4179 @end example
4180
4181 @item
4182 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4183 @example
4184 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4185 @end example
4186
4187 @item
4188 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4189 @code{SWH Plugins} collection:
4190 @example
4191 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4192 @end example
4193
4194 @item
4195 Attenuate low frequencies using Multiband EQ from Steve Harris
4196 @code{SWH Plugins} collection:
4197 @example
4198 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4199 @end example
4200
4201 @item
4202 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4203 (CAPS) library:
4204 @example
4205 ladspa=caps:Narrower
4206 @end example
4207
4208 @item
4209 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4210 @example
4211 ladspa=caps:White:.2
4212 @end example
4213
4214 @item
4215 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4216 @example
4217 ladspa=caps:Fractal:c=c1=1
4218 @end example
4219
4220 @item
4221 Dynamic volume normalization using @code{VLevel} plugin:
4222 @example
4223 ladspa=vlevel-ladspa:vlevel_mono
4224 @end example
4225 @end itemize
4226
4227 @subsection Commands
4228
4229 This filter supports the following commands:
4230 @table @option
4231 @item cN
4232 Modify the @var{N}-th control value.
4233
4234 If the specified value is not valid, it is ignored and prior one is kept.
4235 @end table
4236
4237 @section loudnorm
4238
4239 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4240 Support for both single pass (livestreams, files) and double pass (files) modes.
4241 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4242 detect true peaks, the audio stream will be upsampled to 192 kHz.
4243 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4244
4245 The filter accepts the following options:
4246
4247 @table @option
4248 @item I, i
4249 Set integrated loudness target.
4250 Range is -70.0 - -5.0. Default value is -24.0.
4251
4252 @item LRA, lra
4253 Set loudness range target.
4254 Range is 1.0 - 20.0. Default value is 7.0.
4255
4256 @item TP, tp
4257 Set maximum true peak.
4258 Range is -9.0 - +0.0. Default value is -2.0.
4259
4260 @item measured_I, measured_i
4261 Measured IL of input file.
4262 Range is -99.0 - +0.0.
4263
4264 @item measured_LRA, measured_lra
4265 Measured LRA of input file.
4266 Range is  0.0 - 99.0.
4267
4268 @item measured_TP, measured_tp
4269 Measured true peak of input file.
4270 Range is  -99.0 - +99.0.
4271
4272 @item measured_thresh
4273 Measured threshold of input file.
4274 Range is -99.0 - +0.0.
4275
4276 @item offset
4277 Set offset gain. Gain is applied before the true-peak limiter.
4278 Range is  -99.0 - +99.0. Default is +0.0.
4279
4280 @item linear
4281 Normalize by linearly scaling the source audio.
4282 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4283 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4284 be lower than source LRA and the change in integrated loudness shouldn't
4285 result in a true peak which exceeds the target TP. If any of these
4286 conditions aren't met, normalization mode will revert to @var{dynamic}.
4287 Options are @code{true} or @code{false}. Default is @code{true}.
4288
4289 @item dual_mono
4290 Treat mono input files as "dual-mono". If a mono file is intended for playback
4291 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4292 If set to @code{true}, this option will compensate for this effect.
4293 Multi-channel input files are not affected by this option.
4294 Options are true or false. Default is false.
4295
4296 @item print_format
4297 Set print format for stats. Options are summary, json, or none.
4298 Default value is none.
4299 @end table
4300
4301 @section lowpass
4302
4303 Apply a low-pass filter with 3dB point frequency.
4304 The filter can be either single-pole or double-pole (the default).
4305 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4306
4307 The filter accepts the following options:
4308
4309 @table @option
4310 @item frequency, f
4311 Set frequency in Hz. Default is 500.
4312
4313 @item poles, p
4314 Set number of poles. Default is 2.
4315
4316 @item width_type, t
4317 Set method to specify band-width of filter.
4318 @table @option
4319 @item h
4320 Hz
4321 @item q
4322 Q-Factor
4323 @item o
4324 octave
4325 @item s
4326 slope
4327 @item k
4328 kHz
4329 @end table
4330
4331 @item width, w
4332 Specify the band-width of a filter in width_type units.
4333 Applies only to double-pole filter.
4334 The default is 0.707q and gives a Butterworth response.
4335
4336 @item mix, m
4337 How much to use filtered signal in output. Default is 1.
4338 Range is between 0 and 1.
4339
4340 @item channels, c
4341 Specify which channels to filter, by default all available are filtered.
4342
4343 @item normalize, n
4344 Normalize biquad coefficients, by default is disabled.
4345 Enabling it will normalize magnitude response at DC to 0dB.
4346 @end table
4347
4348 @subsection Examples
4349 @itemize
4350 @item
4351 Lowpass only LFE channel, it LFE is not present it does nothing:
4352 @example
4353 lowpass=c=LFE
4354 @end example
4355 @end itemize
4356
4357 @subsection Commands
4358
4359 This filter supports the following commands:
4360 @table @option
4361 @item frequency, f
4362 Change lowpass frequency.
4363 Syntax for the command is : "@var{frequency}"
4364
4365 @item width_type, t
4366 Change lowpass width_type.
4367 Syntax for the command is : "@var{width_type}"
4368
4369 @item width, w
4370 Change lowpass width.
4371 Syntax for the command is : "@var{width}"
4372
4373 @item mix, m
4374 Change lowpass mix.
4375 Syntax for the command is : "@var{mix}"
4376 @end table
4377
4378 @section lv2
4379
4380 Load a LV2 (LADSPA Version 2) plugin.
4381
4382 To enable compilation of this filter you need to configure FFmpeg with
4383 @code{--enable-lv2}.
4384
4385 @table @option
4386 @item plugin, p
4387 Specifies the plugin URI. You may need to escape ':'.
4388
4389 @item controls, c
4390 Set the '|' separated list of controls which are zero or more floating point
4391 values that determine the behavior of the loaded plugin (for example delay,
4392 threshold or gain).
4393 If @option{controls} is set to @code{help}, all available controls and
4394 their valid ranges are printed.
4395
4396 @item sample_rate, s
4397 Specify the sample rate, default to 44100. Only used if plugin have
4398 zero inputs.
4399
4400 @item nb_samples, n
4401 Set the number of samples per channel per each output frame, default
4402 is 1024. Only used if plugin have zero inputs.
4403
4404 @item duration, d
4405 Set the minimum duration of the sourced audio. See
4406 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4407 for the accepted syntax.
4408 Note that the resulting duration may be greater than the specified duration,
4409 as the generated audio is always cut at the end of a complete frame.
4410 If not specified, or the expressed duration is negative, the audio is
4411 supposed to be generated forever.
4412 Only used if plugin have zero inputs.
4413 @end table
4414
4415 @subsection Examples
4416
4417 @itemize
4418 @item
4419 Apply bass enhancer plugin from Calf:
4420 @example
4421 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4422 @end example
4423
4424 @item
4425 Apply vinyl plugin from Calf:
4426 @example
4427 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4428 @end example
4429
4430 @item
4431 Apply bit crusher plugin from ArtyFX:
4432 @example
4433 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4434 @end example
4435 @end itemize
4436
4437 @section mcompand
4438 Multiband Compress or expand the audio's dynamic range.
4439
4440 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4441 This is akin to the crossover of a loudspeaker, and results in flat frequency
4442 response when absent compander action.
4443
4444 It accepts the following parameters:
4445
4446 @table @option
4447 @item args
4448 This option syntax is:
4449 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4450 For explanation of each item refer to compand filter documentation.
4451 @end table
4452
4453 @anchor{pan}
4454 @section pan
4455
4456 Mix channels with specific gain levels. The filter accepts the output
4457 channel layout followed by a set of channels definitions.
4458
4459 This filter is also designed to efficiently remap the channels of an audio
4460 stream.
4461
4462 The filter accepts parameters of the form:
4463 "@var{l}|@var{outdef}|@var{outdef}|..."
4464
4465 @table @option
4466 @item l
4467 output channel layout or number of channels
4468
4469 @item outdef
4470 output channel specification, of the form:
4471 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4472
4473 @item out_name
4474 output channel to define, either a channel name (FL, FR, etc.) or a channel
4475 number (c0, c1, etc.)
4476
4477 @item gain
4478 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4479
4480 @item in_name
4481 input channel to use, see out_name for details; it is not possible to mix
4482 named and numbered input channels
4483 @end table
4484
4485 If the `=' in a channel specification is replaced by `<', then the gains for
4486 that specification will be renormalized so that the total is 1, thus
4487 avoiding clipping noise.
4488
4489 @subsection Mixing examples
4490
4491 For example, if you want to down-mix from stereo to mono, but with a bigger
4492 factor for the left channel:
4493 @example
4494 pan=1c|c0=0.9*c0+0.1*c1
4495 @end example
4496
4497 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4498 7-channels surround:
4499 @example
4500 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4501 @end example
4502
4503 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4504 that should be preferred (see "-ac" option) unless you have very specific
4505 needs.
4506
4507 @subsection Remapping examples
4508
4509 The channel remapping will be effective if, and only if:
4510
4511 @itemize
4512 @item gain coefficients are zeroes or ones,
4513 @item only one input per channel output,
4514 @end itemize
4515
4516 If all these conditions are satisfied, the filter will notify the user ("Pure
4517 channel mapping detected"), and use an optimized and lossless method to do the
4518 remapping.
4519
4520 For example, if you have a 5.1 source and want a stereo audio stream by
4521 dropping the extra channels:
4522 @example
4523 pan="stereo| c0=FL | c1=FR"
4524 @end example
4525
4526 Given the same source, you can also switch front left and front right channels
4527 and keep the input channel layout:
4528 @example
4529 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4530 @end example
4531
4532 If the input is a stereo audio stream, you can mute the front left channel (and
4533 still keep the stereo channel layout) with:
4534 @example
4535 pan="stereo|c1=c1"
4536 @end example
4537
4538 Still with a stereo audio stream input, you can copy the right channel in both
4539 front left and right:
4540 @example
4541 pan="stereo| c0=FR | c1=FR"
4542 @end example
4543
4544 @section replaygain
4545
4546 ReplayGain scanner filter. This filter takes an audio stream as an input and
4547 outputs it unchanged.
4548 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4549
4550 @section resample
4551
4552 Convert the audio sample format, sample rate and channel layout. It is
4553 not meant to be used directly.
4554
4555 @section rubberband
4556 Apply time-stretching and pitch-shifting with librubberband.
4557
4558 To enable compilation of this filter, you need to configure FFmpeg with
4559 @code{--enable-librubberband}.
4560
4561 The filter accepts the following options:
4562
4563 @table @option
4564 @item tempo
4565 Set tempo scale factor.
4566
4567 @item pitch
4568 Set pitch scale factor.
4569
4570 @item transients
4571 Set transients detector.
4572 Possible values are:
4573 @table @var
4574 @item crisp
4575 @item mixed
4576 @item smooth
4577 @end table
4578
4579 @item detector
4580 Set detector.
4581 Possible values are:
4582 @table @var
4583 @item compound
4584 @item percussive
4585 @item soft
4586 @end table
4587
4588 @item phase
4589 Set phase.
4590 Possible values are:
4591 @table @var
4592 @item laminar
4593 @item independent
4594 @end table
4595
4596 @item window
4597 Set processing window size.
4598 Possible values are:
4599 @table @var
4600 @item standard
4601 @item short
4602 @item long
4603 @end table
4604
4605 @item smoothing
4606 Set smoothing.
4607 Possible values are:
4608 @table @var
4609 @item off
4610 @item on
4611 @end table
4612
4613 @item formant
4614 Enable formant preservation when shift pitching.
4615 Possible values are:
4616 @table @var
4617 @item shifted
4618 @item preserved
4619 @end table
4620
4621 @item pitchq
4622 Set pitch quality.
4623 Possible values are:
4624 @table @var
4625 @item quality
4626 @item speed
4627 @item consistency
4628 @end table
4629
4630 @item channels
4631 Set channels.
4632 Possible values are:
4633 @table @var
4634 @item apart
4635 @item together
4636 @end table
4637 @end table
4638
4639 @subsection Commands
4640
4641 This filter supports the following commands:
4642 @table @option
4643 @item tempo
4644 Change filter tempo scale factor.
4645 Syntax for the command is : "@var{tempo}"
4646
4647 @item pitch
4648 Change filter pitch scale factor.
4649 Syntax for the command is : "@var{pitch}"
4650 @end table
4651
4652 @section sidechaincompress
4653
4654 This filter acts like normal compressor but has the ability to compress
4655 detected signal using second input signal.
4656 It needs two input streams and returns one output stream.
4657 First input stream will be processed depending on second stream signal.
4658 The filtered signal then can be filtered with other filters in later stages of
4659 processing. See @ref{pan} and @ref{amerge} filter.
4660
4661 The filter accepts the following options:
4662
4663 @table @option
4664 @item level_in
4665 Set input gain. Default is 1. Range is between 0.015625 and 64.
4666
4667 @item mode
4668 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4669 Default is @code{downward}.
4670
4671 @item threshold
4672 If a signal of second stream raises above this level it will affect the gain
4673 reduction of first stream.
4674 By default is 0.125. Range is between 0.00097563 and 1.
4675
4676 @item ratio
4677 Set a ratio about which the signal is reduced. 1:2 means that if the level
4678 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4679 Default is 2. Range is between 1 and 20.
4680
4681 @item attack
4682 Amount of milliseconds the signal has to rise above the threshold before gain
4683 reduction starts. Default is 20. Range is between 0.01 and 2000.
4684
4685 @item release
4686 Amount of milliseconds the signal has to fall below the threshold before
4687 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4688
4689 @item makeup
4690 Set the amount by how much signal will be amplified after processing.
4691 Default is 1. Range is from 1 to 64.
4692
4693 @item knee
4694 Curve the sharp knee around the threshold to enter gain reduction more softly.
4695 Default is 2.82843. Range is between 1 and 8.
4696
4697 @item link
4698 Choose if the @code{average} level between all channels of side-chain stream
4699 or the louder(@code{maximum}) channel of side-chain stream affects the
4700 reduction. Default is @code{average}.
4701
4702 @item detection
4703 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4704 of @code{rms}. Default is @code{rms} which is mainly smoother.
4705
4706 @item level_sc
4707 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4708
4709 @item mix
4710 How much to use compressed signal in output. Default is 1.
4711 Range is between 0 and 1.
4712 @end table
4713
4714 @subsection Commands
4715
4716 This filter supports the all above options as @ref{commands}.
4717
4718 @subsection Examples
4719
4720 @itemize
4721 @item
4722 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4723 depending on the signal of 2nd input and later compressed signal to be
4724 merged with 2nd input:
4725 @example
4726 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4727 @end example
4728 @end itemize
4729
4730 @section sidechaingate
4731
4732 A sidechain gate acts like a normal (wideband) gate but has the ability to
4733 filter the detected signal before sending it to the gain reduction stage.
4734 Normally a gate uses the full range signal to detect a level above the
4735 threshold.
4736 For example: If you cut all lower frequencies from your sidechain signal
4737 the gate will decrease the volume of your track only if not enough highs
4738 appear. With this technique you are able to reduce the resonation of a
4739 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4740 guitar.
4741 It needs two input streams and returns one output stream.
4742 First input stream will be processed depending on second stream signal.
4743
4744 The filter accepts the following options:
4745
4746 @table @option
4747 @item level_in
4748 Set input level before filtering.
4749 Default is 1. Allowed range is from 0.015625 to 64.
4750
4751 @item mode
4752 Set the mode of operation. Can be @code{upward} or @code{downward}.
4753 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4754 will be amplified, expanding dynamic range in upward direction.
4755 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4756
4757 @item range
4758 Set the level of gain reduction when the signal is below the threshold.
4759 Default is 0.06125. Allowed range is from 0 to 1.
4760 Setting this to 0 disables reduction and then filter behaves like expander.
4761
4762 @item threshold
4763 If a signal rises above this level the gain reduction is released.
4764 Default is 0.125. Allowed range is from 0 to 1.
4765
4766 @item ratio
4767 Set a ratio about which the signal is reduced.
4768 Default is 2. Allowed range is from 1 to 9000.
4769
4770 @item attack
4771 Amount of milliseconds the signal has to rise above the threshold before gain
4772 reduction stops.
4773 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4774
4775 @item release
4776 Amount of milliseconds the signal has to fall below the threshold before the
4777 reduction is increased again. Default is 250 milliseconds.
4778 Allowed range is from 0.01 to 9000.
4779
4780 @item makeup
4781 Set amount of amplification of signal after processing.
4782 Default is 1. Allowed range is from 1 to 64.
4783
4784 @item knee
4785 Curve the sharp knee around the threshold to enter gain reduction more softly.
4786 Default is 2.828427125. Allowed range is from 1 to 8.
4787
4788 @item detection
4789 Choose if exact signal should be taken for detection or an RMS like one.
4790 Default is rms. Can be peak or rms.
4791
4792 @item link
4793 Choose if the average level between all channels or the louder channel affects
4794 the reduction.
4795 Default is average. Can be average or maximum.
4796
4797 @item level_sc
4798 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4799 @end table
4800
4801 @section silencedetect
4802
4803 Detect silence in an audio stream.
4804
4805 This filter logs a message when it detects that the input audio volume is less
4806 or equal to a noise tolerance value for a duration greater or equal to the
4807 minimum detected noise duration.
4808
4809 The printed times and duration are expressed in seconds. The
4810 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
4811 is set on the first frame whose timestamp equals or exceeds the detection
4812 duration and it contains the timestamp of the first frame of the silence.
4813
4814 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
4815 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
4816 keys are set on the first frame after the silence. If @option{mono} is
4817 enabled, and each channel is evaluated separately, the @code{.X}
4818 suffixed keys are used, and @code{X} corresponds to the channel number.
4819
4820 The filter accepts the following options:
4821
4822 @table @option
4823 @item noise, n
4824 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4825 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4826
4827 @item duration, d
4828 Set silence duration until notification (default is 2 seconds). See
4829 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4830 for the accepted syntax.
4831
4832 @item mono, m
4833 Process each channel separately, instead of combined. By default is disabled.
4834 @end table
4835
4836 @subsection Examples
4837
4838 @itemize
4839 @item
4840 Detect 5 seconds of silence with -50dB noise tolerance:
4841 @example
4842 silencedetect=n=-50dB:d=5
4843 @end example
4844
4845 @item
4846 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4847 tolerance in @file{silence.mp3}:
4848 @example
4849 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4850 @end example
4851 @end itemize
4852
4853 @section silenceremove
4854
4855 Remove silence from the beginning, middle or end of the audio.
4856
4857 The filter accepts the following options:
4858
4859 @table @option
4860 @item start_periods
4861 This value is used to indicate if audio should be trimmed at beginning of
4862 the audio. A value of zero indicates no silence should be trimmed from the
4863 beginning. When specifying a non-zero value, it trims audio up until it
4864 finds non-silence. Normally, when trimming silence from beginning of audio
4865 the @var{start_periods} will be @code{1} but it can be increased to higher
4866 values to trim all audio up to specific count of non-silence periods.
4867 Default value is @code{0}.
4868
4869 @item start_duration
4870 Specify the amount of time that non-silence must be detected before it stops
4871 trimming audio. By increasing the duration, bursts of noises can be treated
4872 as silence and trimmed off. Default value is @code{0}.
4873
4874 @item start_threshold
4875 This indicates what sample value should be treated as silence. For digital
4876 audio, a value of @code{0} may be fine but for audio recorded from analog,
4877 you may wish to increase the value to account for background noise.
4878 Can be specified in dB (in case "dB" is appended to the specified value)
4879 or amplitude ratio. Default value is @code{0}.
4880
4881 @item start_silence
4882 Specify max duration of silence at beginning that will be kept after
4883 trimming. Default is 0, which is equal to trimming all samples detected
4884 as silence.
4885
4886 @item start_mode
4887 Specify mode of detection of silence end in start of multi-channel audio.
4888 Can be @var{any} or @var{all}. Default is @var{any}.
4889 With @var{any}, any sample that is detected as non-silence will cause
4890 stopped trimming of silence.
4891 With @var{all}, only if all channels are detected as non-silence will cause
4892 stopped trimming of silence.
4893
4894 @item stop_periods
4895 Set the count for trimming silence from the end of audio.
4896 To remove silence from the middle of a file, specify a @var{stop_periods}
4897 that is negative. This value is then treated as a positive value and is
4898 used to indicate the effect should restart processing as specified by
4899 @var{start_periods}, making it suitable for removing periods of silence
4900 in the middle of the audio.
4901 Default value is @code{0}.
4902
4903 @item stop_duration
4904 Specify a duration of silence that must exist before audio is not copied any
4905 more. By specifying a higher duration, silence that is wanted can be left in
4906 the audio.
4907 Default value is @code{0}.
4908
4909 @item stop_threshold
4910 This is the same as @option{start_threshold} but for trimming silence from
4911 the end of audio.
4912 Can be specified in dB (in case "dB" is appended to the specified value)
4913 or amplitude ratio. Default value is @code{0}.
4914
4915 @item stop_silence
4916 Specify max duration of silence at end that will be kept after
4917 trimming. Default is 0, which is equal to trimming all samples detected
4918 as silence.
4919
4920 @item stop_mode
4921 Specify mode of detection of silence start in end of multi-channel audio.
4922 Can be @var{any} or @var{all}. Default is @var{any}.
4923 With @var{any}, any sample that is detected as non-silence will cause
4924 stopped trimming of silence.
4925 With @var{all}, only if all channels are detected as non-silence will cause
4926 stopped trimming of silence.
4927
4928 @item detection
4929 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4930 and works better with digital silence which is exactly 0.
4931 Default value is @code{rms}.
4932
4933 @item window
4934 Set duration in number of seconds used to calculate size of window in number
4935 of samples for detecting silence.
4936 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4937 @end table
4938
4939 @subsection Examples
4940
4941 @itemize
4942 @item
4943 The following example shows how this filter can be used to start a recording
4944 that does not contain the delay at the start which usually occurs between
4945 pressing the record button and the start of the performance:
4946 @example
4947 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4948 @end example
4949
4950 @item
4951 Trim all silence encountered from beginning to end where there is more than 1
4952 second of silence in audio:
4953 @example
4954 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4955 @end example
4956
4957 @item
4958 Trim all digital silence samples, using peak detection, from beginning to end
4959 where there is more than 0 samples of digital silence in audio and digital
4960 silence is detected in all channels at same positions in stream:
4961 @example
4962 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4963 @end example
4964 @end itemize
4965
4966 @section sofalizer
4967
4968 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4969 loudspeakers around the user for binaural listening via headphones (audio
4970 formats up to 9 channels supported).
4971 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4972 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4973 Austrian Academy of Sciences.
4974
4975 To enable compilation of this filter you need to configure FFmpeg with
4976 @code{--enable-libmysofa}.
4977
4978 The filter accepts the following options:
4979
4980 @table @option
4981 @item sofa
4982 Set the SOFA file used for rendering.
4983
4984 @item gain
4985 Set gain applied to audio. Value is in dB. Default is 0.
4986
4987 @item rotation
4988 Set rotation of virtual loudspeakers in deg. Default is 0.
4989
4990 @item elevation
4991 Set elevation of virtual speakers in deg. Default is 0.
4992
4993 @item radius
4994 Set distance in meters between loudspeakers and the listener with near-field
4995 HRTFs. Default is 1.
4996
4997 @item type
4998 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4999 processing audio in time domain which is slow.
5000 @var{freq} is processing audio in frequency domain which is fast.
5001 Default is @var{freq}.
5002
5003 @item speakers
5004 Set custom positions of virtual loudspeakers. Syntax for this option is:
5005 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
5006 Each virtual loudspeaker is described with short channel name following with
5007 azimuth and elevation in degrees.
5008 Each virtual loudspeaker description is separated by '|'.
5009 For example to override front left and front right channel positions use:
5010 'speakers=FL 45 15|FR 345 15'.
5011 Descriptions with unrecognised channel names are ignored.
5012
5013 @item lfegain
5014 Set custom gain for LFE channels. Value is in dB. Default is 0.
5015
5016 @item framesize
5017 Set custom frame size in number of samples. Default is 1024.
5018 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5019 is set to @var{freq}.
5020
5021 @item normalize
5022 Should all IRs be normalized upon importing SOFA file.
5023 By default is enabled.
5024
5025 @item interpolate
5026 Should nearest IRs be interpolated with neighbor IRs if exact position
5027 does not match. By default is disabled.
5028
5029 @item minphase
5030 Minphase all IRs upon loading of SOFA file. By default is disabled.
5031
5032 @item anglestep
5033 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5034
5035 @item radstep
5036 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5037 @end table
5038
5039 @subsection Examples
5040
5041 @itemize
5042 @item
5043 Using ClubFritz6 sofa file:
5044 @example
5045 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5046 @end example
5047
5048 @item
5049 Using ClubFritz12 sofa file and bigger radius with small rotation:
5050 @example
5051 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5052 @end example
5053
5054 @item
5055 Similar as above but with custom speaker positions for front left, front right, back left and back right
5056 and also with custom gain:
5057 @example
5058 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5059 @end example
5060 @end itemize
5061
5062 @section stereotools
5063
5064 This filter has some handy utilities to manage stereo signals, for converting
5065 M/S stereo recordings to L/R signal while having control over the parameters
5066 or spreading the stereo image of master track.
5067
5068 The filter accepts the following options:
5069
5070 @table @option
5071 @item level_in
5072 Set input level before filtering for both channels. Defaults is 1.
5073 Allowed range is from 0.015625 to 64.
5074
5075 @item level_out
5076 Set output level after filtering for both channels. Defaults is 1.
5077 Allowed range is from 0.015625 to 64.
5078
5079 @item balance_in
5080 Set input balance between both channels. Default is 0.
5081 Allowed range is from -1 to 1.
5082
5083 @item balance_out
5084 Set output balance between both channels. Default is 0.
5085 Allowed range is from -1 to 1.
5086
5087 @item softclip
5088 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5089 clipping. Disabled by default.
5090
5091 @item mutel
5092 Mute the left channel. Disabled by default.
5093
5094 @item muter
5095 Mute the right channel. Disabled by default.
5096
5097 @item phasel
5098 Change the phase of the left channel. Disabled by default.
5099
5100 @item phaser
5101 Change the phase of the right channel. Disabled by default.
5102
5103 @item mode
5104 Set stereo mode. Available values are:
5105
5106 @table @samp
5107 @item lr>lr
5108 Left/Right to Left/Right, this is default.
5109
5110 @item lr>ms
5111 Left/Right to Mid/Side.
5112
5113 @item ms>lr
5114 Mid/Side to Left/Right.
5115
5116 @item lr>ll
5117 Left/Right to Left/Left.
5118
5119 @item lr>rr
5120 Left/Right to Right/Right.
5121
5122 @item lr>l+r
5123 Left/Right to Left + Right.
5124
5125 @item lr>rl
5126 Left/Right to Right/Left.
5127
5128 @item ms>ll
5129 Mid/Side to Left/Left.
5130
5131 @item ms>rr
5132 Mid/Side to Right/Right.
5133 @end table
5134
5135 @item slev
5136 Set level of side signal. Default is 1.
5137 Allowed range is from 0.015625 to 64.
5138
5139 @item sbal
5140 Set balance of side signal. Default is 0.
5141 Allowed range is from -1 to 1.
5142
5143 @item mlev
5144 Set level of the middle signal. Default is 1.
5145 Allowed range is from 0.015625 to 64.
5146
5147 @item mpan
5148 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5149
5150 @item base
5151 Set stereo base between mono and inversed channels. Default is 0.
5152 Allowed range is from -1 to 1.
5153
5154 @item delay
5155 Set delay in milliseconds how much to delay left from right channel and
5156 vice versa. Default is 0. Allowed range is from -20 to 20.
5157
5158 @item sclevel
5159 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5160
5161 @item phase
5162 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5163
5164 @item bmode_in, bmode_out
5165 Set balance mode for balance_in/balance_out option.
5166
5167 Can be one of the following:
5168
5169 @table @samp
5170 @item balance
5171 Classic balance mode. Attenuate one channel at time.
5172 Gain is raised up to 1.
5173
5174 @item amplitude
5175 Similar as classic mode above but gain is raised up to 2.
5176
5177 @item power
5178 Equal power distribution, from -6dB to +6dB range.
5179 @end table
5180 @end table
5181
5182 @subsection Examples
5183
5184 @itemize
5185 @item
5186 Apply karaoke like effect:
5187 @example
5188 stereotools=mlev=0.015625
5189 @end example
5190
5191 @item
5192 Convert M/S signal to L/R:
5193 @example
5194 "stereotools=mode=ms>lr"
5195 @end example
5196 @end itemize
5197
5198 @section stereowiden
5199
5200 This filter enhance the stereo effect by suppressing signal common to both
5201 channels and by delaying the signal of left into right and vice versa,
5202 thereby widening the stereo effect.
5203
5204 The filter accepts the following options:
5205
5206 @table @option
5207 @item delay
5208 Time in milliseconds of the delay of left signal into right and vice versa.
5209 Default is 20 milliseconds.
5210
5211 @item feedback
5212 Amount of gain in delayed signal into right and vice versa. Gives a delay
5213 effect of left signal in right output and vice versa which gives widening
5214 effect. Default is 0.3.
5215
5216 @item crossfeed
5217 Cross feed of left into right with inverted phase. This helps in suppressing
5218 the mono. If the value is 1 it will cancel all the signal common to both
5219 channels. Default is 0.3.
5220
5221 @item drymix
5222 Set level of input signal of original channel. Default is 0.8.
5223 @end table
5224
5225 @subsection Commands
5226
5227 This filter supports the all above options except @code{delay} as @ref{commands}.
5228
5229 @section superequalizer
5230 Apply 18 band equalizer.
5231
5232 The filter accepts the following options:
5233 @table @option
5234 @item 1b
5235 Set 65Hz band gain.
5236 @item 2b
5237 Set 92Hz band gain.
5238 @item 3b
5239 Set 131Hz band gain.
5240 @item 4b
5241 Set 185Hz band gain.
5242 @item 5b
5243 Set 262Hz band gain.
5244 @item 6b
5245 Set 370Hz band gain.
5246 @item 7b
5247 Set 523Hz band gain.
5248 @item 8b
5249 Set 740Hz band gain.
5250 @item 9b
5251 Set 1047Hz band gain.
5252 @item 10b
5253 Set 1480Hz band gain.
5254 @item 11b
5255 Set 2093Hz band gain.
5256 @item 12b
5257 Set 2960Hz band gain.
5258 @item 13b
5259 Set 4186Hz band gain.
5260 @item 14b
5261 Set 5920Hz band gain.
5262 @item 15b
5263 Set 8372Hz band gain.
5264 @item 16b
5265 Set 11840Hz band gain.
5266 @item 17b
5267 Set 16744Hz band gain.
5268 @item 18b
5269 Set 20000Hz band gain.
5270 @end table
5271
5272 @section surround
5273 Apply audio surround upmix filter.
5274
5275 This filter allows to produce multichannel output from audio stream.
5276
5277 The filter accepts the following options:
5278
5279 @table @option
5280 @item chl_out
5281 Set output channel layout. By default, this is @var{5.1}.
5282
5283 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5284 for the required syntax.
5285
5286 @item chl_in
5287 Set input channel layout. By default, this is @var{stereo}.
5288
5289 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5290 for the required syntax.
5291
5292 @item level_in
5293 Set input volume level. By default, this is @var{1}.
5294
5295 @item level_out
5296 Set output volume level. By default, this is @var{1}.
5297
5298 @item lfe
5299 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5300
5301 @item lfe_low
5302 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5303
5304 @item lfe_high
5305 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5306
5307 @item lfe_mode
5308 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5309 In @var{add} mode, LFE channel is created from input audio and added to output.
5310 In @var{sub} mode, LFE channel is created from input audio and added to output but
5311 also all non-LFE output channels are subtracted with output LFE channel.
5312
5313 @item angle
5314 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5315 Default is @var{90}.
5316
5317 @item fc_in
5318 Set front center input volume. By default, this is @var{1}.
5319
5320 @item fc_out
5321 Set front center output volume. By default, this is @var{1}.
5322
5323 @item fl_in
5324 Set front left input volume. By default, this is @var{1}.
5325
5326 @item fl_out
5327 Set front left output volume. By default, this is @var{1}.
5328
5329 @item fr_in
5330 Set front right input volume. By default, this is @var{1}.
5331
5332 @item fr_out
5333 Set front right output volume. By default, this is @var{1}.
5334
5335 @item sl_in
5336 Set side left input volume. By default, this is @var{1}.
5337
5338 @item sl_out
5339 Set side left output volume. By default, this is @var{1}.
5340
5341 @item sr_in
5342 Set side right input volume. By default, this is @var{1}.
5343
5344 @item sr_out
5345 Set side right output volume. By default, this is @var{1}.
5346
5347 @item bl_in
5348 Set back left input volume. By default, this is @var{1}.
5349
5350 @item bl_out
5351 Set back left output volume. By default, this is @var{1}.
5352
5353 @item br_in
5354 Set back right input volume. By default, this is @var{1}.
5355
5356 @item br_out
5357 Set back right output volume. By default, this is @var{1}.
5358
5359 @item bc_in
5360 Set back center input volume. By default, this is @var{1}.
5361
5362 @item bc_out
5363 Set back center output volume. By default, this is @var{1}.
5364
5365 @item lfe_in
5366 Set LFE input volume. By default, this is @var{1}.
5367
5368 @item lfe_out
5369 Set LFE output volume. By default, this is @var{1}.
5370
5371 @item allx
5372 Set spread usage of stereo image across X axis for all channels.
5373
5374 @item ally
5375 Set spread usage of stereo image across Y axis for all channels.
5376
5377 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5378 Set spread usage of stereo image across X axis for each channel.
5379
5380 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5381 Set spread usage of stereo image across Y axis for each channel.
5382
5383 @item win_size
5384 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5385
5386 @item win_func
5387 Set window function.
5388
5389 It accepts the following values:
5390 @table @samp
5391 @item rect
5392 @item bartlett
5393 @item hann, hanning
5394 @item hamming
5395 @item blackman
5396 @item welch
5397 @item flattop
5398 @item bharris
5399 @item bnuttall
5400 @item bhann
5401 @item sine
5402 @item nuttall
5403 @item lanczos
5404 @item gauss
5405 @item tukey
5406 @item dolph
5407 @item cauchy
5408 @item parzen
5409 @item poisson
5410 @item bohman
5411 @end table
5412 Default is @code{hann}.
5413
5414 @item overlap
5415 Set window overlap. If set to 1, the recommended overlap for selected
5416 window function will be picked. Default is @code{0.5}.
5417 @end table
5418
5419 @section treble, highshelf
5420
5421 Boost or cut treble (upper) frequencies of the audio using a two-pole
5422 shelving filter with a response similar to that of a standard
5423 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5424
5425 The filter accepts the following options:
5426
5427 @table @option
5428 @item gain, g
5429 Give the gain at whichever is the lower of ~22 kHz and the
5430 Nyquist frequency. Its useful range is about -20 (for a large cut)
5431 to +20 (for a large boost). Beware of clipping when using a positive gain.
5432
5433 @item frequency, f
5434 Set the filter's central frequency and so can be used
5435 to extend or reduce the frequency range to be boosted or cut.
5436 The default value is @code{3000} Hz.
5437
5438 @item width_type, t
5439 Set method to specify band-width of filter.
5440 @table @option
5441 @item h
5442 Hz
5443 @item q
5444 Q-Factor
5445 @item o
5446 octave
5447 @item s
5448 slope
5449 @item k
5450 kHz
5451 @end table
5452
5453 @item width, w
5454 Determine how steep is the filter's shelf transition.
5455
5456 @item mix, m
5457 How much to use filtered signal in output. Default is 1.
5458 Range is between 0 and 1.
5459
5460 @item channels, c
5461 Specify which channels to filter, by default all available are filtered.
5462
5463 @item normalize, n
5464 Normalize biquad coefficients, by default is disabled.
5465 Enabling it will normalize magnitude response at DC to 0dB.
5466 @end table
5467
5468 @subsection Commands
5469
5470 This filter supports the following commands:
5471 @table @option
5472 @item frequency, f
5473 Change treble frequency.
5474 Syntax for the command is : "@var{frequency}"
5475
5476 @item width_type, t
5477 Change treble width_type.
5478 Syntax for the command is : "@var{width_type}"
5479
5480 @item width, w
5481 Change treble width.
5482 Syntax for the command is : "@var{width}"
5483
5484 @item gain, g
5485 Change treble gain.
5486 Syntax for the command is : "@var{gain}"
5487
5488 @item mix, m
5489 Change treble mix.
5490 Syntax for the command is : "@var{mix}"
5491 @end table
5492
5493 @section tremolo
5494
5495 Sinusoidal amplitude modulation.
5496
5497 The filter accepts the following options:
5498
5499 @table @option
5500 @item f
5501 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5502 (20 Hz or lower) will result in a tremolo effect.
5503 This filter may also be used as a ring modulator by specifying
5504 a modulation frequency higher than 20 Hz.
5505 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5506
5507 @item d
5508 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5509 Default value is 0.5.
5510 @end table
5511
5512 @section vibrato
5513
5514 Sinusoidal phase modulation.
5515
5516 The filter accepts the following options:
5517
5518 @table @option
5519 @item f
5520 Modulation frequency in Hertz.
5521 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5522
5523 @item d
5524 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5525 Default value is 0.5.
5526 @end table
5527
5528 @section volume
5529
5530 Adjust the input audio volume.
5531
5532 It accepts the following parameters:
5533 @table @option
5534
5535 @item volume
5536 Set audio volume expression.
5537
5538 Output values are clipped to the maximum value.
5539
5540 The output audio volume is given by the relation:
5541 @example
5542 @var{output_volume} = @var{volume} * @var{input_volume}
5543 @end example
5544
5545 The default value for @var{volume} is "1.0".
5546
5547 @item precision
5548 This parameter represents the mathematical precision.
5549
5550 It determines which input sample formats will be allowed, which affects the
5551 precision of the volume scaling.
5552
5553 @table @option
5554 @item fixed
5555 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5556 @item float
5557 32-bit floating-point; this limits input sample format to FLT. (default)
5558 @item double
5559 64-bit floating-point; this limits input sample format to DBL.
5560 @end table
5561
5562 @item replaygain
5563 Choose the behaviour on encountering ReplayGain side data in input frames.
5564
5565 @table @option
5566 @item drop
5567 Remove ReplayGain side data, ignoring its contents (the default).
5568
5569 @item ignore
5570 Ignore ReplayGain side data, but leave it in the frame.
5571
5572 @item track
5573 Prefer the track gain, if present.
5574
5575 @item album
5576 Prefer the album gain, if present.
5577 @end table
5578
5579 @item replaygain_preamp
5580 Pre-amplification gain in dB to apply to the selected replaygain gain.
5581
5582 Default value for @var{replaygain_preamp} is 0.0.
5583
5584 @item replaygain_noclip
5585 Prevent clipping by limiting the gain applied.
5586
5587 Default value for @var{replaygain_noclip} is 1.
5588
5589 @item eval
5590 Set when the volume expression is evaluated.
5591
5592 It accepts the following values:
5593 @table @samp
5594 @item once
5595 only evaluate expression once during the filter initialization, or
5596 when the @samp{volume} command is sent
5597
5598 @item frame
5599 evaluate expression for each incoming frame
5600 @end table
5601
5602 Default value is @samp{once}.
5603 @end table
5604
5605 The volume expression can contain the following parameters.
5606
5607 @table @option
5608 @item n
5609 frame number (starting at zero)
5610 @item nb_channels
5611 number of channels
5612 @item nb_consumed_samples
5613 number of samples consumed by the filter
5614 @item nb_samples
5615 number of samples in the current frame
5616 @item pos
5617 original frame position in the file
5618 @item pts
5619 frame PTS
5620 @item sample_rate
5621 sample rate
5622 @item startpts
5623 PTS at start of stream
5624 @item startt
5625 time at start of stream
5626 @item t
5627 frame time
5628 @item tb
5629 timestamp timebase
5630 @item volume
5631 last set volume value
5632 @end table
5633
5634 Note that when @option{eval} is set to @samp{once} only the
5635 @var{sample_rate} and @var{tb} variables are available, all other
5636 variables will evaluate to NAN.
5637
5638 @subsection Commands
5639
5640 This filter supports the following commands:
5641 @table @option
5642 @item volume
5643 Modify the volume expression.
5644 The command accepts the same syntax of the corresponding option.
5645
5646 If the specified expression is not valid, it is kept at its current
5647 value.
5648 @end table
5649
5650 @subsection Examples
5651
5652 @itemize
5653 @item
5654 Halve the input audio volume:
5655 @example
5656 volume=volume=0.5
5657 volume=volume=1/2
5658 volume=volume=-6.0206dB
5659 @end example
5660
5661 In all the above example the named key for @option{volume} can be
5662 omitted, for example like in:
5663 @example
5664 volume=0.5
5665 @end example
5666
5667 @item
5668 Increase input audio power by 6 decibels using fixed-point precision:
5669 @example
5670 volume=volume=6dB:precision=fixed
5671 @end example
5672
5673 @item
5674 Fade volume after time 10 with an annihilation period of 5 seconds:
5675 @example
5676 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5677 @end example
5678 @end itemize
5679
5680 @section volumedetect
5681
5682 Detect the volume of the input video.
5683
5684 The filter has no parameters. The input is not modified. Statistics about
5685 the volume will be printed in the log when the input stream end is reached.
5686
5687 In particular it will show the mean volume (root mean square), maximum
5688 volume (on a per-sample basis), and the beginning of a histogram of the
5689 registered volume values (from the maximum value to a cumulated 1/1000 of
5690 the samples).
5691
5692 All volumes are in decibels relative to the maximum PCM value.
5693
5694 @subsection Examples
5695
5696 Here is an excerpt of the output:
5697 @example
5698 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5699 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5700 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5701 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5702 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5703 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5704 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5705 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5706 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5707 @end example
5708
5709 It means that:
5710 @itemize
5711 @item
5712 The mean square energy is approximately -27 dB, or 10^-2.7.
5713 @item
5714 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5715 @item
5716 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5717 @end itemize
5718
5719 In other words, raising the volume by +4 dB does not cause any clipping,
5720 raising it by +5 dB causes clipping for 6 samples, etc.
5721
5722 @c man end AUDIO FILTERS
5723
5724 @chapter Audio Sources
5725 @c man begin AUDIO SOURCES
5726
5727 Below is a description of the currently available audio sources.
5728
5729 @section abuffer
5730
5731 Buffer audio frames, and make them available to the filter chain.
5732
5733 This source is mainly intended for a programmatic use, in particular
5734 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5735
5736 It accepts the following parameters:
5737 @table @option
5738
5739 @item time_base
5740 The timebase which will be used for timestamps of submitted frames. It must be
5741 either a floating-point number or in @var{numerator}/@var{denominator} form.
5742
5743 @item sample_rate
5744 The sample rate of the incoming audio buffers.
5745
5746 @item sample_fmt
5747 The sample format of the incoming audio buffers.
5748 Either a sample format name or its corresponding integer representation from
5749 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5750
5751 @item channel_layout
5752 The channel layout of the incoming audio buffers.
5753 Either a channel layout name from channel_layout_map in
5754 @file{libavutil/channel_layout.c} or its corresponding integer representation
5755 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5756
5757 @item channels
5758 The number of channels of the incoming audio buffers.
5759 If both @var{channels} and @var{channel_layout} are specified, then they
5760 must be consistent.
5761
5762 @end table
5763
5764 @subsection Examples
5765
5766 @example
5767 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5768 @end example
5769
5770 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5771 Since the sample format with name "s16p" corresponds to the number
5772 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5773 equivalent to:
5774 @example
5775 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5776 @end example
5777
5778 @section aevalsrc
5779
5780 Generate an audio signal specified by an expression.
5781
5782 This source accepts in input one or more expressions (one for each
5783 channel), which are evaluated and used to generate a corresponding
5784 audio signal.
5785
5786 This source accepts the following options:
5787
5788 @table @option
5789 @item exprs
5790 Set the '|'-separated expressions list for each separate channel. In case the
5791 @option{channel_layout} option is not specified, the selected channel layout
5792 depends on the number of provided expressions. Otherwise the last
5793 specified expression is applied to the remaining output channels.
5794
5795 @item channel_layout, c
5796 Set the channel layout. The number of channels in the specified layout
5797 must be equal to the number of specified expressions.
5798
5799 @item duration, d
5800 Set the minimum duration of the sourced audio. See
5801 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5802 for the accepted syntax.
5803 Note that the resulting duration may be greater than the specified
5804 duration, as the generated audio is always cut at the end of a
5805 complete frame.
5806
5807 If not specified, or the expressed duration is negative, the audio is
5808 supposed to be generated forever.
5809
5810 @item nb_samples, n
5811 Set the number of samples per channel per each output frame,
5812 default to 1024.
5813
5814 @item sample_rate, s
5815 Specify the sample rate, default to 44100.
5816 @end table
5817
5818 Each expression in @var{exprs} can contain the following constants:
5819
5820 @table @option
5821 @item n
5822 number of the evaluated sample, starting from 0
5823
5824 @item t
5825 time of the evaluated sample expressed in seconds, starting from 0
5826
5827 @item s
5828 sample rate
5829
5830 @end table
5831
5832 @subsection Examples
5833
5834 @itemize
5835 @item
5836 Generate silence:
5837 @example
5838 aevalsrc=0
5839 @end example
5840
5841 @item
5842 Generate a sin signal with frequency of 440 Hz, set sample rate to
5843 8000 Hz:
5844 @example
5845 aevalsrc="sin(440*2*PI*t):s=8000"
5846 @end example
5847
5848 @item
5849 Generate a two channels signal, specify the channel layout (Front
5850 Center + Back Center) explicitly:
5851 @example
5852 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5853 @end example
5854
5855 @item
5856 Generate white noise:
5857 @example
5858 aevalsrc="-2+random(0)"
5859 @end example
5860
5861 @item
5862 Generate an amplitude modulated signal:
5863 @example
5864 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5865 @end example
5866
5867 @item
5868 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5869 @example
5870 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5871 @end example
5872
5873 @end itemize
5874
5875 @section afirsrc
5876
5877 Generate a FIR coefficients using frequency sampling method.
5878
5879 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5880
5881 The filter accepts the following options:
5882
5883 @table @option
5884 @item taps, t
5885 Set number of filter coefficents in output audio stream.
5886 Default value is 1025.
5887
5888 @item frequency, f
5889 Set frequency points from where magnitude and phase are set.
5890 This must be in non decreasing order, and first element must be 0, while last element
5891 must be 1. Elements are separated by white spaces.
5892
5893 @item magnitude, m
5894 Set magnitude value for every frequency point set by @option{frequency}.
5895 Number of values must be same as number of frequency points.
5896 Values are separated by white spaces.
5897
5898 @item phase, p
5899 Set phase value for every frequency point set by @option{frequency}.
5900 Number of values must be same as number of frequency points.
5901 Values are separated by white spaces.
5902
5903 @item sample_rate, r
5904 Set sample rate, default is 44100.
5905
5906 @item nb_samples, n
5907 Set number of samples per each frame. Default is 1024.
5908
5909 @item win_func, w
5910 Set window function. Default is blackman.
5911 @end table
5912
5913 @section anullsrc
5914
5915 The null audio source, return unprocessed audio frames. It is mainly useful
5916 as a template and to be employed in analysis / debugging tools, or as
5917 the source for filters which ignore the input data (for example the sox
5918 synth filter).
5919
5920 This source accepts the following options:
5921
5922 @table @option
5923
5924 @item channel_layout, cl
5925
5926 Specifies the channel layout, and can be either an integer or a string
5927 representing a channel layout. The default value of @var{channel_layout}
5928 is "stereo".
5929
5930 Check the channel_layout_map definition in
5931 @file{libavutil/channel_layout.c} for the mapping between strings and
5932 channel layout values.
5933
5934 @item sample_rate, r
5935 Specifies the sample rate, and defaults to 44100.
5936
5937 @item nb_samples, n
5938 Set the number of samples per requested frames.
5939
5940 @end table
5941
5942 @subsection Examples
5943
5944 @itemize
5945 @item
5946 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5947 @example
5948 anullsrc=r=48000:cl=4
5949 @end example
5950
5951 @item
5952 Do the same operation with a more obvious syntax:
5953 @example
5954 anullsrc=r=48000:cl=mono
5955 @end example
5956 @end itemize
5957
5958 All the parameters need to be explicitly defined.
5959
5960 @section flite
5961
5962 Synthesize a voice utterance using the libflite library.
5963
5964 To enable compilation of this filter you need to configure FFmpeg with
5965 @code{--enable-libflite}.
5966
5967 Note that versions of the flite library prior to 2.0 are not thread-safe.
5968
5969 The filter accepts the following options:
5970
5971 @table @option
5972
5973 @item list_voices
5974 If set to 1, list the names of the available voices and exit
5975 immediately. Default value is 0.
5976
5977 @item nb_samples, n
5978 Set the maximum number of samples per frame. Default value is 512.
5979
5980 @item textfile
5981 Set the filename containing the text to speak.
5982
5983 @item text
5984 Set the text to speak.
5985
5986 @item voice, v
5987 Set the voice to use for the speech synthesis. Default value is
5988 @code{kal}. See also the @var{list_voices} option.
5989 @end table
5990
5991 @subsection Examples
5992
5993 @itemize
5994 @item
5995 Read from file @file{speech.txt}, and synthesize the text using the
5996 standard flite voice:
5997 @example
5998 flite=textfile=speech.txt
5999 @end example
6000
6001 @item
6002 Read the specified text selecting the @code{slt} voice:
6003 @example
6004 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6005 @end example
6006
6007 @item
6008 Input text to ffmpeg:
6009 @example
6010 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6011 @end example
6012
6013 @item
6014 Make @file{ffplay} speak the specified text, using @code{flite} and
6015 the @code{lavfi} device:
6016 @example
6017 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6018 @end example
6019 @end itemize
6020
6021 For more information about libflite, check:
6022 @url{http://www.festvox.org/flite/}
6023
6024 @section anoisesrc
6025
6026 Generate a noise audio signal.
6027
6028 The filter accepts the following options:
6029
6030 @table @option
6031 @item sample_rate, r
6032 Specify the sample rate. Default value is 48000 Hz.
6033
6034 @item amplitude, a
6035 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6036 is 1.0.
6037
6038 @item duration, d
6039 Specify the duration of the generated audio stream. Not specifying this option
6040 results in noise with an infinite length.
6041
6042 @item color, colour, c
6043 Specify the color of noise. Available noise colors are white, pink, brown,
6044 blue, violet and velvet. Default color is white.
6045
6046 @item seed, s
6047 Specify a value used to seed the PRNG.
6048
6049 @item nb_samples, n
6050 Set the number of samples per each output frame, default is 1024.
6051 @end table
6052
6053 @subsection Examples
6054
6055 @itemize
6056
6057 @item
6058 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6059 @example
6060 anoisesrc=d=60:c=pink:r=44100:a=0.5
6061 @end example
6062 @end itemize
6063
6064 @section hilbert
6065
6066 Generate odd-tap Hilbert transform FIR coefficients.
6067
6068 The resulting stream can be used with @ref{afir} filter for phase-shifting
6069 the signal by 90 degrees.
6070
6071 This is used in many matrix coding schemes and for analytic signal generation.
6072 The process is often written as a multiplication by i (or j), the imaginary unit.
6073
6074 The filter accepts the following options:
6075
6076 @table @option
6077
6078 @item sample_rate, s
6079 Set sample rate, default is 44100.
6080
6081 @item taps, t
6082 Set length of FIR filter, default is 22051.
6083
6084 @item nb_samples, n
6085 Set number of samples per each frame.
6086
6087 @item win_func, w
6088 Set window function to be used when generating FIR coefficients.
6089 @end table
6090
6091 @section sinc
6092
6093 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6094
6095 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6096
6097 The filter accepts the following options:
6098
6099 @table @option
6100 @item sample_rate, r
6101 Set sample rate, default is 44100.
6102
6103 @item nb_samples, n
6104 Set number of samples per each frame. Default is 1024.
6105
6106 @item hp
6107 Set high-pass frequency. Default is 0.
6108
6109 @item lp
6110 Set low-pass frequency. Default is 0.
6111 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6112 is higher than 0 then filter will create band-pass filter coefficients,
6113 otherwise band-reject filter coefficients.
6114
6115 @item phase
6116 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6117
6118 @item beta
6119 Set Kaiser window beta.
6120
6121 @item att
6122 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6123
6124 @item round
6125 Enable rounding, by default is disabled.
6126
6127 @item hptaps
6128 Set number of taps for high-pass filter.
6129
6130 @item lptaps
6131 Set number of taps for low-pass filter.
6132 @end table
6133
6134 @section sine
6135
6136 Generate an audio signal made of a sine wave with amplitude 1/8.
6137
6138 The audio signal is bit-exact.
6139
6140 The filter accepts the following options:
6141
6142 @table @option
6143
6144 @item frequency, f
6145 Set the carrier frequency. Default is 440 Hz.
6146
6147 @item beep_factor, b
6148 Enable a periodic beep every second with frequency @var{beep_factor} times
6149 the carrier frequency. Default is 0, meaning the beep is disabled.
6150
6151 @item sample_rate, r
6152 Specify the sample rate, default is 44100.
6153
6154 @item duration, d
6155 Specify the duration of the generated audio stream.
6156
6157 @item samples_per_frame
6158 Set the number of samples per output frame.
6159
6160 The expression can contain the following constants:
6161
6162 @table @option
6163 @item n
6164 The (sequential) number of the output audio frame, starting from 0.
6165
6166 @item pts
6167 The PTS (Presentation TimeStamp) of the output audio frame,
6168 expressed in @var{TB} units.
6169
6170 @item t
6171 The PTS of the output audio frame, expressed in seconds.
6172
6173 @item TB
6174 The timebase of the output audio frames.
6175 @end table
6176
6177 Default is @code{1024}.
6178 @end table
6179
6180 @subsection Examples
6181
6182 @itemize
6183
6184 @item
6185 Generate a simple 440 Hz sine wave:
6186 @example
6187 sine
6188 @end example
6189
6190 @item
6191 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6192 @example
6193 sine=220:4:d=5
6194 sine=f=220:b=4:d=5
6195 sine=frequency=220:beep_factor=4:duration=5
6196 @end example
6197
6198 @item
6199 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6200 pattern:
6201 @example
6202 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6203 @end example
6204 @end itemize
6205
6206 @c man end AUDIO SOURCES
6207
6208 @chapter Audio Sinks
6209 @c man begin AUDIO SINKS
6210
6211 Below is a description of the currently available audio sinks.
6212
6213 @section abuffersink
6214
6215 Buffer audio frames, and make them available to the end of filter chain.
6216
6217 This sink is mainly intended for programmatic use, in particular
6218 through the interface defined in @file{libavfilter/buffersink.h}
6219 or the options system.
6220
6221 It accepts a pointer to an AVABufferSinkContext structure, which
6222 defines the incoming buffers' formats, to be passed as the opaque
6223 parameter to @code{avfilter_init_filter} for initialization.
6224 @section anullsink
6225
6226 Null audio sink; do absolutely nothing with the input audio. It is
6227 mainly useful as a template and for use in analysis / debugging
6228 tools.
6229
6230 @c man end AUDIO SINKS
6231
6232 @chapter Video Filters
6233 @c man begin VIDEO FILTERS
6234
6235 When you configure your FFmpeg build, you can disable any of the
6236 existing filters using @code{--disable-filters}.
6237 The configure output will show the video filters included in your
6238 build.
6239
6240 Below is a description of the currently available video filters.
6241
6242 @section addroi
6243
6244 Mark a region of interest in a video frame.
6245
6246 The frame data is passed through unchanged, but metadata is attached
6247 to the frame indicating regions of interest which can affect the
6248 behaviour of later encoding.  Multiple regions can be marked by
6249 applying the filter multiple times.
6250
6251 @table @option
6252 @item x
6253 Region distance in pixels from the left edge of the frame.
6254 @item y
6255 Region distance in pixels from the top edge of the frame.
6256 @item w
6257 Region width in pixels.
6258 @item h
6259 Region height in pixels.
6260
6261 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6262 and may contain the following variables:
6263 @table @option
6264 @item iw
6265 Width of the input frame.
6266 @item ih
6267 Height of the input frame.
6268 @end table
6269
6270 @item qoffset
6271 Quantisation offset to apply within the region.
6272
6273 This must be a real value in the range -1 to +1.  A value of zero
6274 indicates no quality change.  A negative value asks for better quality
6275 (less quantisation), while a positive value asks for worse quality
6276 (greater quantisation).
6277
6278 The range is calibrated so that the extreme values indicate the
6279 largest possible offset - if the rest of the frame is encoded with the
6280 worst possible quality, an offset of -1 indicates that this region
6281 should be encoded with the best possible quality anyway.  Intermediate
6282 values are then interpolated in some codec-dependent way.
6283
6284 For example, in 10-bit H.264 the quantisation parameter varies between
6285 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6286 this region should be encoded with a QP around one-tenth of the full
6287 range better than the rest of the frame.  So, if most of the frame
6288 were to be encoded with a QP of around 30, this region would get a QP
6289 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6290 An extreme value of -1 would indicate that this region should be
6291 encoded with the best possible quality regardless of the treatment of
6292 the rest of the frame - that is, should be encoded at a QP of -12.
6293 @item clear
6294 If set to true, remove any existing regions of interest marked on the
6295 frame before adding the new one.
6296 @end table
6297
6298 @subsection Examples
6299
6300 @itemize
6301 @item
6302 Mark the centre quarter of the frame as interesting.
6303 @example
6304 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6305 @end example
6306 @item
6307 Mark the 100-pixel-wide region on the left edge of the frame as very
6308 uninteresting (to be encoded at much lower quality than the rest of
6309 the frame).
6310 @example
6311 addroi=0:0:100:ih:+1/5
6312 @end example
6313 @end itemize
6314
6315 @section alphaextract
6316
6317 Extract the alpha component from the input as a grayscale video. This
6318 is especially useful with the @var{alphamerge} filter.
6319
6320 @section alphamerge
6321
6322 Add or replace the alpha component of the primary input with the
6323 grayscale value of a second input. This is intended for use with
6324 @var{alphaextract} to allow the transmission or storage of frame
6325 sequences that have alpha in a format that doesn't support an alpha
6326 channel.
6327
6328 For example, to reconstruct full frames from a normal YUV-encoded video
6329 and a separate video created with @var{alphaextract}, you might use:
6330 @example
6331 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6332 @end example
6333
6334 Since this filter is designed for reconstruction, it operates on frame
6335 sequences without considering timestamps, and terminates when either
6336 input reaches end of stream. This will cause problems if your encoding
6337 pipeline drops frames. If you're trying to apply an image as an
6338 overlay to a video stream, consider the @var{overlay} filter instead.
6339
6340 @section amplify
6341
6342 Amplify differences between current pixel and pixels of adjacent frames in
6343 same pixel location.
6344
6345 This filter accepts the following options:
6346
6347 @table @option
6348 @item radius
6349 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6350 For example radius of 3 will instruct filter to calculate average of 7 frames.
6351
6352 @item factor
6353 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6354
6355 @item threshold
6356 Set threshold for difference amplification. Any difference greater or equal to
6357 this value will not alter source pixel. Default is 10.
6358 Allowed range is from 0 to 65535.
6359
6360 @item tolerance
6361 Set tolerance for difference amplification. Any difference lower to
6362 this value will not alter source pixel. Default is 0.
6363 Allowed range is from 0 to 65535.
6364
6365 @item low
6366 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6367 This option controls maximum possible value that will decrease source pixel value.
6368
6369 @item high
6370 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6371 This option controls maximum possible value that will increase source pixel value.
6372
6373 @item planes
6374 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6375 @end table
6376
6377 @subsection Commands
6378
6379 This filter supports the following @ref{commands} that corresponds to option of same name:
6380 @table @option
6381 @item factor
6382 @item threshold
6383 @item tolerance
6384 @item low
6385 @item high
6386 @item planes
6387 @end table
6388
6389 @section ass
6390
6391 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6392 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6393 Substation Alpha) subtitles files.
6394
6395 This filter accepts the following option in addition to the common options from
6396 the @ref{subtitles} filter:
6397
6398 @table @option
6399 @item shaping
6400 Set the shaping engine
6401
6402 Available values are:
6403 @table @samp
6404 @item auto
6405 The default libass shaping engine, which is the best available.
6406 @item simple
6407 Fast, font-agnostic shaper that can do only substitutions
6408 @item complex
6409 Slower shaper using OpenType for substitutions and positioning
6410 @end table
6411
6412 The default is @code{auto}.
6413 @end table
6414
6415 @section atadenoise
6416 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6417
6418 The filter accepts the following options:
6419
6420 @table @option
6421 @item 0a
6422 Set threshold A for 1st plane. Default is 0.02.
6423 Valid range is 0 to 0.3.
6424
6425 @item 0b
6426 Set threshold B for 1st plane. Default is 0.04.
6427 Valid range is 0 to 5.
6428
6429 @item 1a
6430 Set threshold A for 2nd plane. Default is 0.02.
6431 Valid range is 0 to 0.3.
6432
6433 @item 1b
6434 Set threshold B for 2nd plane. Default is 0.04.
6435 Valid range is 0 to 5.
6436
6437 @item 2a
6438 Set threshold A for 3rd plane. Default is 0.02.
6439 Valid range is 0 to 0.3.
6440
6441 @item 2b
6442 Set threshold B for 3rd plane. Default is 0.04.
6443 Valid range is 0 to 5.
6444
6445 Threshold A is designed to react on abrupt changes in the input signal and
6446 threshold B is designed to react on continuous changes in the input signal.
6447
6448 @item s
6449 Set number of frames filter will use for averaging. Default is 9. Must be odd
6450 number in range [5, 129].
6451
6452 @item p
6453 Set what planes of frame filter will use for averaging. Default is all.
6454
6455 @item a
6456 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6457 Alternatively can be set to @code{s} serial.
6458
6459 Parallel can be faster then serial, while other way around is never true.
6460 Parallel will abort early on first change being greater then thresholds, while serial
6461 will continue processing other side of frames if they are equal or bellow thresholds.
6462 @end table
6463
6464 @subsection Commands
6465 This filter supports same @ref{commands} as options except option @code{s}.
6466 The command accepts the same syntax of the corresponding option.
6467
6468 @section avgblur
6469
6470 Apply average blur filter.
6471
6472 The filter accepts the following options:
6473
6474 @table @option
6475 @item sizeX
6476 Set horizontal radius size.
6477
6478 @item planes
6479 Set which planes to filter. By default all planes are filtered.
6480
6481 @item sizeY
6482 Set vertical radius size, if zero it will be same as @code{sizeX}.
6483 Default is @code{0}.
6484 @end table
6485
6486 @subsection Commands
6487 This filter supports same commands as options.
6488 The command accepts the same syntax of the corresponding option.
6489
6490 If the specified expression is not valid, it is kept at its current
6491 value.
6492
6493 @section bbox
6494
6495 Compute the bounding box for the non-black pixels in the input frame
6496 luminance plane.
6497
6498 This filter computes the bounding box containing all the pixels with a
6499 luminance value greater than the minimum allowed value.
6500 The parameters describing the bounding box are printed on the filter
6501 log.
6502
6503 The filter accepts the following option:
6504
6505 @table @option
6506 @item min_val
6507 Set the minimal luminance value. Default is @code{16}.
6508 @end table
6509
6510 @section bilateral
6511 Apply bilateral filter, spatial smoothing while preserving edges.
6512
6513 The filter accepts the following options:
6514 @table @option
6515 @item sigmaS
6516 Set sigma of gaussian function to calculate spatial weight.
6517 Allowed range is 0 to 10. Default is 0.1.
6518
6519 @item sigmaR
6520 Set sigma of gaussian function to calculate range weight.
6521 Allowed range is 0 to 1. Default is 0.1.
6522
6523 @item planes
6524 Set planes to filter. Default is first only.
6525 @end table
6526
6527 @section bitplanenoise
6528
6529 Show and measure bit plane noise.
6530
6531 The filter accepts the following options:
6532
6533 @table @option
6534 @item bitplane
6535 Set which plane to analyze. Default is @code{1}.
6536
6537 @item filter
6538 Filter out noisy pixels from @code{bitplane} set above.
6539 Default is disabled.
6540 @end table
6541
6542 @section blackdetect
6543
6544 Detect video intervals that are (almost) completely black. Can be
6545 useful to detect chapter transitions, commercials, or invalid
6546 recordings.
6547
6548 The filter outputs its detection analysis to both the log as well as
6549 frame metadata. If a black segment of at least the specified minimum
6550 duration is found, a line with the start and end timestamps as well
6551 as duration is printed to the log with level @code{info}. In addition,
6552 a log line with level @code{debug} is printed per frame showing the
6553 black amount detected for that frame.
6554
6555 The filter also attaches metadata to the first frame of a black
6556 segment with key @code{lavfi.black_start} and to the first frame
6557 after the black segment ends with key @code{lavfi.black_end}. The
6558 value is the frame's timestamp. This metadata is added regardless
6559 of the minimum duration specified.
6560
6561 The filter accepts the following options:
6562
6563 @table @option
6564 @item black_min_duration, d
6565 Set the minimum detected black duration expressed in seconds. It must
6566 be a non-negative floating point number.
6567
6568 Default value is 2.0.
6569
6570 @item picture_black_ratio_th, pic_th
6571 Set the threshold for considering a picture "black".
6572 Express the minimum value for the ratio:
6573 @example
6574 @var{nb_black_pixels} / @var{nb_pixels}
6575 @end example
6576
6577 for which a picture is considered black.
6578 Default value is 0.98.
6579
6580 @item pixel_black_th, pix_th
6581 Set the threshold for considering a pixel "black".
6582
6583 The threshold expresses the maximum pixel luminance value for which a
6584 pixel is considered "black". The provided value is scaled according to
6585 the following equation:
6586 @example
6587 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6588 @end example
6589
6590 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6591 the input video format, the range is [0-255] for YUV full-range
6592 formats and [16-235] for YUV non full-range formats.
6593
6594 Default value is 0.10.
6595 @end table
6596
6597 The following example sets the maximum pixel threshold to the minimum
6598 value, and detects only black intervals of 2 or more seconds:
6599 @example
6600 blackdetect=d=2:pix_th=0.00
6601 @end example
6602
6603 @section blackframe
6604
6605 Detect frames that are (almost) completely black. Can be useful to
6606 detect chapter transitions or commercials. Output lines consist of
6607 the frame number of the detected frame, the percentage of blackness,
6608 the position in the file if known or -1 and the timestamp in seconds.
6609
6610 In order to display the output lines, you need to set the loglevel at
6611 least to the AV_LOG_INFO value.
6612
6613 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6614 The value represents the percentage of pixels in the picture that
6615 are below the threshold value.
6616
6617 It accepts the following parameters:
6618
6619 @table @option
6620
6621 @item amount
6622 The percentage of the pixels that have to be below the threshold; it defaults to
6623 @code{98}.
6624
6625 @item threshold, thresh
6626 The threshold below which a pixel value is considered black; it defaults to
6627 @code{32}.
6628
6629 @end table
6630
6631 @anchor{blend}
6632 @section blend
6633
6634 Blend two video frames into each other.
6635
6636 The @code{blend} filter takes two input streams and outputs one
6637 stream, the first input is the "top" layer and second input is
6638 "bottom" layer.  By default, the output terminates when the longest input terminates.
6639
6640 The @code{tblend} (time blend) filter takes two consecutive frames
6641 from one single stream, and outputs the result obtained by blending
6642 the new frame on top of the old frame.
6643
6644 A description of the accepted options follows.
6645
6646 @table @option
6647 @item c0_mode
6648 @item c1_mode
6649 @item c2_mode
6650 @item c3_mode
6651 @item all_mode
6652 Set blend mode for specific pixel component or all pixel components in case
6653 of @var{all_mode}. Default value is @code{normal}.
6654
6655 Available values for component modes are:
6656 @table @samp
6657 @item addition
6658 @item grainmerge
6659 @item and
6660 @item average
6661 @item burn
6662 @item darken
6663 @item difference
6664 @item grainextract
6665 @item divide
6666 @item dodge
6667 @item freeze
6668 @item exclusion
6669 @item extremity
6670 @item glow
6671 @item hardlight
6672 @item hardmix
6673 @item heat
6674 @item lighten
6675 @item linearlight
6676 @item multiply
6677 @item multiply128
6678 @item negation
6679 @item normal
6680 @item or
6681 @item overlay
6682 @item phoenix
6683 @item pinlight
6684 @item reflect
6685 @item screen
6686 @item softlight
6687 @item subtract
6688 @item vividlight
6689 @item xor
6690 @end table
6691
6692 @item c0_opacity
6693 @item c1_opacity
6694 @item c2_opacity
6695 @item c3_opacity
6696 @item all_opacity
6697 Set blend opacity for specific pixel component or all pixel components in case
6698 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6699
6700 @item c0_expr
6701 @item c1_expr
6702 @item c2_expr
6703 @item c3_expr
6704 @item all_expr
6705 Set blend expression for specific pixel component or all pixel components in case
6706 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6707
6708 The expressions can use the following variables:
6709
6710 @table @option
6711 @item N
6712 The sequential number of the filtered frame, starting from @code{0}.
6713
6714 @item X
6715 @item Y
6716 the coordinates of the current sample
6717
6718 @item W
6719 @item H
6720 the width and height of currently filtered plane
6721
6722 @item SW
6723 @item SH
6724 Width and height scale for the plane being filtered. It is the
6725 ratio between the dimensions of the current plane to the luma plane,
6726 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6727 the luma plane and @code{0.5,0.5} for the chroma planes.
6728
6729 @item T
6730 Time of the current frame, expressed in seconds.
6731
6732 @item TOP, A
6733 Value of pixel component at current location for first video frame (top layer).
6734
6735 @item BOTTOM, B
6736 Value of pixel component at current location for second video frame (bottom layer).
6737 @end table
6738 @end table
6739
6740 The @code{blend} filter also supports the @ref{framesync} options.
6741
6742 @subsection Examples
6743
6744 @itemize
6745 @item
6746 Apply transition from bottom layer to top layer in first 10 seconds:
6747 @example
6748 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6749 @end example
6750
6751 @item
6752 Apply linear horizontal transition from top layer to bottom layer:
6753 @example
6754 blend=all_expr='A*(X/W)+B*(1-X/W)'
6755 @end example
6756
6757 @item
6758 Apply 1x1 checkerboard effect:
6759 @example
6760 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6761 @end example
6762
6763 @item
6764 Apply uncover left effect:
6765 @example
6766 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6767 @end example
6768
6769 @item
6770 Apply uncover down effect:
6771 @example
6772 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6773 @end example
6774
6775 @item
6776 Apply uncover up-left effect:
6777 @example
6778 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6779 @end example
6780
6781 @item
6782 Split diagonally video and shows top and bottom layer on each side:
6783 @example
6784 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6785 @end example
6786
6787 @item
6788 Display differences between the current and the previous frame:
6789 @example
6790 tblend=all_mode=grainextract
6791 @end example
6792 @end itemize
6793
6794 @section bm3d
6795
6796 Denoise frames using Block-Matching 3D algorithm.
6797
6798 The filter accepts the following options.
6799
6800 @table @option
6801 @item sigma
6802 Set denoising strength. Default value is 1.
6803 Allowed range is from 0 to 999.9.
6804 The denoising algorithm is very sensitive to sigma, so adjust it
6805 according to the source.
6806
6807 @item block
6808 Set local patch size. This sets dimensions in 2D.
6809
6810 @item bstep
6811 Set sliding step for processing blocks. Default value is 4.
6812 Allowed range is from 1 to 64.
6813 Smaller values allows processing more reference blocks and is slower.
6814
6815 @item group
6816 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6817 When set to 1, no block matching is done. Larger values allows more blocks
6818 in single group.
6819 Allowed range is from 1 to 256.
6820
6821 @item range
6822 Set radius for search block matching. Default is 9.
6823 Allowed range is from 1 to INT32_MAX.
6824
6825 @item mstep
6826 Set step between two search locations for block matching. Default is 1.
6827 Allowed range is from 1 to 64. Smaller is slower.
6828
6829 @item thmse
6830 Set threshold of mean square error for block matching. Valid range is 0 to
6831 INT32_MAX.
6832
6833 @item hdthr
6834 Set thresholding parameter for hard thresholding in 3D transformed domain.
6835 Larger values results in stronger hard-thresholding filtering in frequency
6836 domain.
6837
6838 @item estim
6839 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6840 Default is @code{basic}.
6841
6842 @item ref
6843 If enabled, filter will use 2nd stream for block matching.
6844 Default is disabled for @code{basic} value of @var{estim} option,
6845 and always enabled if value of @var{estim} is @code{final}.
6846
6847 @item planes
6848 Set planes to filter. Default is all available except alpha.
6849 @end table
6850
6851 @subsection Examples
6852
6853 @itemize
6854 @item
6855 Basic filtering with bm3d:
6856 @example
6857 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6858 @end example
6859
6860 @item
6861 Same as above, but filtering only luma:
6862 @example
6863 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6864 @end example
6865
6866 @item
6867 Same as above, but with both estimation modes:
6868 @example
6869 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
6870 @end example
6871
6872 @item
6873 Same as above, but prefilter with @ref{nlmeans} filter instead:
6874 @example
6875 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
6876 @end example
6877 @end itemize
6878
6879 @section boxblur
6880
6881 Apply a boxblur algorithm to the input video.
6882
6883 It accepts the following parameters:
6884
6885 @table @option
6886
6887 @item luma_radius, lr
6888 @item luma_power, lp
6889 @item chroma_radius, cr
6890 @item chroma_power, cp
6891 @item alpha_radius, ar
6892 @item alpha_power, ap
6893
6894 @end table
6895
6896 A description of the accepted options follows.
6897
6898 @table @option
6899 @item luma_radius, lr
6900 @item chroma_radius, cr
6901 @item alpha_radius, ar
6902 Set an expression for the box radius in pixels used for blurring the
6903 corresponding input plane.
6904
6905 The radius value must be a non-negative number, and must not be
6906 greater than the value of the expression @code{min(w,h)/2} for the
6907 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6908 planes.
6909
6910 Default value for @option{luma_radius} is "2". If not specified,
6911 @option{chroma_radius} and @option{alpha_radius} default to the
6912 corresponding value set for @option{luma_radius}.
6913
6914 The expressions can contain the following constants:
6915 @table @option
6916 @item w
6917 @item h
6918 The input width and height in pixels.
6919
6920 @item cw
6921 @item ch
6922 The input chroma image width and height in pixels.
6923
6924 @item hsub
6925 @item vsub
6926 The horizontal and vertical chroma subsample values. For example, for the
6927 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6928 @end table
6929
6930 @item luma_power, lp
6931 @item chroma_power, cp
6932 @item alpha_power, ap
6933 Specify how many times the boxblur filter is applied to the
6934 corresponding plane.
6935
6936 Default value for @option{luma_power} is 2. If not specified,
6937 @option{chroma_power} and @option{alpha_power} default to the
6938 corresponding value set for @option{luma_power}.
6939
6940 A value of 0 will disable the effect.
6941 @end table
6942
6943 @subsection Examples
6944
6945 @itemize
6946 @item
6947 Apply a boxblur filter with the luma, chroma, and alpha radii
6948 set to 2:
6949 @example
6950 boxblur=luma_radius=2:luma_power=1
6951 boxblur=2:1
6952 @end example
6953
6954 @item
6955 Set the luma radius to 2, and alpha and chroma radius to 0:
6956 @example
6957 boxblur=2:1:cr=0:ar=0
6958 @end example
6959
6960 @item
6961 Set the luma and chroma radii to a fraction of the video dimension:
6962 @example
6963 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6964 @end example
6965 @end itemize
6966
6967 @section bwdif
6968
6969 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6970 Deinterlacing Filter").
6971
6972 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6973 interpolation algorithms.
6974 It accepts the following parameters:
6975
6976 @table @option
6977 @item mode
6978 The interlacing mode to adopt. It accepts one of the following values:
6979
6980 @table @option
6981 @item 0, send_frame
6982 Output one frame for each frame.
6983 @item 1, send_field
6984 Output one frame for each field.
6985 @end table
6986
6987 The default value is @code{send_field}.
6988
6989 @item parity
6990 The picture field parity assumed for the input interlaced video. It accepts one
6991 of the following values:
6992
6993 @table @option
6994 @item 0, tff
6995 Assume the top field is first.
6996 @item 1, bff
6997 Assume the bottom field is first.
6998 @item -1, auto
6999 Enable automatic detection of field parity.
7000 @end table
7001
7002 The default value is @code{auto}.
7003 If the interlacing is unknown or the decoder does not export this information,
7004 top field first will be assumed.
7005
7006 @item deint
7007 Specify which frames to deinterlace. Accepts one of the following
7008 values:
7009
7010 @table @option
7011 @item 0, all
7012 Deinterlace all frames.
7013 @item 1, interlaced
7014 Only deinterlace frames marked as interlaced.
7015 @end table
7016
7017 The default value is @code{all}.
7018 @end table
7019
7020 @section cas
7021
7022 Apply Contrast Adaptive Sharpen filter to video stream.
7023
7024 The filter accepts the following options:
7025
7026 @table @option
7027 @item strength
7028 Set the sharpening strength. Default value is 0.
7029
7030 @item planes
7031 Set planes to filter. Default value is to filter all
7032 planes except alpha plane.
7033 @end table
7034
7035 @section chromahold
7036 Remove all color information for all colors except for certain one.
7037
7038 The filter accepts the following options:
7039
7040 @table @option
7041 @item color
7042 The color which will not be replaced with neutral chroma.
7043
7044 @item similarity
7045 Similarity percentage with the above color.
7046 0.01 matches only the exact key color, while 1.0 matches everything.
7047
7048 @item blend
7049 Blend percentage.
7050 0.0 makes pixels either fully gray, or not gray at all.
7051 Higher values result in more preserved color.
7052
7053 @item yuv
7054 Signals that the color passed is already in YUV instead of RGB.
7055
7056 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7057 This can be used to pass exact YUV values as hexadecimal numbers.
7058 @end table
7059
7060 @subsection Commands
7061 This filter supports same @ref{commands} as options.
7062 The command accepts the same syntax of the corresponding option.
7063
7064 If the specified expression is not valid, it is kept at its current
7065 value.
7066
7067 @section chromakey
7068 YUV colorspace color/chroma keying.
7069
7070 The filter accepts the following options:
7071
7072 @table @option
7073 @item color
7074 The color which will be replaced with transparency.
7075
7076 @item similarity
7077 Similarity percentage with the key color.
7078
7079 0.01 matches only the exact key color, while 1.0 matches everything.
7080
7081 @item blend
7082 Blend percentage.
7083
7084 0.0 makes pixels either fully transparent, or not transparent at all.
7085
7086 Higher values result in semi-transparent pixels, with a higher transparency
7087 the more similar the pixels color is to the key color.
7088
7089 @item yuv
7090 Signals that the color passed is already in YUV instead of RGB.
7091
7092 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7093 This can be used to pass exact YUV values as hexadecimal numbers.
7094 @end table
7095
7096 @subsection Commands
7097 This filter supports same @ref{commands} as options.
7098 The command accepts the same syntax of the corresponding option.
7099
7100 If the specified expression is not valid, it is kept at its current
7101 value.
7102
7103 @subsection Examples
7104
7105 @itemize
7106 @item
7107 Make every green pixel in the input image transparent:
7108 @example
7109 ffmpeg -i input.png -vf chromakey=green out.png
7110 @end example
7111
7112 @item
7113 Overlay a greenscreen-video on top of a static black background.
7114 @example
7115 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
7116 @end example
7117 @end itemize
7118
7119 @section chromashift
7120 Shift chroma pixels horizontally and/or vertically.
7121
7122 The filter accepts the following options:
7123 @table @option
7124 @item cbh
7125 Set amount to shift chroma-blue horizontally.
7126 @item cbv
7127 Set amount to shift chroma-blue vertically.
7128 @item crh
7129 Set amount to shift chroma-red horizontally.
7130 @item crv
7131 Set amount to shift chroma-red vertically.
7132 @item edge
7133 Set edge mode, can be @var{smear}, default, or @var{warp}.
7134 @end table
7135
7136 @subsection Commands
7137
7138 This filter supports the all above options as @ref{commands}.
7139
7140 @section ciescope
7141
7142 Display CIE color diagram with pixels overlaid onto it.
7143
7144 The filter accepts the following options:
7145
7146 @table @option
7147 @item system
7148 Set color system.
7149
7150 @table @samp
7151 @item ntsc, 470m
7152 @item ebu, 470bg
7153 @item smpte
7154 @item 240m
7155 @item apple
7156 @item widergb
7157 @item cie1931
7158 @item rec709, hdtv
7159 @item uhdtv, rec2020
7160 @item dcip3
7161 @end table
7162
7163 @item cie
7164 Set CIE system.
7165
7166 @table @samp
7167 @item xyy
7168 @item ucs
7169 @item luv
7170 @end table
7171
7172 @item gamuts
7173 Set what gamuts to draw.
7174
7175 See @code{system} option for available values.
7176
7177 @item size, s
7178 Set ciescope size, by default set to 512.
7179
7180 @item intensity, i
7181 Set intensity used to map input pixel values to CIE diagram.
7182
7183 @item contrast
7184 Set contrast used to draw tongue colors that are out of active color system gamut.
7185
7186 @item corrgamma
7187 Correct gamma displayed on scope, by default enabled.
7188
7189 @item showwhite
7190 Show white point on CIE diagram, by default disabled.
7191
7192 @item gamma
7193 Set input gamma. Used only with XYZ input color space.
7194 @end table
7195
7196 @section codecview
7197
7198 Visualize information exported by some codecs.
7199
7200 Some codecs can export information through frames using side-data or other
7201 means. For example, some MPEG based codecs export motion vectors through the
7202 @var{export_mvs} flag in the codec @option{flags2} option.
7203
7204 The filter accepts the following option:
7205
7206 @table @option
7207 @item mv
7208 Set motion vectors to visualize.
7209
7210 Available flags for @var{mv} are:
7211
7212 @table @samp
7213 @item pf
7214 forward predicted MVs of P-frames
7215 @item bf
7216 forward predicted MVs of B-frames
7217 @item bb
7218 backward predicted MVs of B-frames
7219 @end table
7220
7221 @item qp
7222 Display quantization parameters using the chroma planes.
7223
7224 @item mv_type, mvt
7225 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7226
7227 Available flags for @var{mv_type} are:
7228
7229 @table @samp
7230 @item fp
7231 forward predicted MVs
7232 @item bp
7233 backward predicted MVs
7234 @end table
7235
7236 @item frame_type, ft
7237 Set frame type to visualize motion vectors of.
7238
7239 Available flags for @var{frame_type} are:
7240
7241 @table @samp
7242 @item if
7243 intra-coded frames (I-frames)
7244 @item pf
7245 predicted frames (P-frames)
7246 @item bf
7247 bi-directionally predicted frames (B-frames)
7248 @end table
7249 @end table
7250
7251 @subsection Examples
7252
7253 @itemize
7254 @item
7255 Visualize forward predicted MVs of all frames using @command{ffplay}:
7256 @example
7257 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7258 @end example
7259
7260 @item
7261 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7262 @example
7263 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7264 @end example
7265 @end itemize
7266
7267 @section colorbalance
7268 Modify intensity of primary colors (red, green and blue) of input frames.
7269
7270 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7271 regions for the red-cyan, green-magenta or blue-yellow balance.
7272
7273 A positive adjustment value shifts the balance towards the primary color, a negative
7274 value towards the complementary color.
7275
7276 The filter accepts the following options:
7277
7278 @table @option
7279 @item rs
7280 @item gs
7281 @item bs
7282 Adjust red, green and blue shadows (darkest pixels).
7283
7284 @item rm
7285 @item gm
7286 @item bm
7287 Adjust red, green and blue midtones (medium pixels).
7288
7289 @item rh
7290 @item gh
7291 @item bh
7292 Adjust red, green and blue highlights (brightest pixels).
7293
7294 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7295
7296 @item pl
7297 Preserve lightness when changing color balance. Default is disabled.
7298 @end table
7299
7300 @subsection Examples
7301
7302 @itemize
7303 @item
7304 Add red color cast to shadows:
7305 @example
7306 colorbalance=rs=.3
7307 @end example
7308 @end itemize
7309
7310 @subsection Commands
7311
7312 This filter supports the all above options as @ref{commands}.
7313
7314 @section colorchannelmixer
7315
7316 Adjust video input frames by re-mixing color channels.
7317
7318 This filter modifies a color channel by adding the values associated to
7319 the other channels of the same pixels. For example if the value to
7320 modify is red, the output value will be:
7321 @example
7322 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7323 @end example
7324
7325 The filter accepts the following options:
7326
7327 @table @option
7328 @item rr
7329 @item rg
7330 @item rb
7331 @item ra
7332 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7333 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7334
7335 @item gr
7336 @item gg
7337 @item gb
7338 @item ga
7339 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7340 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7341
7342 @item br
7343 @item bg
7344 @item bb
7345 @item ba
7346 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7347 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7348
7349 @item ar
7350 @item ag
7351 @item ab
7352 @item aa
7353 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7354 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7355
7356 Allowed ranges for options are @code{[-2.0, 2.0]}.
7357 @end table
7358
7359 @subsection Examples
7360
7361 @itemize
7362 @item
7363 Convert source to grayscale:
7364 @example
7365 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7366 @end example
7367 @item
7368 Simulate sepia tones:
7369 @example
7370 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7371 @end example
7372 @end itemize
7373
7374 @subsection Commands
7375
7376 This filter supports the all above options as @ref{commands}.
7377
7378 @section colorkey
7379 RGB colorspace color keying.
7380
7381 The filter accepts the following options:
7382
7383 @table @option
7384 @item color
7385 The color which will be replaced with transparency.
7386
7387 @item similarity
7388 Similarity percentage with the key color.
7389
7390 0.01 matches only the exact key color, while 1.0 matches everything.
7391
7392 @item blend
7393 Blend percentage.
7394
7395 0.0 makes pixels either fully transparent, or not transparent at all.
7396
7397 Higher values result in semi-transparent pixels, with a higher transparency
7398 the more similar the pixels color is to the key color.
7399 @end table
7400
7401 @subsection Examples
7402
7403 @itemize
7404 @item
7405 Make every green pixel in the input image transparent:
7406 @example
7407 ffmpeg -i input.png -vf colorkey=green out.png
7408 @end example
7409
7410 @item
7411 Overlay a greenscreen-video on top of a static background image.
7412 @example
7413 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
7414 @end example
7415 @end itemize
7416
7417 @subsection Commands
7418 This filter supports same @ref{commands} as options.
7419 The command accepts the same syntax of the corresponding option.
7420
7421 If the specified expression is not valid, it is kept at its current
7422 value.
7423
7424 @section colorhold
7425 Remove all color information for all RGB colors except for certain one.
7426
7427 The filter accepts the following options:
7428
7429 @table @option
7430 @item color
7431 The color which will not be replaced with neutral gray.
7432
7433 @item similarity
7434 Similarity percentage with the above color.
7435 0.01 matches only the exact key color, while 1.0 matches everything.
7436
7437 @item blend
7438 Blend percentage. 0.0 makes pixels fully gray.
7439 Higher values result in more preserved color.
7440 @end table
7441
7442 @subsection Commands
7443 This filter supports same @ref{commands} as options.
7444 The command accepts the same syntax of the corresponding option.
7445
7446 If the specified expression is not valid, it is kept at its current
7447 value.
7448
7449 @section colorlevels
7450
7451 Adjust video input frames using levels.
7452
7453 The filter accepts the following options:
7454
7455 @table @option
7456 @item rimin
7457 @item gimin
7458 @item bimin
7459 @item aimin
7460 Adjust red, green, blue and alpha input black point.
7461 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7462
7463 @item rimax
7464 @item gimax
7465 @item bimax
7466 @item aimax
7467 Adjust red, green, blue and alpha input white point.
7468 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7469
7470 Input levels are used to lighten highlights (bright tones), darken shadows
7471 (dark tones), change the balance of bright and dark tones.
7472
7473 @item romin
7474 @item gomin
7475 @item bomin
7476 @item aomin
7477 Adjust red, green, blue and alpha output black point.
7478 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7479
7480 @item romax
7481 @item gomax
7482 @item bomax
7483 @item aomax
7484 Adjust red, green, blue and alpha output white point.
7485 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7486
7487 Output levels allows manual selection of a constrained output level range.
7488 @end table
7489
7490 @subsection Examples
7491
7492 @itemize
7493 @item
7494 Make video output darker:
7495 @example
7496 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7497 @end example
7498
7499 @item
7500 Increase contrast:
7501 @example
7502 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7503 @end example
7504
7505 @item
7506 Make video output lighter:
7507 @example
7508 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7509 @end example
7510
7511 @item
7512 Increase brightness:
7513 @example
7514 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7515 @end example
7516 @end itemize
7517
7518 @subsection Commands
7519
7520 This filter supports the all above options as @ref{commands}.
7521
7522 @section colormatrix
7523
7524 Convert color matrix.
7525
7526 The filter accepts the following options:
7527
7528 @table @option
7529 @item src
7530 @item dst
7531 Specify the source and destination color matrix. Both values must be
7532 specified.
7533
7534 The accepted values are:
7535 @table @samp
7536 @item bt709
7537 BT.709
7538
7539 @item fcc
7540 FCC
7541
7542 @item bt601
7543 BT.601
7544
7545 @item bt470
7546 BT.470
7547
7548 @item bt470bg
7549 BT.470BG
7550
7551 @item smpte170m
7552 SMPTE-170M
7553
7554 @item smpte240m
7555 SMPTE-240M
7556
7557 @item bt2020
7558 BT.2020
7559 @end table
7560 @end table
7561
7562 For example to convert from BT.601 to SMPTE-240M, use the command:
7563 @example
7564 colormatrix=bt601:smpte240m
7565 @end example
7566
7567 @section colorspace
7568
7569 Convert colorspace, transfer characteristics or color primaries.
7570 Input video needs to have an even size.
7571
7572 The filter accepts the following options:
7573
7574 @table @option
7575 @anchor{all}
7576 @item all
7577 Specify all color properties at once.
7578
7579 The accepted values are:
7580 @table @samp
7581 @item bt470m
7582 BT.470M
7583
7584 @item bt470bg
7585 BT.470BG
7586
7587 @item bt601-6-525
7588 BT.601-6 525
7589
7590 @item bt601-6-625
7591 BT.601-6 625
7592
7593 @item bt709
7594 BT.709
7595
7596 @item smpte170m
7597 SMPTE-170M
7598
7599 @item smpte240m
7600 SMPTE-240M
7601
7602 @item bt2020
7603 BT.2020
7604
7605 @end table
7606
7607 @anchor{space}
7608 @item space
7609 Specify output colorspace.
7610
7611 The accepted values are:
7612 @table @samp
7613 @item bt709
7614 BT.709
7615
7616 @item fcc
7617 FCC
7618
7619 @item bt470bg
7620 BT.470BG or BT.601-6 625
7621
7622 @item smpte170m
7623 SMPTE-170M or BT.601-6 525
7624
7625 @item smpte240m
7626 SMPTE-240M
7627
7628 @item ycgco
7629 YCgCo
7630
7631 @item bt2020ncl
7632 BT.2020 with non-constant luminance
7633
7634 @end table
7635
7636 @anchor{trc}
7637 @item trc
7638 Specify output transfer characteristics.
7639
7640 The accepted values are:
7641 @table @samp
7642 @item bt709
7643 BT.709
7644
7645 @item bt470m
7646 BT.470M
7647
7648 @item bt470bg
7649 BT.470BG
7650
7651 @item gamma22
7652 Constant gamma of 2.2
7653
7654 @item gamma28
7655 Constant gamma of 2.8
7656
7657 @item smpte170m
7658 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7659
7660 @item smpte240m
7661 SMPTE-240M
7662
7663 @item srgb
7664 SRGB
7665
7666 @item iec61966-2-1
7667 iec61966-2-1
7668
7669 @item iec61966-2-4
7670 iec61966-2-4
7671
7672 @item xvycc
7673 xvycc
7674
7675 @item bt2020-10
7676 BT.2020 for 10-bits content
7677
7678 @item bt2020-12
7679 BT.2020 for 12-bits content
7680
7681 @end table
7682
7683 @anchor{primaries}
7684 @item primaries
7685 Specify output color primaries.
7686
7687 The accepted values are:
7688 @table @samp
7689 @item bt709
7690 BT.709
7691
7692 @item bt470m
7693 BT.470M
7694
7695 @item bt470bg
7696 BT.470BG or BT.601-6 625
7697
7698 @item smpte170m
7699 SMPTE-170M or BT.601-6 525
7700
7701 @item smpte240m
7702 SMPTE-240M
7703
7704 @item film
7705 film
7706
7707 @item smpte431
7708 SMPTE-431
7709
7710 @item smpte432
7711 SMPTE-432
7712
7713 @item bt2020
7714 BT.2020
7715
7716 @item jedec-p22
7717 JEDEC P22 phosphors
7718
7719 @end table
7720
7721 @anchor{range}
7722 @item range
7723 Specify output color range.
7724
7725 The accepted values are:
7726 @table @samp
7727 @item tv
7728 TV (restricted) range
7729
7730 @item mpeg
7731 MPEG (restricted) range
7732
7733 @item pc
7734 PC (full) range
7735
7736 @item jpeg
7737 JPEG (full) range
7738
7739 @end table
7740
7741 @item format
7742 Specify output color format.
7743
7744 The accepted values are:
7745 @table @samp
7746 @item yuv420p
7747 YUV 4:2:0 planar 8-bits
7748
7749 @item yuv420p10
7750 YUV 4:2:0 planar 10-bits
7751
7752 @item yuv420p12
7753 YUV 4:2:0 planar 12-bits
7754
7755 @item yuv422p
7756 YUV 4:2:2 planar 8-bits
7757
7758 @item yuv422p10
7759 YUV 4:2:2 planar 10-bits
7760
7761 @item yuv422p12
7762 YUV 4:2:2 planar 12-bits
7763
7764 @item yuv444p
7765 YUV 4:4:4 planar 8-bits
7766
7767 @item yuv444p10
7768 YUV 4:4:4 planar 10-bits
7769
7770 @item yuv444p12
7771 YUV 4:4:4 planar 12-bits
7772
7773 @end table
7774
7775 @item fast
7776 Do a fast conversion, which skips gamma/primary correction. This will take
7777 significantly less CPU, but will be mathematically incorrect. To get output
7778 compatible with that produced by the colormatrix filter, use fast=1.
7779
7780 @item dither
7781 Specify dithering mode.
7782
7783 The accepted values are:
7784 @table @samp
7785 @item none
7786 No dithering
7787
7788 @item fsb
7789 Floyd-Steinberg dithering
7790 @end table
7791
7792 @item wpadapt
7793 Whitepoint adaptation mode.
7794
7795 The accepted values are:
7796 @table @samp
7797 @item bradford
7798 Bradford whitepoint adaptation
7799
7800 @item vonkries
7801 von Kries whitepoint adaptation
7802
7803 @item identity
7804 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7805 @end table
7806
7807 @item iall
7808 Override all input properties at once. Same accepted values as @ref{all}.
7809
7810 @item ispace
7811 Override input colorspace. Same accepted values as @ref{space}.
7812
7813 @item iprimaries
7814 Override input color primaries. Same accepted values as @ref{primaries}.
7815
7816 @item itrc
7817 Override input transfer characteristics. Same accepted values as @ref{trc}.
7818
7819 @item irange
7820 Override input color range. Same accepted values as @ref{range}.
7821
7822 @end table
7823
7824 The filter converts the transfer characteristics, color space and color
7825 primaries to the specified user values. The output value, if not specified,
7826 is set to a default value based on the "all" property. If that property is
7827 also not specified, the filter will log an error. The output color range and
7828 format default to the same value as the input color range and format. The
7829 input transfer characteristics, color space, color primaries and color range
7830 should be set on the input data. If any of these are missing, the filter will
7831 log an error and no conversion will take place.
7832
7833 For example to convert the input to SMPTE-240M, use the command:
7834 @example
7835 colorspace=smpte240m
7836 @end example
7837
7838 @section convolution
7839
7840 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7841
7842 The filter accepts the following options:
7843
7844 @table @option
7845 @item 0m
7846 @item 1m
7847 @item 2m
7848 @item 3m
7849 Set matrix for each plane.
7850 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7851 and from 1 to 49 odd number of signed integers in @var{row} mode.
7852
7853 @item 0rdiv
7854 @item 1rdiv
7855 @item 2rdiv
7856 @item 3rdiv
7857 Set multiplier for calculated value for each plane.
7858 If unset or 0, it will be sum of all matrix elements.
7859
7860 @item 0bias
7861 @item 1bias
7862 @item 2bias
7863 @item 3bias
7864 Set bias for each plane. This value is added to the result of the multiplication.
7865 Useful for making the overall image brighter or darker. Default is 0.0.
7866
7867 @item 0mode
7868 @item 1mode
7869 @item 2mode
7870 @item 3mode
7871 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7872 Default is @var{square}.
7873 @end table
7874
7875 @subsection Examples
7876
7877 @itemize
7878 @item
7879 Apply sharpen:
7880 @example
7881 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"
7882 @end example
7883
7884 @item
7885 Apply blur:
7886 @example
7887 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"
7888 @end example
7889
7890 @item
7891 Apply edge enhance:
7892 @example
7893 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"
7894 @end example
7895
7896 @item
7897 Apply edge detect:
7898 @example
7899 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"
7900 @end example
7901
7902 @item
7903 Apply laplacian edge detector which includes diagonals:
7904 @example
7905 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"
7906 @end example
7907
7908 @item
7909 Apply emboss:
7910 @example
7911 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"
7912 @end example
7913 @end itemize
7914
7915 @section convolve
7916
7917 Apply 2D convolution of video stream in frequency domain using second stream
7918 as impulse.
7919
7920 The filter accepts the following options:
7921
7922 @table @option
7923 @item planes
7924 Set which planes to process.
7925
7926 @item impulse
7927 Set which impulse video frames will be processed, can be @var{first}
7928 or @var{all}. Default is @var{all}.
7929 @end table
7930
7931 The @code{convolve} filter also supports the @ref{framesync} options.
7932
7933 @section copy
7934
7935 Copy the input video source unchanged to the output. This is mainly useful for
7936 testing purposes.
7937
7938 @anchor{coreimage}
7939 @section coreimage
7940 Video filtering on GPU using Apple's CoreImage API on OSX.
7941
7942 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7943 processed by video hardware. However, software-based OpenGL implementations
7944 exist which means there is no guarantee for hardware processing. It depends on
7945 the respective OSX.
7946
7947 There are many filters and image generators provided by Apple that come with a
7948 large variety of options. The filter has to be referenced by its name along
7949 with its options.
7950
7951 The coreimage filter accepts the following options:
7952 @table @option
7953 @item list_filters
7954 List all available filters and generators along with all their respective
7955 options as well as possible minimum and maximum values along with the default
7956 values.
7957 @example
7958 list_filters=true
7959 @end example
7960
7961 @item filter
7962 Specify all filters by their respective name and options.
7963 Use @var{list_filters} to determine all valid filter names and options.
7964 Numerical options are specified by a float value and are automatically clamped
7965 to their respective value range.  Vector and color options have to be specified
7966 by a list of space separated float values. Character escaping has to be done.
7967 A special option name @code{default} is available to use default options for a
7968 filter.
7969
7970 It is required to specify either @code{default} or at least one of the filter options.
7971 All omitted options are used with their default values.
7972 The syntax of the filter string is as follows:
7973 @example
7974 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7975 @end example
7976
7977 @item output_rect
7978 Specify a rectangle where the output of the filter chain is copied into the
7979 input image. It is given by a list of space separated float values:
7980 @example
7981 output_rect=x\ y\ width\ height
7982 @end example
7983 If not given, the output rectangle equals the dimensions of the input image.
7984 The output rectangle is automatically cropped at the borders of the input
7985 image. Negative values are valid for each component.
7986 @example
7987 output_rect=25\ 25\ 100\ 100
7988 @end example
7989 @end table
7990
7991 Several filters can be chained for successive processing without GPU-HOST
7992 transfers allowing for fast processing of complex filter chains.
7993 Currently, only filters with zero (generators) or exactly one (filters) input
7994 image and one output image are supported. Also, transition filters are not yet
7995 usable as intended.
7996
7997 Some filters generate output images with additional padding depending on the
7998 respective filter kernel. The padding is automatically removed to ensure the
7999 filter output has the same size as the input image.
8000
8001 For image generators, the size of the output image is determined by the
8002 previous output image of the filter chain or the input image of the whole
8003 filterchain, respectively. The generators do not use the pixel information of
8004 this image to generate their output. However, the generated output is
8005 blended onto this image, resulting in partial or complete coverage of the
8006 output image.
8007
8008 The @ref{coreimagesrc} video source can be used for generating input images
8009 which are directly fed into the filter chain. By using it, providing input
8010 images by another video source or an input video is not required.
8011
8012 @subsection Examples
8013
8014 @itemize
8015
8016 @item
8017 List all filters available:
8018 @example
8019 coreimage=list_filters=true
8020 @end example
8021
8022 @item
8023 Use the CIBoxBlur filter with default options to blur an image:
8024 @example
8025 coreimage=filter=CIBoxBlur@@default
8026 @end example
8027
8028 @item
8029 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8030 its center at 100x100 and a radius of 50 pixels:
8031 @example
8032 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8033 @end example
8034
8035 @item
8036 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8037 given as complete and escaped command-line for Apple's standard bash shell:
8038 @example
8039 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8040 @end example
8041 @end itemize
8042
8043 @section cover_rect
8044
8045 Cover a rectangular object
8046
8047 It accepts the following options:
8048
8049 @table @option
8050 @item cover
8051 Filepath of the optional cover image, needs to be in yuv420.
8052
8053 @item mode
8054 Set covering mode.
8055
8056 It accepts the following values:
8057 @table @samp
8058 @item cover
8059 cover it by the supplied image
8060 @item blur
8061 cover it by interpolating the surrounding pixels
8062 @end table
8063
8064 Default value is @var{blur}.
8065 @end table
8066
8067 @subsection Examples
8068
8069 @itemize
8070 @item
8071 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8072 @example
8073 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8074 @end example
8075 @end itemize
8076
8077 @section crop
8078
8079 Crop the input video to given dimensions.
8080
8081 It accepts the following parameters:
8082
8083 @table @option
8084 @item w, out_w
8085 The width of the output video. It defaults to @code{iw}.
8086 This expression is evaluated only once during the filter
8087 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8088
8089 @item h, out_h
8090 The height of the output video. It defaults to @code{ih}.
8091 This expression is evaluated only once during the filter
8092 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8093
8094 @item x
8095 The horizontal position, in the input video, of the left edge of the output
8096 video. It defaults to @code{(in_w-out_w)/2}.
8097 This expression is evaluated per-frame.
8098
8099 @item y
8100 The vertical position, in the input video, of the top edge of the output video.
8101 It defaults to @code{(in_h-out_h)/2}.
8102 This expression is evaluated per-frame.
8103
8104 @item keep_aspect
8105 If set to 1 will force the output display aspect ratio
8106 to be the same of the input, by changing the output sample aspect
8107 ratio. It defaults to 0.
8108
8109 @item exact
8110 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8111 width/height/x/y as specified and will not be rounded to nearest smaller value.
8112 It defaults to 0.
8113 @end table
8114
8115 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8116 expressions containing the following constants:
8117
8118 @table @option
8119 @item x
8120 @item y
8121 The computed values for @var{x} and @var{y}. They are evaluated for
8122 each new frame.
8123
8124 @item in_w
8125 @item in_h
8126 The input width and height.
8127
8128 @item iw
8129 @item ih
8130 These are the same as @var{in_w} and @var{in_h}.
8131
8132 @item out_w
8133 @item out_h
8134 The output (cropped) width and height.
8135
8136 @item ow
8137 @item oh
8138 These are the same as @var{out_w} and @var{out_h}.
8139
8140 @item a
8141 same as @var{iw} / @var{ih}
8142
8143 @item sar
8144 input sample aspect ratio
8145
8146 @item dar
8147 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8148
8149 @item hsub
8150 @item vsub
8151 horizontal and vertical chroma subsample values. For example for the
8152 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8153
8154 @item n
8155 The number of the input frame, starting from 0.
8156
8157 @item pos
8158 the position in the file of the input frame, NAN if unknown
8159
8160 @item t
8161 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8162
8163 @end table
8164
8165 The expression for @var{out_w} may depend on the value of @var{out_h},
8166 and the expression for @var{out_h} may depend on @var{out_w}, but they
8167 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8168 evaluated after @var{out_w} and @var{out_h}.
8169
8170 The @var{x} and @var{y} parameters specify the expressions for the
8171 position of the top-left corner of the output (non-cropped) area. They
8172 are evaluated for each frame. If the evaluated value is not valid, it
8173 is approximated to the nearest valid value.
8174
8175 The expression for @var{x} may depend on @var{y}, and the expression
8176 for @var{y} may depend on @var{x}.
8177
8178 @subsection Examples
8179
8180 @itemize
8181 @item
8182 Crop area with size 100x100 at position (12,34).
8183 @example
8184 crop=100:100:12:34
8185 @end example
8186
8187 Using named options, the example above becomes:
8188 @example
8189 crop=w=100:h=100:x=12:y=34
8190 @end example
8191
8192 @item
8193 Crop the central input area with size 100x100:
8194 @example
8195 crop=100:100
8196 @end example
8197
8198 @item
8199 Crop the central input area with size 2/3 of the input video:
8200 @example
8201 crop=2/3*in_w:2/3*in_h
8202 @end example
8203
8204 @item
8205 Crop the input video central square:
8206 @example
8207 crop=out_w=in_h
8208 crop=in_h
8209 @end example
8210
8211 @item
8212 Delimit the rectangle with the top-left corner placed at position
8213 100:100 and the right-bottom corner corresponding to the right-bottom
8214 corner of the input image.
8215 @example
8216 crop=in_w-100:in_h-100:100:100
8217 @end example
8218
8219 @item
8220 Crop 10 pixels from the left and right borders, and 20 pixels from
8221 the top and bottom borders
8222 @example
8223 crop=in_w-2*10:in_h-2*20
8224 @end example
8225
8226 @item
8227 Keep only the bottom right quarter of the input image:
8228 @example
8229 crop=in_w/2:in_h/2:in_w/2:in_h/2
8230 @end example
8231
8232 @item
8233 Crop height for getting Greek harmony:
8234 @example
8235 crop=in_w:1/PHI*in_w
8236 @end example
8237
8238 @item
8239 Apply trembling effect:
8240 @example
8241 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)
8242 @end example
8243
8244 @item
8245 Apply erratic camera effect depending on timestamp:
8246 @example
8247 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)"
8248 @end example
8249
8250 @item
8251 Set x depending on the value of y:
8252 @example
8253 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8254 @end example
8255 @end itemize
8256
8257 @subsection Commands
8258
8259 This filter supports the following commands:
8260 @table @option
8261 @item w, out_w
8262 @item h, out_h
8263 @item x
8264 @item y
8265 Set width/height of the output video and the horizontal/vertical position
8266 in the input video.
8267 The command accepts the same syntax of the corresponding option.
8268
8269 If the specified expression is not valid, it is kept at its current
8270 value.
8271 @end table
8272
8273 @section cropdetect
8274
8275 Auto-detect the crop size.
8276
8277 It calculates the necessary cropping parameters and prints the
8278 recommended parameters via the logging system. The detected dimensions
8279 correspond to the non-black area of the input video.
8280
8281 It accepts the following parameters:
8282
8283 @table @option
8284
8285 @item limit
8286 Set higher black value threshold, which can be optionally specified
8287 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8288 value greater to the set value is considered non-black. It defaults to 24.
8289 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8290 on the bitdepth of the pixel format.
8291
8292 @item round
8293 The value which the width/height should be divisible by. It defaults to
8294 16. The offset is automatically adjusted to center the video. Use 2 to
8295 get only even dimensions (needed for 4:2:2 video). 16 is best when
8296 encoding to most video codecs.
8297
8298 @item reset_count, reset
8299 Set the counter that determines after how many frames cropdetect will
8300 reset the previously detected largest video area and start over to
8301 detect the current optimal crop area. Default value is 0.
8302
8303 This can be useful when channel logos distort the video area. 0
8304 indicates 'never reset', and returns the largest area encountered during
8305 playback.
8306 @end table
8307
8308 @anchor{cue}
8309 @section cue
8310
8311 Delay video filtering until a given wallclock timestamp. The filter first
8312 passes on @option{preroll} amount of frames, then it buffers at most
8313 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8314 it forwards the buffered frames and also any subsequent frames coming in its
8315 input.
8316
8317 The filter can be used synchronize the output of multiple ffmpeg processes for
8318 realtime output devices like decklink. By putting the delay in the filtering
8319 chain and pre-buffering frames the process can pass on data to output almost
8320 immediately after the target wallclock timestamp is reached.
8321
8322 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8323 some use cases.
8324
8325 @table @option
8326
8327 @item cue
8328 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8329
8330 @item preroll
8331 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8332
8333 @item buffer
8334 The maximum duration of content to buffer before waiting for the cue expressed
8335 in seconds. Default is 0.
8336
8337 @end table
8338
8339 @anchor{curves}
8340 @section curves
8341
8342 Apply color adjustments using curves.
8343
8344 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8345 component (red, green and blue) has its values defined by @var{N} key points
8346 tied from each other using a smooth curve. The x-axis represents the pixel
8347 values from the input frame, and the y-axis the new pixel values to be set for
8348 the output frame.
8349
8350 By default, a component curve is defined by the two points @var{(0;0)} and
8351 @var{(1;1)}. This creates a straight line where each original pixel value is
8352 "adjusted" to its own value, which means no change to the image.
8353
8354 The filter allows you to redefine these two points and add some more. A new
8355 curve (using a natural cubic spline interpolation) will be define to pass
8356 smoothly through all these new coordinates. The new defined points needs to be
8357 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8358 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8359 the vector spaces, the values will be clipped accordingly.
8360
8361 The filter accepts the following options:
8362
8363 @table @option
8364 @item preset
8365 Select one of the available color presets. This option can be used in addition
8366 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8367 options takes priority on the preset values.
8368 Available presets are:
8369 @table @samp
8370 @item none
8371 @item color_negative
8372 @item cross_process
8373 @item darker
8374 @item increase_contrast
8375 @item lighter
8376 @item linear_contrast
8377 @item medium_contrast
8378 @item negative
8379 @item strong_contrast
8380 @item vintage
8381 @end table
8382 Default is @code{none}.
8383 @item master, m
8384 Set the master key points. These points will define a second pass mapping. It
8385 is sometimes called a "luminance" or "value" mapping. It can be used with
8386 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8387 post-processing LUT.
8388 @item red, r
8389 Set the key points for the red component.
8390 @item green, g
8391 Set the key points for the green component.
8392 @item blue, b
8393 Set the key points for the blue component.
8394 @item all
8395 Set the key points for all components (not including master).
8396 Can be used in addition to the other key points component
8397 options. In this case, the unset component(s) will fallback on this
8398 @option{all} setting.
8399 @item psfile
8400 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8401 @item plot
8402 Save Gnuplot script of the curves in specified file.
8403 @end table
8404
8405 To avoid some filtergraph syntax conflicts, each key points list need to be
8406 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8407
8408 @subsection Examples
8409
8410 @itemize
8411 @item
8412 Increase slightly the middle level of blue:
8413 @example
8414 curves=blue='0/0 0.5/0.58 1/1'
8415 @end example
8416
8417 @item
8418 Vintage effect:
8419 @example
8420 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'
8421 @end example
8422 Here we obtain the following coordinates for each components:
8423 @table @var
8424 @item red
8425 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8426 @item green
8427 @code{(0;0) (0.50;0.48) (1;1)}
8428 @item blue
8429 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8430 @end table
8431
8432 @item
8433 The previous example can also be achieved with the associated built-in preset:
8434 @example
8435 curves=preset=vintage
8436 @end example
8437
8438 @item
8439 Or simply:
8440 @example
8441 curves=vintage
8442 @end example
8443
8444 @item
8445 Use a Photoshop preset and redefine the points of the green component:
8446 @example
8447 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8448 @end example
8449
8450 @item
8451 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8452 and @command{gnuplot}:
8453 @example
8454 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8455 gnuplot -p /tmp/curves.plt
8456 @end example
8457 @end itemize
8458
8459 @section datascope
8460
8461 Video data analysis filter.
8462
8463 This filter shows hexadecimal pixel values of part of video.
8464
8465 The filter accepts the following options:
8466
8467 @table @option
8468 @item size, s
8469 Set output video size.
8470
8471 @item x
8472 Set x offset from where to pick pixels.
8473
8474 @item y
8475 Set y offset from where to pick pixels.
8476
8477 @item mode
8478 Set scope mode, can be one of the following:
8479 @table @samp
8480 @item mono
8481 Draw hexadecimal pixel values with white color on black background.
8482
8483 @item color
8484 Draw hexadecimal pixel values with input video pixel color on black
8485 background.
8486
8487 @item color2
8488 Draw hexadecimal pixel values on color background picked from input video,
8489 the text color is picked in such way so its always visible.
8490 @end table
8491
8492 @item axis
8493 Draw rows and columns numbers on left and top of video.
8494
8495 @item opacity
8496 Set background opacity.
8497
8498 @item format
8499 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
8500 @end table
8501
8502 @section dctdnoiz
8503
8504 Denoise frames using 2D DCT (frequency domain filtering).
8505
8506 This filter is not designed for real time.
8507
8508 The filter accepts the following options:
8509
8510 @table @option
8511 @item sigma, s
8512 Set the noise sigma constant.
8513
8514 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8515 coefficient (absolute value) below this threshold with be dropped.
8516
8517 If you need a more advanced filtering, see @option{expr}.
8518
8519 Default is @code{0}.
8520
8521 @item overlap
8522 Set number overlapping pixels for each block. Since the filter can be slow, you
8523 may want to reduce this value, at the cost of a less effective filter and the
8524 risk of various artefacts.
8525
8526 If the overlapping value doesn't permit processing the whole input width or
8527 height, a warning will be displayed and according borders won't be denoised.
8528
8529 Default value is @var{blocksize}-1, which is the best possible setting.
8530
8531 @item expr, e
8532 Set the coefficient factor expression.
8533
8534 For each coefficient of a DCT block, this expression will be evaluated as a
8535 multiplier value for the coefficient.
8536
8537 If this is option is set, the @option{sigma} option will be ignored.
8538
8539 The absolute value of the coefficient can be accessed through the @var{c}
8540 variable.
8541
8542 @item n
8543 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8544 @var{blocksize}, which is the width and height of the processed blocks.
8545
8546 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8547 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8548 on the speed processing. Also, a larger block size does not necessarily means a
8549 better de-noising.
8550 @end table
8551
8552 @subsection Examples
8553
8554 Apply a denoise with a @option{sigma} of @code{4.5}:
8555 @example
8556 dctdnoiz=4.5
8557 @end example
8558
8559 The same operation can be achieved using the expression system:
8560 @example
8561 dctdnoiz=e='gte(c, 4.5*3)'
8562 @end example
8563
8564 Violent denoise using a block size of @code{16x16}:
8565 @example
8566 dctdnoiz=15:n=4
8567 @end example
8568
8569 @section deband
8570
8571 Remove banding artifacts from input video.
8572 It works by replacing banded pixels with average value of referenced pixels.
8573
8574 The filter accepts the following options:
8575
8576 @table @option
8577 @item 1thr
8578 @item 2thr
8579 @item 3thr
8580 @item 4thr
8581 Set banding detection threshold for each plane. Default is 0.02.
8582 Valid range is 0.00003 to 0.5.
8583 If difference between current pixel and reference pixel is less than threshold,
8584 it will be considered as banded.
8585
8586 @item range, r
8587 Banding detection range in pixels. Default is 16. If positive, random number
8588 in range 0 to set value will be used. If negative, exact absolute value
8589 will be used.
8590 The range defines square of four pixels around current pixel.
8591
8592 @item direction, d
8593 Set direction in radians from which four pixel will be compared. If positive,
8594 random direction from 0 to set direction will be picked. If negative, exact of
8595 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8596 will pick only pixels on same row and -PI/2 will pick only pixels on same
8597 column.
8598
8599 @item blur, b
8600 If enabled, current pixel is compared with average value of all four
8601 surrounding pixels. The default is enabled. If disabled current pixel is
8602 compared with all four surrounding pixels. The pixel is considered banded
8603 if only all four differences with surrounding pixels are less than threshold.
8604
8605 @item coupling, c
8606 If enabled, current pixel is changed if and only if all pixel components are banded,
8607 e.g. banding detection threshold is triggered for all color components.
8608 The default is disabled.
8609 @end table
8610
8611 @section deblock
8612
8613 Remove blocking artifacts from input video.
8614
8615 The filter accepts the following options:
8616
8617 @table @option
8618 @item filter
8619 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8620 This controls what kind of deblocking is applied.
8621
8622 @item block
8623 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8624
8625 @item alpha
8626 @item beta
8627 @item gamma
8628 @item delta
8629 Set blocking detection thresholds. Allowed range is 0 to 1.
8630 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8631 Using higher threshold gives more deblocking strength.
8632 Setting @var{alpha} controls threshold detection at exact edge of block.
8633 Remaining options controls threshold detection near the edge. Each one for
8634 below/above or left/right. Setting any of those to @var{0} disables
8635 deblocking.
8636
8637 @item planes
8638 Set planes to filter. Default is to filter all available planes.
8639 @end table
8640
8641 @subsection Examples
8642
8643 @itemize
8644 @item
8645 Deblock using weak filter and block size of 4 pixels.
8646 @example
8647 deblock=filter=weak:block=4
8648 @end example
8649
8650 @item
8651 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8652 deblocking more edges.
8653 @example
8654 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8655 @end example
8656
8657 @item
8658 Similar as above, but filter only first plane.
8659 @example
8660 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8661 @end example
8662
8663 @item
8664 Similar as above, but filter only second and third plane.
8665 @example
8666 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8667 @end example
8668 @end itemize
8669
8670 @anchor{decimate}
8671 @section decimate
8672
8673 Drop duplicated frames at regular intervals.
8674
8675 The filter accepts the following options:
8676
8677 @table @option
8678 @item cycle
8679 Set the number of frames from which one will be dropped. Setting this to
8680 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8681 Default is @code{5}.
8682
8683 @item dupthresh
8684 Set the threshold for duplicate detection. If the difference metric for a frame
8685 is less than or equal to this value, then it is declared as duplicate. Default
8686 is @code{1.1}
8687
8688 @item scthresh
8689 Set scene change threshold. Default is @code{15}.
8690
8691 @item blockx
8692 @item blocky
8693 Set the size of the x and y-axis blocks used during metric calculations.
8694 Larger blocks give better noise suppression, but also give worse detection of
8695 small movements. Must be a power of two. Default is @code{32}.
8696
8697 @item ppsrc
8698 Mark main input as a pre-processed input and activate clean source input
8699 stream. This allows the input to be pre-processed with various filters to help
8700 the metrics calculation while keeping the frame selection lossless. When set to
8701 @code{1}, the first stream is for the pre-processed input, and the second
8702 stream is the clean source from where the kept frames are chosen. Default is
8703 @code{0}.
8704
8705 @item chroma
8706 Set whether or not chroma is considered in the metric calculations. Default is
8707 @code{1}.
8708 @end table
8709
8710 @section deconvolve
8711
8712 Apply 2D deconvolution of video stream in frequency domain using second stream
8713 as impulse.
8714
8715 The filter accepts the following options:
8716
8717 @table @option
8718 @item planes
8719 Set which planes to process.
8720
8721 @item impulse
8722 Set which impulse video frames will be processed, can be @var{first}
8723 or @var{all}. Default is @var{all}.
8724
8725 @item noise
8726 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8727 and height are not same and not power of 2 or if stream prior to convolving
8728 had noise.
8729 @end table
8730
8731 The @code{deconvolve} filter also supports the @ref{framesync} options.
8732
8733 @section dedot
8734
8735 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8736
8737 It accepts the following options:
8738
8739 @table @option
8740 @item m
8741 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8742 @var{rainbows} for cross-color reduction.
8743
8744 @item lt
8745 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8746
8747 @item tl
8748 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8749
8750 @item tc
8751 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8752
8753 @item ct
8754 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8755 @end table
8756
8757 @section deflate
8758
8759 Apply deflate effect to the video.
8760
8761 This filter replaces the pixel by the local(3x3) average by taking into account
8762 only values lower than the pixel.
8763
8764 It accepts the following options:
8765
8766 @table @option
8767 @item threshold0
8768 @item threshold1
8769 @item threshold2
8770 @item threshold3
8771 Limit the maximum change for each plane, default is 65535.
8772 If 0, plane will remain unchanged.
8773 @end table
8774
8775 @subsection Commands
8776
8777 This filter supports the all above options as @ref{commands}.
8778
8779 @section deflicker
8780
8781 Remove temporal frame luminance variations.
8782
8783 It accepts the following options:
8784
8785 @table @option
8786 @item size, s
8787 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8788
8789 @item mode, m
8790 Set averaging mode to smooth temporal luminance variations.
8791
8792 Available values are:
8793 @table @samp
8794 @item am
8795 Arithmetic mean
8796
8797 @item gm
8798 Geometric mean
8799
8800 @item hm
8801 Harmonic mean
8802
8803 @item qm
8804 Quadratic mean
8805
8806 @item cm
8807 Cubic mean
8808
8809 @item pm
8810 Power mean
8811
8812 @item median
8813 Median
8814 @end table
8815
8816 @item bypass
8817 Do not actually modify frame. Useful when one only wants metadata.
8818 @end table
8819
8820 @section dejudder
8821
8822 Remove judder produced by partially interlaced telecined content.
8823
8824 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8825 source was partially telecined content then the output of @code{pullup,dejudder}
8826 will have a variable frame rate. May change the recorded frame rate of the
8827 container. Aside from that change, this filter will not affect constant frame
8828 rate video.
8829
8830 The option available in this filter is:
8831 @table @option
8832
8833 @item cycle
8834 Specify the length of the window over which the judder repeats.
8835
8836 Accepts any integer greater than 1. Useful values are:
8837 @table @samp
8838
8839 @item 4
8840 If the original was telecined from 24 to 30 fps (Film to NTSC).
8841
8842 @item 5
8843 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8844
8845 @item 20
8846 If a mixture of the two.
8847 @end table
8848
8849 The default is @samp{4}.
8850 @end table
8851
8852 @section delogo
8853
8854 Suppress a TV station logo by a simple interpolation of the surrounding
8855 pixels. Just set a rectangle covering the logo and watch it disappear
8856 (and sometimes something even uglier appear - your mileage may vary).
8857
8858 It accepts the following parameters:
8859 @table @option
8860
8861 @item x
8862 @item y
8863 Specify the top left corner coordinates of the logo. They must be
8864 specified.
8865
8866 @item w
8867 @item h
8868 Specify the width and height of the logo to clear. They must be
8869 specified.
8870
8871 @item band, t
8872 Specify the thickness of the fuzzy edge of the rectangle (added to
8873 @var{w} and @var{h}). The default value is 1. This option is
8874 deprecated, setting higher values should no longer be necessary and
8875 is not recommended.
8876
8877 @item show
8878 When set to 1, a green rectangle is drawn on the screen to simplify
8879 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8880 The default value is 0.
8881
8882 The rectangle is drawn on the outermost pixels which will be (partly)
8883 replaced with interpolated values. The values of the next pixels
8884 immediately outside this rectangle in each direction will be used to
8885 compute the interpolated pixel values inside the rectangle.
8886
8887 @end table
8888
8889 @subsection Examples
8890
8891 @itemize
8892 @item
8893 Set a rectangle covering the area with top left corner coordinates 0,0
8894 and size 100x77, and a band of size 10:
8895 @example
8896 delogo=x=0:y=0:w=100:h=77:band=10
8897 @end example
8898
8899 @end itemize
8900
8901 @anchor{derain}
8902 @section derain
8903
8904 Remove the rain in the input image/video by applying the derain methods based on
8905 convolutional neural networks. Supported models:
8906
8907 @itemize
8908 @item
8909 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8910 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8911 @end itemize
8912
8913 Training as well as model generation scripts are provided in
8914 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8915
8916 Native model files (.model) can be generated from TensorFlow model
8917 files (.pb) by using tools/python/convert.py
8918
8919 The filter accepts the following options:
8920
8921 @table @option
8922 @item filter_type
8923 Specify which filter to use. This option accepts the following values:
8924
8925 @table @samp
8926 @item derain
8927 Derain filter. To conduct derain filter, you need to use a derain model.
8928
8929 @item dehaze
8930 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8931 @end table
8932 Default value is @samp{derain}.
8933
8934 @item dnn_backend
8935 Specify which DNN backend to use for model loading and execution. This option accepts
8936 the following values:
8937
8938 @table @samp
8939 @item native
8940 Native implementation of DNN loading and execution.
8941
8942 @item tensorflow
8943 TensorFlow backend. To enable this backend you
8944 need to install the TensorFlow for C library (see
8945 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8946 @code{--enable-libtensorflow}
8947 @end table
8948 Default value is @samp{native}.
8949
8950 @item model
8951 Set path to model file specifying network architecture and its parameters.
8952 Note that different backends use different file formats. TensorFlow and native
8953 backend can load files for only its format.
8954 @end table
8955
8956 It can also be finished with @ref{dnn_processing} filter.
8957
8958 @section deshake
8959
8960 Attempt to fix small changes in horizontal and/or vertical shift. This
8961 filter helps remove camera shake from hand-holding a camera, bumping a
8962 tripod, moving on a vehicle, etc.
8963
8964 The filter accepts the following options:
8965
8966 @table @option
8967
8968 @item x
8969 @item y
8970 @item w
8971 @item h
8972 Specify a rectangular area where to limit the search for motion
8973 vectors.
8974 If desired the search for motion vectors can be limited to a
8975 rectangular area of the frame defined by its top left corner, width
8976 and height. These parameters have the same meaning as the drawbox
8977 filter which can be used to visualise the position of the bounding
8978 box.
8979
8980 This is useful when simultaneous movement of subjects within the frame
8981 might be confused for camera motion by the motion vector search.
8982
8983 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8984 then the full frame is used. This allows later options to be set
8985 without specifying the bounding box for the motion vector search.
8986
8987 Default - search the whole frame.
8988
8989 @item rx
8990 @item ry
8991 Specify the maximum extent of movement in x and y directions in the
8992 range 0-64 pixels. Default 16.
8993
8994 @item edge
8995 Specify how to generate pixels to fill blanks at the edge of the
8996 frame. Available values are:
8997 @table @samp
8998 @item blank, 0
8999 Fill zeroes at blank locations
9000 @item original, 1
9001 Original image at blank locations
9002 @item clamp, 2
9003 Extruded edge value at blank locations
9004 @item mirror, 3
9005 Mirrored edge at blank locations
9006 @end table
9007 Default value is @samp{mirror}.
9008
9009 @item blocksize
9010 Specify the blocksize to use for motion search. Range 4-128 pixels,
9011 default 8.
9012
9013 @item contrast
9014 Specify the contrast threshold for blocks. Only blocks with more than
9015 the specified contrast (difference between darkest and lightest
9016 pixels) will be considered. Range 1-255, default 125.
9017
9018 @item search
9019 Specify the search strategy. Available values are:
9020 @table @samp
9021 @item exhaustive, 0
9022 Set exhaustive search
9023 @item less, 1
9024 Set less exhaustive search.
9025 @end table
9026 Default value is @samp{exhaustive}.
9027
9028 @item filename
9029 If set then a detailed log of the motion search is written to the
9030 specified file.
9031
9032 @end table
9033
9034 @section despill
9035
9036 Remove unwanted contamination of foreground colors, caused by reflected color of
9037 greenscreen or bluescreen.
9038
9039 This filter accepts the following options:
9040
9041 @table @option
9042 @item type
9043 Set what type of despill to use.
9044
9045 @item mix
9046 Set how spillmap will be generated.
9047
9048 @item expand
9049 Set how much to get rid of still remaining spill.
9050
9051 @item red
9052 Controls amount of red in spill area.
9053
9054 @item green
9055 Controls amount of green in spill area.
9056 Should be -1 for greenscreen.
9057
9058 @item blue
9059 Controls amount of blue in spill area.
9060 Should be -1 for bluescreen.
9061
9062 @item brightness
9063 Controls brightness of spill area, preserving colors.
9064
9065 @item alpha
9066 Modify alpha from generated spillmap.
9067 @end table
9068
9069 @section detelecine
9070
9071 Apply an exact inverse of the telecine operation. It requires a predefined
9072 pattern specified using the pattern option which must be the same as that passed
9073 to the telecine filter.
9074
9075 This filter accepts the following options:
9076
9077 @table @option
9078 @item first_field
9079 @table @samp
9080 @item top, t
9081 top field first
9082 @item bottom, b
9083 bottom field first
9084 The default value is @code{top}.
9085 @end table
9086
9087 @item pattern
9088 A string of numbers representing the pulldown pattern you wish to apply.
9089 The default value is @code{23}.
9090
9091 @item start_frame
9092 A number representing position of the first frame with respect to the telecine
9093 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9094 @end table
9095
9096 @section dilation
9097
9098 Apply dilation effect to the video.
9099
9100 This filter replaces the pixel by the local(3x3) maximum.
9101
9102 It accepts the following options:
9103
9104 @table @option
9105 @item threshold0
9106 @item threshold1
9107 @item threshold2
9108 @item threshold3
9109 Limit the maximum change for each plane, default is 65535.
9110 If 0, plane will remain unchanged.
9111
9112 @item coordinates
9113 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9114 pixels are used.
9115
9116 Flags to local 3x3 coordinates maps like this:
9117
9118     1 2 3
9119     4   5
9120     6 7 8
9121 @end table
9122
9123 @subsection Commands
9124
9125 This filter supports the all above options as @ref{commands}.
9126
9127 @section displace
9128
9129 Displace pixels as indicated by second and third input stream.
9130
9131 It takes three input streams and outputs one stream, the first input is the
9132 source, and second and third input are displacement maps.
9133
9134 The second input specifies how much to displace pixels along the
9135 x-axis, while the third input specifies how much to displace pixels
9136 along the y-axis.
9137 If one of displacement map streams terminates, last frame from that
9138 displacement map will be used.
9139
9140 Note that once generated, displacements maps can be reused over and over again.
9141
9142 A description of the accepted options follows.
9143
9144 @table @option
9145 @item edge
9146 Set displace behavior for pixels that are out of range.
9147
9148 Available values are:
9149 @table @samp
9150 @item blank
9151 Missing pixels are replaced by black pixels.
9152
9153 @item smear
9154 Adjacent pixels will spread out to replace missing pixels.
9155
9156 @item wrap
9157 Out of range pixels are wrapped so they point to pixels of other side.
9158
9159 @item mirror
9160 Out of range pixels will be replaced with mirrored pixels.
9161 @end table
9162 Default is @samp{smear}.
9163
9164 @end table
9165
9166 @subsection Examples
9167
9168 @itemize
9169 @item
9170 Add ripple effect to rgb input of video size hd720:
9171 @example
9172 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
9173 @end example
9174
9175 @item
9176 Add wave effect to rgb input of video size hd720:
9177 @example
9178 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
9179 @end example
9180 @end itemize
9181
9182 @anchor{dnn_processing}
9183 @section dnn_processing
9184
9185 Do image processing with deep neural networks. It works together with another filter
9186 which converts the pixel format of the Frame to what the dnn network requires.
9187
9188 The filter accepts the following options:
9189
9190 @table @option
9191 @item dnn_backend
9192 Specify which DNN backend to use for model loading and execution. This option accepts
9193 the following values:
9194
9195 @table @samp
9196 @item native
9197 Native implementation of DNN loading and execution.
9198
9199 @item tensorflow
9200 TensorFlow backend. To enable this backend you
9201 need to install the TensorFlow for C library (see
9202 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9203 @code{--enable-libtensorflow}
9204 @end table
9205
9206 Default value is @samp{native}.
9207
9208 @item model
9209 Set path to model file specifying network architecture and its parameters.
9210 Note that different backends use different file formats. TensorFlow and native
9211 backend can load files for only its format.
9212
9213 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9214
9215 @item input
9216 Set the input name of the dnn network.
9217
9218 @item output
9219 Set the output name of the dnn network.
9220
9221 @end table
9222
9223 @subsection Examples
9224
9225 @itemize
9226 @item
9227 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9228 @example
9229 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9230 @end example
9231
9232 @item
9233 Halve the pixel value of the frame with format gray32f:
9234 @example
9235 ffmpeg -i input.jpg -vf format=grayf32,dnn_processing=model=halve_gray_float.model:input=dnn_in:output=dnn_out:dnn_backend=native -y out.native.png
9236 @end example
9237
9238 @item
9239 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9240 @example
9241 ./ffmpeg -i 480p.jpg -vf format=yuv420p,scale=w=iw*2:h=ih*2,dnn_processing=dnn_backend=tensorflow:model=srcnn.pb:input=x:output=y -y srcnn.jpg
9242 @end example
9243
9244 @item
9245 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9246 @example
9247 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9248 @end example
9249
9250 @end itemize
9251
9252 @section drawbox
9253
9254 Draw a colored box on the input image.
9255
9256 It accepts the following parameters:
9257
9258 @table @option
9259 @item x
9260 @item y
9261 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9262
9263 @item width, w
9264 @item height, h
9265 The expressions which specify the width and height of the box; if 0 they are interpreted as
9266 the input width and height. It defaults to 0.
9267
9268 @item color, c
9269 Specify the color of the box to write. For the general syntax of this option,
9270 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9271 value @code{invert} is used, the box edge color is the same as the
9272 video with inverted luma.
9273
9274 @item thickness, t
9275 The expression which sets the thickness of the box edge.
9276 A value of @code{fill} will create a filled box. Default value is @code{3}.
9277
9278 See below for the list of accepted constants.
9279
9280 @item replace
9281 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9282 will overwrite the video's color and alpha pixels.
9283 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9284 @end table
9285
9286 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9287 following constants:
9288
9289 @table @option
9290 @item dar
9291 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9292
9293 @item hsub
9294 @item vsub
9295 horizontal and vertical chroma subsample values. For example for the
9296 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9297
9298 @item in_h, ih
9299 @item in_w, iw
9300 The input width and height.
9301
9302 @item sar
9303 The input sample aspect ratio.
9304
9305 @item x
9306 @item y
9307 The x and y offset coordinates where the box is drawn.
9308
9309 @item w
9310 @item h
9311 The width and height of the drawn box.
9312
9313 @item t
9314 The thickness of the drawn box.
9315
9316 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9317 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9318
9319 @end table
9320
9321 @subsection Examples
9322
9323 @itemize
9324 @item
9325 Draw a black box around the edge of the input image:
9326 @example
9327 drawbox
9328 @end example
9329
9330 @item
9331 Draw a box with color red and an opacity of 50%:
9332 @example
9333 drawbox=10:20:200:60:red@@0.5
9334 @end example
9335
9336 The previous example can be specified as:
9337 @example
9338 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9339 @end example
9340
9341 @item
9342 Fill the box with pink color:
9343 @example
9344 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9345 @end example
9346
9347 @item
9348 Draw a 2-pixel red 2.40:1 mask:
9349 @example
9350 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
9351 @end example
9352 @end itemize
9353
9354 @subsection Commands
9355 This filter supports same commands as options.
9356 The command accepts the same syntax of the corresponding option.
9357
9358 If the specified expression is not valid, it is kept at its current
9359 value.
9360
9361 @anchor{drawgraph}
9362 @section drawgraph
9363 Draw a graph using input video metadata.
9364
9365 It accepts the following parameters:
9366
9367 @table @option
9368 @item m1
9369 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9370
9371 @item fg1
9372 Set 1st foreground color expression.
9373
9374 @item m2
9375 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9376
9377 @item fg2
9378 Set 2nd foreground color expression.
9379
9380 @item m3
9381 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9382
9383 @item fg3
9384 Set 3rd foreground color expression.
9385
9386 @item m4
9387 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9388
9389 @item fg4
9390 Set 4th foreground color expression.
9391
9392 @item min
9393 Set minimal value of metadata value.
9394
9395 @item max
9396 Set maximal value of metadata value.
9397
9398 @item bg
9399 Set graph background color. Default is white.
9400
9401 @item mode
9402 Set graph mode.
9403
9404 Available values for mode is:
9405 @table @samp
9406 @item bar
9407 @item dot
9408 @item line
9409 @end table
9410
9411 Default is @code{line}.
9412
9413 @item slide
9414 Set slide mode.
9415
9416 Available values for slide is:
9417 @table @samp
9418 @item frame
9419 Draw new frame when right border is reached.
9420
9421 @item replace
9422 Replace old columns with new ones.
9423
9424 @item scroll
9425 Scroll from right to left.
9426
9427 @item rscroll
9428 Scroll from left to right.
9429
9430 @item picture
9431 Draw single picture.
9432 @end table
9433
9434 Default is @code{frame}.
9435
9436 @item size
9437 Set size of graph video. For the syntax of this option, check the
9438 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9439 The default value is @code{900x256}.
9440
9441 @item rate, r
9442 Set the output frame rate. Default value is @code{25}.
9443
9444 The foreground color expressions can use the following variables:
9445 @table @option
9446 @item MIN
9447 Minimal value of metadata value.
9448
9449 @item MAX
9450 Maximal value of metadata value.
9451
9452 @item VAL
9453 Current metadata key value.
9454 @end table
9455
9456 The color is defined as 0xAABBGGRR.
9457 @end table
9458
9459 Example using metadata from @ref{signalstats} filter:
9460 @example
9461 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9462 @end example
9463
9464 Example using metadata from @ref{ebur128} filter:
9465 @example
9466 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9467 @end example
9468
9469 @section drawgrid
9470
9471 Draw a grid on the input image.
9472
9473 It accepts the following parameters:
9474
9475 @table @option
9476 @item x
9477 @item y
9478 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9479
9480 @item width, w
9481 @item height, h
9482 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9483 input width and height, respectively, minus @code{thickness}, so image gets
9484 framed. Default to 0.
9485
9486 @item color, c
9487 Specify the color of the grid. For the general syntax of this option,
9488 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9489 value @code{invert} is used, the grid color is the same as the
9490 video with inverted luma.
9491
9492 @item thickness, t
9493 The expression which sets the thickness of the grid line. Default value is @code{1}.
9494
9495 See below for the list of accepted constants.
9496
9497 @item replace
9498 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9499 will overwrite the video's color and alpha pixels.
9500 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9501 @end table
9502
9503 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9504 following constants:
9505
9506 @table @option
9507 @item dar
9508 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9509
9510 @item hsub
9511 @item vsub
9512 horizontal and vertical chroma subsample values. For example for the
9513 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9514
9515 @item in_h, ih
9516 @item in_w, iw
9517 The input grid cell width and height.
9518
9519 @item sar
9520 The input sample aspect ratio.
9521
9522 @item x
9523 @item y
9524 The x and y coordinates of some point of grid intersection (meant to configure offset).
9525
9526 @item w
9527 @item h
9528 The width and height of the drawn cell.
9529
9530 @item t
9531 The thickness of the drawn cell.
9532
9533 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9534 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9535
9536 @end table
9537
9538 @subsection Examples
9539
9540 @itemize
9541 @item
9542 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9543 @example
9544 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9545 @end example
9546
9547 @item
9548 Draw a white 3x3 grid with an opacity of 50%:
9549 @example
9550 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9551 @end example
9552 @end itemize
9553
9554 @subsection Commands
9555 This filter supports same commands as options.
9556 The command accepts the same syntax of the corresponding option.
9557
9558 If the specified expression is not valid, it is kept at its current
9559 value.
9560
9561 @anchor{drawtext}
9562 @section drawtext
9563
9564 Draw a text string or text from a specified file on top of a video, using the
9565 libfreetype library.
9566
9567 To enable compilation of this filter, you need to configure FFmpeg with
9568 @code{--enable-libfreetype}.
9569 To enable default font fallback and the @var{font} option you need to
9570 configure FFmpeg with @code{--enable-libfontconfig}.
9571 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9572 @code{--enable-libfribidi}.
9573
9574 @subsection Syntax
9575
9576 It accepts the following parameters:
9577
9578 @table @option
9579
9580 @item box
9581 Used to draw a box around text using the background color.
9582 The value must be either 1 (enable) or 0 (disable).
9583 The default value of @var{box} is 0.
9584
9585 @item boxborderw
9586 Set the width of the border to be drawn around the box using @var{boxcolor}.
9587 The default value of @var{boxborderw} is 0.
9588
9589 @item boxcolor
9590 The color to be used for drawing box around text. For the syntax of this
9591 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9592
9593 The default value of @var{boxcolor} is "white".
9594
9595 @item line_spacing
9596 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
9597 The default value of @var{line_spacing} is 0.
9598
9599 @item borderw
9600 Set the width of the border to be drawn around the text using @var{bordercolor}.
9601 The default value of @var{borderw} is 0.
9602
9603 @item bordercolor
9604 Set the color to be used for drawing border around text. For the syntax of this
9605 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9606
9607 The default value of @var{bordercolor} is "black".
9608
9609 @item expansion
9610 Select how the @var{text} is expanded. Can be either @code{none},
9611 @code{strftime} (deprecated) or
9612 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
9613 below for details.
9614
9615 @item basetime
9616 Set a start time for the count. Value is in microseconds. Only applied
9617 in the deprecated strftime expansion mode. To emulate in normal expansion
9618 mode use the @code{pts} function, supplying the start time (in seconds)
9619 as the second argument.
9620
9621 @item fix_bounds
9622 If true, check and fix text coords to avoid clipping.
9623
9624 @item fontcolor
9625 The color to be used for drawing fonts. For the syntax of this option, check
9626 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9627
9628 The default value of @var{fontcolor} is "black".
9629
9630 @item fontcolor_expr
9631 String which is expanded the same way as @var{text} to obtain dynamic
9632 @var{fontcolor} value. By default this option has empty value and is not
9633 processed. When this option is set, it overrides @var{fontcolor} option.
9634
9635 @item font
9636 The font family to be used for drawing text. By default Sans.
9637
9638 @item fontfile
9639 The font file to be used for drawing text. The path must be included.
9640 This parameter is mandatory if the fontconfig support is disabled.
9641
9642 @item alpha
9643 Draw the text applying alpha blending. The value can
9644 be a number between 0.0 and 1.0.
9645 The expression accepts the same variables @var{x, y} as well.
9646 The default value is 1.
9647 Please see @var{fontcolor_expr}.
9648
9649 @item fontsize
9650 The font size to be used for drawing text.
9651 The default value of @var{fontsize} is 16.
9652
9653 @item text_shaping
9654 If set to 1, attempt to shape the text (for example, reverse the order of
9655 right-to-left text and join Arabic characters) before drawing it.
9656 Otherwise, just draw the text exactly as given.
9657 By default 1 (if supported).
9658
9659 @item ft_load_flags
9660 The flags to be used for loading the fonts.
9661
9662 The flags map the corresponding flags supported by libfreetype, and are
9663 a combination of the following values:
9664 @table @var
9665 @item default
9666 @item no_scale
9667 @item no_hinting
9668 @item render
9669 @item no_bitmap
9670 @item vertical_layout
9671 @item force_autohint
9672 @item crop_bitmap
9673 @item pedantic
9674 @item ignore_global_advance_width
9675 @item no_recurse
9676 @item ignore_transform
9677 @item monochrome
9678 @item linear_design
9679 @item no_autohint
9680 @end table
9681
9682 Default value is "default".
9683
9684 For more information consult the documentation for the FT_LOAD_*
9685 libfreetype flags.
9686
9687 @item shadowcolor
9688 The color to be used for drawing a shadow behind the drawn text. For the
9689 syntax of this option, check the @ref{color syntax,,"Color" section in the
9690 ffmpeg-utils manual,ffmpeg-utils}.
9691
9692 The default value of @var{shadowcolor} is "black".
9693
9694 @item shadowx
9695 @item shadowy
9696 The x and y offsets for the text shadow position with respect to the
9697 position of the text. They can be either positive or negative
9698 values. The default value for both is "0".
9699
9700 @item start_number
9701 The starting frame number for the n/frame_num variable. The default value
9702 is "0".
9703
9704 @item tabsize
9705 The size in number of spaces to use for rendering the tab.
9706 Default value is 4.
9707
9708 @item timecode
9709 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9710 format. It can be used with or without text parameter. @var{timecode_rate}
9711 option must be specified.
9712
9713 @item timecode_rate, rate, r
9714 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9715 integer. Minimum value is "1".
9716 Drop-frame timecode is supported for frame rates 30 & 60.
9717
9718 @item tc24hmax
9719 If set to 1, the output of the timecode option will wrap around at 24 hours.
9720 Default is 0 (disabled).
9721
9722 @item text
9723 The text string to be drawn. The text must be a sequence of UTF-8
9724 encoded characters.
9725 This parameter is mandatory if no file is specified with the parameter
9726 @var{textfile}.
9727
9728 @item textfile
9729 A text file containing text to be drawn. The text must be a sequence
9730 of UTF-8 encoded characters.
9731
9732 This parameter is mandatory if no text string is specified with the
9733 parameter @var{text}.
9734
9735 If both @var{text} and @var{textfile} are specified, an error is thrown.
9736
9737 @item reload
9738 If set to 1, the @var{textfile} will be reloaded before each frame.
9739 Be sure to update it atomically, or it may be read partially, or even fail.
9740
9741 @item x
9742 @item y
9743 The expressions which specify the offsets where text will be drawn
9744 within the video frame. They are relative to the top/left border of the
9745 output image.
9746
9747 The default value of @var{x} and @var{y} is "0".
9748
9749 See below for the list of accepted constants and functions.
9750 @end table
9751
9752 The parameters for @var{x} and @var{y} are expressions containing the
9753 following constants and functions:
9754
9755 @table @option
9756 @item dar
9757 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9758
9759 @item hsub
9760 @item vsub
9761 horizontal and vertical chroma subsample values. For example for the
9762 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9763
9764 @item line_h, lh
9765 the height of each text line
9766
9767 @item main_h, h, H
9768 the input height
9769
9770 @item main_w, w, W
9771 the input width
9772
9773 @item max_glyph_a, ascent
9774 the maximum distance from the baseline to the highest/upper grid
9775 coordinate used to place a glyph outline point, for all the rendered
9776 glyphs.
9777 It is a positive value, due to the grid's orientation with the Y axis
9778 upwards.
9779
9780 @item max_glyph_d, descent
9781 the maximum distance from the baseline to the lowest grid coordinate
9782 used to place a glyph outline point, for all the rendered glyphs.
9783 This is a negative value, due to the grid's orientation, with the Y axis
9784 upwards.
9785
9786 @item max_glyph_h
9787 maximum glyph height, that is the maximum height for all the glyphs
9788 contained in the rendered text, it is equivalent to @var{ascent} -
9789 @var{descent}.
9790
9791 @item max_glyph_w
9792 maximum glyph width, that is the maximum width for all the glyphs
9793 contained in the rendered text
9794
9795 @item n
9796 the number of input frame, starting from 0
9797
9798 @item rand(min, max)
9799 return a random number included between @var{min} and @var{max}
9800
9801 @item sar
9802 The input sample aspect ratio.
9803
9804 @item t
9805 timestamp expressed in seconds, NAN if the input timestamp is unknown
9806
9807 @item text_h, th
9808 the height of the rendered text
9809
9810 @item text_w, tw
9811 the width of the rendered text
9812
9813 @item x
9814 @item y
9815 the x and y offset coordinates where the text is drawn.
9816
9817 These parameters allow the @var{x} and @var{y} expressions to refer
9818 to each other, so you can for example specify @code{y=x/dar}.
9819
9820 @item pict_type
9821 A one character description of the current frame's picture type.
9822
9823 @item pkt_pos
9824 The current packet's position in the input file or stream
9825 (in bytes, from the start of the input). A value of -1 indicates
9826 this info is not available.
9827
9828 @item pkt_duration
9829 The current packet's duration, in seconds.
9830
9831 @item pkt_size
9832 The current packet's size (in bytes).
9833 @end table
9834
9835 @anchor{drawtext_expansion}
9836 @subsection Text expansion
9837
9838 If @option{expansion} is set to @code{strftime},
9839 the filter recognizes strftime() sequences in the provided text and
9840 expands them accordingly. Check the documentation of strftime(). This
9841 feature is deprecated.
9842
9843 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9844
9845 If @option{expansion} is set to @code{normal} (which is the default),
9846 the following expansion mechanism is used.
9847
9848 The backslash character @samp{\}, followed by any character, always expands to
9849 the second character.
9850
9851 Sequences of the form @code{%@{...@}} are expanded. The text between the
9852 braces is a function name, possibly followed by arguments separated by ':'.
9853 If the arguments contain special characters or delimiters (':' or '@}'),
9854 they should be escaped.
9855
9856 Note that they probably must also be escaped as the value for the
9857 @option{text} option in the filter argument string and as the filter
9858 argument in the filtergraph description, and possibly also for the shell,
9859 that makes up to four levels of escaping; using a text file avoids these
9860 problems.
9861
9862 The following functions are available:
9863
9864 @table @command
9865
9866 @item expr, e
9867 The expression evaluation result.
9868
9869 It must take one argument specifying the expression to be evaluated,
9870 which accepts the same constants and functions as the @var{x} and
9871 @var{y} values. Note that not all constants should be used, for
9872 example the text size is not known when evaluating the expression, so
9873 the constants @var{text_w} and @var{text_h} will have an undefined
9874 value.
9875
9876 @item expr_int_format, eif
9877 Evaluate the expression's value and output as formatted integer.
9878
9879 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9880 The second argument specifies the output format. Allowed values are @samp{x},
9881 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9882 @code{printf} function.
9883 The third parameter is optional and sets the number of positions taken by the output.
9884 It can be used to add padding with zeros from the left.
9885
9886 @item gmtime
9887 The time at which the filter is running, expressed in UTC.
9888 It can accept an argument: a strftime() format string.
9889
9890 @item localtime
9891 The time at which the filter is running, expressed in the local time zone.
9892 It can accept an argument: a strftime() format string.
9893
9894 @item metadata
9895 Frame metadata. Takes one or two arguments.
9896
9897 The first argument is mandatory and specifies the metadata key.
9898
9899 The second argument is optional and specifies a default value, used when the
9900 metadata key is not found or empty.
9901
9902 Available metadata can be identified by inspecting entries
9903 starting with TAG included within each frame section
9904 printed by running @code{ffprobe -show_frames}.
9905
9906 String metadata generated in filters leading to
9907 the drawtext filter are also available.
9908
9909 @item n, frame_num
9910 The frame number, starting from 0.
9911
9912 @item pict_type
9913 A one character description of the current picture type.
9914
9915 @item pts
9916 The timestamp of the current frame.
9917 It can take up to three arguments.
9918
9919 The first argument is the format of the timestamp; it defaults to @code{flt}
9920 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9921 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9922 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9923 @code{localtime} stands for the timestamp of the frame formatted as
9924 local time zone time.
9925
9926 The second argument is an offset added to the timestamp.
9927
9928 If the format is set to @code{hms}, a third argument @code{24HH} may be
9929 supplied to present the hour part of the formatted timestamp in 24h format
9930 (00-23).
9931
9932 If the format is set to @code{localtime} or @code{gmtime},
9933 a third argument may be supplied: a strftime() format string.
9934 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9935 @end table
9936
9937 @subsection Commands
9938
9939 This filter supports altering parameters via commands:
9940 @table @option
9941 @item reinit
9942 Alter existing filter parameters.
9943
9944 Syntax for the argument is the same as for filter invocation, e.g.
9945
9946 @example
9947 fontsize=56:fontcolor=green:text='Hello World'
9948 @end example
9949
9950 Full filter invocation with sendcmd would look like this:
9951
9952 @example
9953 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9954 @end example
9955 @end table
9956
9957 If the entire argument can't be parsed or applied as valid values then the filter will
9958 continue with its existing parameters.
9959
9960 @subsection Examples
9961
9962 @itemize
9963 @item
9964 Draw "Test Text" with font FreeSerif, using the default values for the
9965 optional parameters.
9966
9967 @example
9968 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9969 @end example
9970
9971 @item
9972 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9973 and y=50 (counting from the top-left corner of the screen), text is
9974 yellow with a red box around it. Both the text and the box have an
9975 opacity of 20%.
9976
9977 @example
9978 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9979           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9980 @end example
9981
9982 Note that the double quotes are not necessary if spaces are not used
9983 within the parameter list.
9984
9985 @item
9986 Show the text at the center of the video frame:
9987 @example
9988 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9989 @end example
9990
9991 @item
9992 Show the text at a random position, switching to a new position every 30 seconds:
9993 @example
9994 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)"
9995 @end example
9996
9997 @item
9998 Show a text line sliding from right to left in the last row of the video
9999 frame. The file @file{LONG_LINE} is assumed to contain a single line
10000 with no newlines.
10001 @example
10002 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
10003 @end example
10004
10005 @item
10006 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
10007 @example
10008 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
10009 @end example
10010
10011 @item
10012 Draw a single green letter "g", at the center of the input video.
10013 The glyph baseline is placed at half screen height.
10014 @example
10015 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10016 @end example
10017
10018 @item
10019 Show text for 1 second every 3 seconds:
10020 @example
10021 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10022 @end example
10023
10024 @item
10025 Use fontconfig to set the font. Note that the colons need to be escaped.
10026 @example
10027 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10028 @end example
10029
10030 @item
10031 Print the date of a real-time encoding (see strftime(3)):
10032 @example
10033 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10034 @end example
10035
10036 @item
10037 Show text fading in and out (appearing/disappearing):
10038 @example
10039 #!/bin/sh
10040 DS=1.0 # display start
10041 DE=10.0 # display end
10042 FID=1.5 # fade in duration
10043 FOD=5 # fade out duration
10044 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 @}"
10045 @end example
10046
10047 @item
10048 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10049 and the @option{fontsize} value are included in the @option{y} offset.
10050 @example
10051 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10052 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10053 @end example
10054
10055 @item
10056 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10057 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10058 must have option @option{-export_path_metadata 1} for the special metadata fields
10059 to be available for filters.
10060 @example
10061 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10062 @end example
10063
10064 @end itemize
10065
10066 For more information about libfreetype, check:
10067 @url{http://www.freetype.org/}.
10068
10069 For more information about fontconfig, check:
10070 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10071
10072 For more information about libfribidi, check:
10073 @url{http://fribidi.org/}.
10074
10075 @section edgedetect
10076
10077 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10078
10079 The filter accepts the following options:
10080
10081 @table @option
10082 @item low
10083 @item high
10084 Set low and high threshold values used by the Canny thresholding
10085 algorithm.
10086
10087 The high threshold selects the "strong" edge pixels, which are then
10088 connected through 8-connectivity with the "weak" edge pixels selected
10089 by the low threshold.
10090
10091 @var{low} and @var{high} threshold values must be chosen in the range
10092 [0,1], and @var{low} should be lesser or equal to @var{high}.
10093
10094 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10095 is @code{50/255}.
10096
10097 @item mode
10098 Define the drawing mode.
10099
10100 @table @samp
10101 @item wires
10102 Draw white/gray wires on black background.
10103
10104 @item colormix
10105 Mix the colors to create a paint/cartoon effect.
10106
10107 @item canny
10108 Apply Canny edge detector on all selected planes.
10109 @end table
10110 Default value is @var{wires}.
10111
10112 @item planes
10113 Select planes for filtering. By default all available planes are filtered.
10114 @end table
10115
10116 @subsection Examples
10117
10118 @itemize
10119 @item
10120 Standard edge detection with custom values for the hysteresis thresholding:
10121 @example
10122 edgedetect=low=0.1:high=0.4
10123 @end example
10124
10125 @item
10126 Painting effect without thresholding:
10127 @example
10128 edgedetect=mode=colormix:high=0
10129 @end example
10130 @end itemize
10131
10132 @section elbg
10133
10134 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10135
10136 For each input image, the filter will compute the optimal mapping from
10137 the input to the output given the codebook length, that is the number
10138 of distinct output colors.
10139
10140 This filter accepts the following options.
10141
10142 @table @option
10143 @item codebook_length, l
10144 Set codebook length. The value must be a positive integer, and
10145 represents the number of distinct output colors. Default value is 256.
10146
10147 @item nb_steps, n
10148 Set the maximum number of iterations to apply for computing the optimal
10149 mapping. The higher the value the better the result and the higher the
10150 computation time. Default value is 1.
10151
10152 @item seed, s
10153 Set a random seed, must be an integer included between 0 and
10154 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10155 will try to use a good random seed on a best effort basis.
10156
10157 @item pal8
10158 Set pal8 output pixel format. This option does not work with codebook
10159 length greater than 256.
10160 @end table
10161
10162 @section entropy
10163
10164 Measure graylevel entropy in histogram of color channels of video frames.
10165
10166 It accepts the following parameters:
10167
10168 @table @option
10169 @item mode
10170 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10171
10172 @var{diff} mode measures entropy of histogram delta values, absolute differences
10173 between neighbour histogram values.
10174 @end table
10175
10176 @section eq
10177 Set brightness, contrast, saturation and approximate gamma adjustment.
10178
10179 The filter accepts the following options:
10180
10181 @table @option
10182 @item contrast
10183 Set the contrast expression. The value must be a float value in range
10184 @code{-1000.0} to @code{1000.0}. The default value is "1".
10185
10186 @item brightness
10187 Set the brightness expression. The value must be a float value in
10188 range @code{-1.0} to @code{1.0}. The default value is "0".
10189
10190 @item saturation
10191 Set the saturation expression. The value must be a float in
10192 range @code{0.0} to @code{3.0}. The default value is "1".
10193
10194 @item gamma
10195 Set the gamma expression. The value must be a float in range
10196 @code{0.1} to @code{10.0}.  The default value is "1".
10197
10198 @item gamma_r
10199 Set the gamma expression for red. The value must be a float in
10200 range @code{0.1} to @code{10.0}. The default value is "1".
10201
10202 @item gamma_g
10203 Set the gamma expression for green. The value must be a float in range
10204 @code{0.1} to @code{10.0}. The default value is "1".
10205
10206 @item gamma_b
10207 Set the gamma expression for blue. The value must be a float in range
10208 @code{0.1} to @code{10.0}. The default value is "1".
10209
10210 @item gamma_weight
10211 Set the gamma weight expression. It can be used to reduce the effect
10212 of a high gamma value on bright image areas, e.g. keep them from
10213 getting overamplified and just plain white. The value must be a float
10214 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10215 gamma correction all the way down while @code{1.0} leaves it at its
10216 full strength. Default is "1".
10217
10218 @item eval
10219 Set when the expressions for brightness, contrast, saturation and
10220 gamma expressions are evaluated.
10221
10222 It accepts the following values:
10223 @table @samp
10224 @item init
10225 only evaluate expressions once during the filter initialization or
10226 when a command is processed
10227
10228 @item frame
10229 evaluate expressions for each incoming frame
10230 @end table
10231
10232 Default value is @samp{init}.
10233 @end table
10234
10235 The expressions accept the following parameters:
10236 @table @option
10237 @item n
10238 frame count of the input frame starting from 0
10239
10240 @item pos
10241 byte position of the corresponding packet in the input file, NAN if
10242 unspecified
10243
10244 @item r
10245 frame rate of the input video, NAN if the input frame rate is unknown
10246
10247 @item t
10248 timestamp expressed in seconds, NAN if the input timestamp is unknown
10249 @end table
10250
10251 @subsection Commands
10252 The filter supports the following commands:
10253
10254 @table @option
10255 @item contrast
10256 Set the contrast expression.
10257
10258 @item brightness
10259 Set the brightness expression.
10260
10261 @item saturation
10262 Set the saturation expression.
10263
10264 @item gamma
10265 Set the gamma expression.
10266
10267 @item gamma_r
10268 Set the gamma_r expression.
10269
10270 @item gamma_g
10271 Set gamma_g expression.
10272
10273 @item gamma_b
10274 Set gamma_b expression.
10275
10276 @item gamma_weight
10277 Set gamma_weight expression.
10278
10279 The command accepts the same syntax of the corresponding option.
10280
10281 If the specified expression is not valid, it is kept at its current
10282 value.
10283
10284 @end table
10285
10286 @section erosion
10287
10288 Apply erosion effect to the video.
10289
10290 This filter replaces the pixel by the local(3x3) minimum.
10291
10292 It accepts the following options:
10293
10294 @table @option
10295 @item threshold0
10296 @item threshold1
10297 @item threshold2
10298 @item threshold3
10299 Limit the maximum change for each plane, default is 65535.
10300 If 0, plane will remain unchanged.
10301
10302 @item coordinates
10303 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10304 pixels are used.
10305
10306 Flags to local 3x3 coordinates maps like this:
10307
10308     1 2 3
10309     4   5
10310     6 7 8
10311 @end table
10312
10313 @subsection Commands
10314
10315 This filter supports the all above options as @ref{commands}.
10316
10317 @section extractplanes
10318
10319 Extract color channel components from input video stream into
10320 separate grayscale video streams.
10321
10322 The filter accepts the following option:
10323
10324 @table @option
10325 @item planes
10326 Set plane(s) to extract.
10327
10328 Available values for planes are:
10329 @table @samp
10330 @item y
10331 @item u
10332 @item v
10333 @item a
10334 @item r
10335 @item g
10336 @item b
10337 @end table
10338
10339 Choosing planes not available in the input will result in an error.
10340 That means you cannot select @code{r}, @code{g}, @code{b} planes
10341 with @code{y}, @code{u}, @code{v} planes at same time.
10342 @end table
10343
10344 @subsection Examples
10345
10346 @itemize
10347 @item
10348 Extract luma, u and v color channel component from input video frame
10349 into 3 grayscale outputs:
10350 @example
10351 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
10352 @end example
10353 @end itemize
10354
10355 @section fade
10356
10357 Apply a fade-in/out effect to the input video.
10358
10359 It accepts the following parameters:
10360
10361 @table @option
10362 @item type, t
10363 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10364 effect.
10365 Default is @code{in}.
10366
10367 @item start_frame, s
10368 Specify the number of the frame to start applying the fade
10369 effect at. Default is 0.
10370
10371 @item nb_frames, n
10372 The number of frames that the fade effect lasts. At the end of the
10373 fade-in effect, the output video will have the same intensity as the input video.
10374 At the end of the fade-out transition, the output video will be filled with the
10375 selected @option{color}.
10376 Default is 25.
10377
10378 @item alpha
10379 If set to 1, fade only alpha channel, if one exists on the input.
10380 Default value is 0.
10381
10382 @item start_time, st
10383 Specify the timestamp (in seconds) of the frame to start to apply the fade
10384 effect. If both start_frame and start_time are specified, the fade will start at
10385 whichever comes last.  Default is 0.
10386
10387 @item duration, d
10388 The number of seconds for which the fade effect has to last. At the end of the
10389 fade-in effect the output video will have the same intensity as the input video,
10390 at the end of the fade-out transition the output video will be filled with the
10391 selected @option{color}.
10392 If both duration and nb_frames are specified, duration is used. Default is 0
10393 (nb_frames is used by default).
10394
10395 @item color, c
10396 Specify the color of the fade. Default is "black".
10397 @end table
10398
10399 @subsection Examples
10400
10401 @itemize
10402 @item
10403 Fade in the first 30 frames of video:
10404 @example
10405 fade=in:0:30
10406 @end example
10407
10408 The command above is equivalent to:
10409 @example
10410 fade=t=in:s=0:n=30
10411 @end example
10412
10413 @item
10414 Fade out the last 45 frames of a 200-frame video:
10415 @example
10416 fade=out:155:45
10417 fade=type=out:start_frame=155:nb_frames=45
10418 @end example
10419
10420 @item
10421 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10422 @example
10423 fade=in:0:25, fade=out:975:25
10424 @end example
10425
10426 @item
10427 Make the first 5 frames yellow, then fade in from frame 5-24:
10428 @example
10429 fade=in:5:20:color=yellow
10430 @end example
10431
10432 @item
10433 Fade in alpha over first 25 frames of video:
10434 @example
10435 fade=in:0:25:alpha=1
10436 @end example
10437
10438 @item
10439 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10440 @example
10441 fade=t=in:st=5.5:d=0.5
10442 @end example
10443
10444 @end itemize
10445
10446 @section fftdnoiz
10447 Denoise frames using 3D FFT (frequency domain filtering).
10448
10449 The filter accepts the following options:
10450
10451 @table @option
10452 @item sigma
10453 Set the noise sigma constant. This sets denoising strength.
10454 Default value is 1. Allowed range is from 0 to 30.
10455 Using very high sigma with low overlap may give blocking artifacts.
10456
10457 @item amount
10458 Set amount of denoising. By default all detected noise is reduced.
10459 Default value is 1. Allowed range is from 0 to 1.
10460
10461 @item block
10462 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10463 Actual size of block in pixels is 2 to power of @var{block}, so by default
10464 block size in pixels is 2^4 which is 16.
10465
10466 @item overlap
10467 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10468
10469 @item prev
10470 Set number of previous frames to use for denoising. By default is set to 0.
10471
10472 @item next
10473 Set number of next frames to to use for denoising. By default is set to 0.
10474
10475 @item planes
10476 Set planes which will be filtered, by default are all available filtered
10477 except alpha.
10478 @end table
10479
10480 @section fftfilt
10481 Apply arbitrary expressions to samples in frequency domain
10482
10483 @table @option
10484 @item dc_Y
10485 Adjust the dc value (gain) of the luma plane of the image. The filter
10486 accepts an integer value in range @code{0} to @code{1000}. The default
10487 value is set to @code{0}.
10488
10489 @item dc_U
10490 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10491 filter accepts an integer value in range @code{0} to @code{1000}. The
10492 default value is set to @code{0}.
10493
10494 @item dc_V
10495 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10496 filter accepts an integer value in range @code{0} to @code{1000}. The
10497 default value is set to @code{0}.
10498
10499 @item weight_Y
10500 Set the frequency domain weight expression for the luma plane.
10501
10502 @item weight_U
10503 Set the frequency domain weight expression for the 1st chroma plane.
10504
10505 @item weight_V
10506 Set the frequency domain weight expression for the 2nd chroma plane.
10507
10508 @item eval
10509 Set when the expressions are evaluated.
10510
10511 It accepts the following values:
10512 @table @samp
10513 @item init
10514 Only evaluate expressions once during the filter initialization.
10515
10516 @item frame
10517 Evaluate expressions for each incoming frame.
10518 @end table
10519
10520 Default value is @samp{init}.
10521
10522 The filter accepts the following variables:
10523 @item X
10524 @item Y
10525 The coordinates of the current sample.
10526
10527 @item W
10528 @item H
10529 The width and height of the image.
10530
10531 @item N
10532 The number of input frame, starting from 0.
10533 @end table
10534
10535 @subsection Examples
10536
10537 @itemize
10538 @item
10539 High-pass:
10540 @example
10541 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10542 @end example
10543
10544 @item
10545 Low-pass:
10546 @example
10547 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10548 @end example
10549
10550 @item
10551 Sharpen:
10552 @example
10553 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10554 @end example
10555
10556 @item
10557 Blur:
10558 @example
10559 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10560 @end example
10561
10562 @end itemize
10563
10564 @section field
10565
10566 Extract a single field from an interlaced image using stride
10567 arithmetic to avoid wasting CPU time. The output frames are marked as
10568 non-interlaced.
10569
10570 The filter accepts the following options:
10571
10572 @table @option
10573 @item type
10574 Specify whether to extract the top (if the value is @code{0} or
10575 @code{top}) or the bottom field (if the value is @code{1} or
10576 @code{bottom}).
10577 @end table
10578
10579 @section fieldhint
10580
10581 Create new frames by copying the top and bottom fields from surrounding frames
10582 supplied as numbers by the hint file.
10583
10584 @table @option
10585 @item hint
10586 Set file containing hints: absolute/relative frame numbers.
10587
10588 There must be one line for each frame in a clip. Each line must contain two
10589 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
10590 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
10591 is current frame number for @code{absolute} mode or out of [-1, 1] range
10592 for @code{relative} mode. First number tells from which frame to pick up top
10593 field and second number tells from which frame to pick up bottom field.
10594
10595 If optionally followed by @code{+} output frame will be marked as interlaced,
10596 else if followed by @code{-} output frame will be marked as progressive, else
10597 it will be marked same as input frame.
10598 If optionally followed by @code{t} output frame will use only top field, or in
10599 case of @code{b} it will use only bottom field.
10600 If line starts with @code{#} or @code{;} that line is skipped.
10601
10602 @item mode
10603 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
10604 @end table
10605
10606 Example of first several lines of @code{hint} file for @code{relative} mode:
10607 @example
10608 0,0 - # first frame
10609 1,0 - # second frame, use third's frame top field and second's frame bottom field
10610 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
10611 1,0 -
10612 0,0 -
10613 0,0 -
10614 1,0 -
10615 1,0 -
10616 1,0 -
10617 0,0 -
10618 0,0 -
10619 1,0 -
10620 1,0 -
10621 1,0 -
10622 0,0 -
10623 @end example
10624
10625 @section fieldmatch
10626
10627 Field matching filter for inverse telecine. It is meant to reconstruct the
10628 progressive frames from a telecined stream. The filter does not drop duplicated
10629 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
10630 followed by a decimation filter such as @ref{decimate} in the filtergraph.
10631
10632 The separation of the field matching and the decimation is notably motivated by
10633 the possibility of inserting a de-interlacing filter fallback between the two.
10634 If the source has mixed telecined and real interlaced content,
10635 @code{fieldmatch} will not be able to match fields for the interlaced parts.
10636 But these remaining combed frames will be marked as interlaced, and thus can be
10637 de-interlaced by a later filter such as @ref{yadif} before decimation.
10638
10639 In addition to the various configuration options, @code{fieldmatch} can take an
10640 optional second stream, activated through the @option{ppsrc} option. If
10641 enabled, the frames reconstruction will be based on the fields and frames from
10642 this second stream. This allows the first input to be pre-processed in order to
10643 help the various algorithms of the filter, while keeping the output lossless
10644 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10645 or brightness/contrast adjustments can help.
10646
10647 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10648 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10649 which @code{fieldmatch} is based on. While the semantic and usage are very
10650 close, some behaviour and options names can differ.
10651
10652 The @ref{decimate} filter currently only works for constant frame rate input.
10653 If your input has mixed telecined (30fps) and progressive content with a lower
10654 framerate like 24fps use the following filterchain to produce the necessary cfr
10655 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10656
10657 The filter accepts the following options:
10658
10659 @table @option
10660 @item order
10661 Specify the assumed field order of the input stream. Available values are:
10662
10663 @table @samp
10664 @item auto
10665 Auto detect parity (use FFmpeg's internal parity value).
10666 @item bff
10667 Assume bottom field first.
10668 @item tff
10669 Assume top field first.
10670 @end table
10671
10672 Note that it is sometimes recommended not to trust the parity announced by the
10673 stream.
10674
10675 Default value is @var{auto}.
10676
10677 @item mode
10678 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10679 sense that it won't risk creating jerkiness due to duplicate frames when
10680 possible, but if there are bad edits or blended fields it will end up
10681 outputting combed frames when a good match might actually exist. On the other
10682 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10683 but will almost always find a good frame if there is one. The other values are
10684 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10685 jerkiness and creating duplicate frames versus finding good matches in sections
10686 with bad edits, orphaned fields, blended fields, etc.
10687
10688 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10689
10690 Available values are:
10691
10692 @table @samp
10693 @item pc
10694 2-way matching (p/c)
10695 @item pc_n
10696 2-way matching, and trying 3rd match if still combed (p/c + n)
10697 @item pc_u
10698 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10699 @item pc_n_ub
10700 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10701 still combed (p/c + n + u/b)
10702 @item pcn
10703 3-way matching (p/c/n)
10704 @item pcn_ub
10705 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10706 detected as combed (p/c/n + u/b)
10707 @end table
10708
10709 The parenthesis at the end indicate the matches that would be used for that
10710 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10711 @var{top}).
10712
10713 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10714 the slowest.
10715
10716 Default value is @var{pc_n}.
10717
10718 @item ppsrc
10719 Mark the main input stream as a pre-processed input, and enable the secondary
10720 input stream as the clean source to pick the fields from. See the filter
10721 introduction for more details. It is similar to the @option{clip2} feature from
10722 VFM/TFM.
10723
10724 Default value is @code{0} (disabled).
10725
10726 @item field
10727 Set the field to match from. It is recommended to set this to the same value as
10728 @option{order} unless you experience matching failures with that setting. In
10729 certain circumstances changing the field that is used to match from can have a
10730 large impact on matching performance. Available values are:
10731
10732 @table @samp
10733 @item auto
10734 Automatic (same value as @option{order}).
10735 @item bottom
10736 Match from the bottom field.
10737 @item top
10738 Match from the top field.
10739 @end table
10740
10741 Default value is @var{auto}.
10742
10743 @item mchroma
10744 Set whether or not chroma is included during the match comparisons. In most
10745 cases it is recommended to leave this enabled. You should set this to @code{0}
10746 only if your clip has bad chroma problems such as heavy rainbowing or other
10747 artifacts. Setting this to @code{0} could also be used to speed things up at
10748 the cost of some accuracy.
10749
10750 Default value is @code{1}.
10751
10752 @item y0
10753 @item y1
10754 These define an exclusion band which excludes the lines between @option{y0} and
10755 @option{y1} from being included in the field matching decision. An exclusion
10756 band can be used to ignore subtitles, a logo, or other things that may
10757 interfere with the matching. @option{y0} sets the starting scan line and
10758 @option{y1} sets the ending line; all lines in between @option{y0} and
10759 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10760 @option{y0} and @option{y1} to the same value will disable the feature.
10761 @option{y0} and @option{y1} defaults to @code{0}.
10762
10763 @item scthresh
10764 Set the scene change detection threshold as a percentage of maximum change on
10765 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10766 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10767 @option{scthresh} is @code{[0.0, 100.0]}.
10768
10769 Default value is @code{12.0}.
10770
10771 @item combmatch
10772 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10773 account the combed scores of matches when deciding what match to use as the
10774 final match. Available values are:
10775
10776 @table @samp
10777 @item none
10778 No final matching based on combed scores.
10779 @item sc
10780 Combed scores are only used when a scene change is detected.
10781 @item full
10782 Use combed scores all the time.
10783 @end table
10784
10785 Default is @var{sc}.
10786
10787 @item combdbg
10788 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10789 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10790 Available values are:
10791
10792 @table @samp
10793 @item none
10794 No forced calculation.
10795 @item pcn
10796 Force p/c/n calculations.
10797 @item pcnub
10798 Force p/c/n/u/b calculations.
10799 @end table
10800
10801 Default value is @var{none}.
10802
10803 @item cthresh
10804 This is the area combing threshold used for combed frame detection. This
10805 essentially controls how "strong" or "visible" combing must be to be detected.
10806 Larger values mean combing must be more visible and smaller values mean combing
10807 can be less visible or strong and still be detected. Valid settings are from
10808 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10809 be detected as combed). This is basically a pixel difference value. A good
10810 range is @code{[8, 12]}.
10811
10812 Default value is @code{9}.
10813
10814 @item chroma
10815 Sets whether or not chroma is considered in the combed frame decision.  Only
10816 disable this if your source has chroma problems (rainbowing, etc.) that are
10817 causing problems for the combed frame detection with chroma enabled. Actually,
10818 using @option{chroma}=@var{0} is usually more reliable, except for the case
10819 where there is chroma only combing in the source.
10820
10821 Default value is @code{0}.
10822
10823 @item blockx
10824 @item blocky
10825 Respectively set the x-axis and y-axis size of the window used during combed
10826 frame detection. This has to do with the size of the area in which
10827 @option{combpel} pixels are required to be detected as combed for a frame to be
10828 declared combed. See the @option{combpel} parameter description for more info.
10829 Possible values are any number that is a power of 2 starting at 4 and going up
10830 to 512.
10831
10832 Default value is @code{16}.
10833
10834 @item combpel
10835 The number of combed pixels inside any of the @option{blocky} by
10836 @option{blockx} size blocks on the frame for the frame to be detected as
10837 combed. While @option{cthresh} controls how "visible" the combing must be, this
10838 setting controls "how much" combing there must be in any localized area (a
10839 window defined by the @option{blockx} and @option{blocky} settings) on the
10840 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10841 which point no frames will ever be detected as combed). This setting is known
10842 as @option{MI} in TFM/VFM vocabulary.
10843
10844 Default value is @code{80}.
10845 @end table
10846
10847 @anchor{p/c/n/u/b meaning}
10848 @subsection p/c/n/u/b meaning
10849
10850 @subsubsection p/c/n
10851
10852 We assume the following telecined stream:
10853
10854 @example
10855 Top fields:     1 2 2 3 4
10856 Bottom fields:  1 2 3 4 4
10857 @end example
10858
10859 The numbers correspond to the progressive frame the fields relate to. Here, the
10860 first two frames are progressive, the 3rd and 4th are combed, and so on.
10861
10862 When @code{fieldmatch} is configured to run a matching from bottom
10863 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10864
10865 @example
10866 Input stream:
10867                 T     1 2 2 3 4
10868                 B     1 2 3 4 4   <-- matching reference
10869
10870 Matches:              c c n n c
10871
10872 Output stream:
10873                 T     1 2 3 4 4
10874                 B     1 2 3 4 4
10875 @end example
10876
10877 As a result of the field matching, we can see that some frames get duplicated.
10878 To perform a complete inverse telecine, you need to rely on a decimation filter
10879 after this operation. See for instance the @ref{decimate} filter.
10880
10881 The same operation now matching from top fields (@option{field}=@var{top})
10882 looks like this:
10883
10884 @example
10885 Input stream:
10886                 T     1 2 2 3 4   <-- matching reference
10887                 B     1 2 3 4 4
10888
10889 Matches:              c c p p c
10890
10891 Output stream:
10892                 T     1 2 2 3 4
10893                 B     1 2 2 3 4
10894 @end example
10895
10896 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10897 basically, they refer to the frame and field of the opposite parity:
10898
10899 @itemize
10900 @item @var{p} matches the field of the opposite parity in the previous frame
10901 @item @var{c} matches the field of the opposite parity in the current frame
10902 @item @var{n} matches the field of the opposite parity in the next frame
10903 @end itemize
10904
10905 @subsubsection u/b
10906
10907 The @var{u} and @var{b} matching are a bit special in the sense that they match
10908 from the opposite parity flag. In the following examples, we assume that we are
10909 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10910 'x' is placed above and below each matched fields.
10911
10912 With bottom matching (@option{field}=@var{bottom}):
10913 @example
10914 Match:           c         p           n          b          u
10915
10916                  x       x               x        x          x
10917   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10918   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10919                  x         x           x        x              x
10920
10921 Output frames:
10922                  2          1          2          2          2
10923                  2          2          2          1          3
10924 @end example
10925
10926 With top matching (@option{field}=@var{top}):
10927 @example
10928 Match:           c         p           n          b          u
10929
10930                  x         x           x        x              x
10931   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10932   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10933                  x       x               x        x          x
10934
10935 Output frames:
10936                  2          2          2          1          2
10937                  2          1          3          2          2
10938 @end example
10939
10940 @subsection Examples
10941
10942 Simple IVTC of a top field first telecined stream:
10943 @example
10944 fieldmatch=order=tff:combmatch=none, decimate
10945 @end example
10946
10947 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10948 @example
10949 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10950 @end example
10951
10952 @section fieldorder
10953
10954 Transform the field order of the input video.
10955
10956 It accepts the following parameters:
10957
10958 @table @option
10959
10960 @item order
10961 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10962 for bottom field first.
10963 @end table
10964
10965 The default value is @samp{tff}.
10966
10967 The transformation is done by shifting the picture content up or down
10968 by one line, and filling the remaining line with appropriate picture content.
10969 This method is consistent with most broadcast field order converters.
10970
10971 If the input video is not flagged as being interlaced, or it is already
10972 flagged as being of the required output field order, then this filter does
10973 not alter the incoming video.
10974
10975 It is very useful when converting to or from PAL DV material,
10976 which is bottom field first.
10977
10978 For example:
10979 @example
10980 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10981 @end example
10982
10983 @section fifo, afifo
10984
10985 Buffer input images and send them when they are requested.
10986
10987 It is mainly useful when auto-inserted by the libavfilter
10988 framework.
10989
10990 It does not take parameters.
10991
10992 @section fillborders
10993
10994 Fill borders of the input video, without changing video stream dimensions.
10995 Sometimes video can have garbage at the four edges and you may not want to
10996 crop video input to keep size multiple of some number.
10997
10998 This filter accepts the following options:
10999
11000 @table @option
11001 @item left
11002 Number of pixels to fill from left border.
11003
11004 @item right
11005 Number of pixels to fill from right border.
11006
11007 @item top
11008 Number of pixels to fill from top border.
11009
11010 @item bottom
11011 Number of pixels to fill from bottom border.
11012
11013 @item mode
11014 Set fill mode.
11015
11016 It accepts the following values:
11017 @table @samp
11018 @item smear
11019 fill pixels using outermost pixels
11020
11021 @item mirror
11022 fill pixels using mirroring
11023
11024 @item fixed
11025 fill pixels with constant value
11026 @end table
11027
11028 Default is @var{smear}.
11029
11030 @item color
11031 Set color for pixels in fixed mode. Default is @var{black}.
11032 @end table
11033
11034 @subsection Commands
11035 This filter supports same @ref{commands} as options.
11036 The command accepts the same syntax of the corresponding option.
11037
11038 If the specified expression is not valid, it is kept at its current
11039 value.
11040
11041 @section find_rect
11042
11043 Find a rectangular object
11044
11045 It accepts the following options:
11046
11047 @table @option
11048 @item object
11049 Filepath of the object image, needs to be in gray8.
11050
11051 @item threshold
11052 Detection threshold, default is 0.5.
11053
11054 @item mipmaps
11055 Number of mipmaps, default is 3.
11056
11057 @item xmin, ymin, xmax, ymax
11058 Specifies the rectangle in which to search.
11059 @end table
11060
11061 @subsection Examples
11062
11063 @itemize
11064 @item
11065 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11066 @example
11067 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11068 @end example
11069 @end itemize
11070
11071 @section floodfill
11072
11073 Flood area with values of same pixel components with another values.
11074
11075 It accepts the following options:
11076 @table @option
11077 @item x
11078 Set pixel x coordinate.
11079
11080 @item y
11081 Set pixel y coordinate.
11082
11083 @item s0
11084 Set source #0 component value.
11085
11086 @item s1
11087 Set source #1 component value.
11088
11089 @item s2
11090 Set source #2 component value.
11091
11092 @item s3
11093 Set source #3 component value.
11094
11095 @item d0
11096 Set destination #0 component value.
11097
11098 @item d1
11099 Set destination #1 component value.
11100
11101 @item d2
11102 Set destination #2 component value.
11103
11104 @item d3
11105 Set destination #3 component value.
11106 @end table
11107
11108 @anchor{format}
11109 @section format
11110
11111 Convert the input video to one of the specified pixel formats.
11112 Libavfilter will try to pick one that is suitable as input to
11113 the next filter.
11114
11115 It accepts the following parameters:
11116 @table @option
11117
11118 @item pix_fmts
11119 A '|'-separated list of pixel format names, such as
11120 "pix_fmts=yuv420p|monow|rgb24".
11121
11122 @end table
11123
11124 @subsection Examples
11125
11126 @itemize
11127 @item
11128 Convert the input video to the @var{yuv420p} format
11129 @example
11130 format=pix_fmts=yuv420p
11131 @end example
11132
11133 Convert the input video to any of the formats in the list
11134 @example
11135 format=pix_fmts=yuv420p|yuv444p|yuv410p
11136 @end example
11137 @end itemize
11138
11139 @anchor{fps}
11140 @section fps
11141
11142 Convert the video to specified constant frame rate by duplicating or dropping
11143 frames as necessary.
11144
11145 It accepts the following parameters:
11146 @table @option
11147
11148 @item fps
11149 The desired output frame rate. The default is @code{25}.
11150
11151 @item start_time
11152 Assume the first PTS should be the given value, in seconds. This allows for
11153 padding/trimming at the start of stream. By default, no assumption is made
11154 about the first frame's expected PTS, so no padding or trimming is done.
11155 For example, this could be set to 0 to pad the beginning with duplicates of
11156 the first frame if a video stream starts after the audio stream or to trim any
11157 frames with a negative PTS.
11158
11159 @item round
11160 Timestamp (PTS) rounding method.
11161
11162 Possible values are:
11163 @table @option
11164 @item zero
11165 round towards 0
11166 @item inf
11167 round away from 0
11168 @item down
11169 round towards -infinity
11170 @item up
11171 round towards +infinity
11172 @item near
11173 round to nearest
11174 @end table
11175 The default is @code{near}.
11176
11177 @item eof_action
11178 Action performed when reading the last frame.
11179
11180 Possible values are:
11181 @table @option
11182 @item round
11183 Use same timestamp rounding method as used for other frames.
11184 @item pass
11185 Pass through last frame if input duration has not been reached yet.
11186 @end table
11187 The default is @code{round}.
11188
11189 @end table
11190
11191 Alternatively, the options can be specified as a flat string:
11192 @var{fps}[:@var{start_time}[:@var{round}]].
11193
11194 See also the @ref{setpts} filter.
11195
11196 @subsection Examples
11197
11198 @itemize
11199 @item
11200 A typical usage in order to set the fps to 25:
11201 @example
11202 fps=fps=25
11203 @end example
11204
11205 @item
11206 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11207 @example
11208 fps=fps=film:round=near
11209 @end example
11210 @end itemize
11211
11212 @section framepack
11213
11214 Pack two different video streams into a stereoscopic video, setting proper
11215 metadata on supported codecs. The two views should have the same size and
11216 framerate and processing will stop when the shorter video ends. Please note
11217 that you may conveniently adjust view properties with the @ref{scale} and
11218 @ref{fps} filters.
11219
11220 It accepts the following parameters:
11221 @table @option
11222
11223 @item format
11224 The desired packing format. Supported values are:
11225
11226 @table @option
11227
11228 @item sbs
11229 The views are next to each other (default).
11230
11231 @item tab
11232 The views are on top of each other.
11233
11234 @item lines
11235 The views are packed by line.
11236
11237 @item columns
11238 The views are packed by column.
11239
11240 @item frameseq
11241 The views are temporally interleaved.
11242
11243 @end table
11244
11245 @end table
11246
11247 Some examples:
11248
11249 @example
11250 # Convert left and right views into a frame-sequential video
11251 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11252
11253 # Convert views into a side-by-side video with the same output resolution as the input
11254 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
11255 @end example
11256
11257 @section framerate
11258
11259 Change the frame rate by interpolating new video output frames from the source
11260 frames.
11261
11262 This filter is not designed to function correctly with interlaced media. If
11263 you wish to change the frame rate of interlaced media then you are required
11264 to deinterlace before this filter and re-interlace after this filter.
11265
11266 A description of the accepted options follows.
11267
11268 @table @option
11269 @item fps
11270 Specify the output frames per second. This option can also be specified
11271 as a value alone. The default is @code{50}.
11272
11273 @item interp_start
11274 Specify the start of a range where the output frame will be created as a
11275 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11276 the default is @code{15}.
11277
11278 @item interp_end
11279 Specify the end of a range where the output frame will be created as a
11280 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11281 the default is @code{240}.
11282
11283 @item scene
11284 Specify the level at which a scene change is detected as a value between
11285 0 and 100 to indicate a new scene; a low value reflects a low
11286 probability for the current frame to introduce a new scene, while a higher
11287 value means the current frame is more likely to be one.
11288 The default is @code{8.2}.
11289
11290 @item flags
11291 Specify flags influencing the filter process.
11292
11293 Available value for @var{flags} is:
11294
11295 @table @option
11296 @item scene_change_detect, scd
11297 Enable scene change detection using the value of the option @var{scene}.
11298 This flag is enabled by default.
11299 @end table
11300 @end table
11301
11302 @section framestep
11303
11304 Select one frame every N-th frame.
11305
11306 This filter accepts the following option:
11307 @table @option
11308 @item step
11309 Select frame after every @code{step} frames.
11310 Allowed values are positive integers higher than 0. Default value is @code{1}.
11311 @end table
11312
11313 @section freezedetect
11314
11315 Detect frozen video.
11316
11317 This filter logs a message and sets frame metadata when it detects that the
11318 input video has no significant change in content during a specified duration.
11319 Video freeze detection calculates the mean average absolute difference of all
11320 the components of video frames and compares it to a noise floor.
11321
11322 The printed times and duration are expressed in seconds. The
11323 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11324 whose timestamp equals or exceeds the detection duration and it contains the
11325 timestamp of the first frame of the freeze. The
11326 @code{lavfi.freezedetect.freeze_duration} and
11327 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11328 after the freeze.
11329
11330 The filter accepts the following options:
11331
11332 @table @option
11333 @item noise, n
11334 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11335 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11336 0.001.
11337
11338 @item duration, d
11339 Set freeze duration until notification (default is 2 seconds).
11340 @end table
11341
11342 @section freezeframes
11343
11344 Freeze video frames.
11345
11346 This filter freezes video frames using frame from 2nd input.
11347
11348 The filter accepts the following options:
11349
11350 @table @option
11351 @item first
11352 Set number of first frame from which to start freeze.
11353
11354 @item last
11355 Set number of last frame from which to end freeze.
11356
11357 @item replace
11358 Set number of frame from 2nd input which will be used instead of replaced frames.
11359 @end table
11360
11361 @anchor{frei0r}
11362 @section frei0r
11363
11364 Apply a frei0r effect to the input video.
11365
11366 To enable the compilation of this filter, you need to install the frei0r
11367 header and configure FFmpeg with @code{--enable-frei0r}.
11368
11369 It accepts the following parameters:
11370
11371 @table @option
11372
11373 @item filter_name
11374 The name of the frei0r effect to load. If the environment variable
11375 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11376 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11377 Otherwise, the standard frei0r paths are searched, in this order:
11378 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11379 @file{/usr/lib/frei0r-1/}.
11380
11381 @item filter_params
11382 A '|'-separated list of parameters to pass to the frei0r effect.
11383
11384 @end table
11385
11386 A frei0r effect parameter can be a boolean (its value is either
11387 "y" or "n"), a double, a color (specified as
11388 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11389 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11390 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11391 a position (specified as @var{X}/@var{Y}, where
11392 @var{X} and @var{Y} are floating point numbers) and/or a string.
11393
11394 The number and types of parameters depend on the loaded effect. If an
11395 effect parameter is not specified, the default value is set.
11396
11397 @subsection Examples
11398
11399 @itemize
11400 @item
11401 Apply the distort0r effect, setting the first two double parameters:
11402 @example
11403 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11404 @end example
11405
11406 @item
11407 Apply the colordistance effect, taking a color as the first parameter:
11408 @example
11409 frei0r=colordistance:0.2/0.3/0.4
11410 frei0r=colordistance:violet
11411 frei0r=colordistance:0x112233
11412 @end example
11413
11414 @item
11415 Apply the perspective effect, specifying the top left and top right image
11416 positions:
11417 @example
11418 frei0r=perspective:0.2/0.2|0.8/0.2
11419 @end example
11420 @end itemize
11421
11422 For more information, see
11423 @url{http://frei0r.dyne.org}
11424
11425 @section fspp
11426
11427 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11428
11429 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11430 processing filter, one of them is performed once per block, not per pixel.
11431 This allows for much higher speed.
11432
11433 The filter accepts the following options:
11434
11435 @table @option
11436 @item quality
11437 Set quality. This option defines the number of levels for averaging. It accepts
11438 an integer in the range 4-5. Default value is @code{4}.
11439
11440 @item qp
11441 Force a constant quantization parameter. It accepts an integer in range 0-63.
11442 If not set, the filter will use the QP from the video stream (if available).
11443
11444 @item strength
11445 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11446 more details but also more artifacts, while higher values make the image smoother
11447 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11448
11449 @item use_bframe_qp
11450 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11451 option may cause flicker since the B-Frames have often larger QP. Default is
11452 @code{0} (not enabled).
11453
11454 @end table
11455
11456 @section gblur
11457
11458 Apply Gaussian blur filter.
11459
11460 The filter accepts the following options:
11461
11462 @table @option
11463 @item sigma
11464 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11465
11466 @item steps
11467 Set number of steps for Gaussian approximation. Default is @code{1}.
11468
11469 @item planes
11470 Set which planes to filter. By default all planes are filtered.
11471
11472 @item sigmaV
11473 Set vertical sigma, if negative it will be same as @code{sigma}.
11474 Default is @code{-1}.
11475 @end table
11476
11477 @subsection Commands
11478 This filter supports same commands as options.
11479 The command accepts the same syntax of the corresponding option.
11480
11481 If the specified expression is not valid, it is kept at its current
11482 value.
11483
11484 @section geq
11485
11486 Apply generic equation to each pixel.
11487
11488 The filter accepts the following options:
11489
11490 @table @option
11491 @item lum_expr, lum
11492 Set the luminance expression.
11493 @item cb_expr, cb
11494 Set the chrominance blue expression.
11495 @item cr_expr, cr
11496 Set the chrominance red expression.
11497 @item alpha_expr, a
11498 Set the alpha expression.
11499 @item red_expr, r
11500 Set the red expression.
11501 @item green_expr, g
11502 Set the green expression.
11503 @item blue_expr, b
11504 Set the blue expression.
11505 @end table
11506
11507 The colorspace is selected according to the specified options. If one
11508 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11509 options is specified, the filter will automatically select a YCbCr
11510 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11511 @option{blue_expr} options is specified, it will select an RGB
11512 colorspace.
11513
11514 If one of the chrominance expression is not defined, it falls back on the other
11515 one. If no alpha expression is specified it will evaluate to opaque value.
11516 If none of chrominance expressions are specified, they will evaluate
11517 to the luminance expression.
11518
11519 The expressions can use the following variables and functions:
11520
11521 @table @option
11522 @item N
11523 The sequential number of the filtered frame, starting from @code{0}.
11524
11525 @item X
11526 @item Y
11527 The coordinates of the current sample.
11528
11529 @item W
11530 @item H
11531 The width and height of the image.
11532
11533 @item SW
11534 @item SH
11535 Width and height scale depending on the currently filtered plane. It is the
11536 ratio between the corresponding luma plane number of pixels and the current
11537 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11538 @code{0.5,0.5} for chroma planes.
11539
11540 @item T
11541 Time of the current frame, expressed in seconds.
11542
11543 @item p(x, y)
11544 Return the value of the pixel at location (@var{x},@var{y}) of the current
11545 plane.
11546
11547 @item lum(x, y)
11548 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11549 plane.
11550
11551 @item cb(x, y)
11552 Return the value of the pixel at location (@var{x},@var{y}) of the
11553 blue-difference chroma plane. Return 0 if there is no such plane.
11554
11555 @item cr(x, y)
11556 Return the value of the pixel at location (@var{x},@var{y}) of the
11557 red-difference chroma plane. Return 0 if there is no such plane.
11558
11559 @item r(x, y)
11560 @item g(x, y)
11561 @item b(x, y)
11562 Return the value of the pixel at location (@var{x},@var{y}) of the
11563 red/green/blue component. Return 0 if there is no such component.
11564
11565 @item alpha(x, y)
11566 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
11567 plane. Return 0 if there is no such plane.
11568
11569 @item psum(x,y), lumsum(x, y), cbsum(x,y), crsum(x,y), rsum(x,y), gsum(x,y), bsum(x,y), alphasum(x,y)
11570 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
11571 sums of samples within a rectangle. See the functions without the sum postfix.
11572
11573 @item interpolation
11574 Set one of interpolation methods:
11575 @table @option
11576 @item nearest, n
11577 @item bilinear, b
11578 @end table
11579 Default is bilinear.
11580 @end table
11581
11582 For functions, if @var{x} and @var{y} are outside the area, the value will be
11583 automatically clipped to the closer edge.
11584
11585 Please note that this filter can use multiple threads in which case each slice
11586 will have its own expression state. If you want to use only a single expression
11587 state because your expressions depend on previous state then you should limit
11588 the number of filter threads to 1.
11589
11590 @subsection Examples
11591
11592 @itemize
11593 @item
11594 Flip the image horizontally:
11595 @example
11596 geq=p(W-X\,Y)
11597 @end example
11598
11599 @item
11600 Generate a bidimensional sine wave, with angle @code{PI/3} and a
11601 wavelength of 100 pixels:
11602 @example
11603 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
11604 @end example
11605
11606 @item
11607 Generate a fancy enigmatic moving light:
11608 @example
11609 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
11610 @end example
11611
11612 @item
11613 Generate a quick emboss effect:
11614 @example
11615 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
11616 @end example
11617
11618 @item
11619 Modify RGB components depending on pixel position:
11620 @example
11621 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
11622 @end example
11623
11624 @item
11625 Create a radial gradient that is the same size as the input (also see
11626 the @ref{vignette} filter):
11627 @example
11628 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
11629 @end example
11630 @end itemize
11631
11632 @section gradfun
11633
11634 Fix the banding artifacts that are sometimes introduced into nearly flat
11635 regions by truncation to 8-bit color depth.
11636 Interpolate the gradients that should go where the bands are, and
11637 dither them.
11638
11639 It is designed for playback only.  Do not use it prior to
11640 lossy compression, because compression tends to lose the dither and
11641 bring back the bands.
11642
11643 It accepts the following parameters:
11644
11645 @table @option
11646
11647 @item strength
11648 The maximum amount by which the filter will change any one pixel. This is also
11649 the threshold for detecting nearly flat regions. Acceptable values range from
11650 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
11651 valid range.
11652
11653 @item radius
11654 The neighborhood to fit the gradient to. A larger radius makes for smoother
11655 gradients, but also prevents the filter from modifying the pixels near detailed
11656 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
11657 values will be clipped to the valid range.
11658
11659 @end table
11660
11661 Alternatively, the options can be specified as a flat string:
11662 @var{strength}[:@var{radius}]
11663
11664 @subsection Examples
11665
11666 @itemize
11667 @item
11668 Apply the filter with a @code{3.5} strength and radius of @code{8}:
11669 @example
11670 gradfun=3.5:8
11671 @end example
11672
11673 @item
11674 Specify radius, omitting the strength (which will fall-back to the default
11675 value):
11676 @example
11677 gradfun=radius=8
11678 @end example
11679
11680 @end itemize
11681
11682 @anchor{graphmonitor}
11683 @section graphmonitor
11684 Show various filtergraph stats.
11685
11686 With this filter one can debug complete filtergraph.
11687 Especially issues with links filling with queued frames.
11688
11689 The filter accepts the following options:
11690
11691 @table @option
11692 @item size, s
11693 Set video output size. Default is @var{hd720}.
11694
11695 @item opacity, o
11696 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11697
11698 @item mode, m
11699 Set output mode, can be @var{fulll} or @var{compact}.
11700 In @var{compact} mode only filters with some queued frames have displayed stats.
11701
11702 @item flags, f
11703 Set flags which enable which stats are shown in video.
11704
11705 Available values for flags are:
11706 @table @samp
11707 @item queue
11708 Display number of queued frames in each link.
11709
11710 @item frame_count_in
11711 Display number of frames taken from filter.
11712
11713 @item frame_count_out
11714 Display number of frames given out from filter.
11715
11716 @item pts
11717 Display current filtered frame pts.
11718
11719 @item time
11720 Display current filtered frame time.
11721
11722 @item timebase
11723 Display time base for filter link.
11724
11725 @item format
11726 Display used format for filter link.
11727
11728 @item size
11729 Display video size or number of audio channels in case of audio used by filter link.
11730
11731 @item rate
11732 Display video frame rate or sample rate in case of audio used by filter link.
11733 @end table
11734
11735 @item rate, r
11736 Set upper limit for video rate of output stream, Default value is @var{25}.
11737 This guarantee that output video frame rate will not be higher than this value.
11738 @end table
11739
11740 @section greyedge
11741 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11742 and corrects the scene colors accordingly.
11743
11744 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11745
11746 The filter accepts the following options:
11747
11748 @table @option
11749 @item difford
11750 The order of differentiation to be applied on the scene. Must be chosen in the range
11751 [0,2] and default value is 1.
11752
11753 @item minknorm
11754 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11755 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11756 max value instead of calculating Minkowski distance.
11757
11758 @item sigma
11759 The standard deviation of Gaussian blur to be applied on the scene. Must be
11760 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11761 can't be equal to 0 if @var{difford} is greater than 0.
11762 @end table
11763
11764 @subsection Examples
11765 @itemize
11766
11767 @item
11768 Grey Edge:
11769 @example
11770 greyedge=difford=1:minknorm=5:sigma=2
11771 @end example
11772
11773 @item
11774 Max Edge:
11775 @example
11776 greyedge=difford=1:minknorm=0:sigma=2
11777 @end example
11778
11779 @end itemize
11780
11781 @anchor{haldclut}
11782 @section haldclut
11783
11784 Apply a Hald CLUT to a video stream.
11785
11786 First input is the video stream to process, and second one is the Hald CLUT.
11787 The Hald CLUT input can be a simple picture or a complete video stream.
11788
11789 The filter accepts the following options:
11790
11791 @table @option
11792 @item shortest
11793 Force termination when the shortest input terminates. Default is @code{0}.
11794 @item repeatlast
11795 Continue applying the last CLUT after the end of the stream. A value of
11796 @code{0} disable the filter after the last frame of the CLUT is reached.
11797 Default is @code{1}.
11798 @end table
11799
11800 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11801 filters share the same internals).
11802
11803 This filter also supports the @ref{framesync} options.
11804
11805 More information about the Hald CLUT can be found on Eskil Steenberg's website
11806 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11807
11808 @subsection Workflow examples
11809
11810 @subsubsection Hald CLUT video stream
11811
11812 Generate an identity Hald CLUT stream altered with various effects:
11813 @example
11814 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
11815 @end example
11816
11817 Note: make sure you use a lossless codec.
11818
11819 Then use it with @code{haldclut} to apply it on some random stream:
11820 @example
11821 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11822 @end example
11823
11824 The Hald CLUT will be applied to the 10 first seconds (duration of
11825 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11826 to the remaining frames of the @code{mandelbrot} stream.
11827
11828 @subsubsection Hald CLUT with preview
11829
11830 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11831 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11832 biggest possible square starting at the top left of the picture. The remaining
11833 padding pixels (bottom or right) will be ignored. This area can be used to add
11834 a preview of the Hald CLUT.
11835
11836 Typically, the following generated Hald CLUT will be supported by the
11837 @code{haldclut} filter:
11838
11839 @example
11840 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11841    pad=iw+320 [padded_clut];
11842    smptebars=s=320x256, split [a][b];
11843    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11844    [main][b] overlay=W-320" -frames:v 1 clut.png
11845 @end example
11846
11847 It contains the original and a preview of the effect of the CLUT: SMPTE color
11848 bars are displayed on the right-top, and below the same color bars processed by
11849 the color changes.
11850
11851 Then, the effect of this Hald CLUT can be visualized with:
11852 @example
11853 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11854 @end example
11855
11856 @section hflip
11857
11858 Flip the input video horizontally.
11859
11860 For example, to horizontally flip the input video with @command{ffmpeg}:
11861 @example
11862 ffmpeg -i in.avi -vf "hflip" out.avi
11863 @end example
11864
11865 @section histeq
11866 This filter applies a global color histogram equalization on a
11867 per-frame basis.
11868
11869 It can be used to correct video that has a compressed range of pixel
11870 intensities.  The filter redistributes the pixel intensities to
11871 equalize their distribution across the intensity range. It may be
11872 viewed as an "automatically adjusting contrast filter". This filter is
11873 useful only for correcting degraded or poorly captured source
11874 video.
11875
11876 The filter accepts the following options:
11877
11878 @table @option
11879 @item strength
11880 Determine the amount of equalization to be applied.  As the strength
11881 is reduced, the distribution of pixel intensities more-and-more
11882 approaches that of the input frame. The value must be a float number
11883 in the range [0,1] and defaults to 0.200.
11884
11885 @item intensity
11886 Set the maximum intensity that can generated and scale the output
11887 values appropriately.  The strength should be set as desired and then
11888 the intensity can be limited if needed to avoid washing-out. The value
11889 must be a float number in the range [0,1] and defaults to 0.210.
11890
11891 @item antibanding
11892 Set the antibanding level. If enabled the filter will randomly vary
11893 the luminance of output pixels by a small amount to avoid banding of
11894 the histogram. Possible values are @code{none}, @code{weak} or
11895 @code{strong}. It defaults to @code{none}.
11896 @end table
11897
11898 @anchor{histogram}
11899 @section histogram
11900
11901 Compute and draw a color distribution histogram for the input video.
11902
11903 The computed histogram is a representation of the color component
11904 distribution in an image.
11905
11906 Standard histogram displays the color components distribution in an image.
11907 Displays color graph for each color component. Shows distribution of
11908 the Y, U, V, A or R, G, B components, depending on input format, in the
11909 current frame. Below each graph a color component scale meter is shown.
11910
11911 The filter accepts the following options:
11912
11913 @table @option
11914 @item level_height
11915 Set height of level. Default value is @code{200}.
11916 Allowed range is [50, 2048].
11917
11918 @item scale_height
11919 Set height of color scale. Default value is @code{12}.
11920 Allowed range is [0, 40].
11921
11922 @item display_mode
11923 Set display mode.
11924 It accepts the following values:
11925 @table @samp
11926 @item stack
11927 Per color component graphs are placed below each other.
11928
11929 @item parade
11930 Per color component graphs are placed side by side.
11931
11932 @item overlay
11933 Presents information identical to that in the @code{parade}, except
11934 that the graphs representing color components are superimposed directly
11935 over one another.
11936 @end table
11937 Default is @code{stack}.
11938
11939 @item levels_mode
11940 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11941 Default is @code{linear}.
11942
11943 @item components
11944 Set what color components to display.
11945 Default is @code{7}.
11946
11947 @item fgopacity
11948 Set foreground opacity. Default is @code{0.7}.
11949
11950 @item bgopacity
11951 Set background opacity. Default is @code{0.5}.
11952 @end table
11953
11954 @subsection Examples
11955
11956 @itemize
11957
11958 @item
11959 Calculate and draw histogram:
11960 @example
11961 ffplay -i input -vf histogram
11962 @end example
11963
11964 @end itemize
11965
11966 @anchor{hqdn3d}
11967 @section hqdn3d
11968
11969 This is a high precision/quality 3d denoise filter. It aims to reduce
11970 image noise, producing smooth images and making still images really
11971 still. It should enhance compressibility.
11972
11973 It accepts the following optional parameters:
11974
11975 @table @option
11976 @item luma_spatial
11977 A non-negative floating point number which specifies spatial luma strength.
11978 It defaults to 4.0.
11979
11980 @item chroma_spatial
11981 A non-negative floating point number which specifies spatial chroma strength.
11982 It defaults to 3.0*@var{luma_spatial}/4.0.
11983
11984 @item luma_tmp
11985 A floating point number which specifies luma temporal strength. It defaults to
11986 6.0*@var{luma_spatial}/4.0.
11987
11988 @item chroma_tmp
11989 A floating point number which specifies chroma temporal strength. It defaults to
11990 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11991 @end table
11992
11993 @subsection Commands
11994 This filter supports same @ref{commands} as options.
11995 The command accepts the same syntax of the corresponding option.
11996
11997 If the specified expression is not valid, it is kept at its current
11998 value.
11999
12000 @anchor{hwdownload}
12001 @section hwdownload
12002
12003 Download hardware frames to system memory.
12004
12005 The input must be in hardware frames, and the output a non-hardware format.
12006 Not all formats will be supported on the output - it may be necessary to insert
12007 an additional @option{format} filter immediately following in the graph to get
12008 the output in a supported format.
12009
12010 @section hwmap
12011
12012 Map hardware frames to system memory or to another device.
12013
12014 This filter has several different modes of operation; which one is used depends
12015 on the input and output formats:
12016 @itemize
12017 @item
12018 Hardware frame input, normal frame output
12019
12020 Map the input frames to system memory and pass them to the output.  If the
12021 original hardware frame is later required (for example, after overlaying
12022 something else on part of it), the @option{hwmap} filter can be used again
12023 in the next mode to retrieve it.
12024 @item
12025 Normal frame input, hardware frame output
12026
12027 If the input is actually a software-mapped hardware frame, then unmap it -
12028 that is, return the original hardware frame.
12029
12030 Otherwise, a device must be provided.  Create new hardware surfaces on that
12031 device for the output, then map them back to the software format at the input
12032 and give those frames to the preceding filter.  This will then act like the
12033 @option{hwupload} filter, but may be able to avoid an additional copy when
12034 the input is already in a compatible format.
12035 @item
12036 Hardware frame input and output
12037
12038 A device must be supplied for the output, either directly or with the
12039 @option{derive_device} option.  The input and output devices must be of
12040 different types and compatible - the exact meaning of this is
12041 system-dependent, but typically it means that they must refer to the same
12042 underlying hardware context (for example, refer to the same graphics card).
12043
12044 If the input frames were originally created on the output device, then unmap
12045 to retrieve the original frames.
12046
12047 Otherwise, map the frames to the output device - create new hardware frames
12048 on the output corresponding to the frames on the input.
12049 @end itemize
12050
12051 The following additional parameters are accepted:
12052
12053 @table @option
12054 @item mode
12055 Set the frame mapping mode.  Some combination of:
12056 @table @var
12057 @item read
12058 The mapped frame should be readable.
12059 @item write
12060 The mapped frame should be writeable.
12061 @item overwrite
12062 The mapping will always overwrite the entire frame.
12063
12064 This may improve performance in some cases, as the original contents of the
12065 frame need not be loaded.
12066 @item direct
12067 The mapping must not involve any copying.
12068
12069 Indirect mappings to copies of frames are created in some cases where either
12070 direct mapping is not possible or it would have unexpected properties.
12071 Setting this flag ensures that the mapping is direct and will fail if that is
12072 not possible.
12073 @end table
12074 Defaults to @var{read+write} if not specified.
12075
12076 @item derive_device @var{type}
12077 Rather than using the device supplied at initialisation, instead derive a new
12078 device of type @var{type} from the device the input frames exist on.
12079
12080 @item reverse
12081 In a hardware to hardware mapping, map in reverse - create frames in the sink
12082 and map them back to the source.  This may be necessary in some cases where
12083 a mapping in one direction is required but only the opposite direction is
12084 supported by the devices being used.
12085
12086 This option is dangerous - it may break the preceding filter in undefined
12087 ways if there are any additional constraints on that filter's output.
12088 Do not use it without fully understanding the implications of its use.
12089 @end table
12090
12091 @anchor{hwupload}
12092 @section hwupload
12093
12094 Upload system memory frames to hardware surfaces.
12095
12096 The device to upload to must be supplied when the filter is initialised.  If
12097 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12098 option or with the @option{derive_device} option.  The input and output devices
12099 must be of different types and compatible - the exact meaning of this is
12100 system-dependent, but typically it means that they must refer to the same
12101 underlying hardware context (for example, refer to the same graphics card).
12102
12103 The following additional parameters are accepted:
12104
12105 @table @option
12106 @item derive_device @var{type}
12107 Rather than using the device supplied at initialisation, instead derive a new
12108 device of type @var{type} from the device the input frames exist on.
12109 @end table
12110
12111 @anchor{hwupload_cuda}
12112 @section hwupload_cuda
12113
12114 Upload system memory frames to a CUDA device.
12115
12116 It accepts the following optional parameters:
12117
12118 @table @option
12119 @item device
12120 The number of the CUDA device to use
12121 @end table
12122
12123 @section hqx
12124
12125 Apply a high-quality magnification filter designed for pixel art. This filter
12126 was originally created by Maxim Stepin.
12127
12128 It accepts the following option:
12129
12130 @table @option
12131 @item n
12132 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12133 @code{hq3x} and @code{4} for @code{hq4x}.
12134 Default is @code{3}.
12135 @end table
12136
12137 @section hstack
12138 Stack input videos horizontally.
12139
12140 All streams must be of same pixel format and of same height.
12141
12142 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12143 to create same output.
12144
12145 The filter accepts the following option:
12146
12147 @table @option
12148 @item inputs
12149 Set number of input streams. Default is 2.
12150
12151 @item shortest
12152 If set to 1, force the output to terminate when the shortest input
12153 terminates. Default value is 0.
12154 @end table
12155
12156 @section hue
12157
12158 Modify the hue and/or the saturation of the input.
12159
12160 It accepts the following parameters:
12161
12162 @table @option
12163 @item h
12164 Specify the hue angle as a number of degrees. It accepts an expression,
12165 and defaults to "0".
12166
12167 @item s
12168 Specify the saturation in the [-10,10] range. It accepts an expression and
12169 defaults to "1".
12170
12171 @item H
12172 Specify the hue angle as a number of radians. It accepts an
12173 expression, and defaults to "0".
12174
12175 @item b
12176 Specify the brightness in the [-10,10] range. It accepts an expression and
12177 defaults to "0".
12178 @end table
12179
12180 @option{h} and @option{H} are mutually exclusive, and can't be
12181 specified at the same time.
12182
12183 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12184 expressions containing the following constants:
12185
12186 @table @option
12187 @item n
12188 frame count of the input frame starting from 0
12189
12190 @item pts
12191 presentation timestamp of the input frame expressed in time base units
12192
12193 @item r
12194 frame rate of the input video, NAN if the input frame rate is unknown
12195
12196 @item t
12197 timestamp expressed in seconds, NAN if the input timestamp is unknown
12198
12199 @item tb
12200 time base of the input video
12201 @end table
12202
12203 @subsection Examples
12204
12205 @itemize
12206 @item
12207 Set the hue to 90 degrees and the saturation to 1.0:
12208 @example
12209 hue=h=90:s=1
12210 @end example
12211
12212 @item
12213 Same command but expressing the hue in radians:
12214 @example
12215 hue=H=PI/2:s=1
12216 @end example
12217
12218 @item
12219 Rotate hue and make the saturation swing between 0
12220 and 2 over a period of 1 second:
12221 @example
12222 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12223 @end example
12224
12225 @item
12226 Apply a 3 seconds saturation fade-in effect starting at 0:
12227 @example
12228 hue="s=min(t/3\,1)"
12229 @end example
12230
12231 The general fade-in expression can be written as:
12232 @example
12233 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12234 @end example
12235
12236 @item
12237 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12238 @example
12239 hue="s=max(0\, min(1\, (8-t)/3))"
12240 @end example
12241
12242 The general fade-out expression can be written as:
12243 @example
12244 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12245 @end example
12246
12247 @end itemize
12248
12249 @subsection Commands
12250
12251 This filter supports the following commands:
12252 @table @option
12253 @item b
12254 @item s
12255 @item h
12256 @item H
12257 Modify the hue and/or the saturation and/or brightness of the input video.
12258 The command accepts the same syntax of the corresponding option.
12259
12260 If the specified expression is not valid, it is kept at its current
12261 value.
12262 @end table
12263
12264 @section hysteresis
12265
12266 Grow first stream into second stream by connecting components.
12267 This makes it possible to build more robust edge masks.
12268
12269 This filter accepts the following options:
12270
12271 @table @option
12272 @item planes
12273 Set which planes will be processed as bitmap, unprocessed planes will be
12274 copied from first stream.
12275 By default value 0xf, all planes will be processed.
12276
12277 @item threshold
12278 Set threshold which is used in filtering. If pixel component value is higher than
12279 this value filter algorithm for connecting components is activated.
12280 By default value is 0.
12281 @end table
12282
12283 The @code{hysteresis} filter also supports the @ref{framesync} options.
12284
12285 @section idet
12286
12287 Detect video interlacing type.
12288
12289 This filter tries to detect if the input frames are interlaced, progressive,
12290 top or bottom field first. It will also try to detect fields that are
12291 repeated between adjacent frames (a sign of telecine).
12292
12293 Single frame detection considers only immediately adjacent frames when classifying each frame.
12294 Multiple frame detection incorporates the classification history of previous frames.
12295
12296 The filter will log these metadata values:
12297
12298 @table @option
12299 @item single.current_frame
12300 Detected type of current frame using single-frame detection. One of:
12301 ``tff'' (top field first), ``bff'' (bottom field first),
12302 ``progressive'', or ``undetermined''
12303
12304 @item single.tff
12305 Cumulative number of frames detected as top field first using single-frame detection.
12306
12307 @item multiple.tff
12308 Cumulative number of frames detected as top field first using multiple-frame detection.
12309
12310 @item single.bff
12311 Cumulative number of frames detected as bottom field first using single-frame detection.
12312
12313 @item multiple.current_frame
12314 Detected type of current frame using multiple-frame detection. One of:
12315 ``tff'' (top field first), ``bff'' (bottom field first),
12316 ``progressive'', or ``undetermined''
12317
12318 @item multiple.bff
12319 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12320
12321 @item single.progressive
12322 Cumulative number of frames detected as progressive using single-frame detection.
12323
12324 @item multiple.progressive
12325 Cumulative number of frames detected as progressive using multiple-frame detection.
12326
12327 @item single.undetermined
12328 Cumulative number of frames that could not be classified using single-frame detection.
12329
12330 @item multiple.undetermined
12331 Cumulative number of frames that could not be classified using multiple-frame detection.
12332
12333 @item repeated.current_frame
12334 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12335
12336 @item repeated.neither
12337 Cumulative number of frames with no repeated field.
12338
12339 @item repeated.top
12340 Cumulative number of frames with the top field repeated from the previous frame's top field.
12341
12342 @item repeated.bottom
12343 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12344 @end table
12345
12346 The filter accepts the following options:
12347
12348 @table @option
12349 @item intl_thres
12350 Set interlacing threshold.
12351 @item prog_thres
12352 Set progressive threshold.
12353 @item rep_thres
12354 Threshold for repeated field detection.
12355 @item half_life
12356 Number of frames after which a given frame's contribution to the
12357 statistics is halved (i.e., it contributes only 0.5 to its
12358 classification). The default of 0 means that all frames seen are given
12359 full weight of 1.0 forever.
12360 @item analyze_interlaced_flag
12361 When this is not 0 then idet will use the specified number of frames to determine
12362 if the interlaced flag is accurate, it will not count undetermined frames.
12363 If the flag is found to be accurate it will be used without any further
12364 computations, if it is found to be inaccurate it will be cleared without any
12365 further computations. This allows inserting the idet filter as a low computational
12366 method to clean up the interlaced flag
12367 @end table
12368
12369 @section il
12370
12371 Deinterleave or interleave fields.
12372
12373 This filter allows one to process interlaced images fields without
12374 deinterlacing them. Deinterleaving splits the input frame into 2
12375 fields (so called half pictures). Odd lines are moved to the top
12376 half of the output image, even lines to the bottom half.
12377 You can process (filter) them independently and then re-interleave them.
12378
12379 The filter accepts the following options:
12380
12381 @table @option
12382 @item luma_mode, l
12383 @item chroma_mode, c
12384 @item alpha_mode, a
12385 Available values for @var{luma_mode}, @var{chroma_mode} and
12386 @var{alpha_mode} are:
12387
12388 @table @samp
12389 @item none
12390 Do nothing.
12391
12392 @item deinterleave, d
12393 Deinterleave fields, placing one above the other.
12394
12395 @item interleave, i
12396 Interleave fields. Reverse the effect of deinterleaving.
12397 @end table
12398 Default value is @code{none}.
12399
12400 @item luma_swap, ls
12401 @item chroma_swap, cs
12402 @item alpha_swap, as
12403 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12404 @end table
12405
12406 @subsection Commands
12407
12408 This filter supports the all above options as @ref{commands}.
12409
12410 @section inflate
12411
12412 Apply inflate effect to the video.
12413
12414 This filter replaces the pixel by the local(3x3) average by taking into account
12415 only values higher than the pixel.
12416
12417 It accepts the following options:
12418
12419 @table @option
12420 @item threshold0
12421 @item threshold1
12422 @item threshold2
12423 @item threshold3
12424 Limit the maximum change for each plane, default is 65535.
12425 If 0, plane will remain unchanged.
12426 @end table
12427
12428 @subsection Commands
12429
12430 This filter supports the all above options as @ref{commands}.
12431
12432 @section interlace
12433
12434 Simple interlacing filter from progressive contents. This interleaves upper (or
12435 lower) lines from odd frames with lower (or upper) lines from even frames,
12436 halving the frame rate and preserving image height.
12437
12438 @example
12439    Original        Original             New Frame
12440    Frame 'j'      Frame 'j+1'             (tff)
12441   ==========      ===========       ==================
12442     Line 0  -------------------->    Frame 'j' Line 0
12443     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12444     Line 2 --------------------->    Frame 'j' Line 2
12445     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12446      ...             ...                   ...
12447 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12448 @end example
12449
12450 It accepts the following optional parameters:
12451
12452 @table @option
12453 @item scan
12454 This determines whether the interlaced frame is taken from the even
12455 (tff - default) or odd (bff) lines of the progressive frame.
12456
12457 @item lowpass
12458 Vertical lowpass filter to avoid twitter interlacing and
12459 reduce moire patterns.
12460
12461 @table @samp
12462 @item 0, off
12463 Disable vertical lowpass filter
12464
12465 @item 1, linear
12466 Enable linear filter (default)
12467
12468 @item 2, complex
12469 Enable complex filter. This will slightly less reduce twitter and moire
12470 but better retain detail and subjective sharpness impression.
12471
12472 @end table
12473 @end table
12474
12475 @section kerndeint
12476
12477 Deinterlace input video by applying Donald Graft's adaptive kernel
12478 deinterling. Work on interlaced parts of a video to produce
12479 progressive frames.
12480
12481 The description of the accepted parameters follows.
12482
12483 @table @option
12484 @item thresh
12485 Set the threshold which affects the filter's tolerance when
12486 determining if a pixel line must be processed. It must be an integer
12487 in the range [0,255] and defaults to 10. A value of 0 will result in
12488 applying the process on every pixels.
12489
12490 @item map
12491 Paint pixels exceeding the threshold value to white if set to 1.
12492 Default is 0.
12493
12494 @item order
12495 Set the fields order. Swap fields if set to 1, leave fields alone if
12496 0. Default is 0.
12497
12498 @item sharp
12499 Enable additional sharpening if set to 1. Default is 0.
12500
12501 @item twoway
12502 Enable twoway sharpening if set to 1. Default is 0.
12503 @end table
12504
12505 @subsection Examples
12506
12507 @itemize
12508 @item
12509 Apply default values:
12510 @example
12511 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12512 @end example
12513
12514 @item
12515 Enable additional sharpening:
12516 @example
12517 kerndeint=sharp=1
12518 @end example
12519
12520 @item
12521 Paint processed pixels in white:
12522 @example
12523 kerndeint=map=1
12524 @end example
12525 @end itemize
12526
12527 @section lagfun
12528
12529 Slowly update darker pixels.
12530
12531 This filter makes short flashes of light appear longer.
12532 This filter accepts the following options:
12533
12534 @table @option
12535 @item decay
12536 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12537
12538 @item planes
12539 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12540 @end table
12541
12542 @section lenscorrection
12543
12544 Correct radial lens distortion
12545
12546 This filter can be used to correct for radial distortion as can result from the use
12547 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12548 one can use tools available for example as part of opencv or simply trial-and-error.
12549 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12550 and extract the k1 and k2 coefficients from the resulting matrix.
12551
12552 Note that effectively the same filter is available in the open-source tools Krita and
12553 Digikam from the KDE project.
12554
12555 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12556 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12557 brightness distribution, so you may want to use both filters together in certain
12558 cases, though you will have to take care of ordering, i.e. whether vignetting should
12559 be applied before or after lens correction.
12560
12561 @subsection Options
12562
12563 The filter accepts the following options:
12564
12565 @table @option
12566 @item cx
12567 Relative x-coordinate of the focal point of the image, and thereby the center of the
12568 distortion. This value has a range [0,1] and is expressed as fractions of the image
12569 width. Default is 0.5.
12570 @item cy
12571 Relative y-coordinate of the focal point of the image, and thereby the center of the
12572 distortion. This value has a range [0,1] and is expressed as fractions of the image
12573 height. Default is 0.5.
12574 @item k1
12575 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
12576 no correction. Default is 0.
12577 @item k2
12578 Coefficient of the double quadratic correction term. This value has a range [-1,1].
12579 0 means no correction. Default is 0.
12580 @end table
12581
12582 The formula that generates the correction is:
12583
12584 @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)
12585
12586 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
12587 distances from the focal point in the source and target images, respectively.
12588
12589 @section lensfun
12590
12591 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
12592
12593 The @code{lensfun} filter requires the camera make, camera model, and lens model
12594 to apply the lens correction. The filter will load the lensfun database and
12595 query it to find the corresponding camera and lens entries in the database. As
12596 long as these entries can be found with the given options, the filter can
12597 perform corrections on frames. Note that incomplete strings will result in the
12598 filter choosing the best match with the given options, and the filter will
12599 output the chosen camera and lens models (logged with level "info"). You must
12600 provide the make, camera model, and lens model as they are required.
12601
12602 The filter accepts the following options:
12603
12604 @table @option
12605 @item make
12606 The make of the camera (for example, "Canon"). This option is required.
12607
12608 @item model
12609 The model of the camera (for example, "Canon EOS 100D"). This option is
12610 required.
12611
12612 @item lens_model
12613 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
12614 option is required.
12615
12616 @item mode
12617 The type of correction to apply. The following values are valid options:
12618
12619 @table @samp
12620 @item vignetting
12621 Enables fixing lens vignetting.
12622
12623 @item geometry
12624 Enables fixing lens geometry. This is the default.
12625
12626 @item subpixel
12627 Enables fixing chromatic aberrations.
12628
12629 @item vig_geo
12630 Enables fixing lens vignetting and lens geometry.
12631
12632 @item vig_subpixel
12633 Enables fixing lens vignetting and chromatic aberrations.
12634
12635 @item distortion
12636 Enables fixing both lens geometry and chromatic aberrations.
12637
12638 @item all
12639 Enables all possible corrections.
12640
12641 @end table
12642 @item focal_length
12643 The focal length of the image/video (zoom; expected constant for video). For
12644 example, a 18--55mm lens has focal length range of [18--55], so a value in that
12645 range should be chosen when using that lens. Default 18.
12646
12647 @item aperture
12648 The aperture of the image/video (expected constant for video). Note that
12649 aperture is only used for vignetting correction. Default 3.5.
12650
12651 @item focus_distance
12652 The focus distance of the image/video (expected constant for video). Note that
12653 focus distance is only used for vignetting and only slightly affects the
12654 vignetting correction process. If unknown, leave it at the default value (which
12655 is 1000).
12656
12657 @item scale
12658 The scale factor which is applied after transformation. After correction the
12659 video is no longer necessarily rectangular. This parameter controls how much of
12660 the resulting image is visible. The value 0 means that a value will be chosen
12661 automatically such that there is little or no unmapped area in the output
12662 image. 1.0 means that no additional scaling is done. Lower values may result
12663 in more of the corrected image being visible, while higher values may avoid
12664 unmapped areas in the output.
12665
12666 @item target_geometry
12667 The target geometry of the output image/video. The following values are valid
12668 options:
12669
12670 @table @samp
12671 @item rectilinear (default)
12672 @item fisheye
12673 @item panoramic
12674 @item equirectangular
12675 @item fisheye_orthographic
12676 @item fisheye_stereographic
12677 @item fisheye_equisolid
12678 @item fisheye_thoby
12679 @end table
12680 @item reverse
12681 Apply the reverse of image correction (instead of correcting distortion, apply
12682 it).
12683
12684 @item interpolation
12685 The type of interpolation used when correcting distortion. The following values
12686 are valid options:
12687
12688 @table @samp
12689 @item nearest
12690 @item linear (default)
12691 @item lanczos
12692 @end table
12693 @end table
12694
12695 @subsection Examples
12696
12697 @itemize
12698 @item
12699 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
12700 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
12701 aperture of "8.0".
12702
12703 @example
12704 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
12705 @end example
12706
12707 @item
12708 Apply the same as before, but only for the first 5 seconds of video.
12709
12710 @example
12711 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
12712 @end example
12713
12714 @end itemize
12715
12716 @section libvmaf
12717
12718 Obtain the VMAF (Video Multi-Method Assessment Fusion)
12719 score between two input videos.
12720
12721 The obtained VMAF score is printed through the logging system.
12722
12723 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12724 After installing the library it can be enabled using:
12725 @code{./configure --enable-libvmaf --enable-version3}.
12726 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12727
12728 The filter has following options:
12729
12730 @table @option
12731 @item model_path
12732 Set the model path which is to be used for SVM.
12733 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
12734
12735 @item log_path
12736 Set the file path to be used to store logs.
12737
12738 @item log_fmt
12739 Set the format of the log file (xml or json).
12740
12741 @item enable_transform
12742 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12743 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12744 Default value: @code{false}
12745
12746 @item phone_model
12747 Invokes the phone model which will generate VMAF scores higher than in the
12748 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12749 Default value: @code{false}
12750
12751 @item psnr
12752 Enables computing psnr along with vmaf.
12753 Default value: @code{false}
12754
12755 @item ssim
12756 Enables computing ssim along with vmaf.
12757 Default value: @code{false}
12758
12759 @item ms_ssim
12760 Enables computing ms_ssim along with vmaf.
12761 Default value: @code{false}
12762
12763 @item pool
12764 Set the pool method to be used for computing vmaf.
12765 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
12766
12767 @item n_threads
12768 Set number of threads to be used when computing vmaf.
12769 Default value: @code{0}, which makes use of all available logical processors.
12770
12771 @item n_subsample
12772 Set interval for frame subsampling used when computing vmaf.
12773 Default value: @code{1}
12774
12775 @item enable_conf_interval
12776 Enables confidence interval.
12777 Default value: @code{false}
12778 @end table
12779
12780 This filter also supports the @ref{framesync} options.
12781
12782 @subsection Examples
12783 @itemize
12784 @item
12785 On the below examples the input file @file{main.mpg} being processed is
12786 compared with the reference file @file{ref.mpg}.
12787
12788 @example
12789 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12790 @end example
12791
12792 @item
12793 Example with options:
12794 @example
12795 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12796 @end example
12797
12798 @item
12799 Example with options and different containers:
12800 @example
12801 ffmpeg -i main.mpg -i ref.mkv -lavfi "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]libvmaf=psnr=1:log_fmt=json" -f null -
12802 @end example
12803 @end itemize
12804
12805 @section limiter
12806
12807 Limits the pixel components values to the specified range [min, max].
12808
12809 The filter accepts the following options:
12810
12811 @table @option
12812 @item min
12813 Lower bound. Defaults to the lowest allowed value for the input.
12814
12815 @item max
12816 Upper bound. Defaults to the highest allowed value for the input.
12817
12818 @item planes
12819 Specify which planes will be processed. Defaults to all available.
12820 @end table
12821
12822 @section loop
12823
12824 Loop video frames.
12825
12826 The filter accepts the following options:
12827
12828 @table @option
12829 @item loop
12830 Set the number of loops. Setting this value to -1 will result in infinite loops.
12831 Default is 0.
12832
12833 @item size
12834 Set maximal size in number of frames. Default is 0.
12835
12836 @item start
12837 Set first frame of loop. Default is 0.
12838 @end table
12839
12840 @subsection Examples
12841
12842 @itemize
12843 @item
12844 Loop single first frame infinitely:
12845 @example
12846 loop=loop=-1:size=1:start=0
12847 @end example
12848
12849 @item
12850 Loop single first frame 10 times:
12851 @example
12852 loop=loop=10:size=1:start=0
12853 @end example
12854
12855 @item
12856 Loop 10 first frames 5 times:
12857 @example
12858 loop=loop=5:size=10:start=0
12859 @end example
12860 @end itemize
12861
12862 @section lut1d
12863
12864 Apply a 1D LUT to an input video.
12865
12866 The filter accepts the following options:
12867
12868 @table @option
12869 @item file
12870 Set the 1D LUT file name.
12871
12872 Currently supported formats:
12873 @table @samp
12874 @item cube
12875 Iridas
12876 @item csp
12877 cineSpace
12878 @end table
12879
12880 @item interp
12881 Select interpolation mode.
12882
12883 Available values are:
12884
12885 @table @samp
12886 @item nearest
12887 Use values from the nearest defined point.
12888 @item linear
12889 Interpolate values using the linear interpolation.
12890 @item cosine
12891 Interpolate values using the cosine interpolation.
12892 @item cubic
12893 Interpolate values using the cubic interpolation.
12894 @item spline
12895 Interpolate values using the spline interpolation.
12896 @end table
12897 @end table
12898
12899 @anchor{lut3d}
12900 @section lut3d
12901
12902 Apply a 3D LUT to an input video.
12903
12904 The filter accepts the following options:
12905
12906 @table @option
12907 @item file
12908 Set the 3D LUT file name.
12909
12910 Currently supported formats:
12911 @table @samp
12912 @item 3dl
12913 AfterEffects
12914 @item cube
12915 Iridas
12916 @item dat
12917 DaVinci
12918 @item m3d
12919 Pandora
12920 @item csp
12921 cineSpace
12922 @end table
12923 @item interp
12924 Select interpolation mode.
12925
12926 Available values are:
12927
12928 @table @samp
12929 @item nearest
12930 Use values from the nearest defined point.
12931 @item trilinear
12932 Interpolate values using the 8 points defining a cube.
12933 @item tetrahedral
12934 Interpolate values using a tetrahedron.
12935 @end table
12936 @end table
12937
12938 @section lumakey
12939
12940 Turn certain luma values into transparency.
12941
12942 The filter accepts the following options:
12943
12944 @table @option
12945 @item threshold
12946 Set the luma which will be used as base for transparency.
12947 Default value is @code{0}.
12948
12949 @item tolerance
12950 Set the range of luma values to be keyed out.
12951 Default value is @code{0.01}.
12952
12953 @item softness
12954 Set the range of softness. Default value is @code{0}.
12955 Use this to control gradual transition from zero to full transparency.
12956 @end table
12957
12958 @subsection Commands
12959 This filter supports same @ref{commands} as options.
12960 The command accepts the same syntax of the corresponding option.
12961
12962 If the specified expression is not valid, it is kept at its current
12963 value.
12964
12965 @section lut, lutrgb, lutyuv
12966
12967 Compute a look-up table for binding each pixel component input value
12968 to an output value, and apply it to the input video.
12969
12970 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12971 to an RGB input video.
12972
12973 These filters accept the following parameters:
12974 @table @option
12975 @item c0
12976 set first pixel component expression
12977 @item c1
12978 set second pixel component expression
12979 @item c2
12980 set third pixel component expression
12981 @item c3
12982 set fourth pixel component expression, corresponds to the alpha component
12983
12984 @item r
12985 set red component expression
12986 @item g
12987 set green component expression
12988 @item b
12989 set blue component expression
12990 @item a
12991 alpha component expression
12992
12993 @item y
12994 set Y/luminance component expression
12995 @item u
12996 set U/Cb component expression
12997 @item v
12998 set V/Cr component expression
12999 @end table
13000
13001 Each of them specifies the expression to use for computing the lookup table for
13002 the corresponding pixel component values.
13003
13004 The exact component associated to each of the @var{c*} options depends on the
13005 format in input.
13006
13007 The @var{lut} filter requires either YUV or RGB pixel formats in input,
13008 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
13009
13010 The expressions can contain the following constants and functions:
13011
13012 @table @option
13013 @item w
13014 @item h
13015 The input width and height.
13016
13017 @item val
13018 The input value for the pixel component.
13019
13020 @item clipval
13021 The input value, clipped to the @var{minval}-@var{maxval} range.
13022
13023 @item maxval
13024 The maximum value for the pixel component.
13025
13026 @item minval
13027 The minimum value for the pixel component.
13028
13029 @item negval
13030 The negated value for the pixel component value, clipped to the
13031 @var{minval}-@var{maxval} range; it corresponds to the expression
13032 "maxval-clipval+minval".
13033
13034 @item clip(val)
13035 The computed value in @var{val}, clipped to the
13036 @var{minval}-@var{maxval} range.
13037
13038 @item gammaval(gamma)
13039 The computed gamma correction value of the pixel component value,
13040 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13041 expression
13042 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13043
13044 @end table
13045
13046 All expressions default to "val".
13047
13048 @subsection Examples
13049
13050 @itemize
13051 @item
13052 Negate input video:
13053 @example
13054 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13055 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13056 @end example
13057
13058 The above is the same as:
13059 @example
13060 lutrgb="r=negval:g=negval:b=negval"
13061 lutyuv="y=negval:u=negval:v=negval"
13062 @end example
13063
13064 @item
13065 Negate luminance:
13066 @example
13067 lutyuv=y=negval
13068 @end example
13069
13070 @item
13071 Remove chroma components, turning the video into a graytone image:
13072 @example
13073 lutyuv="u=128:v=128"
13074 @end example
13075
13076 @item
13077 Apply a luma burning effect:
13078 @example
13079 lutyuv="y=2*val"
13080 @end example
13081
13082 @item
13083 Remove green and blue components:
13084 @example
13085 lutrgb="g=0:b=0"
13086 @end example
13087
13088 @item
13089 Set a constant alpha channel value on input:
13090 @example
13091 format=rgba,lutrgb=a="maxval-minval/2"
13092 @end example
13093
13094 @item
13095 Correct luminance gamma by a factor of 0.5:
13096 @example
13097 lutyuv=y=gammaval(0.5)
13098 @end example
13099
13100 @item
13101 Discard least significant bits of luma:
13102 @example
13103 lutyuv=y='bitand(val, 128+64+32)'
13104 @end example
13105
13106 @item
13107 Technicolor like effect:
13108 @example
13109 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13110 @end example
13111 @end itemize
13112
13113 @section lut2, tlut2
13114
13115 The @code{lut2} filter takes two input streams and outputs one
13116 stream.
13117
13118 The @code{tlut2} (time lut2) filter takes two consecutive frames
13119 from one single stream.
13120
13121 This filter accepts the following parameters:
13122 @table @option
13123 @item c0
13124 set first pixel component expression
13125 @item c1
13126 set second pixel component expression
13127 @item c2
13128 set third pixel component expression
13129 @item c3
13130 set fourth pixel component expression, corresponds to the alpha component
13131
13132 @item d
13133 set output bit depth, only available for @code{lut2} filter. By default is 0,
13134 which means bit depth is automatically picked from first input format.
13135 @end table
13136
13137 The @code{lut2} filter also supports the @ref{framesync} options.
13138
13139 Each of them specifies the expression to use for computing the lookup table for
13140 the corresponding pixel component values.
13141
13142 The exact component associated to each of the @var{c*} options depends on the
13143 format in inputs.
13144
13145 The expressions can contain the following constants:
13146
13147 @table @option
13148 @item w
13149 @item h
13150 The input width and height.
13151
13152 @item x
13153 The first input value for the pixel component.
13154
13155 @item y
13156 The second input value for the pixel component.
13157
13158 @item bdx
13159 The first input video bit depth.
13160
13161 @item bdy
13162 The second input video bit depth.
13163 @end table
13164
13165 All expressions default to "x".
13166
13167 @subsection Examples
13168
13169 @itemize
13170 @item
13171 Highlight differences between two RGB video streams:
13172 @example
13173 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)'
13174 @end example
13175
13176 @item
13177 Highlight differences between two YUV video streams:
13178 @example
13179 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)'
13180 @end example
13181
13182 @item
13183 Show max difference between two video streams:
13184 @example
13185 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)))'
13186 @end example
13187 @end itemize
13188
13189 @section maskedclamp
13190
13191 Clamp the first input stream with the second input and third input stream.
13192
13193 Returns the value of first stream to be between second input
13194 stream - @code{undershoot} and third input stream + @code{overshoot}.
13195
13196 This filter accepts the following options:
13197 @table @option
13198 @item undershoot
13199 Default value is @code{0}.
13200
13201 @item overshoot
13202 Default value is @code{0}.
13203
13204 @item planes
13205 Set which planes will be processed as bitmap, unprocessed planes will be
13206 copied from first stream.
13207 By default value 0xf, all planes will be processed.
13208 @end table
13209
13210 @section maskedmax
13211
13212 Merge the second and third input stream into output stream using absolute differences
13213 between second input stream and first input stream and absolute difference between
13214 third input stream and first input stream. The picked value will be from second input
13215 stream if second absolute difference is greater than first one or from third input stream
13216 otherwise.
13217
13218 This filter accepts the following options:
13219 @table @option
13220 @item planes
13221 Set which planes will be processed as bitmap, unprocessed planes will be
13222 copied from first stream.
13223 By default value 0xf, all planes will be processed.
13224 @end table
13225
13226 @section maskedmerge
13227
13228 Merge the first input stream with the second input stream using per pixel
13229 weights in the third input stream.
13230
13231 A value of 0 in the third stream pixel component means that pixel component
13232 from first stream is returned unchanged, while maximum value (eg. 255 for
13233 8-bit videos) means that pixel component from second stream is returned
13234 unchanged. Intermediate values define the amount of merging between both
13235 input stream's pixel components.
13236
13237 This filter accepts the following options:
13238 @table @option
13239 @item planes
13240 Set which planes will be processed as bitmap, unprocessed planes will be
13241 copied from first stream.
13242 By default value 0xf, all planes will be processed.
13243 @end table
13244
13245 @section maskedmin
13246
13247 Merge the second and third input stream into output stream using absolute differences
13248 between second input stream and first input stream and absolute difference between
13249 third input stream and first input stream. The picked value will be from second input
13250 stream if second absolute difference is less than first one or from third input stream
13251 otherwise.
13252
13253 This filter accepts the following options:
13254 @table @option
13255 @item planes
13256 Set which planes will be processed as bitmap, unprocessed planes will be
13257 copied from first stream.
13258 By default value 0xf, all planes will be processed.
13259 @end table
13260
13261 @section maskedthreshold
13262 Pick pixels comparing absolute difference of two video streams with fixed
13263 threshold.
13264
13265 If absolute difference between pixel component of first and second video
13266 stream is equal or lower than user supplied threshold than pixel component
13267 from first video stream is picked, otherwise pixel component from second
13268 video stream is picked.
13269
13270 This filter accepts the following options:
13271 @table @option
13272 @item threshold
13273 Set threshold used when picking pixels from absolute difference from two input
13274 video streams.
13275
13276 @item planes
13277 Set which planes will be processed as bitmap, unprocessed planes will be
13278 copied from second stream.
13279 By default value 0xf, all planes will be processed.
13280 @end table
13281
13282 @section maskfun
13283 Create mask from input video.
13284
13285 For example it is useful to create motion masks after @code{tblend} filter.
13286
13287 This filter accepts the following options:
13288
13289 @table @option
13290 @item low
13291 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13292
13293 @item high
13294 Set high threshold. Any pixel component higher than this value will be set to max value
13295 allowed for current pixel format.
13296
13297 @item planes
13298 Set planes to filter, by default all available planes are filtered.
13299
13300 @item fill
13301 Fill all frame pixels with this value.
13302
13303 @item sum
13304 Set max average pixel value for frame. If sum of all pixel components is higher that this
13305 average, output frame will be completely filled with value set by @var{fill} option.
13306 Typically useful for scene changes when used in combination with @code{tblend} filter.
13307 @end table
13308
13309 @section mcdeint
13310
13311 Apply motion-compensation deinterlacing.
13312
13313 It needs one field per frame as input and must thus be used together
13314 with yadif=1/3 or equivalent.
13315
13316 This filter accepts the following options:
13317 @table @option
13318 @item mode
13319 Set the deinterlacing mode.
13320
13321 It accepts one of the following values:
13322 @table @samp
13323 @item fast
13324 @item medium
13325 @item slow
13326 use iterative motion estimation
13327 @item extra_slow
13328 like @samp{slow}, but use multiple reference frames.
13329 @end table
13330 Default value is @samp{fast}.
13331
13332 @item parity
13333 Set the picture field parity assumed for the input video. It must be
13334 one of the following values:
13335
13336 @table @samp
13337 @item 0, tff
13338 assume top field first
13339 @item 1, bff
13340 assume bottom field first
13341 @end table
13342
13343 Default value is @samp{bff}.
13344
13345 @item qp
13346 Set per-block quantization parameter (QP) used by the internal
13347 encoder.
13348
13349 Higher values should result in a smoother motion vector field but less
13350 optimal individual vectors. Default value is 1.
13351 @end table
13352
13353 @section median
13354
13355 Pick median pixel from certain rectangle defined by radius.
13356
13357 This filter accepts the following options:
13358
13359 @table @option
13360 @item radius
13361 Set horizontal radius size. Default value is @code{1}.
13362 Allowed range is integer from 1 to 127.
13363
13364 @item planes
13365 Set which planes to process. Default is @code{15}, which is all available planes.
13366
13367 @item radiusV
13368 Set vertical radius size. Default value is @code{0}.
13369 Allowed range is integer from 0 to 127.
13370 If it is 0, value will be picked from horizontal @code{radius} option.
13371
13372 @item percentile
13373 Set median percentile. Default value is @code{0.5}.
13374 Default value of @code{0.5} will pick always median values, while @code{0} will pick
13375 minimum values, and @code{1} maximum values.
13376 @end table
13377
13378 @subsection Commands
13379 This filter supports same @ref{commands} as options.
13380 The command accepts the same syntax of the corresponding option.
13381
13382 If the specified expression is not valid, it is kept at its current
13383 value.
13384
13385 @section mergeplanes
13386
13387 Merge color channel components from several video streams.
13388
13389 The filter accepts up to 4 input streams, and merge selected input
13390 planes to the output video.
13391
13392 This filter accepts the following options:
13393 @table @option
13394 @item mapping
13395 Set input to output plane mapping. Default is @code{0}.
13396
13397 The mappings is specified as a bitmap. It should be specified as a
13398 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13399 mapping for the first plane of the output stream. 'A' sets the number of
13400 the input stream to use (from 0 to 3), and 'a' the plane number of the
13401 corresponding input to use (from 0 to 3). The rest of the mappings is
13402 similar, 'Bb' describes the mapping for the output stream second
13403 plane, 'Cc' describes the mapping for the output stream third plane and
13404 'Dd' describes the mapping for the output stream fourth plane.
13405
13406 @item format
13407 Set output pixel format. Default is @code{yuva444p}.
13408 @end table
13409
13410 @subsection Examples
13411
13412 @itemize
13413 @item
13414 Merge three gray video streams of same width and height into single video stream:
13415 @example
13416 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13417 @end example
13418
13419 @item
13420 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13421 @example
13422 [a0][a1]mergeplanes=0x00010210:yuva444p
13423 @end example
13424
13425 @item
13426 Swap Y and A plane in yuva444p stream:
13427 @example
13428 format=yuva444p,mergeplanes=0x03010200:yuva444p
13429 @end example
13430
13431 @item
13432 Swap U and V plane in yuv420p stream:
13433 @example
13434 format=yuv420p,mergeplanes=0x000201:yuv420p
13435 @end example
13436
13437 @item
13438 Cast a rgb24 clip to yuv444p:
13439 @example
13440 format=rgb24,mergeplanes=0x000102:yuv444p
13441 @end example
13442 @end itemize
13443
13444 @section mestimate
13445
13446 Estimate and export motion vectors using block matching algorithms.
13447 Motion vectors are stored in frame side data to be used by other filters.
13448
13449 This filter accepts the following options:
13450 @table @option
13451 @item method
13452 Specify the motion estimation method. Accepts one of the following values:
13453
13454 @table @samp
13455 @item esa
13456 Exhaustive search algorithm.
13457 @item tss
13458 Three step search algorithm.
13459 @item tdls
13460 Two dimensional logarithmic search algorithm.
13461 @item ntss
13462 New three step search algorithm.
13463 @item fss
13464 Four step search algorithm.
13465 @item ds
13466 Diamond search algorithm.
13467 @item hexbs
13468 Hexagon-based search algorithm.
13469 @item epzs
13470 Enhanced predictive zonal search algorithm.
13471 @item umh
13472 Uneven multi-hexagon search algorithm.
13473 @end table
13474 Default value is @samp{esa}.
13475
13476 @item mb_size
13477 Macroblock size. Default @code{16}.
13478
13479 @item search_param
13480 Search parameter. Default @code{7}.
13481 @end table
13482
13483 @section midequalizer
13484
13485 Apply Midway Image Equalization effect using two video streams.
13486
13487 Midway Image Equalization adjusts a pair of images to have the same
13488 histogram, while maintaining their dynamics as much as possible. It's
13489 useful for e.g. matching exposures from a pair of stereo cameras.
13490
13491 This filter has two inputs and one output, which must be of same pixel format, but
13492 may be of different sizes. The output of filter is first input adjusted with
13493 midway histogram of both inputs.
13494
13495 This filter accepts the following option:
13496
13497 @table @option
13498 @item planes
13499 Set which planes to process. Default is @code{15}, which is all available planes.
13500 @end table
13501
13502 @section minterpolate
13503
13504 Convert the video to specified frame rate using motion interpolation.
13505
13506 This filter accepts the following options:
13507 @table @option
13508 @item fps
13509 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}.
13510
13511 @item mi_mode
13512 Motion interpolation mode. Following values are accepted:
13513 @table @samp
13514 @item dup
13515 Duplicate previous or next frame for interpolating new ones.
13516 @item blend
13517 Blend source frames. Interpolated frame is mean of previous and next frames.
13518 @item mci
13519 Motion compensated interpolation. Following options are effective when this mode is selected:
13520
13521 @table @samp
13522 @item mc_mode
13523 Motion compensation mode. Following values are accepted:
13524 @table @samp
13525 @item obmc
13526 Overlapped block motion compensation.
13527 @item aobmc
13528 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13529 @end table
13530 Default mode is @samp{obmc}.
13531
13532 @item me_mode
13533 Motion estimation mode. Following values are accepted:
13534 @table @samp
13535 @item bidir
13536 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13537 @item bilat
13538 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13539 @end table
13540 Default mode is @samp{bilat}.
13541
13542 @item me
13543 The algorithm to be used for motion estimation. Following values are accepted:
13544 @table @samp
13545 @item esa
13546 Exhaustive search algorithm.
13547 @item tss
13548 Three step search algorithm.
13549 @item tdls
13550 Two dimensional logarithmic search algorithm.
13551 @item ntss
13552 New three step search algorithm.
13553 @item fss
13554 Four step search algorithm.
13555 @item ds
13556 Diamond search algorithm.
13557 @item hexbs
13558 Hexagon-based search algorithm.
13559 @item epzs
13560 Enhanced predictive zonal search algorithm.
13561 @item umh
13562 Uneven multi-hexagon search algorithm.
13563 @end table
13564 Default algorithm is @samp{epzs}.
13565
13566 @item mb_size
13567 Macroblock size. Default @code{16}.
13568
13569 @item search_param
13570 Motion estimation search parameter. Default @code{32}.
13571
13572 @item vsbmc
13573 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).
13574 @end table
13575 @end table
13576
13577 @item scd
13578 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:
13579 @table @samp
13580 @item none
13581 Disable scene change detection.
13582 @item fdiff
13583 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
13584 @end table
13585 Default method is @samp{fdiff}.
13586
13587 @item scd_threshold
13588 Scene change detection threshold. Default is @code{5.0}.
13589 @end table
13590
13591 @section mix
13592
13593 Mix several video input streams into one video stream.
13594
13595 A description of the accepted options follows.
13596
13597 @table @option
13598 @item nb_inputs
13599 The number of inputs. If unspecified, it defaults to 2.
13600
13601 @item weights
13602 Specify weight of each input video stream as sequence.
13603 Each weight is separated by space. If number of weights
13604 is smaller than number of @var{frames} last specified
13605 weight will be used for all remaining unset weights.
13606
13607 @item scale
13608 Specify scale, if it is set it will be multiplied with sum
13609 of each weight multiplied with pixel values to give final destination
13610 pixel value. By default @var{scale} is auto scaled to sum of weights.
13611
13612 @item duration
13613 Specify how end of stream is determined.
13614 @table @samp
13615 @item longest
13616 The duration of the longest input. (default)
13617
13618 @item shortest
13619 The duration of the shortest input.
13620
13621 @item first
13622 The duration of the first input.
13623 @end table
13624 @end table
13625
13626 @section mpdecimate
13627
13628 Drop frames that do not differ greatly from the previous frame in
13629 order to reduce frame rate.
13630
13631 The main use of this filter is for very-low-bitrate encoding
13632 (e.g. streaming over dialup modem), but it could in theory be used for
13633 fixing movies that were inverse-telecined incorrectly.
13634
13635 A description of the accepted options follows.
13636
13637 @table @option
13638 @item max
13639 Set the maximum number of consecutive frames which can be dropped (if
13640 positive), or the minimum interval between dropped frames (if
13641 negative). If the value is 0, the frame is dropped disregarding the
13642 number of previous sequentially dropped frames.
13643
13644 Default value is 0.
13645
13646 @item hi
13647 @item lo
13648 @item frac
13649 Set the dropping threshold values.
13650
13651 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
13652 represent actual pixel value differences, so a threshold of 64
13653 corresponds to 1 unit of difference for each pixel, or the same spread
13654 out differently over the block.
13655
13656 A frame is a candidate for dropping if no 8x8 blocks differ by more
13657 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
13658 meaning the whole image) differ by more than a threshold of @option{lo}.
13659
13660 Default value for @option{hi} is 64*12, default value for @option{lo} is
13661 64*5, and default value for @option{frac} is 0.33.
13662 @end table
13663
13664
13665 @section negate
13666
13667 Negate (invert) the input video.
13668
13669 It accepts the following option:
13670
13671 @table @option
13672
13673 @item negate_alpha
13674 With value 1, it negates the alpha component, if present. Default value is 0.
13675 @end table
13676
13677 @anchor{nlmeans}
13678 @section nlmeans
13679
13680 Denoise frames using Non-Local Means algorithm.
13681
13682 Each pixel is adjusted by looking for other pixels with similar contexts. This
13683 context similarity is defined by comparing their surrounding patches of size
13684 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
13685 around the pixel.
13686
13687 Note that the research area defines centers for patches, which means some
13688 patches will be made of pixels outside that research area.
13689
13690 The filter accepts the following options.
13691
13692 @table @option
13693 @item s
13694 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
13695
13696 @item p
13697 Set patch size. Default is 7. Must be odd number in range [0, 99].
13698
13699 @item pc
13700 Same as @option{p} but for chroma planes.
13701
13702 The default value is @var{0} and means automatic.
13703
13704 @item r
13705 Set research size. Default is 15. Must be odd number in range [0, 99].
13706
13707 @item rc
13708 Same as @option{r} but for chroma planes.
13709
13710 The default value is @var{0} and means automatic.
13711 @end table
13712
13713 @section nnedi
13714
13715 Deinterlace video using neural network edge directed interpolation.
13716
13717 This filter accepts the following options:
13718
13719 @table @option
13720 @item weights
13721 Mandatory option, without binary file filter can not work.
13722 Currently file can be found here:
13723 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
13724
13725 @item deint
13726 Set which frames to deinterlace, by default it is @code{all}.
13727 Can be @code{all} or @code{interlaced}.
13728
13729 @item field
13730 Set mode of operation.
13731
13732 Can be one of the following:
13733
13734 @table @samp
13735 @item af
13736 Use frame flags, both fields.
13737 @item a
13738 Use frame flags, single field.
13739 @item t
13740 Use top field only.
13741 @item b
13742 Use bottom field only.
13743 @item tf
13744 Use both fields, top first.
13745 @item bf
13746 Use both fields, bottom first.
13747 @end table
13748
13749 @item planes
13750 Set which planes to process, by default filter process all frames.
13751
13752 @item nsize
13753 Set size of local neighborhood around each pixel, used by the predictor neural
13754 network.
13755
13756 Can be one of the following:
13757
13758 @table @samp
13759 @item s8x6
13760 @item s16x6
13761 @item s32x6
13762 @item s48x6
13763 @item s8x4
13764 @item s16x4
13765 @item s32x4
13766 @end table
13767
13768 @item nns
13769 Set the number of neurons in predictor neural network.
13770 Can be one of the following:
13771
13772 @table @samp
13773 @item n16
13774 @item n32
13775 @item n64
13776 @item n128
13777 @item n256
13778 @end table
13779
13780 @item qual
13781 Controls the number of different neural network predictions that are blended
13782 together to compute the final output value. Can be @code{fast}, default or
13783 @code{slow}.
13784
13785 @item etype
13786 Set which set of weights to use in the predictor.
13787 Can be one of the following:
13788
13789 @table @samp
13790 @item a
13791 weights trained to minimize absolute error
13792 @item s
13793 weights trained to minimize squared error
13794 @end table
13795
13796 @item pscrn
13797 Controls whether or not the prescreener neural network is used to decide
13798 which pixels should be processed by the predictor neural network and which
13799 can be handled by simple cubic interpolation.
13800 The prescreener is trained to know whether cubic interpolation will be
13801 sufficient for a pixel or whether it should be predicted by the predictor nn.
13802 The computational complexity of the prescreener nn is much less than that of
13803 the predictor nn. Since most pixels can be handled by cubic interpolation,
13804 using the prescreener generally results in much faster processing.
13805 The prescreener is pretty accurate, so the difference between using it and not
13806 using it is almost always unnoticeable.
13807
13808 Can be one of the following:
13809
13810 @table @samp
13811 @item none
13812 @item original
13813 @item new
13814 @end table
13815
13816 Default is @code{new}.
13817
13818 @item fapprox
13819 Set various debugging flags.
13820 @end table
13821
13822 @section noformat
13823
13824 Force libavfilter not to use any of the specified pixel formats for the
13825 input to the next filter.
13826
13827 It accepts the following parameters:
13828 @table @option
13829
13830 @item pix_fmts
13831 A '|'-separated list of pixel format names, such as
13832 pix_fmts=yuv420p|monow|rgb24".
13833
13834 @end table
13835
13836 @subsection Examples
13837
13838 @itemize
13839 @item
13840 Force libavfilter to use a format different from @var{yuv420p} for the
13841 input to the vflip filter:
13842 @example
13843 noformat=pix_fmts=yuv420p,vflip
13844 @end example
13845
13846 @item
13847 Convert the input video to any of the formats not contained in the list:
13848 @example
13849 noformat=yuv420p|yuv444p|yuv410p
13850 @end example
13851 @end itemize
13852
13853 @section noise
13854
13855 Add noise on video input frame.
13856
13857 The filter accepts the following options:
13858
13859 @table @option
13860 @item all_seed
13861 @item c0_seed
13862 @item c1_seed
13863 @item c2_seed
13864 @item c3_seed
13865 Set noise seed for specific pixel component or all pixel components in case
13866 of @var{all_seed}. Default value is @code{123457}.
13867
13868 @item all_strength, alls
13869 @item c0_strength, c0s
13870 @item c1_strength, c1s
13871 @item c2_strength, c2s
13872 @item c3_strength, c3s
13873 Set noise strength for specific pixel component or all pixel components in case
13874 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13875
13876 @item all_flags, allf
13877 @item c0_flags, c0f
13878 @item c1_flags, c1f
13879 @item c2_flags, c2f
13880 @item c3_flags, c3f
13881 Set pixel component flags or set flags for all components if @var{all_flags}.
13882 Available values for component flags are:
13883 @table @samp
13884 @item a
13885 averaged temporal noise (smoother)
13886 @item p
13887 mix random noise with a (semi)regular pattern
13888 @item t
13889 temporal noise (noise pattern changes between frames)
13890 @item u
13891 uniform noise (gaussian otherwise)
13892 @end table
13893 @end table
13894
13895 @subsection Examples
13896
13897 Add temporal and uniform noise to input video:
13898 @example
13899 noise=alls=20:allf=t+u
13900 @end example
13901
13902 @section normalize
13903
13904 Normalize RGB video (aka histogram stretching, contrast stretching).
13905 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13906
13907 For each channel of each frame, the filter computes the input range and maps
13908 it linearly to the user-specified output range. The output range defaults
13909 to the full dynamic range from pure black to pure white.
13910
13911 Temporal smoothing can be used on the input range to reduce flickering (rapid
13912 changes in brightness) caused when small dark or bright objects enter or leave
13913 the scene. This is similar to the auto-exposure (automatic gain control) on a
13914 video camera, and, like a video camera, it may cause a period of over- or
13915 under-exposure of the video.
13916
13917 The R,G,B channels can be normalized independently, which may cause some
13918 color shifting, or linked together as a single channel, which prevents
13919 color shifting. Linked normalization preserves hue. Independent normalization
13920 does not, so it can be used to remove some color casts. Independent and linked
13921 normalization can be combined in any ratio.
13922
13923 The normalize filter accepts the following options:
13924
13925 @table @option
13926 @item blackpt
13927 @item whitept
13928 Colors which define the output range. The minimum input value is mapped to
13929 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13930 The defaults are black and white respectively. Specifying white for
13931 @var{blackpt} and black for @var{whitept} will give color-inverted,
13932 normalized video. Shades of grey can be used to reduce the dynamic range
13933 (contrast). Specifying saturated colors here can create some interesting
13934 effects.
13935
13936 @item smoothing
13937 The number of previous frames to use for temporal smoothing. The input range
13938 of each channel is smoothed using a rolling average over the current frame
13939 and the @var{smoothing} previous frames. The default is 0 (no temporal
13940 smoothing).
13941
13942 @item independence
13943 Controls the ratio of independent (color shifting) channel normalization to
13944 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13945 independent. Defaults to 1.0 (fully independent).
13946
13947 @item strength
13948 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13949 expensive no-op. Defaults to 1.0 (full strength).
13950
13951 @end table
13952
13953 @subsection Commands
13954 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
13955 The command accepts the same syntax of the corresponding option.
13956
13957 If the specified expression is not valid, it is kept at its current
13958 value.
13959
13960 @subsection Examples
13961
13962 Stretch video contrast to use the full dynamic range, with no temporal
13963 smoothing; may flicker depending on the source content:
13964 @example
13965 normalize=blackpt=black:whitept=white:smoothing=0
13966 @end example
13967
13968 As above, but with 50 frames of temporal smoothing; flicker should be
13969 reduced, depending on the source content:
13970 @example
13971 normalize=blackpt=black:whitept=white:smoothing=50
13972 @end example
13973
13974 As above, but with hue-preserving linked channel normalization:
13975 @example
13976 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13977 @end example
13978
13979 As above, but with half strength:
13980 @example
13981 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13982 @end example
13983
13984 Map the darkest input color to red, the brightest input color to cyan:
13985 @example
13986 normalize=blackpt=red:whitept=cyan
13987 @end example
13988
13989 @section null
13990
13991 Pass the video source unchanged to the output.
13992
13993 @section ocr
13994 Optical Character Recognition
13995
13996 This filter uses Tesseract for optical character recognition. To enable
13997 compilation of this filter, you need to configure FFmpeg with
13998 @code{--enable-libtesseract}.
13999
14000 It accepts the following options:
14001
14002 @table @option
14003 @item datapath
14004 Set datapath to tesseract data. Default is to use whatever was
14005 set at installation.
14006
14007 @item language
14008 Set language, default is "eng".
14009
14010 @item whitelist
14011 Set character whitelist.
14012
14013 @item blacklist
14014 Set character blacklist.
14015 @end table
14016
14017 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
14018 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
14019
14020 @section ocv
14021
14022 Apply a video transform using libopencv.
14023
14024 To enable this filter, install the libopencv library and headers and
14025 configure FFmpeg with @code{--enable-libopencv}.
14026
14027 It accepts the following parameters:
14028
14029 @table @option
14030
14031 @item filter_name
14032 The name of the libopencv filter to apply.
14033
14034 @item filter_params
14035 The parameters to pass to the libopencv filter. If not specified, the default
14036 values are assumed.
14037
14038 @end table
14039
14040 Refer to the official libopencv documentation for more precise
14041 information:
14042 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14043
14044 Several libopencv filters are supported; see the following subsections.
14045
14046 @anchor{dilate}
14047 @subsection dilate
14048
14049 Dilate an image by using a specific structuring element.
14050 It corresponds to the libopencv function @code{cvDilate}.
14051
14052 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14053
14054 @var{struct_el} represents a structuring element, and has the syntax:
14055 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14056
14057 @var{cols} and @var{rows} represent the number of columns and rows of
14058 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14059 point, and @var{shape} the shape for the structuring element. @var{shape}
14060 must be "rect", "cross", "ellipse", or "custom".
14061
14062 If the value for @var{shape} is "custom", it must be followed by a
14063 string of the form "=@var{filename}". The file with name
14064 @var{filename} is assumed to represent a binary image, with each
14065 printable character corresponding to a bright pixel. When a custom
14066 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14067 or columns and rows of the read file are assumed instead.
14068
14069 The default value for @var{struct_el} is "3x3+0x0/rect".
14070
14071 @var{nb_iterations} specifies the number of times the transform is
14072 applied to the image, and defaults to 1.
14073
14074 Some examples:
14075 @example
14076 # Use the default values
14077 ocv=dilate
14078
14079 # Dilate using a structuring element with a 5x5 cross, iterating two times
14080 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14081
14082 # Read the shape from the file diamond.shape, iterating two times.
14083 # The file diamond.shape may contain a pattern of characters like this
14084 #   *
14085 #  ***
14086 # *****
14087 #  ***
14088 #   *
14089 # The specified columns and rows are ignored
14090 # but the anchor point coordinates are not
14091 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14092 @end example
14093
14094 @subsection erode
14095
14096 Erode an image by using a specific structuring element.
14097 It corresponds to the libopencv function @code{cvErode}.
14098
14099 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14100 with the same syntax and semantics as the @ref{dilate} filter.
14101
14102 @subsection smooth
14103
14104 Smooth the input video.
14105
14106 The filter takes the following parameters:
14107 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14108
14109 @var{type} is the type of smooth filter to apply, and must be one of
14110 the following values: "blur", "blur_no_scale", "median", "gaussian",
14111 or "bilateral". The default value is "gaussian".
14112
14113 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14114 depends on the smooth type. @var{param1} and
14115 @var{param2} accept integer positive values or 0. @var{param3} and
14116 @var{param4} accept floating point values.
14117
14118 The default value for @var{param1} is 3. The default value for the
14119 other parameters is 0.
14120
14121 These parameters correspond to the parameters assigned to the
14122 libopencv function @code{cvSmooth}.
14123
14124 @section oscilloscope
14125
14126 2D Video Oscilloscope.
14127
14128 Useful to measure spatial impulse, step responses, chroma delays, etc.
14129
14130 It accepts the following parameters:
14131
14132 @table @option
14133 @item x
14134 Set scope center x position.
14135
14136 @item y
14137 Set scope center y position.
14138
14139 @item s
14140 Set scope size, relative to frame diagonal.
14141
14142 @item t
14143 Set scope tilt/rotation.
14144
14145 @item o
14146 Set trace opacity.
14147
14148 @item tx
14149 Set trace center x position.
14150
14151 @item ty
14152 Set trace center y position.
14153
14154 @item tw
14155 Set trace width, relative to width of frame.
14156
14157 @item th
14158 Set trace height, relative to height of frame.
14159
14160 @item c
14161 Set which components to trace. By default it traces first three components.
14162
14163 @item g
14164 Draw trace grid. By default is enabled.
14165
14166 @item st
14167 Draw some statistics. By default is enabled.
14168
14169 @item sc
14170 Draw scope. By default is enabled.
14171 @end table
14172
14173 @subsection Commands
14174 This filter supports same @ref{commands} as options.
14175 The command accepts the same syntax of the corresponding option.
14176
14177 If the specified expression is not valid, it is kept at its current
14178 value.
14179
14180 @subsection Examples
14181
14182 @itemize
14183 @item
14184 Inspect full first row of video frame.
14185 @example
14186 oscilloscope=x=0.5:y=0:s=1
14187 @end example
14188
14189 @item
14190 Inspect full last row of video frame.
14191 @example
14192 oscilloscope=x=0.5:y=1:s=1
14193 @end example
14194
14195 @item
14196 Inspect full 5th line of video frame of height 1080.
14197 @example
14198 oscilloscope=x=0.5:y=5/1080:s=1
14199 @end example
14200
14201 @item
14202 Inspect full last column of video frame.
14203 @example
14204 oscilloscope=x=1:y=0.5:s=1:t=1
14205 @end example
14206
14207 @end itemize
14208
14209 @anchor{overlay}
14210 @section overlay
14211
14212 Overlay one video on top of another.
14213
14214 It takes two inputs and has one output. The first input is the "main"
14215 video on which the second input is overlaid.
14216
14217 It accepts the following parameters:
14218
14219 A description of the accepted options follows.
14220
14221 @table @option
14222 @item x
14223 @item y
14224 Set the expression for the x and y coordinates of the overlaid video
14225 on the main video. Default value is "0" for both expressions. In case
14226 the expression is invalid, it is set to a huge value (meaning that the
14227 overlay will not be displayed within the output visible area).
14228
14229 @item eof_action
14230 See @ref{framesync}.
14231
14232 @item eval
14233 Set when the expressions for @option{x}, and @option{y} are evaluated.
14234
14235 It accepts the following values:
14236 @table @samp
14237 @item init
14238 only evaluate expressions once during the filter initialization or
14239 when a command is processed
14240
14241 @item frame
14242 evaluate expressions for each incoming frame
14243 @end table
14244
14245 Default value is @samp{frame}.
14246
14247 @item shortest
14248 See @ref{framesync}.
14249
14250 @item format
14251 Set the format for the output video.
14252
14253 It accepts the following values:
14254 @table @samp
14255 @item yuv420
14256 force YUV420 output
14257
14258 @item yuv422
14259 force YUV422 output
14260
14261 @item yuv444
14262 force YUV444 output
14263
14264 @item rgb
14265 force packed RGB output
14266
14267 @item gbrp
14268 force planar RGB output
14269
14270 @item auto
14271 automatically pick format
14272 @end table
14273
14274 Default value is @samp{yuv420}.
14275
14276 @item repeatlast
14277 See @ref{framesync}.
14278
14279 @item alpha
14280 Set format of alpha of the overlaid video, it can be @var{straight} or
14281 @var{premultiplied}. Default is @var{straight}.
14282 @end table
14283
14284 The @option{x}, and @option{y} expressions can contain the following
14285 parameters.
14286
14287 @table @option
14288 @item main_w, W
14289 @item main_h, H
14290 The main input width and height.
14291
14292 @item overlay_w, w
14293 @item overlay_h, h
14294 The overlay input width and height.
14295
14296 @item x
14297 @item y
14298 The computed values for @var{x} and @var{y}. They are evaluated for
14299 each new frame.
14300
14301 @item hsub
14302 @item vsub
14303 horizontal and vertical chroma subsample values of the output
14304 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14305 @var{vsub} is 1.
14306
14307 @item n
14308 the number of input frame, starting from 0
14309
14310 @item pos
14311 the position in the file of the input frame, NAN if unknown
14312
14313 @item t
14314 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14315
14316 @end table
14317
14318 This filter also supports the @ref{framesync} options.
14319
14320 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14321 when evaluation is done @emph{per frame}, and will evaluate to NAN
14322 when @option{eval} is set to @samp{init}.
14323
14324 Be aware that frames are taken from each input video in timestamp
14325 order, hence, if their initial timestamps differ, it is a good idea
14326 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14327 have them begin in the same zero timestamp, as the example for
14328 the @var{movie} filter does.
14329
14330 You can chain together more overlays but you should test the
14331 efficiency of such approach.
14332
14333 @subsection Commands
14334
14335 This filter supports the following commands:
14336 @table @option
14337 @item x
14338 @item y
14339 Modify the x and y of the overlay input.
14340 The command accepts the same syntax of the corresponding option.
14341
14342 If the specified expression is not valid, it is kept at its current
14343 value.
14344 @end table
14345
14346 @subsection Examples
14347
14348 @itemize
14349 @item
14350 Draw the overlay at 10 pixels from the bottom right corner of the main
14351 video:
14352 @example
14353 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14354 @end example
14355
14356 Using named options the example above becomes:
14357 @example
14358 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14359 @end example
14360
14361 @item
14362 Insert a transparent PNG logo in the bottom left corner of the input,
14363 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14364 @example
14365 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14366 @end example
14367
14368 @item
14369 Insert 2 different transparent PNG logos (second logo on bottom
14370 right corner) using the @command{ffmpeg} tool:
14371 @example
14372 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
14373 @end example
14374
14375 @item
14376 Add a transparent color layer on top of the main video; @code{WxH}
14377 must specify the size of the main input to the overlay filter:
14378 @example
14379 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14380 @end example
14381
14382 @item
14383 Play an original video and a filtered version (here with the deshake
14384 filter) side by side using the @command{ffplay} tool:
14385 @example
14386 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14387 @end example
14388
14389 The above command is the same as:
14390 @example
14391 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14392 @end example
14393
14394 @item
14395 Make a sliding overlay appearing from the left to the right top part of the
14396 screen starting since time 2:
14397 @example
14398 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14399 @end example
14400
14401 @item
14402 Compose output by putting two input videos side to side:
14403 @example
14404 ffmpeg -i left.avi -i right.avi -filter_complex "
14405 nullsrc=size=200x100 [background];
14406 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14407 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14408 [background][left]       overlay=shortest=1       [background+left];
14409 [background+left][right] overlay=shortest=1:x=100 [left+right]
14410 "
14411 @end example
14412
14413 @item
14414 Mask 10-20 seconds of a video by applying the delogo filter to a section
14415 @example
14416 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14417 -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]'
14418 masked.avi
14419 @end example
14420
14421 @item
14422 Chain several overlays in cascade:
14423 @example
14424 nullsrc=s=200x200 [bg];
14425 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14426 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14427 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14428 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14429 [in3] null,       [mid2] overlay=100:100 [out0]
14430 @end example
14431
14432 @end itemize
14433
14434 @anchor{overlay_cuda}
14435 @section overlay_cuda
14436
14437 Overlay one video on top of another.
14438
14439 This is the CUDA cariant of the @ref{overlay} filter.
14440 It only accepts CUDA frames. The underlying input pixel formats have to match.
14441
14442 It takes two inputs and has one output. The first input is the "main"
14443 video on which the second input is overlaid.
14444
14445 It accepts the following parameters:
14446
14447 @table @option
14448 @item x
14449 @item y
14450 Set the x and y coordinates of the overlaid video on the main video.
14451 Default value is "0" for both expressions.
14452
14453 @item eof_action
14454 See @ref{framesync}.
14455
14456 @item shortest
14457 See @ref{framesync}.
14458
14459 @item repeatlast
14460 See @ref{framesync}.
14461
14462 @end table
14463
14464 This filter also supports the @ref{framesync} options.
14465
14466 @section owdenoise
14467
14468 Apply Overcomplete Wavelet denoiser.
14469
14470 The filter accepts the following options:
14471
14472 @table @option
14473 @item depth
14474 Set depth.
14475
14476 Larger depth values will denoise lower frequency components more, but
14477 slow down filtering.
14478
14479 Must be an int in the range 8-16, default is @code{8}.
14480
14481 @item luma_strength, ls
14482 Set luma strength.
14483
14484 Must be a double value in the range 0-1000, default is @code{1.0}.
14485
14486 @item chroma_strength, cs
14487 Set chroma strength.
14488
14489 Must be a double value in the range 0-1000, default is @code{1.0}.
14490 @end table
14491
14492 @anchor{pad}
14493 @section pad
14494
14495 Add paddings to the input image, and place the original input at the
14496 provided @var{x}, @var{y} coordinates.
14497
14498 It accepts the following parameters:
14499
14500 @table @option
14501 @item width, w
14502 @item height, h
14503 Specify an expression for the size of the output image with the
14504 paddings added. If the value for @var{width} or @var{height} is 0, the
14505 corresponding input size is used for the output.
14506
14507 The @var{width} expression can reference the value set by the
14508 @var{height} expression, and vice versa.
14509
14510 The default value of @var{width} and @var{height} is 0.
14511
14512 @item x
14513 @item y
14514 Specify the offsets to place the input image at within the padded area,
14515 with respect to the top/left border of the output image.
14516
14517 The @var{x} expression can reference the value set by the @var{y}
14518 expression, and vice versa.
14519
14520 The default value of @var{x} and @var{y} is 0.
14521
14522 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14523 so the input image is centered on the padded area.
14524
14525 @item color
14526 Specify the color of the padded area. For the syntax of this option,
14527 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14528 manual,ffmpeg-utils}.
14529
14530 The default value of @var{color} is "black".
14531
14532 @item eval
14533 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14534
14535 It accepts the following values:
14536
14537 @table @samp
14538 @item init
14539 Only evaluate expressions once during the filter initialization or when
14540 a command is processed.
14541
14542 @item frame
14543 Evaluate expressions for each incoming frame.
14544
14545 @end table
14546
14547 Default value is @samp{init}.
14548
14549 @item aspect
14550 Pad to aspect instead to a resolution.
14551
14552 @end table
14553
14554 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14555 options are expressions containing the following constants:
14556
14557 @table @option
14558 @item in_w
14559 @item in_h
14560 The input video width and height.
14561
14562 @item iw
14563 @item ih
14564 These are the same as @var{in_w} and @var{in_h}.
14565
14566 @item out_w
14567 @item out_h
14568 The output width and height (the size of the padded area), as
14569 specified by the @var{width} and @var{height} expressions.
14570
14571 @item ow
14572 @item oh
14573 These are the same as @var{out_w} and @var{out_h}.
14574
14575 @item x
14576 @item y
14577 The x and y offsets as specified by the @var{x} and @var{y}
14578 expressions, or NAN if not yet specified.
14579
14580 @item a
14581 same as @var{iw} / @var{ih}
14582
14583 @item sar
14584 input sample aspect ratio
14585
14586 @item dar
14587 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
14588
14589 @item hsub
14590 @item vsub
14591 The horizontal and vertical chroma subsample values. For example for the
14592 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14593 @end table
14594
14595 @subsection Examples
14596
14597 @itemize
14598 @item
14599 Add paddings with the color "violet" to the input video. The output video
14600 size is 640x480, and the top-left corner of the input video is placed at
14601 column 0, row 40
14602 @example
14603 pad=640:480:0:40:violet
14604 @end example
14605
14606 The example above is equivalent to the following command:
14607 @example
14608 pad=width=640:height=480:x=0:y=40:color=violet
14609 @end example
14610
14611 @item
14612 Pad the input to get an output with dimensions increased by 3/2,
14613 and put the input video at the center of the padded area:
14614 @example
14615 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
14616 @end example
14617
14618 @item
14619 Pad the input to get a squared output with size equal to the maximum
14620 value between the input width and height, and put the input video at
14621 the center of the padded area:
14622 @example
14623 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
14624 @end example
14625
14626 @item
14627 Pad the input to get a final w/h ratio of 16:9:
14628 @example
14629 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
14630 @end example
14631
14632 @item
14633 In case of anamorphic video, in order to set the output display aspect
14634 correctly, it is necessary to use @var{sar} in the expression,
14635 according to the relation:
14636 @example
14637 (ih * X / ih) * sar = output_dar
14638 X = output_dar / sar
14639 @end example
14640
14641 Thus the previous example needs to be modified to:
14642 @example
14643 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
14644 @end example
14645
14646 @item
14647 Double the output size and put the input video in the bottom-right
14648 corner of the output padded area:
14649 @example
14650 pad="2*iw:2*ih:ow-iw:oh-ih"
14651 @end example
14652 @end itemize
14653
14654 @anchor{palettegen}
14655 @section palettegen
14656
14657 Generate one palette for a whole video stream.
14658
14659 It accepts the following options:
14660
14661 @table @option
14662 @item max_colors
14663 Set the maximum number of colors to quantize in the palette.
14664 Note: the palette will still contain 256 colors; the unused palette entries
14665 will be black.
14666
14667 @item reserve_transparent
14668 Create a palette of 255 colors maximum and reserve the last one for
14669 transparency. Reserving the transparency color is useful for GIF optimization.
14670 If not set, the maximum of colors in the palette will be 256. You probably want
14671 to disable this option for a standalone image.
14672 Set by default.
14673
14674 @item transparency_color
14675 Set the color that will be used as background for transparency.
14676
14677 @item stats_mode
14678 Set statistics mode.
14679
14680 It accepts the following values:
14681 @table @samp
14682 @item full
14683 Compute full frame histograms.
14684 @item diff
14685 Compute histograms only for the part that differs from previous frame. This
14686 might be relevant to give more importance to the moving part of your input if
14687 the background is static.
14688 @item single
14689 Compute new histogram for each frame.
14690 @end table
14691
14692 Default value is @var{full}.
14693 @end table
14694
14695 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
14696 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
14697 color quantization of the palette. This information is also visible at
14698 @var{info} logging level.
14699
14700 @subsection Examples
14701
14702 @itemize
14703 @item
14704 Generate a representative palette of a given video using @command{ffmpeg}:
14705 @example
14706 ffmpeg -i input.mkv -vf palettegen palette.png
14707 @end example
14708 @end itemize
14709
14710 @section paletteuse
14711
14712 Use a palette to downsample an input video stream.
14713
14714 The filter takes two inputs: one video stream and a palette. The palette must
14715 be a 256 pixels image.
14716
14717 It accepts the following options:
14718
14719 @table @option
14720 @item dither
14721 Select dithering mode. Available algorithms are:
14722 @table @samp
14723 @item bayer
14724 Ordered 8x8 bayer dithering (deterministic)
14725 @item heckbert
14726 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
14727 Note: this dithering is sometimes considered "wrong" and is included as a
14728 reference.
14729 @item floyd_steinberg
14730 Floyd and Steingberg dithering (error diffusion)
14731 @item sierra2
14732 Frankie Sierra dithering v2 (error diffusion)
14733 @item sierra2_4a
14734 Frankie Sierra dithering v2 "Lite" (error diffusion)
14735 @end table
14736
14737 Default is @var{sierra2_4a}.
14738
14739 @item bayer_scale
14740 When @var{bayer} dithering is selected, this option defines the scale of the
14741 pattern (how much the crosshatch pattern is visible). A low value means more
14742 visible pattern for less banding, and higher value means less visible pattern
14743 at the cost of more banding.
14744
14745 The option must be an integer value in the range [0,5]. Default is @var{2}.
14746
14747 @item diff_mode
14748 If set, define the zone to process
14749
14750 @table @samp
14751 @item rectangle
14752 Only the changing rectangle will be reprocessed. This is similar to GIF
14753 cropping/offsetting compression mechanism. This option can be useful for speed
14754 if only a part of the image is changing, and has use cases such as limiting the
14755 scope of the error diffusal @option{dither} to the rectangle that bounds the
14756 moving scene (it leads to more deterministic output if the scene doesn't change
14757 much, and as a result less moving noise and better GIF compression).
14758 @end table
14759
14760 Default is @var{none}.
14761
14762 @item new
14763 Take new palette for each output frame.
14764
14765 @item alpha_threshold
14766 Sets the alpha threshold for transparency. Alpha values above this threshold
14767 will be treated as completely opaque, and values below this threshold will be
14768 treated as completely transparent.
14769
14770 The option must be an integer value in the range [0,255]. Default is @var{128}.
14771 @end table
14772
14773 @subsection Examples
14774
14775 @itemize
14776 @item
14777 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
14778 using @command{ffmpeg}:
14779 @example
14780 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
14781 @end example
14782 @end itemize
14783
14784 @section perspective
14785
14786 Correct perspective of video not recorded perpendicular to the screen.
14787
14788 A description of the accepted parameters follows.
14789
14790 @table @option
14791 @item x0
14792 @item y0
14793 @item x1
14794 @item y1
14795 @item x2
14796 @item y2
14797 @item x3
14798 @item y3
14799 Set coordinates expression for top left, top right, bottom left and bottom right corners.
14800 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
14801 If the @code{sense} option is set to @code{source}, then the specified points will be sent
14802 to the corners of the destination. If the @code{sense} option is set to @code{destination},
14803 then the corners of the source will be sent to the specified coordinates.
14804
14805 The expressions can use the following variables:
14806
14807 @table @option
14808 @item W
14809 @item H
14810 the width and height of video frame.
14811 @item in
14812 Input frame count.
14813 @item on
14814 Output frame count.
14815 @end table
14816
14817 @item interpolation
14818 Set interpolation for perspective correction.
14819
14820 It accepts the following values:
14821 @table @samp
14822 @item linear
14823 @item cubic
14824 @end table
14825
14826 Default value is @samp{linear}.
14827
14828 @item sense
14829 Set interpretation of coordinate options.
14830
14831 It accepts the following values:
14832 @table @samp
14833 @item 0, source
14834
14835 Send point in the source specified by the given coordinates to
14836 the corners of the destination.
14837
14838 @item 1, destination
14839
14840 Send the corners of the source to the point in the destination specified
14841 by the given coordinates.
14842
14843 Default value is @samp{source}.
14844 @end table
14845
14846 @item eval
14847 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
14848
14849 It accepts the following values:
14850 @table @samp
14851 @item init
14852 only evaluate expressions once during the filter initialization or
14853 when a command is processed
14854
14855 @item frame
14856 evaluate expressions for each incoming frame
14857 @end table
14858
14859 Default value is @samp{init}.
14860 @end table
14861
14862 @section phase
14863
14864 Delay interlaced video by one field time so that the field order changes.
14865
14866 The intended use is to fix PAL movies that have been captured with the
14867 opposite field order to the film-to-video transfer.
14868
14869 A description of the accepted parameters follows.
14870
14871 @table @option
14872 @item mode
14873 Set phase mode.
14874
14875 It accepts the following values:
14876 @table @samp
14877 @item t
14878 Capture field order top-first, transfer bottom-first.
14879 Filter will delay the bottom field.
14880
14881 @item b
14882 Capture field order bottom-first, transfer top-first.
14883 Filter will delay the top field.
14884
14885 @item p
14886 Capture and transfer with the same field order. This mode only exists
14887 for the documentation of the other options to refer to, but if you
14888 actually select it, the filter will faithfully do nothing.
14889
14890 @item a
14891 Capture field order determined automatically by field flags, transfer
14892 opposite.
14893 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14894 basis using field flags. If no field information is available,
14895 then this works just like @samp{u}.
14896
14897 @item u
14898 Capture unknown or varying, transfer opposite.
14899 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14900 analyzing the images and selecting the alternative that produces best
14901 match between the fields.
14902
14903 @item T
14904 Capture top-first, transfer unknown or varying.
14905 Filter selects among @samp{t} and @samp{p} using image analysis.
14906
14907 @item B
14908 Capture bottom-first, transfer unknown or varying.
14909 Filter selects among @samp{b} and @samp{p} using image analysis.
14910
14911 @item A
14912 Capture determined by field flags, transfer unknown or varying.
14913 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14914 image analysis. If no field information is available, then this works just
14915 like @samp{U}. This is the default mode.
14916
14917 @item U
14918 Both capture and transfer unknown or varying.
14919 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14920 @end table
14921 @end table
14922
14923 @section photosensitivity
14924 Reduce various flashes in video, so to help users with epilepsy.
14925
14926 It accepts the following options:
14927 @table @option
14928 @item frames, f
14929 Set how many frames to use when filtering. Default is 30.
14930
14931 @item threshold, t
14932 Set detection threshold factor. Default is 1.
14933 Lower is stricter.
14934
14935 @item skip
14936 Set how many pixels to skip when sampling frames. Default is 1.
14937 Allowed range is from 1 to 1024.
14938
14939 @item bypass
14940 Leave frames unchanged. Default is disabled.
14941 @end table
14942
14943 @section pixdesctest
14944
14945 Pixel format descriptor test filter, mainly useful for internal
14946 testing. The output video should be equal to the input video.
14947
14948 For example:
14949 @example
14950 format=monow, pixdesctest
14951 @end example
14952
14953 can be used to test the monowhite pixel format descriptor definition.
14954
14955 @section pixscope
14956
14957 Display sample values of color channels. Mainly useful for checking color
14958 and levels. Minimum supported resolution is 640x480.
14959
14960 The filters accept the following options:
14961
14962 @table @option
14963 @item x
14964 Set scope X position, relative offset on X axis.
14965
14966 @item y
14967 Set scope Y position, relative offset on Y axis.
14968
14969 @item w
14970 Set scope width.
14971
14972 @item h
14973 Set scope height.
14974
14975 @item o
14976 Set window opacity. This window also holds statistics about pixel area.
14977
14978 @item wx
14979 Set window X position, relative offset on X axis.
14980
14981 @item wy
14982 Set window Y position, relative offset on Y axis.
14983 @end table
14984
14985 @section pp
14986
14987 Enable the specified chain of postprocessing subfilters using libpostproc. This
14988 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14989 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14990 Each subfilter and some options have a short and a long name that can be used
14991 interchangeably, i.e. dr/dering are the same.
14992
14993 The filters accept the following options:
14994
14995 @table @option
14996 @item subfilters
14997 Set postprocessing subfilters string.
14998 @end table
14999
15000 All subfilters share common options to determine their scope:
15001
15002 @table @option
15003 @item a/autoq
15004 Honor the quality commands for this subfilter.
15005
15006 @item c/chrom
15007 Do chrominance filtering, too (default).
15008
15009 @item y/nochrom
15010 Do luminance filtering only (no chrominance).
15011
15012 @item n/noluma
15013 Do chrominance filtering only (no luminance).
15014 @end table
15015
15016 These options can be appended after the subfilter name, separated by a '|'.
15017
15018 Available subfilters are:
15019
15020 @table @option
15021 @item hb/hdeblock[|difference[|flatness]]
15022 Horizontal deblocking filter
15023 @table @option
15024 @item difference
15025 Difference factor where higher values mean more deblocking (default: @code{32}).
15026 @item flatness
15027 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15028 @end table
15029
15030 @item vb/vdeblock[|difference[|flatness]]
15031 Vertical deblocking filter
15032 @table @option
15033 @item difference
15034 Difference factor where higher values mean more deblocking (default: @code{32}).
15035 @item flatness
15036 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15037 @end table
15038
15039 @item ha/hadeblock[|difference[|flatness]]
15040 Accurate horizontal deblocking filter
15041 @table @option
15042 @item difference
15043 Difference factor where higher values mean more deblocking (default: @code{32}).
15044 @item flatness
15045 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15046 @end table
15047
15048 @item va/vadeblock[|difference[|flatness]]
15049 Accurate vertical deblocking filter
15050 @table @option
15051 @item difference
15052 Difference factor where higher values mean more deblocking (default: @code{32}).
15053 @item flatness
15054 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15055 @end table
15056 @end table
15057
15058 The horizontal and vertical deblocking filters share the difference and
15059 flatness values so you cannot set different horizontal and vertical
15060 thresholds.
15061
15062 @table @option
15063 @item h1/x1hdeblock
15064 Experimental horizontal deblocking filter
15065
15066 @item v1/x1vdeblock
15067 Experimental vertical deblocking filter
15068
15069 @item dr/dering
15070 Deringing filter
15071
15072 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15073 @table @option
15074 @item threshold1
15075 larger -> stronger filtering
15076 @item threshold2
15077 larger -> stronger filtering
15078 @item threshold3
15079 larger -> stronger filtering
15080 @end table
15081
15082 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15083 @table @option
15084 @item f/fullyrange
15085 Stretch luminance to @code{0-255}.
15086 @end table
15087
15088 @item lb/linblenddeint
15089 Linear blend deinterlacing filter that deinterlaces the given block by
15090 filtering all lines with a @code{(1 2 1)} filter.
15091
15092 @item li/linipoldeint
15093 Linear interpolating deinterlacing filter that deinterlaces the given block by
15094 linearly interpolating every second line.
15095
15096 @item ci/cubicipoldeint
15097 Cubic interpolating deinterlacing filter deinterlaces the given block by
15098 cubically interpolating every second line.
15099
15100 @item md/mediandeint
15101 Median deinterlacing filter that deinterlaces the given block by applying a
15102 median filter to every second line.
15103
15104 @item fd/ffmpegdeint
15105 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15106 second line with a @code{(-1 4 2 4 -1)} filter.
15107
15108 @item l5/lowpass5
15109 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15110 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15111
15112 @item fq/forceQuant[|quantizer]
15113 Overrides the quantizer table from the input with the constant quantizer you
15114 specify.
15115 @table @option
15116 @item quantizer
15117 Quantizer to use
15118 @end table
15119
15120 @item de/default
15121 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15122
15123 @item fa/fast
15124 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15125
15126 @item ac
15127 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15128 @end table
15129
15130 @subsection Examples
15131
15132 @itemize
15133 @item
15134 Apply horizontal and vertical deblocking, deringing and automatic
15135 brightness/contrast:
15136 @example
15137 pp=hb/vb/dr/al
15138 @end example
15139
15140 @item
15141 Apply default filters without brightness/contrast correction:
15142 @example
15143 pp=de/-al
15144 @end example
15145
15146 @item
15147 Apply default filters and temporal denoiser:
15148 @example
15149 pp=default/tmpnoise|1|2|3
15150 @end example
15151
15152 @item
15153 Apply deblocking on luminance only, and switch vertical deblocking on or off
15154 automatically depending on available CPU time:
15155 @example
15156 pp=hb|y/vb|a
15157 @end example
15158 @end itemize
15159
15160 @section pp7
15161 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15162 similar to spp = 6 with 7 point DCT, where only the center sample is
15163 used after IDCT.
15164
15165 The filter accepts the following options:
15166
15167 @table @option
15168 @item qp
15169 Force a constant quantization parameter. It accepts an integer in range
15170 0 to 63. If not set, the filter will use the QP from the video stream
15171 (if available).
15172
15173 @item mode
15174 Set thresholding mode. Available modes are:
15175
15176 @table @samp
15177 @item hard
15178 Set hard thresholding.
15179 @item soft
15180 Set soft thresholding (better de-ringing effect, but likely blurrier).
15181 @item medium
15182 Set medium thresholding (good results, default).
15183 @end table
15184 @end table
15185
15186 @section premultiply
15187 Apply alpha premultiply effect to input video stream using first plane
15188 of second stream as alpha.
15189
15190 Both streams must have same dimensions and same pixel format.
15191
15192 The filter accepts the following option:
15193
15194 @table @option
15195 @item planes
15196 Set which planes will be processed, unprocessed planes will be copied.
15197 By default value 0xf, all planes will be processed.
15198
15199 @item inplace
15200 Do not require 2nd input for processing, instead use alpha plane from input stream.
15201 @end table
15202
15203 @section prewitt
15204 Apply prewitt operator to input video stream.
15205
15206 The filter accepts the following option:
15207
15208 @table @option
15209 @item planes
15210 Set which planes will be processed, unprocessed planes will be copied.
15211 By default value 0xf, all planes will be processed.
15212
15213 @item scale
15214 Set value which will be multiplied with filtered result.
15215
15216 @item delta
15217 Set value which will be added to filtered result.
15218 @end table
15219
15220 @section pseudocolor
15221
15222 Alter frame colors in video with pseudocolors.
15223
15224 This filter accepts the following options:
15225
15226 @table @option
15227 @item c0
15228 set pixel first component expression
15229
15230 @item c1
15231 set pixel second component expression
15232
15233 @item c2
15234 set pixel third component expression
15235
15236 @item c3
15237 set pixel fourth component expression, corresponds to the alpha component
15238
15239 @item i
15240 set component to use as base for altering colors
15241 @end table
15242
15243 Each of them specifies the expression to use for computing the lookup table for
15244 the corresponding pixel component values.
15245
15246 The expressions can contain the following constants and functions:
15247
15248 @table @option
15249 @item w
15250 @item h
15251 The input width and height.
15252
15253 @item val
15254 The input value for the pixel component.
15255
15256 @item ymin, umin, vmin, amin
15257 The minimum allowed component value.
15258
15259 @item ymax, umax, vmax, amax
15260 The maximum allowed component value.
15261 @end table
15262
15263 All expressions default to "val".
15264
15265 @subsection Examples
15266
15267 @itemize
15268 @item
15269 Change too high luma values to gradient:
15270 @example
15271 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'"
15272 @end example
15273 @end itemize
15274
15275 @section psnr
15276
15277 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15278 Ratio) between two input videos.
15279
15280 This filter takes in input two input videos, the first input is
15281 considered the "main" source and is passed unchanged to the
15282 output. The second input is used as a "reference" video for computing
15283 the PSNR.
15284
15285 Both video inputs must have the same resolution and pixel format for
15286 this filter to work correctly. Also it assumes that both inputs
15287 have the same number of frames, which are compared one by one.
15288
15289 The obtained average PSNR is printed through the logging system.
15290
15291 The filter stores the accumulated MSE (mean squared error) of each
15292 frame, and at the end of the processing it is averaged across all frames
15293 equally, and the following formula is applied to obtain the PSNR:
15294
15295 @example
15296 PSNR = 10*log10(MAX^2/MSE)
15297 @end example
15298
15299 Where MAX is the average of the maximum values of each component of the
15300 image.
15301
15302 The description of the accepted parameters follows.
15303
15304 @table @option
15305 @item stats_file, f
15306 If specified the filter will use the named file to save the PSNR of
15307 each individual frame. When filename equals "-" the data is sent to
15308 standard output.
15309
15310 @item stats_version
15311 Specifies which version of the stats file format to use. Details of
15312 each format are written below.
15313 Default value is 1.
15314
15315 @item stats_add_max
15316 Determines whether the max value is output to the stats log.
15317 Default value is 0.
15318 Requires stats_version >= 2. If this is set and stats_version < 2,
15319 the filter will return an error.
15320 @end table
15321
15322 This filter also supports the @ref{framesync} options.
15323
15324 The file printed if @var{stats_file} is selected, contains a sequence of
15325 key/value pairs of the form @var{key}:@var{value} for each compared
15326 couple of frames.
15327
15328 If a @var{stats_version} greater than 1 is specified, a header line precedes
15329 the list of per-frame-pair stats, with key value pairs following the frame
15330 format with the following parameters:
15331
15332 @table @option
15333 @item psnr_log_version
15334 The version of the log file format. Will match @var{stats_version}.
15335
15336 @item fields
15337 A comma separated list of the per-frame-pair parameters included in
15338 the log.
15339 @end table
15340
15341 A description of each shown per-frame-pair parameter follows:
15342
15343 @table @option
15344 @item n
15345 sequential number of the input frame, starting from 1
15346
15347 @item mse_avg
15348 Mean Square Error pixel-by-pixel average difference of the compared
15349 frames, averaged over all the image components.
15350
15351 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15352 Mean Square Error pixel-by-pixel average difference of the compared
15353 frames for the component specified by the suffix.
15354
15355 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15356 Peak Signal to Noise ratio of the compared frames for the component
15357 specified by the suffix.
15358
15359 @item max_avg, max_y, max_u, max_v
15360 Maximum allowed value for each channel, and average over all
15361 channels.
15362 @end table
15363
15364 @subsection Examples
15365 @itemize
15366 @item
15367 For example:
15368 @example
15369 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15370 [main][ref] psnr="stats_file=stats.log" [out]
15371 @end example
15372
15373 On this example the input file being processed is compared with the
15374 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15375 is stored in @file{stats.log}.
15376
15377 @item
15378 Another example with different containers:
15379 @example
15380 ffmpeg -i main.mpg -i ref.mkv -lavfi  "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]psnr" -f null -
15381 @end example
15382 @end itemize
15383
15384 @anchor{pullup}
15385 @section pullup
15386
15387 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15388 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15389 content.
15390
15391 The pullup filter is designed to take advantage of future context in making
15392 its decisions. This filter is stateless in the sense that it does not lock
15393 onto a pattern to follow, but it instead looks forward to the following
15394 fields in order to identify matches and rebuild progressive frames.
15395
15396 To produce content with an even framerate, insert the fps filter after
15397 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15398 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15399
15400 The filter accepts the following options:
15401
15402 @table @option
15403 @item jl
15404 @item jr
15405 @item jt
15406 @item jb
15407 These options set the amount of "junk" to ignore at the left, right, top, and
15408 bottom of the image, respectively. Left and right are in units of 8 pixels,
15409 while top and bottom are in units of 2 lines.
15410 The default is 8 pixels on each side.
15411
15412 @item sb
15413 Set the strict breaks. Setting this option to 1 will reduce the chances of
15414 filter generating an occasional mismatched frame, but it may also cause an
15415 excessive number of frames to be dropped during high motion sequences.
15416 Conversely, setting it to -1 will make filter match fields more easily.
15417 This may help processing of video where there is slight blurring between
15418 the fields, but may also cause there to be interlaced frames in the output.
15419 Default value is @code{0}.
15420
15421 @item mp
15422 Set the metric plane to use. It accepts the following values:
15423 @table @samp
15424 @item l
15425 Use luma plane.
15426
15427 @item u
15428 Use chroma blue plane.
15429
15430 @item v
15431 Use chroma red plane.
15432 @end table
15433
15434 This option may be set to use chroma plane instead of the default luma plane
15435 for doing filter's computations. This may improve accuracy on very clean
15436 source material, but more likely will decrease accuracy, especially if there
15437 is chroma noise (rainbow effect) or any grayscale video.
15438 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15439 load and make pullup usable in realtime on slow machines.
15440 @end table
15441
15442 For best results (without duplicated frames in the output file) it is
15443 necessary to change the output frame rate. For example, to inverse
15444 telecine NTSC input:
15445 @example
15446 ffmpeg -i input -vf pullup -r 24000/1001 ...
15447 @end example
15448
15449 @section qp
15450
15451 Change video quantization parameters (QP).
15452
15453 The filter accepts the following option:
15454
15455 @table @option
15456 @item qp
15457 Set expression for quantization parameter.
15458 @end table
15459
15460 The expression is evaluated through the eval API and can contain, among others,
15461 the following constants:
15462
15463 @table @var
15464 @item known
15465 1 if index is not 129, 0 otherwise.
15466
15467 @item qp
15468 Sequential index starting from -129 to 128.
15469 @end table
15470
15471 @subsection Examples
15472
15473 @itemize
15474 @item
15475 Some equation like:
15476 @example
15477 qp=2+2*sin(PI*qp)
15478 @end example
15479 @end itemize
15480
15481 @section random
15482
15483 Flush video frames from internal cache of frames into a random order.
15484 No frame is discarded.
15485 Inspired by @ref{frei0r} nervous filter.
15486
15487 @table @option
15488 @item frames
15489 Set size in number of frames of internal cache, in range from @code{2} to
15490 @code{512}. Default is @code{30}.
15491
15492 @item seed
15493 Set seed for random number generator, must be an integer included between
15494 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15495 less than @code{0}, the filter will try to use a good random seed on a
15496 best effort basis.
15497 @end table
15498
15499 @section readeia608
15500
15501 Read closed captioning (EIA-608) information from the top lines of a video frame.
15502
15503 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15504 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15505 with EIA-608 data (starting from 0). A description of each metadata value follows:
15506
15507 @table @option
15508 @item lavfi.readeia608.X.cc
15509 The two bytes stored as EIA-608 data (printed in hexadecimal).
15510
15511 @item lavfi.readeia608.X.line
15512 The number of the line on which the EIA-608 data was identified and read.
15513 @end table
15514
15515 This filter accepts the following options:
15516
15517 @table @option
15518 @item scan_min
15519 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15520
15521 @item scan_max
15522 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15523
15524 @item spw
15525 Set the ratio of width reserved for sync code detection.
15526 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15527
15528 @item chp
15529 Enable checking the parity bit. In the event of a parity error, the filter will output
15530 @code{0x00} for that character. Default is false.
15531
15532 @item lp
15533 Lowpass lines prior to further processing. Default is enabled.
15534 @end table
15535
15536 @subsection Examples
15537
15538 @itemize
15539 @item
15540 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15541 @example
15542 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
15543 @end example
15544 @end itemize
15545
15546 @section readvitc
15547
15548 Read vertical interval timecode (VITC) information from the top lines of a
15549 video frame.
15550
15551 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15552 timecode value, if a valid timecode has been detected. Further metadata key
15553 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15554 timecode data has been found or not.
15555
15556 This filter accepts the following options:
15557
15558 @table @option
15559 @item scan_max
15560 Set the maximum number of lines to scan for VITC data. If the value is set to
15561 @code{-1} the full video frame is scanned. Default is @code{45}.
15562
15563 @item thr_b
15564 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15565 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15566
15567 @item thr_w
15568 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
15569 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
15570 @end table
15571
15572 @subsection Examples
15573
15574 @itemize
15575 @item
15576 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
15577 draw @code{--:--:--:--} as a placeholder:
15578 @example
15579 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
15580 @end example
15581 @end itemize
15582
15583 @section remap
15584
15585 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
15586
15587 Destination pixel at position (X, Y) will be picked from source (x, y) position
15588 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
15589 value for pixel will be used for destination pixel.
15590
15591 Xmap and Ymap input video streams must be of same dimensions. Output video stream
15592 will have Xmap/Ymap video stream dimensions.
15593 Xmap and Ymap input video streams are 16bit depth, single channel.
15594
15595 @table @option
15596 @item format
15597 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
15598 Default is @code{color}.
15599
15600 @item fill
15601 Specify the color of the unmapped pixels. For the syntax of this option,
15602 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15603 manual,ffmpeg-utils}. Default color is @code{black}.
15604 @end table
15605
15606 @section removegrain
15607
15608 The removegrain filter is a spatial denoiser for progressive video.
15609
15610 @table @option
15611 @item m0
15612 Set mode for the first plane.
15613
15614 @item m1
15615 Set mode for the second plane.
15616
15617 @item m2
15618 Set mode for the third plane.
15619
15620 @item m3
15621 Set mode for the fourth plane.
15622 @end table
15623
15624 Range of mode is from 0 to 24. Description of each mode follows:
15625
15626 @table @var
15627 @item 0
15628 Leave input plane unchanged. Default.
15629
15630 @item 1
15631 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
15632
15633 @item 2
15634 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
15635
15636 @item 3
15637 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
15638
15639 @item 4
15640 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
15641 This is equivalent to a median filter.
15642
15643 @item 5
15644 Line-sensitive clipping giving the minimal change.
15645
15646 @item 6
15647 Line-sensitive clipping, intermediate.
15648
15649 @item 7
15650 Line-sensitive clipping, intermediate.
15651
15652 @item 8
15653 Line-sensitive clipping, intermediate.
15654
15655 @item 9
15656 Line-sensitive clipping on a line where the neighbours pixels are the closest.
15657
15658 @item 10
15659 Replaces the target pixel with the closest neighbour.
15660
15661 @item 11
15662 [1 2 1] horizontal and vertical kernel blur.
15663
15664 @item 12
15665 Same as mode 11.
15666
15667 @item 13
15668 Bob mode, interpolates top field from the line where the neighbours
15669 pixels are the closest.
15670
15671 @item 14
15672 Bob mode, interpolates bottom field from the line where the neighbours
15673 pixels are the closest.
15674
15675 @item 15
15676 Bob mode, interpolates top field. Same as 13 but with a more complicated
15677 interpolation formula.
15678
15679 @item 16
15680 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
15681 interpolation formula.
15682
15683 @item 17
15684 Clips the pixel with the minimum and maximum of respectively the maximum and
15685 minimum of each pair of opposite neighbour pixels.
15686
15687 @item 18
15688 Line-sensitive clipping using opposite neighbours whose greatest distance from
15689 the current pixel is minimal.
15690
15691 @item 19
15692 Replaces the pixel with the average of its 8 neighbours.
15693
15694 @item 20
15695 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
15696
15697 @item 21
15698 Clips pixels using the averages of opposite neighbour.
15699
15700 @item 22
15701 Same as mode 21 but simpler and faster.
15702
15703 @item 23
15704 Small edge and halo removal, but reputed useless.
15705
15706 @item 24
15707 Similar as 23.
15708 @end table
15709
15710 @section removelogo
15711
15712 Suppress a TV station logo, using an image file to determine which
15713 pixels comprise the logo. It works by filling in the pixels that
15714 comprise the logo with neighboring pixels.
15715
15716 The filter accepts the following options:
15717
15718 @table @option
15719 @item filename, f
15720 Set the filter bitmap file, which can be any image format supported by
15721 libavformat. The width and height of the image file must match those of the
15722 video stream being processed.
15723 @end table
15724
15725 Pixels in the provided bitmap image with a value of zero are not
15726 considered part of the logo, non-zero pixels are considered part of
15727 the logo. If you use white (255) for the logo and black (0) for the
15728 rest, you will be safe. For making the filter bitmap, it is
15729 recommended to take a screen capture of a black frame with the logo
15730 visible, and then using a threshold filter followed by the erode
15731 filter once or twice.
15732
15733 If needed, little splotches can be fixed manually. Remember that if
15734 logo pixels are not covered, the filter quality will be much
15735 reduced. Marking too many pixels as part of the logo does not hurt as
15736 much, but it will increase the amount of blurring needed to cover over
15737 the image and will destroy more information than necessary, and extra
15738 pixels will slow things down on a large logo.
15739
15740 @section repeatfields
15741
15742 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15743 fields based on its value.
15744
15745 @section reverse
15746
15747 Reverse a video clip.
15748
15749 Warning: This filter requires memory to buffer the entire clip, so trimming
15750 is suggested.
15751
15752 @subsection Examples
15753
15754 @itemize
15755 @item
15756 Take the first 5 seconds of a clip, and reverse it.
15757 @example
15758 trim=end=5,reverse
15759 @end example
15760 @end itemize
15761
15762 @section rgbashift
15763 Shift R/G/B/A pixels horizontally and/or vertically.
15764
15765 The filter accepts the following options:
15766 @table @option
15767 @item rh
15768 Set amount to shift red horizontally.
15769 @item rv
15770 Set amount to shift red vertically.
15771 @item gh
15772 Set amount to shift green horizontally.
15773 @item gv
15774 Set amount to shift green vertically.
15775 @item bh
15776 Set amount to shift blue horizontally.
15777 @item bv
15778 Set amount to shift blue vertically.
15779 @item ah
15780 Set amount to shift alpha horizontally.
15781 @item av
15782 Set amount to shift alpha vertically.
15783 @item edge
15784 Set edge mode, can be @var{smear}, default, or @var{warp}.
15785 @end table
15786
15787 @subsection Commands
15788
15789 This filter supports the all above options as @ref{commands}.
15790
15791 @section roberts
15792 Apply roberts cross operator to input video stream.
15793
15794 The filter accepts the following option:
15795
15796 @table @option
15797 @item planes
15798 Set which planes will be processed, unprocessed planes will be copied.
15799 By default value 0xf, all planes will be processed.
15800
15801 @item scale
15802 Set value which will be multiplied with filtered result.
15803
15804 @item delta
15805 Set value which will be added to filtered result.
15806 @end table
15807
15808 @section rotate
15809
15810 Rotate video by an arbitrary angle expressed in radians.
15811
15812 The filter accepts the following options:
15813
15814 A description of the optional parameters follows.
15815 @table @option
15816 @item angle, a
15817 Set an expression for the angle by which to rotate the input video
15818 clockwise, expressed as a number of radians. A negative value will
15819 result in a counter-clockwise rotation. By default it is set to "0".
15820
15821 This expression is evaluated for each frame.
15822
15823 @item out_w, ow
15824 Set the output width expression, default value is "iw".
15825 This expression is evaluated just once during configuration.
15826
15827 @item out_h, oh
15828 Set the output height expression, default value is "ih".
15829 This expression is evaluated just once during configuration.
15830
15831 @item bilinear
15832 Enable bilinear interpolation if set to 1, a value of 0 disables
15833 it. Default value is 1.
15834
15835 @item fillcolor, c
15836 Set the color used to fill the output area not covered by the rotated
15837 image. For the general syntax of this option, check the
15838 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15839 If the special value "none" is selected then no
15840 background is printed (useful for example if the background is never shown).
15841
15842 Default value is "black".
15843 @end table
15844
15845 The expressions for the angle and the output size can contain the
15846 following constants and functions:
15847
15848 @table @option
15849 @item n
15850 sequential number of the input frame, starting from 0. It is always NAN
15851 before the first frame is filtered.
15852
15853 @item t
15854 time in seconds of the input frame, it is set to 0 when the filter is
15855 configured. It is always NAN before the first frame is filtered.
15856
15857 @item hsub
15858 @item vsub
15859 horizontal and vertical chroma subsample values. For example for the
15860 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15861
15862 @item in_w, iw
15863 @item in_h, ih
15864 the input video width and height
15865
15866 @item out_w, ow
15867 @item out_h, oh
15868 the output width and height, that is the size of the padded area as
15869 specified by the @var{width} and @var{height} expressions
15870
15871 @item rotw(a)
15872 @item roth(a)
15873 the minimal width/height required for completely containing the input
15874 video rotated by @var{a} radians.
15875
15876 These are only available when computing the @option{out_w} and
15877 @option{out_h} expressions.
15878 @end table
15879
15880 @subsection Examples
15881
15882 @itemize
15883 @item
15884 Rotate the input by PI/6 radians clockwise:
15885 @example
15886 rotate=PI/6
15887 @end example
15888
15889 @item
15890 Rotate the input by PI/6 radians counter-clockwise:
15891 @example
15892 rotate=-PI/6
15893 @end example
15894
15895 @item
15896 Rotate the input by 45 degrees clockwise:
15897 @example
15898 rotate=45*PI/180
15899 @end example
15900
15901 @item
15902 Apply a constant rotation with period T, starting from an angle of PI/3:
15903 @example
15904 rotate=PI/3+2*PI*t/T
15905 @end example
15906
15907 @item
15908 Make the input video rotation oscillating with a period of T
15909 seconds and an amplitude of A radians:
15910 @example
15911 rotate=A*sin(2*PI/T*t)
15912 @end example
15913
15914 @item
15915 Rotate the video, output size is chosen so that the whole rotating
15916 input video is always completely contained in the output:
15917 @example
15918 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15919 @end example
15920
15921 @item
15922 Rotate the video, reduce the output size so that no background is ever
15923 shown:
15924 @example
15925 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15926 @end example
15927 @end itemize
15928
15929 @subsection Commands
15930
15931 The filter supports the following commands:
15932
15933 @table @option
15934 @item a, angle
15935 Set the angle expression.
15936 The command accepts the same syntax of the corresponding option.
15937
15938 If the specified expression is not valid, it is kept at its current
15939 value.
15940 @end table
15941
15942 @section sab
15943
15944 Apply Shape Adaptive Blur.
15945
15946 The filter accepts the following options:
15947
15948 @table @option
15949 @item luma_radius, lr
15950 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15951 value is 1.0. A greater value will result in a more blurred image, and
15952 in slower processing.
15953
15954 @item luma_pre_filter_radius, lpfr
15955 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15956 value is 1.0.
15957
15958 @item luma_strength, ls
15959 Set luma maximum difference between pixels to still be considered, must
15960 be a value in the 0.1-100.0 range, default value is 1.0.
15961
15962 @item chroma_radius, cr
15963 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15964 greater value will result in a more blurred image, and in slower
15965 processing.
15966
15967 @item chroma_pre_filter_radius, cpfr
15968 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15969
15970 @item chroma_strength, cs
15971 Set chroma maximum difference between pixels to still be considered,
15972 must be a value in the -0.9-100.0 range.
15973 @end table
15974
15975 Each chroma option value, if not explicitly specified, is set to the
15976 corresponding luma option value.
15977
15978 @anchor{scale}
15979 @section scale
15980
15981 Scale (resize) the input video, using the libswscale library.
15982
15983 The scale filter forces the output display aspect ratio to be the same
15984 of the input, by changing the output sample aspect ratio.
15985
15986 If the input image format is different from the format requested by
15987 the next filter, the scale filter will convert the input to the
15988 requested format.
15989
15990 @subsection Options
15991 The filter accepts the following options, or any of the options
15992 supported by the libswscale scaler.
15993
15994 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15995 the complete list of scaler options.
15996
15997 @table @option
15998 @item width, w
15999 @item height, h
16000 Set the output video dimension expression. Default value is the input
16001 dimension.
16002
16003 If the @var{width} or @var{w} value is 0, the input width is used for
16004 the output. If the @var{height} or @var{h} value is 0, the input height
16005 is used for the output.
16006
16007 If one and only one of the values is -n with n >= 1, the scale filter
16008 will use a value that maintains the aspect ratio of the input image,
16009 calculated from the other specified dimension. After that it will,
16010 however, make sure that the calculated dimension is divisible by n and
16011 adjust the value if necessary.
16012
16013 If both values are -n with n >= 1, the behavior will be identical to
16014 both values being set to 0 as previously detailed.
16015
16016 See below for the list of accepted constants for use in the dimension
16017 expression.
16018
16019 @item eval
16020 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
16021
16022 @table @samp
16023 @item init
16024 Only evaluate expressions once during the filter initialization or when a command is processed.
16025
16026 @item frame
16027 Evaluate expressions for each incoming frame.
16028
16029 @end table
16030
16031 Default value is @samp{init}.
16032
16033
16034 @item interl
16035 Set the interlacing mode. It accepts the following values:
16036
16037 @table @samp
16038 @item 1
16039 Force interlaced aware scaling.
16040
16041 @item 0
16042 Do not apply interlaced scaling.
16043
16044 @item -1
16045 Select interlaced aware scaling depending on whether the source frames
16046 are flagged as interlaced or not.
16047 @end table
16048
16049 Default value is @samp{0}.
16050
16051 @item flags
16052 Set libswscale scaling flags. See
16053 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16054 complete list of values. If not explicitly specified the filter applies
16055 the default flags.
16056
16057
16058 @item param0, param1
16059 Set libswscale input parameters for scaling algorithms that need them. See
16060 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16061 complete documentation. If not explicitly specified the filter applies
16062 empty parameters.
16063
16064
16065
16066 @item size, s
16067 Set the video size. For the syntax of this option, check the
16068 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16069
16070 @item in_color_matrix
16071 @item out_color_matrix
16072 Set in/output YCbCr color space type.
16073
16074 This allows the autodetected value to be overridden as well as allows forcing
16075 a specific value used for the output and encoder.
16076
16077 If not specified, the color space type depends on the pixel format.
16078
16079 Possible values:
16080
16081 @table @samp
16082 @item auto
16083 Choose automatically.
16084
16085 @item bt709
16086 Format conforming to International Telecommunication Union (ITU)
16087 Recommendation BT.709.
16088
16089 @item fcc
16090 Set color space conforming to the United States Federal Communications
16091 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16092
16093 @item bt601
16094 @item bt470
16095 @item smpte170m
16096 Set color space conforming to:
16097
16098 @itemize
16099 @item
16100 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16101
16102 @item
16103 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16104
16105 @item
16106 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16107
16108 @end itemize
16109
16110 @item smpte240m
16111 Set color space conforming to SMPTE ST 240:1999.
16112
16113 @item bt2020
16114 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16115 @end table
16116
16117 @item in_range
16118 @item out_range
16119 Set in/output YCbCr sample range.
16120
16121 This allows the autodetected value to be overridden as well as allows forcing
16122 a specific value used for the output and encoder. If not specified, the
16123 range depends on the pixel format. Possible values:
16124
16125 @table @samp
16126 @item auto/unknown
16127 Choose automatically.
16128
16129 @item jpeg/full/pc
16130 Set full range (0-255 in case of 8-bit luma).
16131
16132 @item mpeg/limited/tv
16133 Set "MPEG" range (16-235 in case of 8-bit luma).
16134 @end table
16135
16136 @item force_original_aspect_ratio
16137 Enable decreasing or increasing output video width or height if necessary to
16138 keep the original aspect ratio. Possible values:
16139
16140 @table @samp
16141 @item disable
16142 Scale the video as specified and disable this feature.
16143
16144 @item decrease
16145 The output video dimensions will automatically be decreased if needed.
16146
16147 @item increase
16148 The output video dimensions will automatically be increased if needed.
16149
16150 @end table
16151
16152 One useful instance of this option is that when you know a specific device's
16153 maximum allowed resolution, you can use this to limit the output video to
16154 that, while retaining the aspect ratio. For example, device A allows
16155 1280x720 playback, and your video is 1920x800. Using this option (set it to
16156 decrease) and specifying 1280x720 to the command line makes the output
16157 1280x533.
16158
16159 Please note that this is a different thing than specifying -1 for @option{w}
16160 or @option{h}, you still need to specify the output resolution for this option
16161 to work.
16162
16163 @item force_divisible_by
16164 Ensures that both the output dimensions, width and height, are divisible by the
16165 given integer when used together with @option{force_original_aspect_ratio}. This
16166 works similar to using @code{-n} in the @option{w} and @option{h} options.
16167
16168 This option respects the value set for @option{force_original_aspect_ratio},
16169 increasing or decreasing the resolution accordingly. The video's aspect ratio
16170 may be slightly modified.
16171
16172 This option can be handy if you need to have a video fit within or exceed
16173 a defined resolution using @option{force_original_aspect_ratio} but also have
16174 encoder restrictions on width or height divisibility.
16175
16176 @end table
16177
16178 The values of the @option{w} and @option{h} options are expressions
16179 containing the following constants:
16180
16181 @table @var
16182 @item in_w
16183 @item in_h
16184 The input width and height
16185
16186 @item iw
16187 @item ih
16188 These are the same as @var{in_w} and @var{in_h}.
16189
16190 @item out_w
16191 @item out_h
16192 The output (scaled) width and height
16193
16194 @item ow
16195 @item oh
16196 These are the same as @var{out_w} and @var{out_h}
16197
16198 @item a
16199 The same as @var{iw} / @var{ih}
16200
16201 @item sar
16202 input sample aspect ratio
16203
16204 @item dar
16205 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16206
16207 @item hsub
16208 @item vsub
16209 horizontal and vertical input chroma subsample values. For example for the
16210 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16211
16212 @item ohsub
16213 @item ovsub
16214 horizontal and vertical output chroma subsample values. For example for the
16215 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16216
16217 @item n
16218 The (sequential) number of the input frame, starting from 0.
16219 Only available with @code{eval=frame}.
16220
16221 @item t
16222 The presentation timestamp of the input frame, expressed as a number of
16223 seconds. Only available with @code{eval=frame}.
16224
16225 @item pos
16226 The position (byte offset) of the frame in the input stream, or NaN if
16227 this information is unavailable and/or meaningless (for example in case of synthetic video).
16228 Only available with @code{eval=frame}.
16229 @end table
16230
16231 @subsection Examples
16232
16233 @itemize
16234 @item
16235 Scale the input video to a size of 200x100
16236 @example
16237 scale=w=200:h=100
16238 @end example
16239
16240 This is equivalent to:
16241 @example
16242 scale=200:100
16243 @end example
16244
16245 or:
16246 @example
16247 scale=200x100
16248 @end example
16249
16250 @item
16251 Specify a size abbreviation for the output size:
16252 @example
16253 scale=qcif
16254 @end example
16255
16256 which can also be written as:
16257 @example
16258 scale=size=qcif
16259 @end example
16260
16261 @item
16262 Scale the input to 2x:
16263 @example
16264 scale=w=2*iw:h=2*ih
16265 @end example
16266
16267 @item
16268 The above is the same as:
16269 @example
16270 scale=2*in_w:2*in_h
16271 @end example
16272
16273 @item
16274 Scale the input to 2x with forced interlaced scaling:
16275 @example
16276 scale=2*iw:2*ih:interl=1
16277 @end example
16278
16279 @item
16280 Scale the input to half size:
16281 @example
16282 scale=w=iw/2:h=ih/2
16283 @end example
16284
16285 @item
16286 Increase the width, and set the height to the same size:
16287 @example
16288 scale=3/2*iw:ow
16289 @end example
16290
16291 @item
16292 Seek Greek harmony:
16293 @example
16294 scale=iw:1/PHI*iw
16295 scale=ih*PHI:ih
16296 @end example
16297
16298 @item
16299 Increase the height, and set the width to 3/2 of the height:
16300 @example
16301 scale=w=3/2*oh:h=3/5*ih
16302 @end example
16303
16304 @item
16305 Increase the size, making the size a multiple of the chroma
16306 subsample values:
16307 @example
16308 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16309 @end example
16310
16311 @item
16312 Increase the width to a maximum of 500 pixels,
16313 keeping the same aspect ratio as the input:
16314 @example
16315 scale=w='min(500\, iw*3/2):h=-1'
16316 @end example
16317
16318 @item
16319 Make pixels square by combining scale and setsar:
16320 @example
16321 scale='trunc(ih*dar):ih',setsar=1/1
16322 @end example
16323
16324 @item
16325 Make pixels square by combining scale and setsar,
16326 making sure the resulting resolution is even (required by some codecs):
16327 @example
16328 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16329 @end example
16330 @end itemize
16331
16332 @subsection Commands
16333
16334 This filter supports the following commands:
16335 @table @option
16336 @item width, w
16337 @item height, h
16338 Set the output video dimension expression.
16339 The command accepts the same syntax of the corresponding option.
16340
16341 If the specified expression is not valid, it is kept at its current
16342 value.
16343 @end table
16344
16345 @section scale_npp
16346
16347 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16348 format conversion on CUDA video frames. Setting the output width and height
16349 works in the same way as for the @var{scale} filter.
16350
16351 The following additional options are accepted:
16352 @table @option
16353 @item format
16354 The pixel format of the output CUDA frames. If set to the string "same" (the
16355 default), the input format will be kept. Note that automatic format negotiation
16356 and conversion is not yet supported for hardware frames
16357
16358 @item interp_algo
16359 The interpolation algorithm used for resizing. One of the following:
16360 @table @option
16361 @item nn
16362 Nearest neighbour.
16363
16364 @item linear
16365 @item cubic
16366 @item cubic2p_bspline
16367 2-parameter cubic (B=1, C=0)
16368
16369 @item cubic2p_catmullrom
16370 2-parameter cubic (B=0, C=1/2)
16371
16372 @item cubic2p_b05c03
16373 2-parameter cubic (B=1/2, C=3/10)
16374
16375 @item super
16376 Supersampling
16377
16378 @item lanczos
16379 @end table
16380
16381 @item force_original_aspect_ratio
16382 Enable decreasing or increasing output video width or height if necessary to
16383 keep the original aspect ratio. Possible values:
16384
16385 @table @samp
16386 @item disable
16387 Scale the video as specified and disable this feature.
16388
16389 @item decrease
16390 The output video dimensions will automatically be decreased if needed.
16391
16392 @item increase
16393 The output video dimensions will automatically be increased if needed.
16394
16395 @end table
16396
16397 One useful instance of this option is that when you know a specific device's
16398 maximum allowed resolution, you can use this to limit the output video to
16399 that, while retaining the aspect ratio. For example, device A allows
16400 1280x720 playback, and your video is 1920x800. Using this option (set it to
16401 decrease) and specifying 1280x720 to the command line makes the output
16402 1280x533.
16403
16404 Please note that this is a different thing than specifying -1 for @option{w}
16405 or @option{h}, you still need to specify the output resolution for this option
16406 to work.
16407
16408 @item force_divisible_by
16409 Ensures that both the output dimensions, width and height, are divisible by the
16410 given integer when used together with @option{force_original_aspect_ratio}. This
16411 works similar to using @code{-n} in the @option{w} and @option{h} options.
16412
16413 This option respects the value set for @option{force_original_aspect_ratio},
16414 increasing or decreasing the resolution accordingly. The video's aspect ratio
16415 may be slightly modified.
16416
16417 This option can be handy if you need to have a video fit within or exceed
16418 a defined resolution using @option{force_original_aspect_ratio} but also have
16419 encoder restrictions on width or height divisibility.
16420
16421 @end table
16422
16423 @section scale2ref
16424
16425 Scale (resize) the input video, based on a reference video.
16426
16427 See the scale filter for available options, scale2ref supports the same but
16428 uses the reference video instead of the main input as basis. scale2ref also
16429 supports the following additional constants for the @option{w} and
16430 @option{h} options:
16431
16432 @table @var
16433 @item main_w
16434 @item main_h
16435 The main input video's width and height
16436
16437 @item main_a
16438 The same as @var{main_w} / @var{main_h}
16439
16440 @item main_sar
16441 The main input video's sample aspect ratio
16442
16443 @item main_dar, mdar
16444 The main input video's display aspect ratio. Calculated from
16445 @code{(main_w / main_h) * main_sar}.
16446
16447 @item main_hsub
16448 @item main_vsub
16449 The main input video's horizontal and vertical chroma subsample values.
16450 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16451 is 1.
16452
16453 @item main_n
16454 The (sequential) number of the main input frame, starting from 0.
16455 Only available with @code{eval=frame}.
16456
16457 @item main_t
16458 The presentation timestamp of the main input frame, expressed as a number of
16459 seconds. Only available with @code{eval=frame}.
16460
16461 @item main_pos
16462 The position (byte offset) of the frame in the main input stream, or NaN if
16463 this information is unavailable and/or meaningless (for example in case of synthetic video).
16464 Only available with @code{eval=frame}.
16465 @end table
16466
16467 @subsection Examples
16468
16469 @itemize
16470 @item
16471 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16472 @example
16473 'scale2ref[b][a];[a][b]overlay'
16474 @end example
16475
16476 @item
16477 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16478 @example
16479 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16480 @end example
16481 @end itemize
16482
16483 @subsection Commands
16484
16485 This filter supports the following commands:
16486 @table @option
16487 @item width, w
16488 @item height, h
16489 Set the output video dimension expression.
16490 The command accepts the same syntax of the corresponding option.
16491
16492 If the specified expression is not valid, it is kept at its current
16493 value.
16494 @end table
16495
16496 @section scroll
16497 Scroll input video horizontally and/or vertically by constant speed.
16498
16499 The filter accepts the following options:
16500 @table @option
16501 @item horizontal, h
16502 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16503 Negative values changes scrolling direction.
16504
16505 @item vertical, v
16506 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16507 Negative values changes scrolling direction.
16508
16509 @item hpos
16510 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16511
16512 @item vpos
16513 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16514 @end table
16515
16516 @subsection Commands
16517
16518 This filter supports the following @ref{commands}:
16519 @table @option
16520 @item horizontal, h
16521 Set the horizontal scrolling speed.
16522 @item vertical, v
16523 Set the vertical scrolling speed.
16524 @end table
16525
16526 @anchor{selectivecolor}
16527 @section selectivecolor
16528
16529 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16530 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16531 by the "purity" of the color (that is, how saturated it already is).
16532
16533 This filter is similar to the Adobe Photoshop Selective Color tool.
16534
16535 The filter accepts the following options:
16536
16537 @table @option
16538 @item correction_method
16539 Select color correction method.
16540
16541 Available values are:
16542 @table @samp
16543 @item absolute
16544 Specified adjustments are applied "as-is" (added/subtracted to original pixel
16545 component value).
16546 @item relative
16547 Specified adjustments are relative to the original component value.
16548 @end table
16549 Default is @code{absolute}.
16550 @item reds
16551 Adjustments for red pixels (pixels where the red component is the maximum)
16552 @item yellows
16553 Adjustments for yellow pixels (pixels where the blue component is the minimum)
16554 @item greens
16555 Adjustments for green pixels (pixels where the green component is the maximum)
16556 @item cyans
16557 Adjustments for cyan pixels (pixels where the red component is the minimum)
16558 @item blues
16559 Adjustments for blue pixels (pixels where the blue component is the maximum)
16560 @item magentas
16561 Adjustments for magenta pixels (pixels where the green component is the minimum)
16562 @item whites
16563 Adjustments for white pixels (pixels where all components are greater than 128)
16564 @item neutrals
16565 Adjustments for all pixels except pure black and pure white
16566 @item blacks
16567 Adjustments for black pixels (pixels where all components are lesser than 128)
16568 @item psfile
16569 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
16570 @end table
16571
16572 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
16573 4 space separated floating point adjustment values in the [-1,1] range,
16574 respectively to adjust the amount of cyan, magenta, yellow and black for the
16575 pixels of its range.
16576
16577 @subsection Examples
16578
16579 @itemize
16580 @item
16581 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
16582 increase magenta by 27% in blue areas:
16583 @example
16584 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
16585 @end example
16586
16587 @item
16588 Use a Photoshop selective color preset:
16589 @example
16590 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
16591 @end example
16592 @end itemize
16593
16594 @anchor{separatefields}
16595 @section separatefields
16596
16597 The @code{separatefields} takes a frame-based video input and splits
16598 each frame into its components fields, producing a new half height clip
16599 with twice the frame rate and twice the frame count.
16600
16601 This filter use field-dominance information in frame to decide which
16602 of each pair of fields to place first in the output.
16603 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
16604
16605 @section setdar, setsar
16606
16607 The @code{setdar} filter sets the Display Aspect Ratio for the filter
16608 output video.
16609
16610 This is done by changing the specified Sample (aka Pixel) Aspect
16611 Ratio, according to the following equation:
16612 @example
16613 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
16614 @end example
16615
16616 Keep in mind that the @code{setdar} filter does not modify the pixel
16617 dimensions of the video frame. Also, the display aspect ratio set by
16618 this filter may be changed by later filters in the filterchain,
16619 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
16620 applied.
16621
16622 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
16623 the filter output video.
16624
16625 Note that as a consequence of the application of this filter, the
16626 output display aspect ratio will change according to the equation
16627 above.
16628
16629 Keep in mind that the sample aspect ratio set by the @code{setsar}
16630 filter may be changed by later filters in the filterchain, e.g. if
16631 another "setsar" or a "setdar" filter is applied.
16632
16633 It accepts the following parameters:
16634
16635 @table @option
16636 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
16637 Set the aspect ratio used by the filter.
16638
16639 The parameter can be a floating point number string, an expression, or
16640 a string of the form @var{num}:@var{den}, where @var{num} and
16641 @var{den} are the numerator and denominator of the aspect ratio. If
16642 the parameter is not specified, it is assumed the value "0".
16643 In case the form "@var{num}:@var{den}" is used, the @code{:} character
16644 should be escaped.
16645
16646 @item max
16647 Set the maximum integer value to use for expressing numerator and
16648 denominator when reducing the expressed aspect ratio to a rational.
16649 Default value is @code{100}.
16650
16651 @end table
16652
16653 The parameter @var{sar} is an expression containing
16654 the following constants:
16655
16656 @table @option
16657 @item E, PI, PHI
16658 These are approximated values for the mathematical constants e
16659 (Euler's number), pi (Greek pi), and phi (the golden ratio).
16660
16661 @item w, h
16662 The input width and height.
16663
16664 @item a
16665 These are the same as @var{w} / @var{h}.
16666
16667 @item sar
16668 The input sample aspect ratio.
16669
16670 @item dar
16671 The input display aspect ratio. It is the same as
16672 (@var{w} / @var{h}) * @var{sar}.
16673
16674 @item hsub, vsub
16675 Horizontal and vertical chroma subsample values. For example, for the
16676 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16677 @end table
16678
16679 @subsection Examples
16680
16681 @itemize
16682
16683 @item
16684 To change the display aspect ratio to 16:9, specify one of the following:
16685 @example
16686 setdar=dar=1.77777
16687 setdar=dar=16/9
16688 @end example
16689
16690 @item
16691 To change the sample aspect ratio to 10:11, specify:
16692 @example
16693 setsar=sar=10/11
16694 @end example
16695
16696 @item
16697 To set a display aspect ratio of 16:9, and specify a maximum integer value of
16698 1000 in the aspect ratio reduction, use the command:
16699 @example
16700 setdar=ratio=16/9:max=1000
16701 @end example
16702
16703 @end itemize
16704
16705 @anchor{setfield}
16706 @section setfield
16707
16708 Force field for the output video frame.
16709
16710 The @code{setfield} filter marks the interlace type field for the
16711 output frames. It does not change the input frame, but only sets the
16712 corresponding property, which affects how the frame is treated by
16713 following filters (e.g. @code{fieldorder} or @code{yadif}).
16714
16715 The filter accepts the following options:
16716
16717 @table @option
16718
16719 @item mode
16720 Available values are:
16721
16722 @table @samp
16723 @item auto
16724 Keep the same field property.
16725
16726 @item bff
16727 Mark the frame as bottom-field-first.
16728
16729 @item tff
16730 Mark the frame as top-field-first.
16731
16732 @item prog
16733 Mark the frame as progressive.
16734 @end table
16735 @end table
16736
16737 @anchor{setparams}
16738 @section setparams
16739
16740 Force frame parameter for the output video frame.
16741
16742 The @code{setparams} filter marks interlace and color range for the
16743 output frames. It does not change the input frame, but only sets the
16744 corresponding property, which affects how the frame is treated by
16745 filters/encoders.
16746
16747 @table @option
16748 @item field_mode
16749 Available values are:
16750
16751 @table @samp
16752 @item auto
16753 Keep the same field property (default).
16754
16755 @item bff
16756 Mark the frame as bottom-field-first.
16757
16758 @item tff
16759 Mark the frame as top-field-first.
16760
16761 @item prog
16762 Mark the frame as progressive.
16763 @end table
16764
16765 @item range
16766 Available values are:
16767
16768 @table @samp
16769 @item auto
16770 Keep the same color range property (default).
16771
16772 @item unspecified, unknown
16773 Mark the frame as unspecified color range.
16774
16775 @item limited, tv, mpeg
16776 Mark the frame as limited range.
16777
16778 @item full, pc, jpeg
16779 Mark the frame as full range.
16780 @end table
16781
16782 @item color_primaries
16783 Set the color primaries.
16784 Available values are:
16785
16786 @table @samp
16787 @item auto
16788 Keep the same color primaries property (default).
16789
16790 @item bt709
16791 @item unknown
16792 @item bt470m
16793 @item bt470bg
16794 @item smpte170m
16795 @item smpte240m
16796 @item film
16797 @item bt2020
16798 @item smpte428
16799 @item smpte431
16800 @item smpte432
16801 @item jedec-p22
16802 @end table
16803
16804 @item color_trc
16805 Set the color transfer.
16806 Available values are:
16807
16808 @table @samp
16809 @item auto
16810 Keep the same color trc property (default).
16811
16812 @item bt709
16813 @item unknown
16814 @item bt470m
16815 @item bt470bg
16816 @item smpte170m
16817 @item smpte240m
16818 @item linear
16819 @item log100
16820 @item log316
16821 @item iec61966-2-4
16822 @item bt1361e
16823 @item iec61966-2-1
16824 @item bt2020-10
16825 @item bt2020-12
16826 @item smpte2084
16827 @item smpte428
16828 @item arib-std-b67
16829 @end table
16830
16831 @item colorspace
16832 Set the colorspace.
16833 Available values are:
16834
16835 @table @samp
16836 @item auto
16837 Keep the same colorspace property (default).
16838
16839 @item gbr
16840 @item bt709
16841 @item unknown
16842 @item fcc
16843 @item bt470bg
16844 @item smpte170m
16845 @item smpte240m
16846 @item ycgco
16847 @item bt2020nc
16848 @item bt2020c
16849 @item smpte2085
16850 @item chroma-derived-nc
16851 @item chroma-derived-c
16852 @item ictcp
16853 @end table
16854 @end table
16855
16856 @section showinfo
16857
16858 Show a line containing various information for each input video frame.
16859 The input video is not modified.
16860
16861 This filter supports the following options:
16862
16863 @table @option
16864 @item checksum
16865 Calculate checksums of each plane. By default enabled.
16866 @end table
16867
16868 The shown line contains a sequence of key/value pairs of the form
16869 @var{key}:@var{value}.
16870
16871 The following values are shown in the output:
16872
16873 @table @option
16874 @item n
16875 The (sequential) number of the input frame, starting from 0.
16876
16877 @item pts
16878 The Presentation TimeStamp of the input frame, expressed as a number of
16879 time base units. The time base unit depends on the filter input pad.
16880
16881 @item pts_time
16882 The Presentation TimeStamp of the input frame, expressed as a number of
16883 seconds.
16884
16885 @item pos
16886 The position of the frame in the input stream, or -1 if this information is
16887 unavailable and/or meaningless (for example in case of synthetic video).
16888
16889 @item fmt
16890 The pixel format name.
16891
16892 @item sar
16893 The sample aspect ratio of the input frame, expressed in the form
16894 @var{num}/@var{den}.
16895
16896 @item s
16897 The size of the input frame. For the syntax of this option, check the
16898 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16899
16900 @item i
16901 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16902 for bottom field first).
16903
16904 @item iskey
16905 This is 1 if the frame is a key frame, 0 otherwise.
16906
16907 @item type
16908 The picture type of the input frame ("I" for an I-frame, "P" for a
16909 P-frame, "B" for a B-frame, or "?" for an unknown type).
16910 Also refer to the documentation of the @code{AVPictureType} enum and of
16911 the @code{av_get_picture_type_char} function defined in
16912 @file{libavutil/avutil.h}.
16913
16914 @item checksum
16915 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16916
16917 @item plane_checksum
16918 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16919 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16920
16921 @item mean
16922 The mean value of pixels in each plane of the input frame, expressed in the form
16923 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
16924
16925 @item stdev
16926 The standard deviation of pixel values in each plane of the input frame, expressed
16927 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
16928
16929 @end table
16930
16931 @section showpalette
16932
16933 Displays the 256 colors palette of each frame. This filter is only relevant for
16934 @var{pal8} pixel format frames.
16935
16936 It accepts the following option:
16937
16938 @table @option
16939 @item s
16940 Set the size of the box used to represent one palette color entry. Default is
16941 @code{30} (for a @code{30x30} pixel box).
16942 @end table
16943
16944 @section shuffleframes
16945
16946 Reorder and/or duplicate and/or drop video frames.
16947
16948 It accepts the following parameters:
16949
16950 @table @option
16951 @item mapping
16952 Set the destination indexes of input frames.
16953 This is space or '|' separated list of indexes that maps input frames to output
16954 frames. Number of indexes also sets maximal value that each index may have.
16955 '-1' index have special meaning and that is to drop frame.
16956 @end table
16957
16958 The first frame has the index 0. The default is to keep the input unchanged.
16959
16960 @subsection Examples
16961
16962 @itemize
16963 @item
16964 Swap second and third frame of every three frames of the input:
16965 @example
16966 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16967 @end example
16968
16969 @item
16970 Swap 10th and 1st frame of every ten frames of the input:
16971 @example
16972 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16973 @end example
16974 @end itemize
16975
16976 @section shuffleplanes
16977
16978 Reorder and/or duplicate video planes.
16979
16980 It accepts the following parameters:
16981
16982 @table @option
16983
16984 @item map0
16985 The index of the input plane to be used as the first output plane.
16986
16987 @item map1
16988 The index of the input plane to be used as the second output plane.
16989
16990 @item map2
16991 The index of the input plane to be used as the third output plane.
16992
16993 @item map3
16994 The index of the input plane to be used as the fourth output plane.
16995
16996 @end table
16997
16998 The first plane has the index 0. The default is to keep the input unchanged.
16999
17000 @subsection Examples
17001
17002 @itemize
17003 @item
17004 Swap the second and third planes of the input:
17005 @example
17006 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
17007 @end example
17008 @end itemize
17009
17010 @anchor{signalstats}
17011 @section signalstats
17012 Evaluate various visual metrics that assist in determining issues associated
17013 with the digitization of analog video media.
17014
17015 By default the filter will log these metadata values:
17016
17017 @table @option
17018 @item YMIN
17019 Display the minimal Y value contained within the input frame. Expressed in
17020 range of [0-255].
17021
17022 @item YLOW
17023 Display the Y value at the 10% percentile within the input frame. Expressed in
17024 range of [0-255].
17025
17026 @item YAVG
17027 Display the average Y value within the input frame. Expressed in range of
17028 [0-255].
17029
17030 @item YHIGH
17031 Display the Y value at the 90% percentile within the input frame. Expressed in
17032 range of [0-255].
17033
17034 @item YMAX
17035 Display the maximum Y value contained within the input frame. Expressed in
17036 range of [0-255].
17037
17038 @item UMIN
17039 Display the minimal U value contained within the input frame. Expressed in
17040 range of [0-255].
17041
17042 @item ULOW
17043 Display the U value at the 10% percentile within the input frame. Expressed in
17044 range of [0-255].
17045
17046 @item UAVG
17047 Display the average U value within the input frame. Expressed in range of
17048 [0-255].
17049
17050 @item UHIGH
17051 Display the U value at the 90% percentile within the input frame. Expressed in
17052 range of [0-255].
17053
17054 @item UMAX
17055 Display the maximum U value contained within the input frame. Expressed in
17056 range of [0-255].
17057
17058 @item VMIN
17059 Display the minimal V value contained within the input frame. Expressed in
17060 range of [0-255].
17061
17062 @item VLOW
17063 Display the V value at the 10% percentile within the input frame. Expressed in
17064 range of [0-255].
17065
17066 @item VAVG
17067 Display the average V value within the input frame. Expressed in range of
17068 [0-255].
17069
17070 @item VHIGH
17071 Display the V value at the 90% percentile within the input frame. Expressed in
17072 range of [0-255].
17073
17074 @item VMAX
17075 Display the maximum V value contained within the input frame. Expressed in
17076 range of [0-255].
17077
17078 @item SATMIN
17079 Display the minimal saturation value contained within the input frame.
17080 Expressed in range of [0-~181.02].
17081
17082 @item SATLOW
17083 Display the saturation value at the 10% percentile within the input frame.
17084 Expressed in range of [0-~181.02].
17085
17086 @item SATAVG
17087 Display the average saturation value within the input frame. Expressed in range
17088 of [0-~181.02].
17089
17090 @item SATHIGH
17091 Display the saturation value at the 90% percentile within the input frame.
17092 Expressed in range of [0-~181.02].
17093
17094 @item SATMAX
17095 Display the maximum saturation value contained within the input frame.
17096 Expressed in range of [0-~181.02].
17097
17098 @item HUEMED
17099 Display the median value for hue within the input frame. Expressed in range of
17100 [0-360].
17101
17102 @item HUEAVG
17103 Display the average value for hue within the input frame. Expressed in range of
17104 [0-360].
17105
17106 @item YDIF
17107 Display the average of sample value difference between all values of the Y
17108 plane in the current frame and corresponding values of the previous input frame.
17109 Expressed in range of [0-255].
17110
17111 @item UDIF
17112 Display the average of sample value difference between all values of the U
17113 plane in the current frame and corresponding values of the previous input frame.
17114 Expressed in range of [0-255].
17115
17116 @item VDIF
17117 Display the average of sample value difference between all values of the V
17118 plane in the current frame and corresponding values of the previous input frame.
17119 Expressed in range of [0-255].
17120
17121 @item YBITDEPTH
17122 Display bit depth of Y plane in current frame.
17123 Expressed in range of [0-16].
17124
17125 @item UBITDEPTH
17126 Display bit depth of U plane in current frame.
17127 Expressed in range of [0-16].
17128
17129 @item VBITDEPTH
17130 Display bit depth of V plane in current frame.
17131 Expressed in range of [0-16].
17132 @end table
17133
17134 The filter accepts the following options:
17135
17136 @table @option
17137 @item stat
17138 @item out
17139
17140 @option{stat} specify an additional form of image analysis.
17141 @option{out} output video with the specified type of pixel highlighted.
17142
17143 Both options accept the following values:
17144
17145 @table @samp
17146 @item tout
17147 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17148 unlike the neighboring pixels of the same field. Examples of temporal outliers
17149 include the results of video dropouts, head clogs, or tape tracking issues.
17150
17151 @item vrep
17152 Identify @var{vertical line repetition}. Vertical line repetition includes
17153 similar rows of pixels within a frame. In born-digital video vertical line
17154 repetition is common, but this pattern is uncommon in video digitized from an
17155 analog source. When it occurs in video that results from the digitization of an
17156 analog source it can indicate concealment from a dropout compensator.
17157
17158 @item brng
17159 Identify pixels that fall outside of legal broadcast range.
17160 @end table
17161
17162 @item color, c
17163 Set the highlight color for the @option{out} option. The default color is
17164 yellow.
17165 @end table
17166
17167 @subsection Examples
17168
17169 @itemize
17170 @item
17171 Output data of various video metrics:
17172 @example
17173 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17174 @end example
17175
17176 @item
17177 Output specific data about the minimum and maximum values of the Y plane per frame:
17178 @example
17179 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17180 @end example
17181
17182 @item
17183 Playback video while highlighting pixels that are outside of broadcast range in red.
17184 @example
17185 ffplay example.mov -vf signalstats="out=brng:color=red"
17186 @end example
17187
17188 @item
17189 Playback video with signalstats metadata drawn over the frame.
17190 @example
17191 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17192 @end example
17193
17194 The contents of signalstat_drawtext.txt used in the command are:
17195 @example
17196 time %@{pts:hms@}
17197 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17198 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17199 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17200 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17201
17202 @end example
17203 @end itemize
17204
17205 @anchor{signature}
17206 @section signature
17207
17208 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17209 input. In this case the matching between the inputs can be calculated additionally.
17210 The filter always passes through the first input. The signature of each stream can
17211 be written into a file.
17212
17213 It accepts the following options:
17214
17215 @table @option
17216 @item detectmode
17217 Enable or disable the matching process.
17218
17219 Available values are:
17220
17221 @table @samp
17222 @item off
17223 Disable the calculation of a matching (default).
17224 @item full
17225 Calculate the matching for the whole video and output whether the whole video
17226 matches or only parts.
17227 @item fast
17228 Calculate only until a matching is found or the video ends. Should be faster in
17229 some cases.
17230 @end table
17231
17232 @item nb_inputs
17233 Set the number of inputs. The option value must be a non negative integer.
17234 Default value is 1.
17235
17236 @item filename
17237 Set the path to which the output is written. If there is more than one input,
17238 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17239 integer), that will be replaced with the input number. If no filename is
17240 specified, no output will be written. This is the default.
17241
17242 @item format
17243 Choose the output format.
17244
17245 Available values are:
17246
17247 @table @samp
17248 @item binary
17249 Use the specified binary representation (default).
17250 @item xml
17251 Use the specified xml representation.
17252 @end table
17253
17254 @item th_d
17255 Set threshold to detect one word as similar. The option value must be an integer
17256 greater than zero. The default value is 9000.
17257
17258 @item th_dc
17259 Set threshold to detect all words as similar. The option value must be an integer
17260 greater than zero. The default value is 60000.
17261
17262 @item th_xh
17263 Set threshold to detect frames as similar. The option value must be an integer
17264 greater than zero. The default value is 116.
17265
17266 @item th_di
17267 Set the minimum length of a sequence in frames to recognize it as matching
17268 sequence. The option value must be a non negative integer value.
17269 The default value is 0.
17270
17271 @item th_it
17272 Set the minimum relation, that matching frames to all frames must have.
17273 The option value must be a double value between 0 and 1. The default value is 0.5.
17274 @end table
17275
17276 @subsection Examples
17277
17278 @itemize
17279 @item
17280 To calculate the signature of an input video and store it in signature.bin:
17281 @example
17282 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17283 @end example
17284
17285 @item
17286 To detect whether two videos match and store the signatures in XML format in
17287 signature0.xml and signature1.xml:
17288 @example
17289 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 -
17290 @end example
17291
17292 @end itemize
17293
17294 @anchor{smartblur}
17295 @section smartblur
17296
17297 Blur the input video without impacting the outlines.
17298
17299 It accepts the following options:
17300
17301 @table @option
17302 @item luma_radius, lr
17303 Set the luma radius. The option value must be a float number in
17304 the range [0.1,5.0] that specifies the variance of the gaussian filter
17305 used to blur the image (slower if larger). Default value is 1.0.
17306
17307 @item luma_strength, ls
17308 Set the luma strength. The option value must be a float number
17309 in the range [-1.0,1.0] that configures the blurring. A value included
17310 in [0.0,1.0] will blur the image whereas a value included in
17311 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17312
17313 @item luma_threshold, lt
17314 Set the luma threshold used as a coefficient to determine
17315 whether a pixel should be blurred or not. The option value must be an
17316 integer in the range [-30,30]. A value of 0 will filter all the image,
17317 a value included in [0,30] will filter flat areas and a value included
17318 in [-30,0] will filter edges. Default value is 0.
17319
17320 @item chroma_radius, cr
17321 Set the chroma radius. The option value must be a float number in
17322 the range [0.1,5.0] that specifies the variance of the gaussian filter
17323 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17324
17325 @item chroma_strength, cs
17326 Set the chroma strength. The option value must be a float number
17327 in the range [-1.0,1.0] that configures the blurring. A value included
17328 in [0.0,1.0] will blur the image whereas a value included in
17329 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17330
17331 @item chroma_threshold, ct
17332 Set the chroma threshold used as a coefficient to determine
17333 whether a pixel should be blurred or not. The option value must be an
17334 integer in the range [-30,30]. A value of 0 will filter all the image,
17335 a value included in [0,30] will filter flat areas and a value included
17336 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17337 @end table
17338
17339 If a chroma option is not explicitly set, the corresponding luma value
17340 is set.
17341
17342 @section sobel
17343 Apply sobel operator to input video stream.
17344
17345 The filter accepts the following option:
17346
17347 @table @option
17348 @item planes
17349 Set which planes will be processed, unprocessed planes will be copied.
17350 By default value 0xf, all planes will be processed.
17351
17352 @item scale
17353 Set value which will be multiplied with filtered result.
17354
17355 @item delta
17356 Set value which will be added to filtered result.
17357 @end table
17358
17359 @anchor{spp}
17360 @section spp
17361
17362 Apply a simple postprocessing filter that compresses and decompresses the image
17363 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17364 and average the results.
17365
17366 The filter accepts the following options:
17367
17368 @table @option
17369 @item quality
17370 Set quality. This option defines the number of levels for averaging. It accepts
17371 an integer in the range 0-6. If set to @code{0}, the filter will have no
17372 effect. A value of @code{6} means the higher quality. For each increment of
17373 that value the speed drops by a factor of approximately 2.  Default value is
17374 @code{3}.
17375
17376 @item qp
17377 Force a constant quantization parameter. If not set, the filter will use the QP
17378 from the video stream (if available).
17379
17380 @item mode
17381 Set thresholding mode. Available modes are:
17382
17383 @table @samp
17384 @item hard
17385 Set hard thresholding (default).
17386 @item soft
17387 Set soft thresholding (better de-ringing effect, but likely blurrier).
17388 @end table
17389
17390 @item use_bframe_qp
17391 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17392 option may cause flicker since the B-Frames have often larger QP. Default is
17393 @code{0} (not enabled).
17394 @end table
17395
17396 @subsection Commands
17397
17398 This filter supports the following commands:
17399 @table @option
17400 @item quality, level
17401 Set quality level. The value @code{max} can be used to set the maximum level,
17402 currently @code{6}.
17403 @end table
17404
17405 @anchor{sr}
17406 @section sr
17407
17408 Scale the input by applying one of the super-resolution methods based on
17409 convolutional neural networks. Supported models:
17410
17411 @itemize
17412 @item
17413 Super-Resolution Convolutional Neural Network model (SRCNN).
17414 See @url{https://arxiv.org/abs/1501.00092}.
17415
17416 @item
17417 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17418 See @url{https://arxiv.org/abs/1609.05158}.
17419 @end itemize
17420
17421 Training scripts as well as scripts for model file (.pb) saving can be found at
17422 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17423 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17424
17425 Native model files (.model) can be generated from TensorFlow model
17426 files (.pb) by using tools/python/convert.py
17427
17428 The filter accepts the following options:
17429
17430 @table @option
17431 @item dnn_backend
17432 Specify which DNN backend to use for model loading and execution. This option accepts
17433 the following values:
17434
17435 @table @samp
17436 @item native
17437 Native implementation of DNN loading and execution.
17438
17439 @item tensorflow
17440 TensorFlow backend. To enable this backend you
17441 need to install the TensorFlow for C library (see
17442 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17443 @code{--enable-libtensorflow}
17444 @end table
17445
17446 Default value is @samp{native}.
17447
17448 @item model
17449 Set path to model file specifying network architecture and its parameters.
17450 Note that different backends use different file formats. TensorFlow backend
17451 can load files for both formats, while native backend can load files for only
17452 its format.
17453
17454 @item scale_factor
17455 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17456 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17457 input upscaled using bicubic upscaling with proper scale factor.
17458 @end table
17459
17460 This feature can also be finished with @ref{dnn_processing} filter.
17461
17462 @section ssim
17463
17464 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17465
17466 This filter takes in input two input videos, the first input is
17467 considered the "main" source and is passed unchanged to the
17468 output. The second input is used as a "reference" video for computing
17469 the SSIM.
17470
17471 Both video inputs must have the same resolution and pixel format for
17472 this filter to work correctly. Also it assumes that both inputs
17473 have the same number of frames, which are compared one by one.
17474
17475 The filter stores the calculated SSIM of each frame.
17476
17477 The description of the accepted parameters follows.
17478
17479 @table @option
17480 @item stats_file, f
17481 If specified the filter will use the named file to save the SSIM of
17482 each individual frame. When filename equals "-" the data is sent to
17483 standard output.
17484 @end table
17485
17486 The file printed if @var{stats_file} is selected, contains a sequence of
17487 key/value pairs of the form @var{key}:@var{value} for each compared
17488 couple of frames.
17489
17490 A description of each shown parameter follows:
17491
17492 @table @option
17493 @item n
17494 sequential number of the input frame, starting from 1
17495
17496 @item Y, U, V, R, G, B
17497 SSIM of the compared frames for the component specified by the suffix.
17498
17499 @item All
17500 SSIM of the compared frames for the whole frame.
17501
17502 @item dB
17503 Same as above but in dB representation.
17504 @end table
17505
17506 This filter also supports the @ref{framesync} options.
17507
17508 @subsection Examples
17509 @itemize
17510 @item
17511 For example:
17512 @example
17513 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17514 [main][ref] ssim="stats_file=stats.log" [out]
17515 @end example
17516
17517 On this example the input file being processed is compared with the
17518 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17519 is stored in @file{stats.log}.
17520
17521 @item
17522 Another example with both psnr and ssim at same time:
17523 @example
17524 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17525 @end example
17526
17527 @item
17528 Another example with different containers:
17529 @example
17530 ffmpeg -i main.mpg -i ref.mkv -lavfi  "[0:v]settb=AVTB,setpts=PTS-STARTPTS[main];[1:v]settb=AVTB,setpts=PTS-STARTPTS[ref];[main][ref]ssim" -f null -
17531 @end example
17532 @end itemize
17533
17534 @section stereo3d
17535
17536 Convert between different stereoscopic image formats.
17537
17538 The filters accept the following options:
17539
17540 @table @option
17541 @item in
17542 Set stereoscopic image format of input.
17543
17544 Available values for input image formats are:
17545 @table @samp
17546 @item sbsl
17547 side by side parallel (left eye left, right eye right)
17548
17549 @item sbsr
17550 side by side crosseye (right eye left, left eye right)
17551
17552 @item sbs2l
17553 side by side parallel with half width resolution
17554 (left eye left, right eye right)
17555
17556 @item sbs2r
17557 side by side crosseye with half width resolution
17558 (right eye left, left eye right)
17559
17560 @item abl
17561 @item tbl
17562 above-below (left eye above, right eye below)
17563
17564 @item abr
17565 @item tbr
17566 above-below (right eye above, left eye below)
17567
17568 @item ab2l
17569 @item tb2l
17570 above-below with half height resolution
17571 (left eye above, right eye below)
17572
17573 @item ab2r
17574 @item tb2r
17575 above-below with half height resolution
17576 (right eye above, left eye below)
17577
17578 @item al
17579 alternating frames (left eye first, right eye second)
17580
17581 @item ar
17582 alternating frames (right eye first, left eye second)
17583
17584 @item irl
17585 interleaved rows (left eye has top row, right eye starts on next row)
17586
17587 @item irr
17588 interleaved rows (right eye has top row, left eye starts on next row)
17589
17590 @item icl
17591 interleaved columns, left eye first
17592
17593 @item icr
17594 interleaved columns, right eye first
17595
17596 Default value is @samp{sbsl}.
17597 @end table
17598
17599 @item out
17600 Set stereoscopic image format of output.
17601
17602 @table @samp
17603 @item sbsl
17604 side by side parallel (left eye left, right eye right)
17605
17606 @item sbsr
17607 side by side crosseye (right eye left, left eye right)
17608
17609 @item sbs2l
17610 side by side parallel with half width resolution
17611 (left eye left, right eye right)
17612
17613 @item sbs2r
17614 side by side crosseye with half width resolution
17615 (right eye left, left eye right)
17616
17617 @item abl
17618 @item tbl
17619 above-below (left eye above, right eye below)
17620
17621 @item abr
17622 @item tbr
17623 above-below (right eye above, left eye below)
17624
17625 @item ab2l
17626 @item tb2l
17627 above-below with half height resolution
17628 (left eye above, right eye below)
17629
17630 @item ab2r
17631 @item tb2r
17632 above-below with half height resolution
17633 (right eye above, left eye below)
17634
17635 @item al
17636 alternating frames (left eye first, right eye second)
17637
17638 @item ar
17639 alternating frames (right eye first, left eye second)
17640
17641 @item irl
17642 interleaved rows (left eye has top row, right eye starts on next row)
17643
17644 @item irr
17645 interleaved rows (right eye has top row, left eye starts on next row)
17646
17647 @item arbg
17648 anaglyph red/blue gray
17649 (red filter on left eye, blue filter on right eye)
17650
17651 @item argg
17652 anaglyph red/green gray
17653 (red filter on left eye, green filter on right eye)
17654
17655 @item arcg
17656 anaglyph red/cyan gray
17657 (red filter on left eye, cyan filter on right eye)
17658
17659 @item arch
17660 anaglyph red/cyan half colored
17661 (red filter on left eye, cyan filter on right eye)
17662
17663 @item arcc
17664 anaglyph red/cyan color
17665 (red filter on left eye, cyan filter on right eye)
17666
17667 @item arcd
17668 anaglyph red/cyan color optimized with the least squares projection of dubois
17669 (red filter on left eye, cyan filter on right eye)
17670
17671 @item agmg
17672 anaglyph green/magenta gray
17673 (green filter on left eye, magenta filter on right eye)
17674
17675 @item agmh
17676 anaglyph green/magenta half colored
17677 (green filter on left eye, magenta filter on right eye)
17678
17679 @item agmc
17680 anaglyph green/magenta colored
17681 (green filter on left eye, magenta filter on right eye)
17682
17683 @item agmd
17684 anaglyph green/magenta color optimized with the least squares projection of dubois
17685 (green filter on left eye, magenta filter on right eye)
17686
17687 @item aybg
17688 anaglyph yellow/blue gray
17689 (yellow filter on left eye, blue filter on right eye)
17690
17691 @item aybh
17692 anaglyph yellow/blue half colored
17693 (yellow filter on left eye, blue filter on right eye)
17694
17695 @item aybc
17696 anaglyph yellow/blue colored
17697 (yellow filter on left eye, blue filter on right eye)
17698
17699 @item aybd
17700 anaglyph yellow/blue color optimized with the least squares projection of dubois
17701 (yellow filter on left eye, blue filter on right eye)
17702
17703 @item ml
17704 mono output (left eye only)
17705
17706 @item mr
17707 mono output (right eye only)
17708
17709 @item chl
17710 checkerboard, left eye first
17711
17712 @item chr
17713 checkerboard, right eye first
17714
17715 @item icl
17716 interleaved columns, left eye first
17717
17718 @item icr
17719 interleaved columns, right eye first
17720
17721 @item hdmi
17722 HDMI frame pack
17723 @end table
17724
17725 Default value is @samp{arcd}.
17726 @end table
17727
17728 @subsection Examples
17729
17730 @itemize
17731 @item
17732 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
17733 @example
17734 stereo3d=sbsl:aybd
17735 @end example
17736
17737 @item
17738 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
17739 @example
17740 stereo3d=abl:sbsr
17741 @end example
17742 @end itemize
17743
17744 @section streamselect, astreamselect
17745 Select video or audio streams.
17746
17747 The filter accepts the following options:
17748
17749 @table @option
17750 @item inputs
17751 Set number of inputs. Default is 2.
17752
17753 @item map
17754 Set input indexes to remap to outputs.
17755 @end table
17756
17757 @subsection Commands
17758
17759 The @code{streamselect} and @code{astreamselect} filter supports the following
17760 commands:
17761
17762 @table @option
17763 @item map
17764 Set input indexes to remap to outputs.
17765 @end table
17766
17767 @subsection Examples
17768
17769 @itemize
17770 @item
17771 Select first 5 seconds 1st stream and rest of time 2nd stream:
17772 @example
17773 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
17774 @end example
17775
17776 @item
17777 Same as above, but for audio:
17778 @example
17779 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
17780 @end example
17781 @end itemize
17782
17783 @anchor{subtitles}
17784 @section subtitles
17785
17786 Draw subtitles on top of input video using the libass library.
17787
17788 To enable compilation of this filter you need to configure FFmpeg with
17789 @code{--enable-libass}. This filter also requires a build with libavcodec and
17790 libavformat to convert the passed subtitles file to ASS (Advanced Substation
17791 Alpha) subtitles format.
17792
17793 The filter accepts the following options:
17794
17795 @table @option
17796 @item filename, f
17797 Set the filename of the subtitle file to read. It must be specified.
17798
17799 @item original_size
17800 Specify the size of the original video, the video for which the ASS file
17801 was composed. For the syntax of this option, check the
17802 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17803 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
17804 correctly scale the fonts if the aspect ratio has been changed.
17805
17806 @item fontsdir
17807 Set a directory path containing fonts that can be used by the filter.
17808 These fonts will be used in addition to whatever the font provider uses.
17809
17810 @item alpha
17811 Process alpha channel, by default alpha channel is untouched.
17812
17813 @item charenc
17814 Set subtitles input character encoding. @code{subtitles} filter only. Only
17815 useful if not UTF-8.
17816
17817 @item stream_index, si
17818 Set subtitles stream index. @code{subtitles} filter only.
17819
17820 @item force_style
17821 Override default style or script info parameters of the subtitles. It accepts a
17822 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
17823 @end table
17824
17825 If the first key is not specified, it is assumed that the first value
17826 specifies the @option{filename}.
17827
17828 For example, to render the file @file{sub.srt} on top of the input
17829 video, use the command:
17830 @example
17831 subtitles=sub.srt
17832 @end example
17833
17834 which is equivalent to:
17835 @example
17836 subtitles=filename=sub.srt
17837 @end example
17838
17839 To render the default subtitles stream from file @file{video.mkv}, use:
17840 @example
17841 subtitles=video.mkv
17842 @end example
17843
17844 To render the second subtitles stream from that file, use:
17845 @example
17846 subtitles=video.mkv:si=1
17847 @end example
17848
17849 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
17850 @code{DejaVu Serif}, use:
17851 @example
17852 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
17853 @end example
17854
17855 @section super2xsai
17856
17857 Scale the input by 2x and smooth using the Super2xSaI (Scale and
17858 Interpolate) pixel art scaling algorithm.
17859
17860 Useful for enlarging pixel art images without reducing sharpness.
17861
17862 @section swaprect
17863
17864 Swap two rectangular objects in video.
17865
17866 This filter accepts the following options:
17867
17868 @table @option
17869 @item w
17870 Set object width.
17871
17872 @item h
17873 Set object height.
17874
17875 @item x1
17876 Set 1st rect x coordinate.
17877
17878 @item y1
17879 Set 1st rect y coordinate.
17880
17881 @item x2
17882 Set 2nd rect x coordinate.
17883
17884 @item y2
17885 Set 2nd rect y coordinate.
17886
17887 All expressions are evaluated once for each frame.
17888 @end table
17889
17890 The all options are expressions containing the following constants:
17891
17892 @table @option
17893 @item w
17894 @item h
17895 The input width and height.
17896
17897 @item a
17898 same as @var{w} / @var{h}
17899
17900 @item sar
17901 input sample aspect ratio
17902
17903 @item dar
17904 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17905
17906 @item n
17907 The number of the input frame, starting from 0.
17908
17909 @item t
17910 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17911
17912 @item pos
17913 the position in the file of the input frame, NAN if unknown
17914 @end table
17915
17916 @section swapuv
17917 Swap U & V plane.
17918
17919 @section tblend
17920 Blend successive video frames.
17921
17922 See @ref{blend}
17923
17924 @section telecine
17925
17926 Apply telecine process to the video.
17927
17928 This filter accepts the following options:
17929
17930 @table @option
17931 @item first_field
17932 @table @samp
17933 @item top, t
17934 top field first
17935 @item bottom, b
17936 bottom field first
17937 The default value is @code{top}.
17938 @end table
17939
17940 @item pattern
17941 A string of numbers representing the pulldown pattern you wish to apply.
17942 The default value is @code{23}.
17943 @end table
17944
17945 @example
17946 Some typical patterns:
17947
17948 NTSC output (30i):
17949 27.5p: 32222
17950 24p: 23 (classic)
17951 24p: 2332 (preferred)
17952 20p: 33
17953 18p: 334
17954 16p: 3444
17955
17956 PAL output (25i):
17957 27.5p: 12222
17958 24p: 222222222223 ("Euro pulldown")
17959 16.67p: 33
17960 16p: 33333334
17961 @end example
17962
17963 @section thistogram
17964
17965 Compute and draw a color distribution histogram for the input video across time.
17966
17967 Unlike @ref{histogram} video filter which only shows histogram of single input frame
17968 at certain time, this filter shows also past histograms of number of frames defined
17969 by @code{width} option.
17970
17971 The computed histogram is a representation of the color component
17972 distribution in an image.
17973
17974 The filter accepts the following options:
17975
17976 @table @option
17977 @item width, w
17978 Set width of single color component output. Default value is @code{0}.
17979 Value of @code{0} means width will be picked from input video.
17980 This also set number of passed histograms to keep.
17981 Allowed range is [0, 8192].
17982
17983 @item display_mode, d
17984 Set display mode.
17985 It accepts the following values:
17986 @table @samp
17987 @item stack
17988 Per color component graphs are placed below each other.
17989
17990 @item parade
17991 Per color component graphs are placed side by side.
17992
17993 @item overlay
17994 Presents information identical to that in the @code{parade}, except
17995 that the graphs representing color components are superimposed directly
17996 over one another.
17997 @end table
17998 Default is @code{stack}.
17999
18000 @item levels_mode, m
18001 Set mode. Can be either @code{linear}, or @code{logarithmic}.
18002 Default is @code{linear}.
18003
18004 @item components, c
18005 Set what color components to display.
18006 Default is @code{7}.
18007
18008 @item bgopacity, b
18009 Set background opacity. Default is @code{0.9}.
18010
18011 @item envelope, e
18012 Show envelope. Default is disabled.
18013
18014 @item ecolor, ec
18015 Set envelope color. Default is @code{gold}.
18016 @end table
18017
18018 @section threshold
18019
18020 Apply threshold effect to video stream.
18021
18022 This filter needs four video streams to perform thresholding.
18023 First stream is stream we are filtering.
18024 Second stream is holding threshold values, third stream is holding min values,
18025 and last, fourth stream is holding max values.
18026
18027 The filter accepts the following option:
18028
18029 @table @option
18030 @item planes
18031 Set which planes will be processed, unprocessed planes will be copied.
18032 By default value 0xf, all planes will be processed.
18033 @end table
18034
18035 For example if first stream pixel's component value is less then threshold value
18036 of pixel component from 2nd threshold stream, third stream value will picked,
18037 otherwise fourth stream pixel component value will be picked.
18038
18039 Using color source filter one can perform various types of thresholding:
18040
18041 @subsection Examples
18042
18043 @itemize
18044 @item
18045 Binary threshold, using gray color as threshold:
18046 @example
18047 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18048 @end example
18049
18050 @item
18051 Inverted binary threshold, using gray color as threshold:
18052 @example
18053 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18054 @end example
18055
18056 @item
18057 Truncate binary threshold, using gray color as threshold:
18058 @example
18059 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18060 @end example
18061
18062 @item
18063 Threshold to zero, using gray color as threshold:
18064 @example
18065 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18066 @end example
18067
18068 @item
18069 Inverted threshold to zero, using gray color as threshold:
18070 @example
18071 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18072 @end example
18073 @end itemize
18074
18075 @section thumbnail
18076 Select the most representative frame in a given sequence of consecutive frames.
18077
18078 The filter accepts the following options:
18079
18080 @table @option
18081 @item n
18082 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18083 will pick one of them, and then handle the next batch of @var{n} frames until
18084 the end. Default is @code{100}.
18085 @end table
18086
18087 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18088 value will result in a higher memory usage, so a high value is not recommended.
18089
18090 @subsection Examples
18091
18092 @itemize
18093 @item
18094 Extract one picture each 50 frames:
18095 @example
18096 thumbnail=50
18097 @end example
18098
18099 @item
18100 Complete example of a thumbnail creation with @command{ffmpeg}:
18101 @example
18102 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18103 @end example
18104 @end itemize
18105
18106 @section tile
18107
18108 Tile several successive frames together.
18109
18110 The filter accepts the following options:
18111
18112 @table @option
18113
18114 @item layout
18115 Set the grid size (i.e. the number of lines and columns). For the syntax of
18116 this option, check the
18117 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18118
18119 @item nb_frames
18120 Set the maximum number of frames to render in the given area. It must be less
18121 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18122 the area will be used.
18123
18124 @item margin
18125 Set the outer border margin in pixels.
18126
18127 @item padding
18128 Set the inner border thickness (i.e. the number of pixels between frames). For
18129 more advanced padding options (such as having different values for the edges),
18130 refer to the pad video filter.
18131
18132 @item color
18133 Specify the color of the unused area. For the syntax of this option, check the
18134 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18135 The default value of @var{color} is "black".
18136
18137 @item overlap
18138 Set the number of frames to overlap when tiling several successive frames together.
18139 The value must be between @code{0} and @var{nb_frames - 1}.
18140
18141 @item init_padding
18142 Set the number of frames to initially be empty before displaying first output frame.
18143 This controls how soon will one get first output frame.
18144 The value must be between @code{0} and @var{nb_frames - 1}.
18145 @end table
18146
18147 @subsection Examples
18148
18149 @itemize
18150 @item
18151 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18152 @example
18153 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18154 @end example
18155 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18156 duplicating each output frame to accommodate the originally detected frame
18157 rate.
18158
18159 @item
18160 Display @code{5} pictures in an area of @code{3x2} frames,
18161 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18162 mixed flat and named options:
18163 @example
18164 tile=3x2:nb_frames=5:padding=7:margin=2
18165 @end example
18166 @end itemize
18167
18168 @section tinterlace
18169
18170 Perform various types of temporal field interlacing.
18171
18172 Frames are counted starting from 1, so the first input frame is
18173 considered odd.
18174
18175 The filter accepts the following options:
18176
18177 @table @option
18178
18179 @item mode
18180 Specify the mode of the interlacing. This option can also be specified
18181 as a value alone. See below for a list of values for this option.
18182
18183 Available values are:
18184
18185 @table @samp
18186 @item merge, 0
18187 Move odd frames into the upper field, even into the lower field,
18188 generating a double height frame at half frame rate.
18189 @example
18190  ------> time
18191 Input:
18192 Frame 1         Frame 2         Frame 3         Frame 4
18193
18194 11111           22222           33333           44444
18195 11111           22222           33333           44444
18196 11111           22222           33333           44444
18197 11111           22222           33333           44444
18198
18199 Output:
18200 11111                           33333
18201 22222                           44444
18202 11111                           33333
18203 22222                           44444
18204 11111                           33333
18205 22222                           44444
18206 11111                           33333
18207 22222                           44444
18208 @end example
18209
18210 @item drop_even, 1
18211 Only output odd frames, even frames are dropped, generating a frame with
18212 unchanged height at half frame rate.
18213
18214 @example
18215  ------> time
18216 Input:
18217 Frame 1         Frame 2         Frame 3         Frame 4
18218
18219 11111           22222           33333           44444
18220 11111           22222           33333           44444
18221 11111           22222           33333           44444
18222 11111           22222           33333           44444
18223
18224 Output:
18225 11111                           33333
18226 11111                           33333
18227 11111                           33333
18228 11111                           33333
18229 @end example
18230
18231 @item drop_odd, 2
18232 Only output even frames, odd frames are dropped, generating a frame with
18233 unchanged height at half frame rate.
18234
18235 @example
18236  ------> time
18237 Input:
18238 Frame 1         Frame 2         Frame 3         Frame 4
18239
18240 11111           22222           33333           44444
18241 11111           22222           33333           44444
18242 11111           22222           33333           44444
18243 11111           22222           33333           44444
18244
18245 Output:
18246                 22222                           44444
18247                 22222                           44444
18248                 22222                           44444
18249                 22222                           44444
18250 @end example
18251
18252 @item pad, 3
18253 Expand each frame to full height, but pad alternate lines with black,
18254 generating a frame with double height at the same input frame rate.
18255
18256 @example
18257  ------> time
18258 Input:
18259 Frame 1         Frame 2         Frame 3         Frame 4
18260
18261 11111           22222           33333           44444
18262 11111           22222           33333           44444
18263 11111           22222           33333           44444
18264 11111           22222           33333           44444
18265
18266 Output:
18267 11111           .....           33333           .....
18268 .....           22222           .....           44444
18269 11111           .....           33333           .....
18270 .....           22222           .....           44444
18271 11111           .....           33333           .....
18272 .....           22222           .....           44444
18273 11111           .....           33333           .....
18274 .....           22222           .....           44444
18275 @end example
18276
18277
18278 @item interleave_top, 4
18279 Interleave the upper field from odd frames with the lower field from
18280 even frames, generating a frame with unchanged height at half frame rate.
18281
18282 @example
18283  ------> time
18284 Input:
18285 Frame 1         Frame 2         Frame 3         Frame 4
18286
18287 11111<-         22222           33333<-         44444
18288 11111           22222<-         33333           44444<-
18289 11111<-         22222           33333<-         44444
18290 11111           22222<-         33333           44444<-
18291
18292 Output:
18293 11111                           33333
18294 22222                           44444
18295 11111                           33333
18296 22222                           44444
18297 @end example
18298
18299
18300 @item interleave_bottom, 5
18301 Interleave the lower field from odd frames with the upper field from
18302 even frames, generating a frame with unchanged height at half frame rate.
18303
18304 @example
18305  ------> time
18306 Input:
18307 Frame 1         Frame 2         Frame 3         Frame 4
18308
18309 11111           22222<-         33333           44444<-
18310 11111<-         22222           33333<-         44444
18311 11111           22222<-         33333           44444<-
18312 11111<-         22222           33333<-         44444
18313
18314 Output:
18315 22222                           44444
18316 11111                           33333
18317 22222                           44444
18318 11111                           33333
18319 @end example
18320
18321
18322 @item interlacex2, 6
18323 Double frame rate with unchanged height. Frames are inserted each
18324 containing the second temporal field from the previous input frame and
18325 the first temporal field from the next input frame. This mode relies on
18326 the top_field_first flag. Useful for interlaced video displays with no
18327 field synchronisation.
18328
18329 @example
18330  ------> time
18331 Input:
18332 Frame 1         Frame 2         Frame 3         Frame 4
18333
18334 11111           22222           33333           44444
18335  11111           22222           33333           44444
18336 11111           22222           33333           44444
18337  11111           22222           33333           44444
18338
18339 Output:
18340 11111   22222   22222   33333   33333   44444   44444
18341  11111   11111   22222   22222   33333   33333   44444
18342 11111   22222   22222   33333   33333   44444   44444
18343  11111   11111   22222   22222   33333   33333   44444
18344 @end example
18345
18346
18347 @item mergex2, 7
18348 Move odd frames into the upper field, even into the lower field,
18349 generating a double height frame at same frame rate.
18350
18351 @example
18352  ------> time
18353 Input:
18354 Frame 1         Frame 2         Frame 3         Frame 4
18355
18356 11111           22222           33333           44444
18357 11111           22222           33333           44444
18358 11111           22222           33333           44444
18359 11111           22222           33333           44444
18360
18361 Output:
18362 11111           33333           33333           55555
18363 22222           22222           44444           44444
18364 11111           33333           33333           55555
18365 22222           22222           44444           44444
18366 11111           33333           33333           55555
18367 22222           22222           44444           44444
18368 11111           33333           33333           55555
18369 22222           22222           44444           44444
18370 @end example
18371
18372 @end table
18373
18374 Numeric values are deprecated but are accepted for backward
18375 compatibility reasons.
18376
18377 Default mode is @code{merge}.
18378
18379 @item flags
18380 Specify flags influencing the filter process.
18381
18382 Available value for @var{flags} is:
18383
18384 @table @option
18385 @item low_pass_filter, vlpf
18386 Enable linear vertical low-pass filtering in the filter.
18387 Vertical low-pass filtering is required when creating an interlaced
18388 destination from a progressive source which contains high-frequency
18389 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18390 patterning.
18391
18392 @item complex_filter, cvlpf
18393 Enable complex vertical low-pass filtering.
18394 This will slightly less reduce interlace 'twitter' and Moire
18395 patterning but better retain detail and subjective sharpness impression.
18396
18397 @item bypass_il
18398 Bypass already interlaced frames, only adjust the frame rate.
18399 @end table
18400
18401 Vertical low-pass filtering and bypassing already interlaced frames can only be
18402 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18403
18404 @end table
18405
18406 @section tmedian
18407 Pick median pixels from several successive input video frames.
18408
18409 The filter accepts the following options:
18410
18411 @table @option
18412 @item radius
18413 Set radius of median filter.
18414 Default is 1. Allowed range is from 1 to 127.
18415
18416 @item planes
18417 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
18418
18419 @item percentile
18420 Set median percentile. Default value is @code{0.5}.
18421 Default value of @code{0.5} will pick always median values, while @code{0} will pick
18422 minimum values, and @code{1} maximum values.
18423 @end table
18424
18425 @section tmix
18426
18427 Mix successive video frames.
18428
18429 A description of the accepted options follows.
18430
18431 @table @option
18432 @item frames
18433 The number of successive frames to mix. If unspecified, it defaults to 3.
18434
18435 @item weights
18436 Specify weight of each input video frame.
18437 Each weight is separated by space. If number of weights is smaller than
18438 number of @var{frames} last specified weight will be used for all remaining
18439 unset weights.
18440
18441 @item scale
18442 Specify scale, if it is set it will be multiplied with sum
18443 of each weight multiplied with pixel values to give final destination
18444 pixel value. By default @var{scale} is auto scaled to sum of weights.
18445 @end table
18446
18447 @subsection Examples
18448
18449 @itemize
18450 @item
18451 Average 7 successive frames:
18452 @example
18453 tmix=frames=7:weights="1 1 1 1 1 1 1"
18454 @end example
18455
18456 @item
18457 Apply simple temporal convolution:
18458 @example
18459 tmix=frames=3:weights="-1 3 -1"
18460 @end example
18461
18462 @item
18463 Similar as above but only showing temporal differences:
18464 @example
18465 tmix=frames=3:weights="-1 2 -1":scale=1
18466 @end example
18467 @end itemize
18468
18469 @anchor{tonemap}
18470 @section tonemap
18471 Tone map colors from different dynamic ranges.
18472
18473 This filter expects data in single precision floating point, as it needs to
18474 operate on (and can output) out-of-range values. Another filter, such as
18475 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18476
18477 The tonemapping algorithms implemented only work on linear light, so input
18478 data should be linearized beforehand (and possibly correctly tagged).
18479
18480 @example
18481 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18482 @end example
18483
18484 @subsection Options
18485 The filter accepts the following options.
18486
18487 @table @option
18488 @item tonemap
18489 Set the tone map algorithm to use.
18490
18491 Possible values are:
18492 @table @var
18493 @item none
18494 Do not apply any tone map, only desaturate overbright pixels.
18495
18496 @item clip
18497 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18498 in-range values, while distorting out-of-range values.
18499
18500 @item linear
18501 Stretch the entire reference gamut to a linear multiple of the display.
18502
18503 @item gamma
18504 Fit a logarithmic transfer between the tone curves.
18505
18506 @item reinhard
18507 Preserve overall image brightness with a simple curve, using nonlinear
18508 contrast, which results in flattening details and degrading color accuracy.
18509
18510 @item hable
18511 Preserve both dark and bright details better than @var{reinhard}, at the cost
18512 of slightly darkening everything. Use it when detail preservation is more
18513 important than color and brightness accuracy.
18514
18515 @item mobius
18516 Smoothly map out-of-range values, while retaining contrast and colors for
18517 in-range material as much as possible. Use it when color accuracy is more
18518 important than detail preservation.
18519 @end table
18520
18521 Default is none.
18522
18523 @item param
18524 Tune the tone mapping algorithm.
18525
18526 This affects the following algorithms:
18527 @table @var
18528 @item none
18529 Ignored.
18530
18531 @item linear
18532 Specifies the scale factor to use while stretching.
18533 Default to 1.0.
18534
18535 @item gamma
18536 Specifies the exponent of the function.
18537 Default to 1.8.
18538
18539 @item clip
18540 Specify an extra linear coefficient to multiply into the signal before clipping.
18541 Default to 1.0.
18542
18543 @item reinhard
18544 Specify the local contrast coefficient at the display peak.
18545 Default to 0.5, which means that in-gamut values will be about half as bright
18546 as when clipping.
18547
18548 @item hable
18549 Ignored.
18550
18551 @item mobius
18552 Specify the transition point from linear to mobius transform. Every value
18553 below this point is guaranteed to be mapped 1:1. The higher the value, the
18554 more accurate the result will be, at the cost of losing bright details.
18555 Default to 0.3, which due to the steep initial slope still preserves in-range
18556 colors fairly accurately.
18557 @end table
18558
18559 @item desat
18560 Apply desaturation for highlights that exceed this level of brightness. The
18561 higher the parameter, the more color information will be preserved. This
18562 setting helps prevent unnaturally blown-out colors for super-highlights, by
18563 (smoothly) turning into white instead. This makes images feel more natural,
18564 at the cost of reducing information about out-of-range colors.
18565
18566 The default of 2.0 is somewhat conservative and will mostly just apply to
18567 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
18568
18569 This option works only if the input frame has a supported color tag.
18570
18571 @item peak
18572 Override signal/nominal/reference peak with this value. Useful when the
18573 embedded peak information in display metadata is not reliable or when tone
18574 mapping from a lower range to a higher range.
18575 @end table
18576
18577 @section tpad
18578
18579 Temporarily pad video frames.
18580
18581 The filter accepts the following options:
18582
18583 @table @option
18584 @item start
18585 Specify number of delay frames before input video stream. Default is 0.
18586
18587 @item stop
18588 Specify number of padding frames after input video stream.
18589 Set to -1 to pad indefinitely. Default is 0.
18590
18591 @item start_mode
18592 Set kind of frames added to beginning of stream.
18593 Can be either @var{add} or @var{clone}.
18594 With @var{add} frames of solid-color are added.
18595 With @var{clone} frames are clones of first frame.
18596 Default is @var{add}.
18597
18598 @item stop_mode
18599 Set kind of frames added to end of stream.
18600 Can be either @var{add} or @var{clone}.
18601 With @var{add} frames of solid-color are added.
18602 With @var{clone} frames are clones of last frame.
18603 Default is @var{add}.
18604
18605 @item start_duration, stop_duration
18606 Specify the duration of the start/stop delay. See
18607 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18608 for the accepted syntax.
18609 These options override @var{start} and @var{stop}. Default is 0.
18610
18611 @item color
18612 Specify the color of the padded area. For the syntax of this option,
18613 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
18614 manual,ffmpeg-utils}.
18615
18616 The default value of @var{color} is "black".
18617 @end table
18618
18619 @anchor{transpose}
18620 @section transpose
18621
18622 Transpose rows with columns in the input video and optionally flip it.
18623
18624 It accepts the following parameters:
18625
18626 @table @option
18627
18628 @item dir
18629 Specify the transposition direction.
18630
18631 Can assume the following values:
18632 @table @samp
18633 @item 0, 4, cclock_flip
18634 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
18635 @example
18636 L.R     L.l
18637 . . ->  . .
18638 l.r     R.r
18639 @end example
18640
18641 @item 1, 5, clock
18642 Rotate by 90 degrees clockwise, that is:
18643 @example
18644 L.R     l.L
18645 . . ->  . .
18646 l.r     r.R
18647 @end example
18648
18649 @item 2, 6, cclock
18650 Rotate by 90 degrees counterclockwise, that is:
18651 @example
18652 L.R     R.r
18653 . . ->  . .
18654 l.r     L.l
18655 @end example
18656
18657 @item 3, 7, clock_flip
18658 Rotate by 90 degrees clockwise and vertically flip, that is:
18659 @example
18660 L.R     r.R
18661 . . ->  . .
18662 l.r     l.L
18663 @end example
18664 @end table
18665
18666 For values between 4-7, the transposition is only done if the input
18667 video geometry is portrait and not landscape. These values are
18668 deprecated, the @code{passthrough} option should be used instead.
18669
18670 Numerical values are deprecated, and should be dropped in favor of
18671 symbolic constants.
18672
18673 @item passthrough
18674 Do not apply the transposition if the input geometry matches the one
18675 specified by the specified value. It accepts the following values:
18676 @table @samp
18677 @item none
18678 Always apply transposition.
18679 @item portrait
18680 Preserve portrait geometry (when @var{height} >= @var{width}).
18681 @item landscape
18682 Preserve landscape geometry (when @var{width} >= @var{height}).
18683 @end table
18684
18685 Default value is @code{none}.
18686 @end table
18687
18688 For example to rotate by 90 degrees clockwise and preserve portrait
18689 layout:
18690 @example
18691 transpose=dir=1:passthrough=portrait
18692 @end example
18693
18694 The command above can also be specified as:
18695 @example
18696 transpose=1:portrait
18697 @end example
18698
18699 @section transpose_npp
18700
18701 Transpose rows with columns in the input video and optionally flip it.
18702 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
18703
18704 It accepts the following parameters:
18705
18706 @table @option
18707
18708 @item dir
18709 Specify the transposition direction.
18710
18711 Can assume the following values:
18712 @table @samp
18713 @item cclock_flip
18714 Rotate by 90 degrees counterclockwise and vertically flip. (default)
18715
18716 @item clock
18717 Rotate by 90 degrees clockwise.
18718
18719 @item cclock
18720 Rotate by 90 degrees counterclockwise.
18721
18722 @item clock_flip
18723 Rotate by 90 degrees clockwise and vertically flip.
18724 @end table
18725
18726 @item passthrough
18727 Do not apply the transposition if the input geometry matches the one
18728 specified by the specified value. It accepts the following values:
18729 @table @samp
18730 @item none
18731 Always apply transposition. (default)
18732 @item portrait
18733 Preserve portrait geometry (when @var{height} >= @var{width}).
18734 @item landscape
18735 Preserve landscape geometry (when @var{width} >= @var{height}).
18736 @end table
18737
18738 @end table
18739
18740 @section trim
18741 Trim the input so that the output contains one continuous subpart of the input.
18742
18743 It accepts the following parameters:
18744 @table @option
18745 @item start
18746 Specify the time of the start of the kept section, i.e. the frame with the
18747 timestamp @var{start} will be the first frame in the output.
18748
18749 @item end
18750 Specify the time of the first frame that will be dropped, i.e. the frame
18751 immediately preceding the one with the timestamp @var{end} will be the last
18752 frame in the output.
18753
18754 @item start_pts
18755 This is the same as @var{start}, except this option sets the start timestamp
18756 in timebase units instead of seconds.
18757
18758 @item end_pts
18759 This is the same as @var{end}, except this option sets the end timestamp
18760 in timebase units instead of seconds.
18761
18762 @item duration
18763 The maximum duration of the output in seconds.
18764
18765 @item start_frame
18766 The number of the first frame that should be passed to the output.
18767
18768 @item end_frame
18769 The number of the first frame that should be dropped.
18770 @end table
18771
18772 @option{start}, @option{end}, and @option{duration} are expressed as time
18773 duration specifications; see
18774 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18775 for the accepted syntax.
18776
18777 Note that the first two sets of the start/end options and the @option{duration}
18778 option look at the frame timestamp, while the _frame variants simply count the
18779 frames that pass through the filter. Also note that this filter does not modify
18780 the timestamps. If you wish for the output timestamps to start at zero, insert a
18781 setpts filter after the trim filter.
18782
18783 If multiple start or end options are set, this filter tries to be greedy and
18784 keep all the frames that match at least one of the specified constraints. To keep
18785 only the part that matches all the constraints at once, chain multiple trim
18786 filters.
18787
18788 The defaults are such that all the input is kept. So it is possible to set e.g.
18789 just the end values to keep everything before the specified time.
18790
18791 Examples:
18792 @itemize
18793 @item
18794 Drop everything except the second minute of input:
18795 @example
18796 ffmpeg -i INPUT -vf trim=60:120
18797 @end example
18798
18799 @item
18800 Keep only the first second:
18801 @example
18802 ffmpeg -i INPUT -vf trim=duration=1
18803 @end example
18804
18805 @end itemize
18806
18807 @section unpremultiply
18808 Apply alpha unpremultiply effect to input video stream using first plane
18809 of second stream as alpha.
18810
18811 Both streams must have same dimensions and same pixel format.
18812
18813 The filter accepts the following option:
18814
18815 @table @option
18816 @item planes
18817 Set which planes will be processed, unprocessed planes will be copied.
18818 By default value 0xf, all planes will be processed.
18819
18820 If the format has 1 or 2 components, then luma is bit 0.
18821 If the format has 3 or 4 components:
18822 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
18823 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
18824 If present, the alpha channel is always the last bit.
18825
18826 @item inplace
18827 Do not require 2nd input for processing, instead use alpha plane from input stream.
18828 @end table
18829
18830 @anchor{unsharp}
18831 @section unsharp
18832
18833 Sharpen or blur the input video.
18834
18835 It accepts the following parameters:
18836
18837 @table @option
18838 @item luma_msize_x, lx
18839 Set the luma matrix horizontal size. It must be an odd integer between
18840 3 and 23. The default value is 5.
18841
18842 @item luma_msize_y, ly
18843 Set the luma matrix vertical size. It must be an odd integer between 3
18844 and 23. The default value is 5.
18845
18846 @item luma_amount, la
18847 Set the luma effect strength. It must be a floating point number, reasonable
18848 values lay between -1.5 and 1.5.
18849
18850 Negative values will blur the input video, while positive values will
18851 sharpen it, a value of zero will disable the effect.
18852
18853 Default value is 1.0.
18854
18855 @item chroma_msize_x, cx
18856 Set the chroma matrix horizontal size. It must be an odd integer
18857 between 3 and 23. The default value is 5.
18858
18859 @item chroma_msize_y, cy
18860 Set the chroma matrix vertical size. It must be an odd integer
18861 between 3 and 23. The default value is 5.
18862
18863 @item chroma_amount, ca
18864 Set the chroma effect strength. It must be a floating point number, reasonable
18865 values lay between -1.5 and 1.5.
18866
18867 Negative values will blur the input video, while positive values will
18868 sharpen it, a value of zero will disable the effect.
18869
18870 Default value is 0.0.
18871
18872 @end table
18873
18874 All parameters are optional and default to the equivalent of the
18875 string '5:5:1.0:5:5:0.0'.
18876
18877 @subsection Examples
18878
18879 @itemize
18880 @item
18881 Apply strong luma sharpen effect:
18882 @example
18883 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
18884 @end example
18885
18886 @item
18887 Apply a strong blur of both luma and chroma parameters:
18888 @example
18889 unsharp=7:7:-2:7:7:-2
18890 @end example
18891 @end itemize
18892
18893 @section uspp
18894
18895 Apply ultra slow/simple postprocessing filter that compresses and decompresses
18896 the image at several (or - in the case of @option{quality} level @code{8} - all)
18897 shifts and average the results.
18898
18899 The way this differs from the behavior of spp is that uspp actually encodes &
18900 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
18901 DCT similar to MJPEG.
18902
18903 The filter accepts the following options:
18904
18905 @table @option
18906 @item quality
18907 Set quality. This option defines the number of levels for averaging. It accepts
18908 an integer in the range 0-8. If set to @code{0}, the filter will have no
18909 effect. A value of @code{8} means the higher quality. For each increment of
18910 that value the speed drops by a factor of approximately 2.  Default value is
18911 @code{3}.
18912
18913 @item qp
18914 Force a constant quantization parameter. If not set, the filter will use the QP
18915 from the video stream (if available).
18916 @end table
18917
18918 @section v360
18919
18920 Convert 360 videos between various formats.
18921
18922 The filter accepts the following options:
18923
18924 @table @option
18925
18926 @item input
18927 @item output
18928 Set format of the input/output video.
18929
18930 Available formats:
18931
18932 @table @samp
18933
18934 @item e
18935 @item equirect
18936 Equirectangular projection.
18937
18938 @item c3x2
18939 @item c6x1
18940 @item c1x6
18941 Cubemap with 3x2/6x1/1x6 layout.
18942
18943 Format specific options:
18944
18945 @table @option
18946 @item in_pad
18947 @item out_pad
18948 Set padding proportion for the input/output cubemap. Values in decimals.
18949
18950 Example values:
18951 @table @samp
18952 @item 0
18953 No padding.
18954 @item 0.01
18955 1% of face is padding. For example, with 1920x1280 resolution face size would be 640x640 and padding would be 3 pixels from each side. (640 * 0.01 = 6 pixels)
18956 @end table
18957
18958 Default value is @b{@samp{0}}.
18959
18960 @item fin_pad
18961 @item fout_pad
18962 Set fixed padding for the input/output cubemap. Values in pixels.
18963
18964 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18965
18966 @item in_forder
18967 @item out_forder
18968 Set order of faces for the input/output cubemap. Choose one direction for each position.
18969
18970 Designation of directions:
18971 @table @samp
18972 @item r
18973 right
18974 @item l
18975 left
18976 @item u
18977 up
18978 @item d
18979 down
18980 @item f
18981 forward
18982 @item b
18983 back
18984 @end table
18985
18986 Default value is @b{@samp{rludfb}}.
18987
18988 @item in_frot
18989 @item out_frot
18990 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18991
18992 Designation of angles:
18993 @table @samp
18994 @item 0
18995 0 degrees clockwise
18996 @item 1
18997 90 degrees clockwise
18998 @item 2
18999 180 degrees clockwise
19000 @item 3
19001 270 degrees clockwise
19002 @end table
19003
19004 Default value is @b{@samp{000000}}.
19005 @end table
19006
19007 @item eac
19008 Equi-Angular Cubemap.
19009
19010 @item flat
19011 @item gnomonic
19012 @item rectilinear
19013 Regular video.
19014
19015 Format specific options:
19016 @table @option
19017 @item h_fov
19018 @item v_fov
19019 @item d_fov
19020 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19021
19022 If diagonal field of view is set it overrides horizontal and vertical field of view.
19023
19024 @item ih_fov
19025 @item iv_fov
19026 @item id_fov
19027 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19028
19029 If diagonal field of view is set it overrides horizontal and vertical field of view.
19030 @end table
19031
19032 @item dfisheye
19033 Dual fisheye.
19034
19035 Format specific options:
19036 @table @option
19037 @item in_pad
19038 @item out_pad
19039 Set padding proportion. Values in decimals.
19040
19041 Example values:
19042 @table @samp
19043 @item 0
19044 No padding.
19045 @item 0.01
19046 1% padding.
19047 @end table
19048
19049 Default value is @b{@samp{0}}.
19050 @end table
19051
19052 @item barrel
19053 @item fb
19054 @item barrelsplit
19055 Facebook's 360 formats.
19056
19057 @item sg
19058 Stereographic format.
19059
19060 Format specific options:
19061 @table @option
19062 @item h_fov
19063 @item v_fov
19064 @item d_fov
19065 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19066
19067 If diagonal field of view is set it overrides horizontal and vertical field of view.
19068
19069 @item ih_fov
19070 @item iv_fov
19071 @item id_fov
19072 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19073
19074 If diagonal field of view is set it overrides horizontal and vertical field of view.
19075 @end table
19076
19077 @item mercator
19078 Mercator format.
19079
19080 @item ball
19081 Ball format, gives significant distortion toward the back.
19082
19083 @item hammer
19084 Hammer-Aitoff map projection format.
19085
19086 @item sinusoidal
19087 Sinusoidal map projection format.
19088
19089 @item fisheye
19090 Fisheye projection.
19091
19092 Format specific options:
19093 @table @option
19094 @item h_fov
19095 @item v_fov
19096 @item d_fov
19097 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19098
19099 If diagonal field of view is set it overrides horizontal and vertical field of view.
19100
19101 @item ih_fov
19102 @item iv_fov
19103 @item id_fov
19104 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19105
19106 If diagonal field of view is set it overrides horizontal and vertical field of view.
19107 @end table
19108
19109 @item pannini
19110 Pannini projection.
19111
19112 Format specific options:
19113 @table @option
19114 @item h_fov
19115 Set output pannini parameter.
19116
19117 @item ih_fov
19118 Set input pannini parameter.
19119 @end table
19120
19121 @item cylindrical
19122 Cylindrical projection.
19123
19124 Format specific options:
19125 @table @option
19126 @item h_fov
19127 @item v_fov
19128 @item d_fov
19129 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19130
19131 If diagonal field of view is set it overrides horizontal and vertical field of view.
19132
19133 @item ih_fov
19134 @item iv_fov
19135 @item id_fov
19136 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19137
19138 If diagonal field of view is set it overrides horizontal and vertical field of view.
19139 @end table
19140
19141 @item perspective
19142 Perspective projection. @i{(output only)}
19143
19144 Format specific options:
19145 @table @option
19146 @item v_fov
19147 Set perspective parameter.
19148 @end table
19149
19150 @item tetrahedron
19151 Tetrahedron projection.
19152
19153 @item tsp
19154 Truncated square pyramid projection.
19155
19156 @item he
19157 @item hequirect
19158 Half equirectangular projection.
19159 @end table
19160
19161 @item interp
19162 Set interpolation method.@*
19163 @i{Note: more complex interpolation methods require much more memory to run.}
19164
19165 Available methods:
19166
19167 @table @samp
19168 @item near
19169 @item nearest
19170 Nearest neighbour.
19171 @item line
19172 @item linear
19173 Bilinear interpolation.
19174 @item lagrange9
19175 Lagrange9 interpolation.
19176 @item cube
19177 @item cubic
19178 Bicubic interpolation.
19179 @item lanc
19180 @item lanczos
19181 Lanczos interpolation.
19182 @item sp16
19183 @item spline16
19184 Spline16 interpolation.
19185 @item gauss
19186 @item gaussian
19187 Gaussian interpolation.
19188 @end table
19189
19190 Default value is @b{@samp{line}}.
19191
19192 @item w
19193 @item h
19194 Set the output video resolution.
19195
19196 Default resolution depends on formats.
19197
19198 @item in_stereo
19199 @item out_stereo
19200 Set the input/output stereo format.
19201
19202 @table @samp
19203 @item 2d
19204 2D mono
19205 @item sbs
19206 Side by side
19207 @item tb
19208 Top bottom
19209 @end table
19210
19211 Default value is @b{@samp{2d}} for input and output format.
19212
19213 @item yaw
19214 @item pitch
19215 @item roll
19216 Set rotation for the output video. Values in degrees.
19217
19218 @item rorder
19219 Set rotation order for the output video. Choose one item for each position.
19220
19221 @table @samp
19222 @item y, Y
19223 yaw
19224 @item p, P
19225 pitch
19226 @item r, R
19227 roll
19228 @end table
19229
19230 Default value is @b{@samp{ypr}}.
19231
19232 @item h_flip
19233 @item v_flip
19234 @item d_flip
19235 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19236
19237 @item ih_flip
19238 @item iv_flip
19239 Set if input video is flipped horizontally/vertically. Boolean values.
19240
19241 @item in_trans
19242 Set if input video is transposed. Boolean value, by default disabled.
19243
19244 @item out_trans
19245 Set if output video needs to be transposed. Boolean value, by default disabled.
19246
19247 @item alpha_mask
19248 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19249 @end table
19250
19251 @subsection Examples
19252
19253 @itemize
19254 @item
19255 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19256 @example
19257 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19258 @end example
19259 @item
19260 Extract back view of Equi-Angular Cubemap:
19261 @example
19262 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19263 @end example
19264 @item
19265 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19266 @example
19267 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19268 @end example
19269 @end itemize
19270
19271 @subsection Commands
19272
19273 This filter supports subset of above options as @ref{commands}.
19274
19275 @section vaguedenoiser
19276
19277 Apply a wavelet based denoiser.
19278
19279 It transforms each frame from the video input into the wavelet domain,
19280 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19281 the obtained coefficients. It does an inverse wavelet transform after.
19282 Due to wavelet properties, it should give a nice smoothed result, and
19283 reduced noise, without blurring picture features.
19284
19285 This filter accepts the following options:
19286
19287 @table @option
19288 @item threshold
19289 The filtering strength. The higher, the more filtered the video will be.
19290 Hard thresholding can use a higher threshold than soft thresholding
19291 before the video looks overfiltered. Default value is 2.
19292
19293 @item method
19294 The filtering method the filter will use.
19295
19296 It accepts the following values:
19297 @table @samp
19298 @item hard
19299 All values under the threshold will be zeroed.
19300
19301 @item soft
19302 All values under the threshold will be zeroed. All values above will be
19303 reduced by the threshold.
19304
19305 @item garrote
19306 Scales or nullifies coefficients - intermediary between (more) soft and
19307 (less) hard thresholding.
19308 @end table
19309
19310 Default is garrote.
19311
19312 @item nsteps
19313 Number of times, the wavelet will decompose the picture. Picture can't
19314 be decomposed beyond a particular point (typically, 8 for a 640x480
19315 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19316
19317 @item percent
19318 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19319
19320 @item planes
19321 A list of the planes to process. By default all planes are processed.
19322 @end table
19323
19324 @section vectorscope
19325
19326 Display 2 color component values in the two dimensional graph (which is called
19327 a vectorscope).
19328
19329 This filter accepts the following options:
19330
19331 @table @option
19332 @item mode, m
19333 Set vectorscope mode.
19334
19335 It accepts the following values:
19336 @table @samp
19337 @item gray
19338 @item tint
19339 Gray values are displayed on graph, higher brightness means more pixels have
19340 same component color value on location in graph. This is the default mode.
19341
19342 @item color
19343 Gray values are displayed on graph. Surrounding pixels values which are not
19344 present in video frame are drawn in gradient of 2 color components which are
19345 set by option @code{x} and @code{y}. The 3rd color component is static.
19346
19347 @item color2
19348 Actual color components values present in video frame are displayed on graph.
19349
19350 @item color3
19351 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19352 on graph increases value of another color component, which is luminance by
19353 default values of @code{x} and @code{y}.
19354
19355 @item color4
19356 Actual colors present in video frame are displayed on graph. If two different
19357 colors map to same position on graph then color with higher value of component
19358 not present in graph is picked.
19359
19360 @item color5
19361 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19362 component picked from radial gradient.
19363 @end table
19364
19365 @item x
19366 Set which color component will be represented on X-axis. Default is @code{1}.
19367
19368 @item y
19369 Set which color component will be represented on Y-axis. Default is @code{2}.
19370
19371 @item intensity, i
19372 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19373 of color component which represents frequency of (X, Y) location in graph.
19374
19375 @item envelope, e
19376 @table @samp
19377 @item none
19378 No envelope, this is default.
19379
19380 @item instant
19381 Instant envelope, even darkest single pixel will be clearly highlighted.
19382
19383 @item peak
19384 Hold maximum and minimum values presented in graph over time. This way you
19385 can still spot out of range values without constantly looking at vectorscope.
19386
19387 @item peak+instant
19388 Peak and instant envelope combined together.
19389 @end table
19390
19391 @item graticule, g
19392 Set what kind of graticule to draw.
19393 @table @samp
19394 @item none
19395 @item green
19396 @item color
19397 @item invert
19398 @end table
19399
19400 @item opacity, o
19401 Set graticule opacity.
19402
19403 @item flags, f
19404 Set graticule flags.
19405
19406 @table @samp
19407 @item white
19408 Draw graticule for white point.
19409
19410 @item black
19411 Draw graticule for black point.
19412
19413 @item name
19414 Draw color points short names.
19415 @end table
19416
19417 @item bgopacity, b
19418 Set background opacity.
19419
19420 @item lthreshold, l
19421 Set low threshold for color component not represented on X or Y axis.
19422 Values lower than this value will be ignored. Default is 0.
19423 Note this value is multiplied with actual max possible value one pixel component
19424 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
19425 is 0.1 * 255 = 25.
19426
19427 @item hthreshold, h
19428 Set high threshold for color component not represented on X or Y axis.
19429 Values higher than this value will be ignored. Default is 1.
19430 Note this value is multiplied with actual max possible value one pixel component
19431 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
19432 is 0.9 * 255 = 230.
19433
19434 @item colorspace, c
19435 Set what kind of colorspace to use when drawing graticule.
19436 @table @samp
19437 @item auto
19438 @item 601
19439 @item 709
19440 @end table
19441 Default is auto.
19442
19443 @item tint0, t0
19444 @item tint1, t1
19445 Set color tint for gray/tint vectorscope mode. By default both options are zero.
19446 This means no tint, and output will remain gray.
19447 @end table
19448
19449 @anchor{vidstabdetect}
19450 @section vidstabdetect
19451
19452 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
19453 @ref{vidstabtransform} for pass 2.
19454
19455 This filter generates a file with relative translation and rotation
19456 transform information about subsequent frames, which is then used by
19457 the @ref{vidstabtransform} filter.
19458
19459 To enable compilation of this filter you need to configure FFmpeg with
19460 @code{--enable-libvidstab}.
19461
19462 This filter accepts the following options:
19463
19464 @table @option
19465 @item result
19466 Set the path to the file used to write the transforms information.
19467 Default value is @file{transforms.trf}.
19468
19469 @item shakiness
19470 Set how shaky the video is and how quick the camera is. It accepts an
19471 integer in the range 1-10, a value of 1 means little shakiness, a
19472 value of 10 means strong shakiness. Default value is 5.
19473
19474 @item accuracy
19475 Set the accuracy of the detection process. It must be a value in the
19476 range 1-15. A value of 1 means low accuracy, a value of 15 means high
19477 accuracy. Default value is 15.
19478
19479 @item stepsize
19480 Set stepsize of the search process. The region around minimum is
19481 scanned with 1 pixel resolution. Default value is 6.
19482
19483 @item mincontrast
19484 Set minimum contrast. Below this value a local measurement field is
19485 discarded. Must be a floating point value in the range 0-1. Default
19486 value is 0.3.
19487
19488 @item tripod
19489 Set reference frame number for tripod mode.
19490
19491 If enabled, the motion of the frames is compared to a reference frame
19492 in the filtered stream, identified by the specified number. The idea
19493 is to compensate all movements in a more-or-less static scene and keep
19494 the camera view absolutely still.
19495
19496 If set to 0, it is disabled. The frames are counted starting from 1.
19497
19498 @item show
19499 Show fields and transforms in the resulting frames. It accepts an
19500 integer in the range 0-2. Default value is 0, which disables any
19501 visualization.
19502 @end table
19503
19504 @subsection Examples
19505
19506 @itemize
19507 @item
19508 Use default values:
19509 @example
19510 vidstabdetect
19511 @end example
19512
19513 @item
19514 Analyze strongly shaky movie and put the results in file
19515 @file{mytransforms.trf}:
19516 @example
19517 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
19518 @end example
19519
19520 @item
19521 Visualize the result of internal transformations in the resulting
19522 video:
19523 @example
19524 vidstabdetect=show=1
19525 @end example
19526
19527 @item
19528 Analyze a video with medium shakiness using @command{ffmpeg}:
19529 @example
19530 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
19531 @end example
19532 @end itemize
19533
19534 @anchor{vidstabtransform}
19535 @section vidstabtransform
19536
19537 Video stabilization/deshaking: pass 2 of 2,
19538 see @ref{vidstabdetect} for pass 1.
19539
19540 Read a file with transform information for each frame and
19541 apply/compensate them. Together with the @ref{vidstabdetect}
19542 filter this can be used to deshake videos. See also
19543 @url{http://public.hronopik.de/vid.stab}. It is important to also use
19544 the @ref{unsharp} filter, see below.
19545
19546 To enable compilation of this filter you need to configure FFmpeg with
19547 @code{--enable-libvidstab}.
19548
19549 @subsection Options
19550
19551 @table @option
19552 @item input
19553 Set path to the file used to read the transforms. Default value is
19554 @file{transforms.trf}.
19555
19556 @item smoothing
19557 Set the number of frames (value*2 + 1) used for lowpass filtering the
19558 camera movements. Default value is 10.
19559
19560 For example a number of 10 means that 21 frames are used (10 in the
19561 past and 10 in the future) to smoothen the motion in the video. A
19562 larger value leads to a smoother video, but limits the acceleration of
19563 the camera (pan/tilt movements). 0 is a special case where a static
19564 camera is simulated.
19565
19566 @item optalgo
19567 Set the camera path optimization algorithm.
19568
19569 Accepted values are:
19570 @table @samp
19571 @item gauss
19572 gaussian kernel low-pass filter on camera motion (default)
19573 @item avg
19574 averaging on transformations
19575 @end table
19576
19577 @item maxshift
19578 Set maximal number of pixels to translate frames. Default value is -1,
19579 meaning no limit.
19580
19581 @item maxangle
19582 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
19583 value is -1, meaning no limit.
19584
19585 @item crop
19586 Specify how to deal with borders that may be visible due to movement
19587 compensation.
19588
19589 Available values are:
19590 @table @samp
19591 @item keep
19592 keep image information from previous frame (default)
19593 @item black
19594 fill the border black
19595 @end table
19596
19597 @item invert
19598 Invert transforms if set to 1. Default value is 0.
19599
19600 @item relative
19601 Consider transforms as relative to previous frame if set to 1,
19602 absolute if set to 0. Default value is 0.
19603
19604 @item zoom
19605 Set percentage to zoom. A positive value will result in a zoom-in
19606 effect, a negative value in a zoom-out effect. Default value is 0 (no
19607 zoom).
19608
19609 @item optzoom
19610 Set optimal zooming to avoid borders.
19611
19612 Accepted values are:
19613 @table @samp
19614 @item 0
19615 disabled
19616 @item 1
19617 optimal static zoom value is determined (only very strong movements
19618 will lead to visible borders) (default)
19619 @item 2
19620 optimal adaptive zoom value is determined (no borders will be
19621 visible), see @option{zoomspeed}
19622 @end table
19623
19624 Note that the value given at zoom is added to the one calculated here.
19625
19626 @item zoomspeed
19627 Set percent to zoom maximally each frame (enabled when
19628 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
19629 0.25.
19630
19631 @item interpol
19632 Specify type of interpolation.
19633
19634 Available values are:
19635 @table @samp
19636 @item no
19637 no interpolation
19638 @item linear
19639 linear only horizontal
19640 @item bilinear
19641 linear in both directions (default)
19642 @item bicubic
19643 cubic in both directions (slow)
19644 @end table
19645
19646 @item tripod
19647 Enable virtual tripod mode if set to 1, which is equivalent to
19648 @code{relative=0:smoothing=0}. Default value is 0.
19649
19650 Use also @code{tripod} option of @ref{vidstabdetect}.
19651
19652 @item debug
19653 Increase log verbosity if set to 1. Also the detected global motions
19654 are written to the temporary file @file{global_motions.trf}. Default
19655 value is 0.
19656 @end table
19657
19658 @subsection Examples
19659
19660 @itemize
19661 @item
19662 Use @command{ffmpeg} for a typical stabilization with default values:
19663 @example
19664 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
19665 @end example
19666
19667 Note the use of the @ref{unsharp} filter which is always recommended.
19668
19669 @item
19670 Zoom in a bit more and load transform data from a given file:
19671 @example
19672 vidstabtransform=zoom=5:input="mytransforms.trf"
19673 @end example
19674
19675 @item
19676 Smoothen the video even more:
19677 @example
19678 vidstabtransform=smoothing=30
19679 @end example
19680 @end itemize
19681
19682 @section vflip
19683
19684 Flip the input video vertically.
19685
19686 For example, to vertically flip a video with @command{ffmpeg}:
19687 @example
19688 ffmpeg -i in.avi -vf "vflip" out.avi
19689 @end example
19690
19691 @section vfrdet
19692
19693 Detect variable frame rate video.
19694
19695 This filter tries to detect if the input is variable or constant frame rate.
19696
19697 At end it will output number of frames detected as having variable delta pts,
19698 and ones with constant delta pts.
19699 If there was frames with variable delta, than it will also show min, max and
19700 average delta encountered.
19701
19702 @section vibrance
19703
19704 Boost or alter saturation.
19705
19706 The filter accepts the following options:
19707 @table @option
19708 @item intensity
19709 Set strength of boost if positive value or strength of alter if negative value.
19710 Default is 0. Allowed range is from -2 to 2.
19711
19712 @item rbal
19713 Set the red balance. Default is 1. Allowed range is from -10 to 10.
19714
19715 @item gbal
19716 Set the green balance. Default is 1. Allowed range is from -10 to 10.
19717
19718 @item bbal
19719 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
19720
19721 @item rlum
19722 Set the red luma coefficient.
19723
19724 @item glum
19725 Set the green luma coefficient.
19726
19727 @item blum
19728 Set the blue luma coefficient.
19729
19730 @item alternate
19731 If @code{intensity} is negative and this is set to 1, colors will change,
19732 otherwise colors will be less saturated, more towards gray.
19733 @end table
19734
19735 @subsection Commands
19736
19737 This filter supports the all above options as @ref{commands}.
19738
19739 @anchor{vignette}
19740 @section vignette
19741
19742 Make or reverse a natural vignetting effect.
19743
19744 The filter accepts the following options:
19745
19746 @table @option
19747 @item angle, a
19748 Set lens angle expression as a number of radians.
19749
19750 The value is clipped in the @code{[0,PI/2]} range.
19751
19752 Default value: @code{"PI/5"}
19753
19754 @item x0
19755 @item y0
19756 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
19757 by default.
19758
19759 @item mode
19760 Set forward/backward mode.
19761
19762 Available modes are:
19763 @table @samp
19764 @item forward
19765 The larger the distance from the central point, the darker the image becomes.
19766
19767 @item backward
19768 The larger the distance from the central point, the brighter the image becomes.
19769 This can be used to reverse a vignette effect, though there is no automatic
19770 detection to extract the lens @option{angle} and other settings (yet). It can
19771 also be used to create a burning effect.
19772 @end table
19773
19774 Default value is @samp{forward}.
19775
19776 @item eval
19777 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
19778
19779 It accepts the following values:
19780 @table @samp
19781 @item init
19782 Evaluate expressions only once during the filter initialization.
19783
19784 @item frame
19785 Evaluate expressions for each incoming frame. This is way slower than the
19786 @samp{init} mode since it requires all the scalers to be re-computed, but it
19787 allows advanced dynamic expressions.
19788 @end table
19789
19790 Default value is @samp{init}.
19791
19792 @item dither
19793 Set dithering to reduce the circular banding effects. Default is @code{1}
19794 (enabled).
19795
19796 @item aspect
19797 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
19798 Setting this value to the SAR of the input will make a rectangular vignetting
19799 following the dimensions of the video.
19800
19801 Default is @code{1/1}.
19802 @end table
19803
19804 @subsection Expressions
19805
19806 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
19807 following parameters.
19808
19809 @table @option
19810 @item w
19811 @item h
19812 input width and height
19813
19814 @item n
19815 the number of input frame, starting from 0
19816
19817 @item pts
19818 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
19819 @var{TB} units, NAN if undefined
19820
19821 @item r
19822 frame rate of the input video, NAN if the input frame rate is unknown
19823
19824 @item t
19825 the PTS (Presentation TimeStamp) of the filtered video frame,
19826 expressed in seconds, NAN if undefined
19827
19828 @item tb
19829 time base of the input video
19830 @end table
19831
19832
19833 @subsection Examples
19834
19835 @itemize
19836 @item
19837 Apply simple strong vignetting effect:
19838 @example
19839 vignette=PI/4
19840 @end example
19841
19842 @item
19843 Make a flickering vignetting:
19844 @example
19845 vignette='PI/4+random(1)*PI/50':eval=frame
19846 @end example
19847
19848 @end itemize
19849
19850 @section vmafmotion
19851
19852 Obtain the average VMAF motion score of a video.
19853 It is one of the component metrics of VMAF.
19854
19855 The obtained average motion score is printed through the logging system.
19856
19857 The filter accepts the following options:
19858
19859 @table @option
19860 @item stats_file
19861 If specified, the filter will use the named file to save the motion score of
19862 each frame with respect to the previous frame.
19863 When filename equals "-" the data is sent to standard output.
19864 @end table
19865
19866 Example:
19867 @example
19868 ffmpeg -i ref.mpg -vf vmafmotion -f null -
19869 @end example
19870
19871 @section vstack
19872 Stack input videos vertically.
19873
19874 All streams must be of same pixel format and of same width.
19875
19876 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
19877 to create same output.
19878
19879 The filter accepts the following options:
19880
19881 @table @option
19882 @item inputs
19883 Set number of input streams. Default is 2.
19884
19885 @item shortest
19886 If set to 1, force the output to terminate when the shortest input
19887 terminates. Default value is 0.
19888 @end table
19889
19890 @section w3fdif
19891
19892 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
19893 Deinterlacing Filter").
19894
19895 Based on the process described by Martin Weston for BBC R&D, and
19896 implemented based on the de-interlace algorithm written by Jim
19897 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
19898 uses filter coefficients calculated by BBC R&D.
19899
19900 This filter uses field-dominance information in frame to decide which
19901 of each pair of fields to place first in the output.
19902 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
19903
19904 There are two sets of filter coefficients, so called "simple"
19905 and "complex". Which set of filter coefficients is used can
19906 be set by passing an optional parameter:
19907
19908 @table @option
19909 @item filter
19910 Set the interlacing filter coefficients. Accepts one of the following values:
19911
19912 @table @samp
19913 @item simple
19914 Simple filter coefficient set.
19915 @item complex
19916 More-complex filter coefficient set.
19917 @end table
19918 Default value is @samp{complex}.
19919
19920 @item deint
19921 Specify which frames to deinterlace. Accepts one of the following values:
19922
19923 @table @samp
19924 @item all
19925 Deinterlace all frames,
19926 @item interlaced
19927 Only deinterlace frames marked as interlaced.
19928 @end table
19929
19930 Default value is @samp{all}.
19931 @end table
19932
19933 @section waveform
19934 Video waveform monitor.
19935
19936 The waveform monitor plots color component intensity. By default luminance
19937 only. Each column of the waveform corresponds to a column of pixels in the
19938 source video.
19939
19940 It accepts the following options:
19941
19942 @table @option
19943 @item mode, m
19944 Can be either @code{row}, or @code{column}. Default is @code{column}.
19945 In row mode, the graph on the left side represents color component value 0 and
19946 the right side represents value = 255. In column mode, the top side represents
19947 color component value = 0 and bottom side represents value = 255.
19948
19949 @item intensity, i
19950 Set intensity. Smaller values are useful to find out how many values of the same
19951 luminance are distributed across input rows/columns.
19952 Default value is @code{0.04}. Allowed range is [0, 1].
19953
19954 @item mirror, r
19955 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
19956 In mirrored mode, higher values will be represented on the left
19957 side for @code{row} mode and at the top for @code{column} mode. Default is
19958 @code{1} (mirrored).
19959
19960 @item display, d
19961 Set display mode.
19962 It accepts the following values:
19963 @table @samp
19964 @item overlay
19965 Presents information identical to that in the @code{parade}, except
19966 that the graphs representing color components are superimposed directly
19967 over one another.
19968
19969 This display mode makes it easier to spot relative differences or similarities
19970 in overlapping areas of the color components that are supposed to be identical,
19971 such as neutral whites, grays, or blacks.
19972
19973 @item stack
19974 Display separate graph for the color components side by side in
19975 @code{row} mode or one below the other in @code{column} mode.
19976
19977 @item parade
19978 Display separate graph for the color components side by side in
19979 @code{column} mode or one below the other in @code{row} mode.
19980
19981 Using this display mode makes it easy to spot color casts in the highlights
19982 and shadows of an image, by comparing the contours of the top and the bottom
19983 graphs of each waveform. Since whites, grays, and blacks are characterized
19984 by exactly equal amounts of red, green, and blue, neutral areas of the picture
19985 should display three waveforms of roughly equal width/height. If not, the
19986 correction is easy to perform by making level adjustments the three waveforms.
19987 @end table
19988 Default is @code{stack}.
19989
19990 @item components, c
19991 Set which color components to display. Default is 1, which means only luminance
19992 or red color component if input is in RGB colorspace. If is set for example to
19993 7 it will display all 3 (if) available color components.
19994
19995 @item envelope, e
19996 @table @samp
19997 @item none
19998 No envelope, this is default.
19999
20000 @item instant
20001 Instant envelope, minimum and maximum values presented in graph will be easily
20002 visible even with small @code{step} value.
20003
20004 @item peak
20005 Hold minimum and maximum values presented in graph across time. This way you
20006 can still spot out of range values without constantly looking at waveforms.
20007
20008 @item peak+instant
20009 Peak and instant envelope combined together.
20010 @end table
20011
20012 @item filter, f
20013 @table @samp
20014 @item lowpass
20015 No filtering, this is default.
20016
20017 @item flat
20018 Luma and chroma combined together.
20019
20020 @item aflat
20021 Similar as above, but shows difference between blue and red chroma.
20022
20023 @item xflat
20024 Similar as above, but use different colors.
20025
20026 @item yflat
20027 Similar as above, but again with different colors.
20028
20029 @item chroma
20030 Displays only chroma.
20031
20032 @item color
20033 Displays actual color value on waveform.
20034
20035 @item acolor
20036 Similar as above, but with luma showing frequency of chroma values.
20037 @end table
20038
20039 @item graticule, g
20040 Set which graticule to display.
20041
20042 @table @samp
20043 @item none
20044 Do not display graticule.
20045
20046 @item green
20047 Display green graticule showing legal broadcast ranges.
20048
20049 @item orange
20050 Display orange graticule showing legal broadcast ranges.
20051
20052 @item invert
20053 Display invert graticule showing legal broadcast ranges.
20054 @end table
20055
20056 @item opacity, o
20057 Set graticule opacity.
20058
20059 @item flags, fl
20060 Set graticule flags.
20061
20062 @table @samp
20063 @item numbers
20064 Draw numbers above lines. By default enabled.
20065
20066 @item dots
20067 Draw dots instead of lines.
20068 @end table
20069
20070 @item scale, s
20071 Set scale used for displaying graticule.
20072
20073 @table @samp
20074 @item digital
20075 @item millivolts
20076 @item ire
20077 @end table
20078 Default is digital.
20079
20080 @item bgopacity, b
20081 Set background opacity.
20082
20083 @item tint0, t0
20084 @item tint1, t1
20085 Set tint for output.
20086 Only used with lowpass filter and when display is not overlay and input
20087 pixel formats are not RGB.
20088 @end table
20089
20090 @section weave, doubleweave
20091
20092 The @code{weave} takes a field-based video input and join
20093 each two sequential fields into single frame, producing a new double
20094 height clip with half the frame rate and half the frame count.
20095
20096 The @code{doubleweave} works same as @code{weave} but without
20097 halving frame rate and frame count.
20098
20099 It accepts the following option:
20100
20101 @table @option
20102 @item first_field
20103 Set first field. Available values are:
20104
20105 @table @samp
20106 @item top, t
20107 Set the frame as top-field-first.
20108
20109 @item bottom, b
20110 Set the frame as bottom-field-first.
20111 @end table
20112 @end table
20113
20114 @subsection Examples
20115
20116 @itemize
20117 @item
20118 Interlace video using @ref{select} and @ref{separatefields} filter:
20119 @example
20120 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20121 @end example
20122 @end itemize
20123
20124 @section xbr
20125 Apply the xBR high-quality magnification filter which is designed for pixel
20126 art. It follows a set of edge-detection rules, see
20127 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20128
20129 It accepts the following option:
20130
20131 @table @option
20132 @item n
20133 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20134 @code{3xBR} and @code{4} for @code{4xBR}.
20135 Default is @code{3}.
20136 @end table
20137
20138 @section xfade
20139
20140 Apply cross fade from one input video stream to another input video stream.
20141 The cross fade is applied for specified duration.
20142
20143 The filter accepts the following options:
20144
20145 @table @option
20146 @item transition
20147 Set one of available transition effects:
20148
20149 @table @samp
20150 @item custom
20151 @item fade
20152 @item wipeleft
20153 @item wiperight
20154 @item wipeup
20155 @item wipedown
20156 @item slideleft
20157 @item slideright
20158 @item slideup
20159 @item slidedown
20160 @item circlecrop
20161 @item rectcrop
20162 @item distance
20163 @item fadeblack
20164 @item fadewhite
20165 @item radial
20166 @item smoothleft
20167 @item smoothright
20168 @item smoothup
20169 @item smoothdown
20170 @item circleopen
20171 @item circleclose
20172 @item vertopen
20173 @item vertclose
20174 @item horzopen
20175 @item horzclose
20176 @item dissolve
20177 @item pixelize
20178 @item diagtl
20179 @item diagtr
20180 @item diagbl
20181 @item diagbr
20182 @item hlslice
20183 @item hrslice
20184 @item vuslice
20185 @item vdslice
20186 @end table
20187 Default transition effect is fade.
20188
20189 @item duration
20190 Set cross fade duration in seconds.
20191 Default duration is 1 second.
20192
20193 @item offset
20194 Set cross fade start relative to first input stream in seconds.
20195 Default offset is 0.
20196
20197 @item expr
20198 Set expression for custom transition effect.
20199
20200 The expressions can use the following variables and functions:
20201
20202 @table @option
20203 @item X
20204 @item Y
20205 The coordinates of the current sample.
20206
20207 @item W
20208 @item H
20209 The width and height of the image.
20210
20211 @item P
20212 Progress of transition effect.
20213
20214 @item PLANE
20215 Currently processed plane.
20216
20217 @item A
20218 Return value of first input at current location and plane.
20219
20220 @item B
20221 Return value of second input at current location and plane.
20222
20223 @item a0(x, y)
20224 @item a1(x, y)
20225 @item a2(x, y)
20226 @item a3(x, y)
20227 Return the value of the pixel at location (@var{x},@var{y}) of the
20228 first/second/third/fourth component of first input.
20229
20230 @item b0(x, y)
20231 @item b1(x, y)
20232 @item b2(x, y)
20233 @item b3(x, y)
20234 Return the value of the pixel at location (@var{x},@var{y}) of the
20235 first/second/third/fourth component of second input.
20236 @end table
20237 @end table
20238
20239 @subsection Examples
20240
20241 @itemize
20242 @item
20243 Cross fade from one input video to another input video, with fade transition and duration of transition
20244 of 2 seconds starting at offset of 5 seconds:
20245 @example
20246 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
20247 @end example
20248 @end itemize
20249
20250 @section xmedian
20251 Pick median pixels from several input videos.
20252
20253 The filter accepts the following options:
20254
20255 @table @option
20256 @item inputs
20257 Set number of inputs.
20258 Default is 3. Allowed range is from 3 to 255.
20259 If number of inputs is even number, than result will be mean value between two median values.
20260
20261 @item planes
20262 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20263
20264 @item percentile
20265 Set median percentile. Default value is @code{0.5}.
20266 Default value of @code{0.5} will pick always median values, while @code{0} will pick
20267 minimum values, and @code{1} maximum values.
20268 @end table
20269
20270 @section xstack
20271 Stack video inputs into custom layout.
20272
20273 All streams must be of same pixel format.
20274
20275 The filter accepts the following options:
20276
20277 @table @option
20278 @item inputs
20279 Set number of input streams. Default is 2.
20280
20281 @item layout
20282 Specify layout of inputs.
20283 This option requires the desired layout configuration to be explicitly set by the user.
20284 This sets position of each video input in output. Each input
20285 is separated by '|'.
20286 The first number represents the column, and the second number represents the row.
20287 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20288 where X is video input from which to take width or height.
20289 Multiple values can be used when separated by '+'. In such
20290 case values are summed together.
20291
20292 Note that if inputs are of different sizes gaps may appear, as not all of
20293 the output video frame will be filled. Similarly, videos can overlap each
20294 other if their position doesn't leave enough space for the full frame of
20295 adjoining videos.
20296
20297 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20298 a layout must be set by the user.
20299
20300 @item shortest
20301 If set to 1, force the output to terminate when the shortest input
20302 terminates. Default value is 0.
20303
20304 @item fill
20305 If set to valid color, all unused pixels will be filled with that color.
20306 By default fill is set to none, so it is disabled.
20307 @end table
20308
20309 @subsection Examples
20310
20311 @itemize
20312 @item
20313 Display 4 inputs into 2x2 grid.
20314
20315 Layout:
20316 @example
20317 input1(0, 0)  | input3(w0, 0)
20318 input2(0, h0) | input4(w0, h0)
20319 @end example
20320
20321 @example
20322 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20323 @end example
20324
20325 Note that if inputs are of different sizes, gaps or overlaps may occur.
20326
20327 @item
20328 Display 4 inputs into 1x4 grid.
20329
20330 Layout:
20331 @example
20332 input1(0, 0)
20333 input2(0, h0)
20334 input3(0, h0+h1)
20335 input4(0, h0+h1+h2)
20336 @end example
20337
20338 @example
20339 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20340 @end example
20341
20342 Note that if inputs are of different widths, unused space will appear.
20343
20344 @item
20345 Display 9 inputs into 3x3 grid.
20346
20347 Layout:
20348 @example
20349 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20350 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20351 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20352 @end example
20353
20354 @example
20355 xstack=inputs=9:layout=0_0|0_h0|0_h0+h1|w0_0|w0_h0|w0_h0+h1|w0+w3_0|w0+w3_h0|w0+w3_h0+h1
20356 @end example
20357
20358 Note that if inputs are of different sizes, gaps or overlaps may occur.
20359
20360 @item
20361 Display 16 inputs into 4x4 grid.
20362
20363 Layout:
20364 @example
20365 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20366 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20367 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20368 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20369 @end example
20370
20371 @example
20372 xstack=inputs=16:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2|w0_0|w0_h0|w0_h0+h1|w0_h0+h1+h2|w0+w4_0|
20373 w0+w4_h0|w0+w4_h0+h1|w0+w4_h0+h1+h2|w0+w4+w8_0|w0+w4+w8_h0|w0+w4+w8_h0+h1|w0+w4+w8_h0+h1+h2
20374 @end example
20375
20376 Note that if inputs are of different sizes, gaps or overlaps may occur.
20377
20378 @end itemize
20379
20380 @anchor{yadif}
20381 @section yadif
20382
20383 Deinterlace the input video ("yadif" means "yet another deinterlacing
20384 filter").
20385
20386 It accepts the following parameters:
20387
20388
20389 @table @option
20390
20391 @item mode
20392 The interlacing mode to adopt. It accepts one of the following values:
20393
20394 @table @option
20395 @item 0, send_frame
20396 Output one frame for each frame.
20397 @item 1, send_field
20398 Output one frame for each field.
20399 @item 2, send_frame_nospatial
20400 Like @code{send_frame}, but it skips the spatial interlacing check.
20401 @item 3, send_field_nospatial
20402 Like @code{send_field}, but it skips the spatial interlacing check.
20403 @end table
20404
20405 The default value is @code{send_frame}.
20406
20407 @item parity
20408 The picture field parity assumed for the input interlaced video. It accepts one
20409 of the following values:
20410
20411 @table @option
20412 @item 0, tff
20413 Assume the top field is first.
20414 @item 1, bff
20415 Assume the bottom field is first.
20416 @item -1, auto
20417 Enable automatic detection of field parity.
20418 @end table
20419
20420 The default value is @code{auto}.
20421 If the interlacing is unknown or the decoder does not export this information,
20422 top field first will be assumed.
20423
20424 @item deint
20425 Specify which frames to deinterlace. Accepts one of the following
20426 values:
20427
20428 @table @option
20429 @item 0, all
20430 Deinterlace all frames.
20431 @item 1, interlaced
20432 Only deinterlace frames marked as interlaced.
20433 @end table
20434
20435 The default value is @code{all}.
20436 @end table
20437
20438 @section yadif_cuda
20439
20440 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
20441 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
20442 and/or nvenc.
20443
20444 It accepts the following parameters:
20445
20446
20447 @table @option
20448
20449 @item mode
20450 The interlacing mode to adopt. It accepts one of the following values:
20451
20452 @table @option
20453 @item 0, send_frame
20454 Output one frame for each frame.
20455 @item 1, send_field
20456 Output one frame for each field.
20457 @item 2, send_frame_nospatial
20458 Like @code{send_frame}, but it skips the spatial interlacing check.
20459 @item 3, send_field_nospatial
20460 Like @code{send_field}, but it skips the spatial interlacing check.
20461 @end table
20462
20463 The default value is @code{send_frame}.
20464
20465 @item parity
20466 The picture field parity assumed for the input interlaced video. It accepts one
20467 of the following values:
20468
20469 @table @option
20470 @item 0, tff
20471 Assume the top field is first.
20472 @item 1, bff
20473 Assume the bottom field is first.
20474 @item -1, auto
20475 Enable automatic detection of field parity.
20476 @end table
20477
20478 The default value is @code{auto}.
20479 If the interlacing is unknown or the decoder does not export this information,
20480 top field first will be assumed.
20481
20482 @item deint
20483 Specify which frames to deinterlace. Accepts one of the following
20484 values:
20485
20486 @table @option
20487 @item 0, all
20488 Deinterlace all frames.
20489 @item 1, interlaced
20490 Only deinterlace frames marked as interlaced.
20491 @end table
20492
20493 The default value is @code{all}.
20494 @end table
20495
20496 @section yaepblur
20497
20498 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
20499 The algorithm is described in
20500 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
20501
20502 It accepts the following parameters:
20503
20504 @table @option
20505 @item radius, r
20506 Set the window radius. Default value is 3.
20507
20508 @item planes, p
20509 Set which planes to filter. Default is only the first plane.
20510
20511 @item sigma, s
20512 Set blur strength. Default value is 128.
20513 @end table
20514
20515 @subsection Commands
20516 This filter supports same @ref{commands} as options.
20517
20518 @section zoompan
20519
20520 Apply Zoom & Pan effect.
20521
20522 This filter accepts the following options:
20523
20524 @table @option
20525 @item zoom, z
20526 Set the zoom expression. Range is 1-10. Default is 1.
20527
20528 @item x
20529 @item y
20530 Set the x and y expression. Default is 0.
20531
20532 @item d
20533 Set the duration expression in number of frames.
20534 This sets for how many number of frames effect will last for
20535 single input image.
20536
20537 @item s
20538 Set the output image size, default is 'hd720'.
20539
20540 @item fps
20541 Set the output frame rate, default is '25'.
20542 @end table
20543
20544 Each expression can contain the following constants:
20545
20546 @table @option
20547 @item in_w, iw
20548 Input width.
20549
20550 @item in_h, ih
20551 Input height.
20552
20553 @item out_w, ow
20554 Output width.
20555
20556 @item out_h, oh
20557 Output height.
20558
20559 @item in
20560 Input frame count.
20561
20562 @item on
20563 Output frame count.
20564
20565 @item x
20566 @item y
20567 Last calculated 'x' and 'y' position from 'x' and 'y' expression
20568 for current input frame.
20569
20570 @item px
20571 @item py
20572 'x' and 'y' of last output frame of previous input frame or 0 when there was
20573 not yet such frame (first input frame).
20574
20575 @item zoom
20576 Last calculated zoom from 'z' expression for current input frame.
20577
20578 @item pzoom
20579 Last calculated zoom of last output frame of previous input frame.
20580
20581 @item duration
20582 Number of output frames for current input frame. Calculated from 'd' expression
20583 for each input frame.
20584
20585 @item pduration
20586 number of output frames created for previous input frame
20587
20588 @item a
20589 Rational number: input width / input height
20590
20591 @item sar
20592 sample aspect ratio
20593
20594 @item dar
20595 display aspect ratio
20596
20597 @end table
20598
20599 @subsection Examples
20600
20601 @itemize
20602 @item
20603 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
20604 @example
20605 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
20606 @end example
20607
20608 @item
20609 Zoom-in up to 1.5 and pan always at center of picture:
20610 @example
20611 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20612 @end example
20613
20614 @item
20615 Same as above but without pausing:
20616 @example
20617 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20618 @end example
20619 @end itemize
20620
20621 @anchor{zscale}
20622 @section zscale
20623 Scale (resize) the input video, using the z.lib library:
20624 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
20625 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
20626
20627 The zscale filter forces the output display aspect ratio to be the same
20628 as the input, by changing the output sample aspect ratio.
20629
20630 If the input image format is different from the format requested by
20631 the next filter, the zscale filter will convert the input to the
20632 requested format.
20633
20634 @subsection Options
20635 The filter accepts the following options.
20636
20637 @table @option
20638 @item width, w
20639 @item height, h
20640 Set the output video dimension expression. Default value is the input
20641 dimension.
20642
20643 If the @var{width} or @var{w} value is 0, the input width is used for
20644 the output. If the @var{height} or @var{h} value is 0, the input height
20645 is used for the output.
20646
20647 If one and only one of the values is -n with n >= 1, the zscale filter
20648 will use a value that maintains the aspect ratio of the input image,
20649 calculated from the other specified dimension. After that it will,
20650 however, make sure that the calculated dimension is divisible by n and
20651 adjust the value if necessary.
20652
20653 If both values are -n with n >= 1, the behavior will be identical to
20654 both values being set to 0 as previously detailed.
20655
20656 See below for the list of accepted constants for use in the dimension
20657 expression.
20658
20659 @item size, s
20660 Set the video size. For the syntax of this option, check the
20661 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20662
20663 @item dither, d
20664 Set the dither type.
20665
20666 Possible values are:
20667 @table @var
20668 @item none
20669 @item ordered
20670 @item random
20671 @item error_diffusion
20672 @end table
20673
20674 Default is none.
20675
20676 @item filter, f
20677 Set the resize filter type.
20678
20679 Possible values are:
20680 @table @var
20681 @item point
20682 @item bilinear
20683 @item bicubic
20684 @item spline16
20685 @item spline36
20686 @item lanczos
20687 @end table
20688
20689 Default is bilinear.
20690
20691 @item range, r
20692 Set the color range.
20693
20694 Possible values are:
20695 @table @var
20696 @item input
20697 @item limited
20698 @item full
20699 @end table
20700
20701 Default is same as input.
20702
20703 @item primaries, p
20704 Set the color primaries.
20705
20706 Possible values are:
20707 @table @var
20708 @item input
20709 @item 709
20710 @item unspecified
20711 @item 170m
20712 @item 240m
20713 @item 2020
20714 @end table
20715
20716 Default is same as input.
20717
20718 @item transfer, t
20719 Set the transfer characteristics.
20720
20721 Possible values are:
20722 @table @var
20723 @item input
20724 @item 709
20725 @item unspecified
20726 @item 601
20727 @item linear
20728 @item 2020_10
20729 @item 2020_12
20730 @item smpte2084
20731 @item iec61966-2-1
20732 @item arib-std-b67
20733 @end table
20734
20735 Default is same as input.
20736
20737 @item matrix, m
20738 Set the colorspace matrix.
20739
20740 Possible value are:
20741 @table @var
20742 @item input
20743 @item 709
20744 @item unspecified
20745 @item 470bg
20746 @item 170m
20747 @item 2020_ncl
20748 @item 2020_cl
20749 @end table
20750
20751 Default is same as input.
20752
20753 @item rangein, rin
20754 Set the input color range.
20755
20756 Possible values are:
20757 @table @var
20758 @item input
20759 @item limited
20760 @item full
20761 @end table
20762
20763 Default is same as input.
20764
20765 @item primariesin, pin
20766 Set the input color primaries.
20767
20768 Possible values are:
20769 @table @var
20770 @item input
20771 @item 709
20772 @item unspecified
20773 @item 170m
20774 @item 240m
20775 @item 2020
20776 @end table
20777
20778 Default is same as input.
20779
20780 @item transferin, tin
20781 Set the input transfer characteristics.
20782
20783 Possible values are:
20784 @table @var
20785 @item input
20786 @item 709
20787 @item unspecified
20788 @item 601
20789 @item linear
20790 @item 2020_10
20791 @item 2020_12
20792 @end table
20793
20794 Default is same as input.
20795
20796 @item matrixin, min
20797 Set the input colorspace matrix.
20798
20799 Possible value are:
20800 @table @var
20801 @item input
20802 @item 709
20803 @item unspecified
20804 @item 470bg
20805 @item 170m
20806 @item 2020_ncl
20807 @item 2020_cl
20808 @end table
20809
20810 @item chromal, c
20811 Set the output chroma location.
20812
20813 Possible values are:
20814 @table @var
20815 @item input
20816 @item left
20817 @item center
20818 @item topleft
20819 @item top
20820 @item bottomleft
20821 @item bottom
20822 @end table
20823
20824 @item chromalin, cin
20825 Set the input chroma location.
20826
20827 Possible values are:
20828 @table @var
20829 @item input
20830 @item left
20831 @item center
20832 @item topleft
20833 @item top
20834 @item bottomleft
20835 @item bottom
20836 @end table
20837
20838 @item npl
20839 Set the nominal peak luminance.
20840 @end table
20841
20842 The values of the @option{w} and @option{h} options are expressions
20843 containing the following constants:
20844
20845 @table @var
20846 @item in_w
20847 @item in_h
20848 The input width and height
20849
20850 @item iw
20851 @item ih
20852 These are the same as @var{in_w} and @var{in_h}.
20853
20854 @item out_w
20855 @item out_h
20856 The output (scaled) width and height
20857
20858 @item ow
20859 @item oh
20860 These are the same as @var{out_w} and @var{out_h}
20861
20862 @item a
20863 The same as @var{iw} / @var{ih}
20864
20865 @item sar
20866 input sample aspect ratio
20867
20868 @item dar
20869 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
20870
20871 @item hsub
20872 @item vsub
20873 horizontal and vertical input chroma subsample values. For example for the
20874 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20875
20876 @item ohsub
20877 @item ovsub
20878 horizontal and vertical output chroma subsample values. For example for the
20879 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20880 @end table
20881
20882 @subsection Commands
20883
20884 This filter supports the following commands:
20885 @table @option
20886 @item width, w
20887 @item height, h
20888 Set the output video dimension expression.
20889 The command accepts the same syntax of the corresponding option.
20890
20891 If the specified expression is not valid, it is kept at its current
20892 value.
20893 @end table
20894
20895 @c man end VIDEO FILTERS
20896
20897 @chapter OpenCL Video Filters
20898 @c man begin OPENCL VIDEO FILTERS
20899
20900 Below is a description of the currently available OpenCL video filters.
20901
20902 To enable compilation of these filters you need to configure FFmpeg with
20903 @code{--enable-opencl}.
20904
20905 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
20906 @table @option
20907
20908 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
20909 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
20910 given device parameters.
20911
20912 @item -filter_hw_device @var{name}
20913 Pass the hardware device called @var{name} to all filters in any filter graph.
20914
20915 @end table
20916
20917 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
20918
20919 @itemize
20920 @item
20921 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
20922 @example
20923 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
20924 @end example
20925 @end itemize
20926
20927 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.
20928
20929 @section avgblur_opencl
20930
20931 Apply average blur filter.
20932
20933 The filter accepts the following options:
20934
20935 @table @option
20936 @item sizeX
20937 Set horizontal radius size.
20938 Range is @code{[1, 1024]} and default value is @code{1}.
20939
20940 @item planes
20941 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20942
20943 @item sizeY
20944 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
20945 @end table
20946
20947 @subsection Example
20948
20949 @itemize
20950 @item
20951 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.
20952 @example
20953 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
20954 @end example
20955 @end itemize
20956
20957 @section boxblur_opencl
20958
20959 Apply a boxblur algorithm to the input video.
20960
20961 It accepts the following parameters:
20962
20963 @table @option
20964
20965 @item luma_radius, lr
20966 @item luma_power, lp
20967 @item chroma_radius, cr
20968 @item chroma_power, cp
20969 @item alpha_radius, ar
20970 @item alpha_power, ap
20971
20972 @end table
20973
20974 A description of the accepted options follows.
20975
20976 @table @option
20977 @item luma_radius, lr
20978 @item chroma_radius, cr
20979 @item alpha_radius, ar
20980 Set an expression for the box radius in pixels used for blurring the
20981 corresponding input plane.
20982
20983 The radius value must be a non-negative number, and must not be
20984 greater than the value of the expression @code{min(w,h)/2} for the
20985 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
20986 planes.
20987
20988 Default value for @option{luma_radius} is "2". If not specified,
20989 @option{chroma_radius} and @option{alpha_radius} default to the
20990 corresponding value set for @option{luma_radius}.
20991
20992 The expressions can contain the following constants:
20993 @table @option
20994 @item w
20995 @item h
20996 The input width and height in pixels.
20997
20998 @item cw
20999 @item ch
21000 The input chroma image width and height in pixels.
21001
21002 @item hsub
21003 @item vsub
21004 The horizontal and vertical chroma subsample values. For example, for the
21005 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
21006 @end table
21007
21008 @item luma_power, lp
21009 @item chroma_power, cp
21010 @item alpha_power, ap
21011 Specify how many times the boxblur filter is applied to the
21012 corresponding plane.
21013
21014 Default value for @option{luma_power} is 2. If not specified,
21015 @option{chroma_power} and @option{alpha_power} default to the
21016 corresponding value set for @option{luma_power}.
21017
21018 A value of 0 will disable the effect.
21019 @end table
21020
21021 @subsection Examples
21022
21023 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.
21024
21025 @itemize
21026 @item
21027 Apply a boxblur filter with the luma, chroma, and alpha radius
21028 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.
21029 @example
21030 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
21031 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
21032 @end example
21033
21034 @item
21035 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.
21036
21037 For the luma plane, a 2x2 box radius will be run once.
21038
21039 For the chroma plane, a 4x4 box radius will be run 5 times.
21040
21041 For the alpha plane, a 3x3 box radius will be run 7 times.
21042 @example
21043 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
21044 @end example
21045 @end itemize
21046
21047 @section colorkey_opencl
21048 RGB colorspace color keying.
21049
21050 The filter accepts the following options:
21051
21052 @table @option
21053 @item color
21054 The color which will be replaced with transparency.
21055
21056 @item similarity
21057 Similarity percentage with the key color.
21058
21059 0.01 matches only the exact key color, while 1.0 matches everything.
21060
21061 @item blend
21062 Blend percentage.
21063
21064 0.0 makes pixels either fully transparent, or not transparent at all.
21065
21066 Higher values result in semi-transparent pixels, with a higher transparency
21067 the more similar the pixels color is to the key color.
21068 @end table
21069
21070 @subsection Examples
21071
21072 @itemize
21073 @item
21074 Make every semi-green pixel in the input transparent with some slight blending:
21075 @example
21076 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
21077 @end example
21078 @end itemize
21079
21080 @section convolution_opencl
21081
21082 Apply convolution of 3x3, 5x5, 7x7 matrix.
21083
21084 The filter accepts the following options:
21085
21086 @table @option
21087 @item 0m
21088 @item 1m
21089 @item 2m
21090 @item 3m
21091 Set matrix for each plane.
21092 Matrix is sequence of 9, 25 or 49 signed numbers.
21093 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
21094
21095 @item 0rdiv
21096 @item 1rdiv
21097 @item 2rdiv
21098 @item 3rdiv
21099 Set multiplier for calculated value for each plane.
21100 If unset or 0, it will be sum of all matrix elements.
21101 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
21102
21103 @item 0bias
21104 @item 1bias
21105 @item 2bias
21106 @item 3bias
21107 Set bias for each plane. This value is added to the result of the multiplication.
21108 Useful for making the overall image brighter or darker.
21109 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21110
21111 @end table
21112
21113 @subsection Examples
21114
21115 @itemize
21116 @item
21117 Apply sharpen:
21118 @example
21119 -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
21120 @end example
21121
21122 @item
21123 Apply blur:
21124 @example
21125 -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
21126 @end example
21127
21128 @item
21129 Apply edge enhance:
21130 @example
21131 -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
21132 @end example
21133
21134 @item
21135 Apply edge detect:
21136 @example
21137 -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
21138 @end example
21139
21140 @item
21141 Apply laplacian edge detector which includes diagonals:
21142 @example
21143 -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
21144 @end example
21145
21146 @item
21147 Apply emboss:
21148 @example
21149 -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
21150 @end example
21151 @end itemize
21152
21153 @section erosion_opencl
21154
21155 Apply erosion effect to the video.
21156
21157 This filter replaces the pixel by the local(3x3) minimum.
21158
21159 It accepts the following options:
21160
21161 @table @option
21162 @item threshold0
21163 @item threshold1
21164 @item threshold2
21165 @item threshold3
21166 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21167 If @code{0}, plane will remain unchanged.
21168
21169 @item coordinates
21170 Flag which specifies the pixel to refer to.
21171 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21172
21173 Flags to local 3x3 coordinates region centered on @code{x}:
21174
21175     1 2 3
21176
21177     4 x 5
21178
21179     6 7 8
21180 @end table
21181
21182 @subsection Example
21183
21184 @itemize
21185 @item
21186 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.
21187 @example
21188 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21189 @end example
21190 @end itemize
21191
21192 @section deshake_opencl
21193 Feature-point based video stabilization filter.
21194
21195 The filter accepts the following options:
21196
21197 @table @option
21198 @item tripod
21199 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21200
21201 @item debug
21202 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21203
21204 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21205
21206 Viewing point matches in the output video is only supported for RGB input.
21207
21208 Defaults to @code{0}.
21209
21210 @item adaptive_crop
21211 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21212
21213 Defaults to @code{1}.
21214
21215 @item refine_features
21216 Whether or not feature points should be refined at a sub-pixel level.
21217
21218 This can be turned off for a slight performance gain at the cost of precision.
21219
21220 Defaults to @code{1}.
21221
21222 @item smooth_strength
21223 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21224
21225 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21226
21227 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21228
21229 Defaults to @code{0.0}.
21230
21231 @item smooth_window_multiplier
21232 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21233
21234 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21235
21236 Acceptable values range from @code{0.1} to @code{10.0}.
21237
21238 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21239 potentially improving smoothness, but also increase latency and memory usage.
21240
21241 Defaults to @code{2.0}.
21242
21243 @end table
21244
21245 @subsection Examples
21246
21247 @itemize
21248 @item
21249 Stabilize a video with a fixed, medium smoothing strength:
21250 @example
21251 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21252 @end example
21253
21254 @item
21255 Stabilize a video with debugging (both in console and in rendered video):
21256 @example
21257 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21258 @end example
21259 @end itemize
21260
21261 @section dilation_opencl
21262
21263 Apply dilation effect to the video.
21264
21265 This filter replaces the pixel by the local(3x3) maximum.
21266
21267 It accepts the following options:
21268
21269 @table @option
21270 @item threshold0
21271 @item threshold1
21272 @item threshold2
21273 @item threshold3
21274 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21275 If @code{0}, plane will remain unchanged.
21276
21277 @item coordinates
21278 Flag which specifies the pixel to refer to.
21279 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21280
21281 Flags to local 3x3 coordinates region centered on @code{x}:
21282
21283     1 2 3
21284
21285     4 x 5
21286
21287     6 7 8
21288 @end table
21289
21290 @subsection Example
21291
21292 @itemize
21293 @item
21294 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.
21295 @example
21296 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21297 @end example
21298 @end itemize
21299
21300 @section nlmeans_opencl
21301
21302 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21303
21304 @section overlay_opencl
21305
21306 Overlay one video on top of another.
21307
21308 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21309 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21310
21311 The filter accepts the following options:
21312
21313 @table @option
21314
21315 @item x
21316 Set the x coordinate of the overlaid video on the main video.
21317 Default value is @code{0}.
21318
21319 @item y
21320 Set the y coordinate of the overlaid video on the main video.
21321 Default value is @code{0}.
21322
21323 @end table
21324
21325 @subsection Examples
21326
21327 @itemize
21328 @item
21329 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21330 @example
21331 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21332 @end example
21333 @item
21334 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21335 @example
21336 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21337 @end example
21338
21339 @end itemize
21340
21341 @section pad_opencl
21342
21343 Add paddings to the input image, and place the original input at the
21344 provided @var{x}, @var{y} coordinates.
21345
21346 It accepts the following options:
21347
21348 @table @option
21349 @item width, w
21350 @item height, h
21351 Specify an expression for the size of the output image with the
21352 paddings added. If the value for @var{width} or @var{height} is 0, the
21353 corresponding input size is used for the output.
21354
21355 The @var{width} expression can reference the value set by the
21356 @var{height} expression, and vice versa.
21357
21358 The default value of @var{width} and @var{height} is 0.
21359
21360 @item x
21361 @item y
21362 Specify the offsets to place the input image at within the padded area,
21363 with respect to the top/left border of the output image.
21364
21365 The @var{x} expression can reference the value set by the @var{y}
21366 expression, and vice versa.
21367
21368 The default value of @var{x} and @var{y} is 0.
21369
21370 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
21371 so the input image is centered on the padded area.
21372
21373 @item color
21374 Specify the color of the padded area. For the syntax of this option,
21375 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
21376 manual,ffmpeg-utils}.
21377
21378 @item aspect
21379 Pad to an aspect instead to a resolution.
21380 @end table
21381
21382 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
21383 options are expressions containing the following constants:
21384
21385 @table @option
21386 @item in_w
21387 @item in_h
21388 The input video width and height.
21389
21390 @item iw
21391 @item ih
21392 These are the same as @var{in_w} and @var{in_h}.
21393
21394 @item out_w
21395 @item out_h
21396 The output width and height (the size of the padded area), as
21397 specified by the @var{width} and @var{height} expressions.
21398
21399 @item ow
21400 @item oh
21401 These are the same as @var{out_w} and @var{out_h}.
21402
21403 @item x
21404 @item y
21405 The x and y offsets as specified by the @var{x} and @var{y}
21406 expressions, or NAN if not yet specified.
21407
21408 @item a
21409 same as @var{iw} / @var{ih}
21410
21411 @item sar
21412 input sample aspect ratio
21413
21414 @item dar
21415 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
21416 @end table
21417
21418 @section prewitt_opencl
21419
21420 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
21421
21422 The filter accepts the following option:
21423
21424 @table @option
21425 @item planes
21426 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21427
21428 @item scale
21429 Set value which will be multiplied with filtered result.
21430 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21431
21432 @item delta
21433 Set value which will be added to filtered result.
21434 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21435 @end table
21436
21437 @subsection Example
21438
21439 @itemize
21440 @item
21441 Apply the Prewitt operator with scale set to 2 and delta set to 10.
21442 @example
21443 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
21444 @end example
21445 @end itemize
21446
21447 @anchor{program_opencl}
21448 @section program_opencl
21449
21450 Filter video using an OpenCL program.
21451
21452 @table @option
21453
21454 @item source
21455 OpenCL program source file.
21456
21457 @item kernel
21458 Kernel name in program.
21459
21460 @item inputs
21461 Number of inputs to the filter.  Defaults to 1.
21462
21463 @item size, s
21464 Size of output frames.  Defaults to the same as the first input.
21465
21466 @end table
21467
21468 The @code{program_opencl} filter also supports the @ref{framesync} options.
21469
21470 The program source file must contain a kernel function with the given name,
21471 which will be run once for each plane of the output.  Each run on a plane
21472 gets enqueued as a separate 2D global NDRange with one work-item for each
21473 pixel to be generated.  The global ID offset for each work-item is therefore
21474 the coordinates of a pixel in the destination image.
21475
21476 The kernel function needs to take the following arguments:
21477 @itemize
21478 @item
21479 Destination image, @var{__write_only image2d_t}.
21480
21481 This image will become the output; the kernel should write all of it.
21482 @item
21483 Frame index, @var{unsigned int}.
21484
21485 This is a counter starting from zero and increasing by one for each frame.
21486 @item
21487 Source images, @var{__read_only image2d_t}.
21488
21489 These are the most recent images on each input.  The kernel may read from
21490 them to generate the output, but they can't be written to.
21491 @end itemize
21492
21493 Example programs:
21494
21495 @itemize
21496 @item
21497 Copy the input to the output (output must be the same size as the input).
21498 @verbatim
21499 __kernel void copy(__write_only image2d_t destination,
21500                    unsigned int index,
21501                    __read_only  image2d_t source)
21502 {
21503     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
21504
21505     int2 location = (int2)(get_global_id(0), get_global_id(1));
21506
21507     float4 value = read_imagef(source, sampler, location);
21508
21509     write_imagef(destination, location, value);
21510 }
21511 @end verbatim
21512
21513 @item
21514 Apply a simple transformation, rotating the input by an amount increasing
21515 with the index counter.  Pixel values are linearly interpolated by the
21516 sampler, and the output need not have the same dimensions as the input.
21517 @verbatim
21518 __kernel void rotate_image(__write_only image2d_t dst,
21519                            unsigned int index,
21520                            __read_only  image2d_t src)
21521 {
21522     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21523                                CLK_FILTER_LINEAR);
21524
21525     float angle = (float)index / 100.0f;
21526
21527     float2 dst_dim = convert_float2(get_image_dim(dst));
21528     float2 src_dim = convert_float2(get_image_dim(src));
21529
21530     float2 dst_cen = dst_dim / 2.0f;
21531     float2 src_cen = src_dim / 2.0f;
21532
21533     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
21534
21535     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
21536     float2 src_pos = {
21537         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
21538         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
21539     };
21540     src_pos = src_pos * src_dim / dst_dim;
21541
21542     float2 src_loc = src_pos + src_cen;
21543
21544     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
21545         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
21546         write_imagef(dst, dst_loc, 0.5f);
21547     else
21548         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
21549 }
21550 @end verbatim
21551
21552 @item
21553 Blend two inputs together, with the amount of each input used varying
21554 with the index counter.
21555 @verbatim
21556 __kernel void blend_images(__write_only image2d_t dst,
21557                            unsigned int index,
21558                            __read_only  image2d_t src1,
21559                            __read_only  image2d_t src2)
21560 {
21561     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21562                                CLK_FILTER_LINEAR);
21563
21564     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
21565
21566     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
21567     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
21568     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
21569
21570     float4 val1 = read_imagef(src1, sampler, src1_loc);
21571     float4 val2 = read_imagef(src2, sampler, src2_loc);
21572
21573     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
21574 }
21575 @end verbatim
21576
21577 @end itemize
21578
21579 @section roberts_opencl
21580 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
21581
21582 The filter accepts the following option:
21583
21584 @table @option
21585 @item planes
21586 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21587
21588 @item scale
21589 Set value which will be multiplied with filtered result.
21590 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21591
21592 @item delta
21593 Set value which will be added to filtered result.
21594 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21595 @end table
21596
21597 @subsection Example
21598
21599 @itemize
21600 @item
21601 Apply the Roberts cross operator with scale set to 2 and delta set to 10
21602 @example
21603 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
21604 @end example
21605 @end itemize
21606
21607 @section sobel_opencl
21608
21609 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
21610
21611 The filter accepts the following option:
21612
21613 @table @option
21614 @item planes
21615 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21616
21617 @item scale
21618 Set value which will be multiplied with filtered result.
21619 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21620
21621 @item delta
21622 Set value which will be added to filtered result.
21623 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21624 @end table
21625
21626 @subsection Example
21627
21628 @itemize
21629 @item
21630 Apply sobel operator with scale set to 2 and delta set to 10
21631 @example
21632 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
21633 @end example
21634 @end itemize
21635
21636 @section tonemap_opencl
21637
21638 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
21639
21640 It accepts the following parameters:
21641
21642 @table @option
21643 @item tonemap
21644 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
21645
21646 @item param
21647 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
21648
21649 @item desat
21650 Apply desaturation for highlights that exceed this level of brightness. The
21651 higher the parameter, the more color information will be preserved. This
21652 setting helps prevent unnaturally blown-out colors for super-highlights, by
21653 (smoothly) turning into white instead. This makes images feel more natural,
21654 at the cost of reducing information about out-of-range colors.
21655
21656 The default value is 0.5, and the algorithm here is a little different from
21657 the cpu version tonemap currently. A setting of 0.0 disables this option.
21658
21659 @item threshold
21660 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
21661 is used to detect whether the scene has changed or not. If the distance between
21662 the current frame average brightness and the current running average exceeds
21663 a threshold value, we would re-calculate scene average and peak brightness.
21664 The default value is 0.2.
21665
21666 @item format
21667 Specify the output pixel format.
21668
21669 Currently supported formats are:
21670 @table @var
21671 @item p010
21672 @item nv12
21673 @end table
21674
21675 @item range, r
21676 Set the output color range.
21677
21678 Possible values are:
21679 @table @var
21680 @item tv/mpeg
21681 @item pc/jpeg
21682 @end table
21683
21684 Default is same as input.
21685
21686 @item primaries, p
21687 Set the output color primaries.
21688
21689 Possible values are:
21690 @table @var
21691 @item bt709
21692 @item bt2020
21693 @end table
21694
21695 Default is same as input.
21696
21697 @item transfer, t
21698 Set the output transfer characteristics.
21699
21700 Possible values are:
21701 @table @var
21702 @item bt709
21703 @item bt2020
21704 @end table
21705
21706 Default is bt709.
21707
21708 @item matrix, m
21709 Set the output colorspace matrix.
21710
21711 Possible value are:
21712 @table @var
21713 @item bt709
21714 @item bt2020
21715 @end table
21716
21717 Default is same as input.
21718
21719 @end table
21720
21721 @subsection Example
21722
21723 @itemize
21724 @item
21725 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
21726 @example
21727 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
21728 @end example
21729 @end itemize
21730
21731 @section unsharp_opencl
21732
21733 Sharpen or blur the input video.
21734
21735 It accepts the following parameters:
21736
21737 @table @option
21738 @item luma_msize_x, lx
21739 Set the luma matrix horizontal size.
21740 Range is @code{[1, 23]} and default value is @code{5}.
21741
21742 @item luma_msize_y, ly
21743 Set the luma matrix vertical size.
21744 Range is @code{[1, 23]} and default value is @code{5}.
21745
21746 @item luma_amount, la
21747 Set the luma effect strength.
21748 Range is @code{[-10, 10]} and default value is @code{1.0}.
21749
21750 Negative values will blur the input video, while positive values will
21751 sharpen it, a value of zero will disable the effect.
21752
21753 @item chroma_msize_x, cx
21754 Set the chroma matrix horizontal size.
21755 Range is @code{[1, 23]} and default value is @code{5}.
21756
21757 @item chroma_msize_y, cy
21758 Set the chroma matrix vertical size.
21759 Range is @code{[1, 23]} and default value is @code{5}.
21760
21761 @item chroma_amount, ca
21762 Set the chroma effect strength.
21763 Range is @code{[-10, 10]} and default value is @code{0.0}.
21764
21765 Negative values will blur the input video, while positive values will
21766 sharpen it, a value of zero will disable the effect.
21767
21768 @end table
21769
21770 All parameters are optional and default to the equivalent of the
21771 string '5:5:1.0:5:5:0.0'.
21772
21773 @subsection Examples
21774
21775 @itemize
21776 @item
21777 Apply strong luma sharpen effect:
21778 @example
21779 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
21780 @end example
21781
21782 @item
21783 Apply a strong blur of both luma and chroma parameters:
21784 @example
21785 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
21786 @end example
21787 @end itemize
21788
21789 @section xfade_opencl
21790
21791 Cross fade two videos with custom transition effect by using OpenCL.
21792
21793 It accepts the following options:
21794
21795 @table @option
21796 @item transition
21797 Set one of possible transition effects.
21798
21799 @table @option
21800 @item custom
21801 Select custom transition effect, the actual transition description
21802 will be picked from source and kernel options.
21803
21804 @item fade
21805 @item wipeleft
21806 @item wiperight
21807 @item wipeup
21808 @item wipedown
21809 @item slideleft
21810 @item slideright
21811 @item slideup
21812 @item slidedown
21813
21814 Default transition is fade.
21815 @end table
21816
21817 @item source
21818 OpenCL program source file for custom transition.
21819
21820 @item kernel
21821 Set name of kernel to use for custom transition from program source file.
21822
21823 @item duration
21824 Set duration of video transition.
21825
21826 @item offset
21827 Set time of start of transition relative to first video.
21828 @end table
21829
21830 The program source file must contain a kernel function with the given name,
21831 which will be run once for each plane of the output.  Each run on a plane
21832 gets enqueued as a separate 2D global NDRange with one work-item for each
21833 pixel to be generated.  The global ID offset for each work-item is therefore
21834 the coordinates of a pixel in the destination image.
21835
21836 The kernel function needs to take the following arguments:
21837 @itemize
21838 @item
21839 Destination image, @var{__write_only image2d_t}.
21840
21841 This image will become the output; the kernel should write all of it.
21842
21843 @item
21844 First Source image, @var{__read_only image2d_t}.
21845 Second Source image, @var{__read_only image2d_t}.
21846
21847 These are the most recent images on each input.  The kernel may read from
21848 them to generate the output, but they can't be written to.
21849
21850 @item
21851 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
21852 @end itemize
21853
21854 Example programs:
21855
21856 @itemize
21857 @item
21858 Apply dots curtain transition effect:
21859 @verbatim
21860 __kernel void blend_images(__write_only image2d_t dst,
21861                            __read_only  image2d_t src1,
21862                            __read_only  image2d_t src2,
21863                            float progress)
21864 {
21865     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21866                                CLK_FILTER_LINEAR);
21867     int2  p = (int2)(get_global_id(0), get_global_id(1));
21868     float2 rp = (float2)(get_global_id(0), get_global_id(1));
21869     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
21870     rp = rp / dim;
21871
21872     float2 dots = (float2)(20.0, 20.0);
21873     float2 center = (float2)(0,0);
21874     float2 unused;
21875
21876     float4 val1 = read_imagef(src1, sampler, p);
21877     float4 val2 = read_imagef(src2, sampler, p);
21878     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
21879
21880     write_imagef(dst, p, next ? val1 : val2);
21881 }
21882 @end verbatim
21883
21884 @end itemize
21885
21886 @c man end OPENCL VIDEO FILTERS
21887
21888 @chapter VAAPI Video Filters
21889 @c man begin VAAPI VIDEO FILTERS
21890
21891 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
21892
21893 To enable compilation of these filters you need to configure FFmpeg with
21894 @code{--enable-vaapi}.
21895
21896 To use vaapi filters, you need to setup the vaapi device correctly. For more information, please read @url{https://trac.ffmpeg.org/wiki/Hardware/VAAPI}
21897
21898 @section tonemap_vaapi
21899
21900 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
21901 It maps the dynamic range of HDR10 content to the SDR content.
21902 It currently only accepts HDR10 as input.
21903
21904 It accepts the following parameters:
21905
21906 @table @option
21907 @item format
21908 Specify the output pixel format.
21909
21910 Currently supported formats are:
21911 @table @var
21912 @item p010
21913 @item nv12
21914 @end table
21915
21916 Default is nv12.
21917
21918 @item primaries, p
21919 Set the output color primaries.
21920
21921 Default is same as input.
21922
21923 @item transfer, t
21924 Set the output transfer characteristics.
21925
21926 Default is bt709.
21927
21928 @item matrix, m
21929 Set the output colorspace matrix.
21930
21931 Default is same as input.
21932
21933 @end table
21934
21935 @subsection Example
21936
21937 @itemize
21938 @item
21939 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
21940 @example
21941 tonemap_vaapi=format=p010:t=bt2020-10
21942 @end example
21943 @end itemize
21944
21945 @c man end VAAPI VIDEO FILTERS
21946
21947 @chapter Video Sources
21948 @c man begin VIDEO SOURCES
21949
21950 Below is a description of the currently available video sources.
21951
21952 @section buffer
21953
21954 Buffer video frames, and make them available to the filter chain.
21955
21956 This source is mainly intended for a programmatic use, in particular
21957 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
21958
21959 It accepts the following parameters:
21960
21961 @table @option
21962
21963 @item video_size
21964 Specify the size (width and height) of the buffered video frames. For the
21965 syntax of this option, check the
21966 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21967
21968 @item width
21969 The input video width.
21970
21971 @item height
21972 The input video height.
21973
21974 @item pix_fmt
21975 A string representing the pixel format of the buffered video frames.
21976 It may be a number corresponding to a pixel format, or a pixel format
21977 name.
21978
21979 @item time_base
21980 Specify the timebase assumed by the timestamps of the buffered frames.
21981
21982 @item frame_rate
21983 Specify the frame rate expected for the video stream.
21984
21985 @item pixel_aspect, sar
21986 The sample (pixel) aspect ratio of the input video.
21987
21988 @item sws_param
21989 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
21990 to the filtergraph description to specify swscale flags for automatically
21991 inserted scalers. See @ref{Filtergraph syntax}.
21992
21993 @item hw_frames_ctx
21994 When using a hardware pixel format, this should be a reference to an
21995 AVHWFramesContext describing input frames.
21996 @end table
21997
21998 For example:
21999 @example
22000 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
22001 @end example
22002
22003 will instruct the source to accept video frames with size 320x240 and
22004 with format "yuv410p", assuming 1/24 as the timestamps timebase and
22005 square pixels (1:1 sample aspect ratio).
22006 Since the pixel format with name "yuv410p" corresponds to the number 6
22007 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
22008 this example corresponds to:
22009 @example
22010 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
22011 @end example
22012
22013 Alternatively, the options can be specified as a flat string, but this
22014 syntax is deprecated:
22015
22016 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
22017
22018 @section cellauto
22019
22020 Create a pattern generated by an elementary cellular automaton.
22021
22022 The initial state of the cellular automaton can be defined through the
22023 @option{filename} and @option{pattern} options. If such options are
22024 not specified an initial state is created randomly.
22025
22026 At each new frame a new row in the video is filled with the result of
22027 the cellular automaton next generation. The behavior when the whole
22028 frame is filled is defined by the @option{scroll} option.
22029
22030 This source accepts the following options:
22031
22032 @table @option
22033 @item filename, f
22034 Read the initial cellular automaton state, i.e. the starting row, from
22035 the specified file.
22036 In the file, each non-whitespace character is considered an alive
22037 cell, a newline will terminate the row, and further characters in the
22038 file will be ignored.
22039
22040 @item pattern, p
22041 Read the initial cellular automaton state, i.e. the starting row, from
22042 the specified string.
22043
22044 Each non-whitespace character in the string is considered an alive
22045 cell, a newline will terminate the row, and further characters in the
22046 string will be ignored.
22047
22048 @item rate, r
22049 Set the video rate, that is the number of frames generated per second.
22050 Default is 25.
22051
22052 @item random_fill_ratio, ratio
22053 Set the random fill ratio for the initial cellular automaton row. It
22054 is a floating point number value ranging from 0 to 1, defaults to
22055 1/PHI.
22056
22057 This option is ignored when a file or a pattern is specified.
22058
22059 @item random_seed, seed
22060 Set the seed for filling randomly the initial row, must be an integer
22061 included between 0 and UINT32_MAX. If not specified, or if explicitly
22062 set to -1, the filter will try to use a good random seed on a best
22063 effort basis.
22064
22065 @item rule
22066 Set the cellular automaton rule, it is a number ranging from 0 to 255.
22067 Default value is 110.
22068
22069 @item size, s
22070 Set the size of the output video. For the syntax of this option, check the
22071 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22072
22073 If @option{filename} or @option{pattern} is specified, the size is set
22074 by default to the width of the specified initial state row, and the
22075 height is set to @var{width} * PHI.
22076
22077 If @option{size} is set, it must contain the width of the specified
22078 pattern string, and the specified pattern will be centered in the
22079 larger row.
22080
22081 If a filename or a pattern string is not specified, the size value
22082 defaults to "320x518" (used for a randomly generated initial state).
22083
22084 @item scroll
22085 If set to 1, scroll the output upward when all the rows in the output
22086 have been already filled. If set to 0, the new generated row will be
22087 written over the top row just after the bottom row is filled.
22088 Defaults to 1.
22089
22090 @item start_full, full
22091 If set to 1, completely fill the output with generated rows before
22092 outputting the first frame.
22093 This is the default behavior, for disabling set the value to 0.
22094
22095 @item stitch
22096 If set to 1, stitch the left and right row edges together.
22097 This is the default behavior, for disabling set the value to 0.
22098 @end table
22099
22100 @subsection Examples
22101
22102 @itemize
22103 @item
22104 Read the initial state from @file{pattern}, and specify an output of
22105 size 200x400.
22106 @example
22107 cellauto=f=pattern:s=200x400
22108 @end example
22109
22110 @item
22111 Generate a random initial row with a width of 200 cells, with a fill
22112 ratio of 2/3:
22113 @example
22114 cellauto=ratio=2/3:s=200x200
22115 @end example
22116
22117 @item
22118 Create a pattern generated by rule 18 starting by a single alive cell
22119 centered on an initial row with width 100:
22120 @example
22121 cellauto=p=@@:s=100x400:full=0:rule=18
22122 @end example
22123
22124 @item
22125 Specify a more elaborated initial pattern:
22126 @example
22127 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22128 @end example
22129
22130 @end itemize
22131
22132 @anchor{coreimagesrc}
22133 @section coreimagesrc
22134 Video source generated on GPU using Apple's CoreImage API on OSX.
22135
22136 This video source is a specialized version of the @ref{coreimage} video filter.
22137 Use a core image generator at the beginning of the applied filterchain to
22138 generate the content.
22139
22140 The coreimagesrc video source accepts the following options:
22141 @table @option
22142 @item list_generators
22143 List all available generators along with all their respective options as well as
22144 possible minimum and maximum values along with the default values.
22145 @example
22146 list_generators=true
22147 @end example
22148
22149 @item size, s
22150 Specify the size of the sourced video. For the syntax of this option, check the
22151 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22152 The default value is @code{320x240}.
22153
22154 @item rate, r
22155 Specify the frame rate of the sourced video, as the number of frames
22156 generated per second. It has to be a string in the format
22157 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22158 number or a valid video frame rate abbreviation. The default value is
22159 "25".
22160
22161 @item sar
22162 Set the sample aspect ratio of the sourced video.
22163
22164 @item duration, d
22165 Set the duration of the sourced video. See
22166 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22167 for the accepted syntax.
22168
22169 If not specified, or the expressed duration is negative, the video is
22170 supposed to be generated forever.
22171 @end table
22172
22173 Additionally, all options of the @ref{coreimage} video filter are accepted.
22174 A complete filterchain can be used for further processing of the
22175 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
22176 and examples for details.
22177
22178 @subsection Examples
22179
22180 @itemize
22181
22182 @item
22183 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
22184 given as complete and escaped command-line for Apple's standard bash shell:
22185 @example
22186 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
22187 @end example
22188 This example is equivalent to the QRCode example of @ref{coreimage} without the
22189 need for a nullsrc video source.
22190 @end itemize
22191
22192
22193 @section mandelbrot
22194
22195 Generate a Mandelbrot set fractal, and progressively zoom towards the
22196 point specified with @var{start_x} and @var{start_y}.
22197
22198 This source accepts the following options:
22199
22200 @table @option
22201
22202 @item end_pts
22203 Set the terminal pts value. Default value is 400.
22204
22205 @item end_scale
22206 Set the terminal scale value.
22207 Must be a floating point value. Default value is 0.3.
22208
22209 @item inner
22210 Set the inner coloring mode, that is the algorithm used to draw the
22211 Mandelbrot fractal internal region.
22212
22213 It shall assume one of the following values:
22214 @table @option
22215 @item black
22216 Set black mode.
22217 @item convergence
22218 Show time until convergence.
22219 @item mincol
22220 Set color based on point closest to the origin of the iterations.
22221 @item period
22222 Set period mode.
22223 @end table
22224
22225 Default value is @var{mincol}.
22226
22227 @item bailout
22228 Set the bailout value. Default value is 10.0.
22229
22230 @item maxiter
22231 Set the maximum of iterations performed by the rendering
22232 algorithm. Default value is 7189.
22233
22234 @item outer
22235 Set outer coloring mode.
22236 It shall assume one of following values:
22237 @table @option
22238 @item iteration_count
22239 Set iteration count mode.
22240 @item normalized_iteration_count
22241 set normalized iteration count mode.
22242 @end table
22243 Default value is @var{normalized_iteration_count}.
22244
22245 @item rate, r
22246 Set frame rate, expressed as number of frames per second. Default
22247 value is "25".
22248
22249 @item size, s
22250 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22251 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22252
22253 @item start_scale
22254 Set the initial scale value. Default value is 3.0.
22255
22256 @item start_x
22257 Set the initial x position. Must be a floating point value between
22258 -100 and 100. Default value is -0.743643887037158704752191506114774.
22259
22260 @item start_y
22261 Set the initial y position. Must be a floating point value between
22262 -100 and 100. Default value is -0.131825904205311970493132056385139.
22263 @end table
22264
22265 @section mptestsrc
22266
22267 Generate various test patterns, as generated by the MPlayer test filter.
22268
22269 The size of the generated video is fixed, and is 256x256.
22270 This source is useful in particular for testing encoding features.
22271
22272 This source accepts the following options:
22273
22274 @table @option
22275
22276 @item rate, r
22277 Specify the frame rate of the sourced video, as the number of frames
22278 generated per second. It has to be a string in the format
22279 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22280 number or a valid video frame rate abbreviation. The default value is
22281 "25".
22282
22283 @item duration, d
22284 Set the duration of the sourced video. See
22285 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22286 for the accepted syntax.
22287
22288 If not specified, or the expressed duration is negative, the video is
22289 supposed to be generated forever.
22290
22291 @item test, t
22292
22293 Set the number or the name of the test to perform. Supported tests are:
22294 @table @option
22295 @item dc_luma
22296 @item dc_chroma
22297 @item freq_luma
22298 @item freq_chroma
22299 @item amp_luma
22300 @item amp_chroma
22301 @item cbp
22302 @item mv
22303 @item ring1
22304 @item ring2
22305 @item all
22306
22307 @item max_frames, m
22308 Set the maximum number of frames generated for each test, default value is 30.
22309
22310 @end table
22311
22312 Default value is "all", which will cycle through the list of all tests.
22313 @end table
22314
22315 Some examples:
22316 @example
22317 mptestsrc=t=dc_luma
22318 @end example
22319
22320 will generate a "dc_luma" test pattern.
22321
22322 @section frei0r_src
22323
22324 Provide a frei0r source.
22325
22326 To enable compilation of this filter you need to install the frei0r
22327 header and configure FFmpeg with @code{--enable-frei0r}.
22328
22329 This source accepts the following parameters:
22330
22331 @table @option
22332
22333 @item size
22334 The size of the video to generate. For the syntax of this option, check the
22335 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22336
22337 @item framerate
22338 The framerate of the generated video. It may be a string of the form
22339 @var{num}/@var{den} or a frame rate abbreviation.
22340
22341 @item filter_name
22342 The name to the frei0r source to load. For more information regarding frei0r and
22343 how to set the parameters, read the @ref{frei0r} section in the video filters
22344 documentation.
22345
22346 @item filter_params
22347 A '|'-separated list of parameters to pass to the frei0r source.
22348
22349 @end table
22350
22351 For example, to generate a frei0r partik0l source with size 200x200
22352 and frame rate 10 which is overlaid on the overlay filter main input:
22353 @example
22354 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
22355 @end example
22356
22357 @section life
22358
22359 Generate a life pattern.
22360
22361 This source is based on a generalization of John Conway's life game.
22362
22363 The sourced input represents a life grid, each pixel represents a cell
22364 which can be in one of two possible states, alive or dead. Every cell
22365 interacts with its eight neighbours, which are the cells that are
22366 horizontally, vertically, or diagonally adjacent.
22367
22368 At each interaction the grid evolves according to the adopted rule,
22369 which specifies the number of neighbor alive cells which will make a
22370 cell stay alive or born. The @option{rule} option allows one to specify
22371 the rule to adopt.
22372
22373 This source accepts the following options:
22374
22375 @table @option
22376 @item filename, f
22377 Set the file from which to read the initial grid state. In the file,
22378 each non-whitespace character is considered an alive cell, and newline
22379 is used to delimit the end of each row.
22380
22381 If this option is not specified, the initial grid is generated
22382 randomly.
22383
22384 @item rate, r
22385 Set the video rate, that is the number of frames generated per second.
22386 Default is 25.
22387
22388 @item random_fill_ratio, ratio
22389 Set the random fill ratio for the initial random grid. It is a
22390 floating point number value ranging from 0 to 1, defaults to 1/PHI.
22391 It is ignored when a file is specified.
22392
22393 @item random_seed, seed
22394 Set the seed for filling the initial random grid, must be an integer
22395 included between 0 and UINT32_MAX. If not specified, or if explicitly
22396 set to -1, the filter will try to use a good random seed on a best
22397 effort basis.
22398
22399 @item rule
22400 Set the life rule.
22401
22402 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
22403 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
22404 @var{NS} specifies the number of alive neighbor cells which make a
22405 live cell stay alive, and @var{NB} the number of alive neighbor cells
22406 which make a dead cell to become alive (i.e. to "born").
22407 "s" and "b" can be used in place of "S" and "B", respectively.
22408
22409 Alternatively a rule can be specified by an 18-bits integer. The 9
22410 high order bits are used to encode the next cell state if it is alive
22411 for each number of neighbor alive cells, the low order bits specify
22412 the rule for "borning" new cells. Higher order bits encode for an
22413 higher number of neighbor cells.
22414 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
22415 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
22416
22417 Default value is "S23/B3", which is the original Conway's game of life
22418 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
22419 cells, and will born a new cell if there are three alive cells around
22420 a dead cell.
22421
22422 @item size, s
22423 Set the size of the output video. For the syntax of this option, check the
22424 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22425
22426 If @option{filename} is specified, the size is set by default to the
22427 same size of the input file. If @option{size} is set, it must contain
22428 the size specified in the input file, and the initial grid defined in
22429 that file is centered in the larger resulting area.
22430
22431 If a filename is not specified, the size value defaults to "320x240"
22432 (used for a randomly generated initial grid).
22433
22434 @item stitch
22435 If set to 1, stitch the left and right grid edges together, and the
22436 top and bottom edges also. Defaults to 1.
22437
22438 @item mold
22439 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
22440 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
22441 value from 0 to 255.
22442
22443 @item life_color
22444 Set the color of living (or new born) cells.
22445
22446 @item death_color
22447 Set the color of dead cells. If @option{mold} is set, this is the first color
22448 used to represent a dead cell.
22449
22450 @item mold_color
22451 Set mold color, for definitely dead and moldy cells.
22452
22453 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
22454 ffmpeg-utils manual,ffmpeg-utils}.
22455 @end table
22456
22457 @subsection Examples
22458
22459 @itemize
22460 @item
22461 Read a grid from @file{pattern}, and center it on a grid of size
22462 300x300 pixels:
22463 @example
22464 life=f=pattern:s=300x300
22465 @end example
22466
22467 @item
22468 Generate a random grid of size 200x200, with a fill ratio of 2/3:
22469 @example
22470 life=ratio=2/3:s=200x200
22471 @end example
22472
22473 @item
22474 Specify a custom rule for evolving a randomly generated grid:
22475 @example
22476 life=rule=S14/B34
22477 @end example
22478
22479 @item
22480 Full example with slow death effect (mold) using @command{ffplay}:
22481 @example
22482 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
22483 @end example
22484 @end itemize
22485
22486 @anchor{allrgb}
22487 @anchor{allyuv}
22488 @anchor{color}
22489 @anchor{haldclutsrc}
22490 @anchor{nullsrc}
22491 @anchor{pal75bars}
22492 @anchor{pal100bars}
22493 @anchor{rgbtestsrc}
22494 @anchor{smptebars}
22495 @anchor{smptehdbars}
22496 @anchor{testsrc}
22497 @anchor{testsrc2}
22498 @anchor{yuvtestsrc}
22499 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
22500
22501 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
22502
22503 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
22504
22505 The @code{color} source provides an uniformly colored input.
22506
22507 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
22508 @ref{haldclut} filter.
22509
22510 The @code{nullsrc} source returns unprocessed video frames. It is
22511 mainly useful to be employed in analysis / debugging tools, or as the
22512 source for filters which ignore the input data.
22513
22514 The @code{pal75bars} source generates a color bars pattern, based on
22515 EBU PAL recommendations with 75% color levels.
22516
22517 The @code{pal100bars} source generates a color bars pattern, based on
22518 EBU PAL recommendations with 100% color levels.
22519
22520 The @code{rgbtestsrc} source generates an RGB test pattern useful for
22521 detecting RGB vs BGR issues. You should see a red, green and blue
22522 stripe from top to bottom.
22523
22524 The @code{smptebars} source generates a color bars pattern, based on
22525 the SMPTE Engineering Guideline EG 1-1990.
22526
22527 The @code{smptehdbars} source generates a color bars pattern, based on
22528 the SMPTE RP 219-2002.
22529
22530 The @code{testsrc} source generates a test video pattern, showing a
22531 color pattern, a scrolling gradient and a timestamp. This is mainly
22532 intended for testing purposes.
22533
22534 The @code{testsrc2} source is similar to testsrc, but supports more
22535 pixel formats instead of just @code{rgb24}. This allows using it as an
22536 input for other tests without requiring a format conversion.
22537
22538 The @code{yuvtestsrc} source generates an YUV test pattern. You should
22539 see a y, cb and cr stripe from top to bottom.
22540
22541 The sources accept the following parameters:
22542
22543 @table @option
22544
22545 @item level
22546 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
22547 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
22548 pixels to be used as identity matrix for 3D lookup tables. Each component is
22549 coded on a @code{1/(N*N)} scale.
22550
22551 @item color, c
22552 Specify the color of the source, only available in the @code{color}
22553 source. For the syntax of this option, check the
22554 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
22555
22556 @item size, s
22557 Specify the size of the sourced video. For the syntax of this option, check the
22558 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22559 The default value is @code{320x240}.
22560
22561 This option is not available with the @code{allrgb}, @code{allyuv}, and
22562 @code{haldclutsrc} filters.
22563
22564 @item rate, r
22565 Specify the frame rate of the sourced video, as the number of frames
22566 generated per second. It has to be a string in the format
22567 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22568 number or a valid video frame rate abbreviation. The default value is
22569 "25".
22570
22571 @item duration, d
22572 Set the duration of the sourced video. See
22573 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22574 for the accepted syntax.
22575
22576 If not specified, or the expressed duration is negative, the video is
22577 supposed to be generated forever.
22578
22579 @item sar
22580 Set the sample aspect ratio of the sourced video.
22581
22582 @item alpha
22583 Specify the alpha (opacity) of the background, only available in the
22584 @code{testsrc2} source. The value must be between 0 (fully transparent) and
22585 255 (fully opaque, the default).
22586
22587 @item decimals, n
22588 Set the number of decimals to show in the timestamp, only available in the
22589 @code{testsrc} source.
22590
22591 The displayed timestamp value will correspond to the original
22592 timestamp value multiplied by the power of 10 of the specified
22593 value. Default value is 0.
22594 @end table
22595
22596 @subsection Examples
22597
22598 @itemize
22599 @item
22600 Generate a video with a duration of 5.3 seconds, with size
22601 176x144 and a frame rate of 10 frames per second:
22602 @example
22603 testsrc=duration=5.3:size=qcif:rate=10
22604 @end example
22605
22606 @item
22607 The following graph description will generate a red source
22608 with an opacity of 0.2, with size "qcif" and a frame rate of 10
22609 frames per second:
22610 @example
22611 color=c=red@@0.2:s=qcif:r=10
22612 @end example
22613
22614 @item
22615 If the input content is to be ignored, @code{nullsrc} can be used. The
22616 following command generates noise in the luminance plane by employing
22617 the @code{geq} filter:
22618 @example
22619 nullsrc=s=256x256, geq=random(1)*255:128:128
22620 @end example
22621 @end itemize
22622
22623 @subsection Commands
22624
22625 The @code{color} source supports the following commands:
22626
22627 @table @option
22628 @item c, color
22629 Set the color of the created image. Accepts the same syntax of the
22630 corresponding @option{color} option.
22631 @end table
22632
22633 @section openclsrc
22634
22635 Generate video using an OpenCL program.
22636
22637 @table @option
22638
22639 @item source
22640 OpenCL program source file.
22641
22642 @item kernel
22643 Kernel name in program.
22644
22645 @item size, s
22646 Size of frames to generate.  This must be set.
22647
22648 @item format
22649 Pixel format to use for the generated frames.  This must be set.
22650
22651 @item rate, r
22652 Number of frames generated every second.  Default value is '25'.
22653
22654 @end table
22655
22656 For details of how the program loading works, see the @ref{program_opencl}
22657 filter.
22658
22659 Example programs:
22660
22661 @itemize
22662 @item
22663 Generate a colour ramp by setting pixel values from the position of the pixel
22664 in the output image.  (Note that this will work with all pixel formats, but
22665 the generated output will not be the same.)
22666 @verbatim
22667 __kernel void ramp(__write_only image2d_t dst,
22668                    unsigned int index)
22669 {
22670     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22671
22672     float4 val;
22673     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
22674
22675     write_imagef(dst, loc, val);
22676 }
22677 @end verbatim
22678
22679 @item
22680 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
22681 @verbatim
22682 __kernel void sierpinski_carpet(__write_only image2d_t dst,
22683                                 unsigned int index)
22684 {
22685     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22686
22687     float4 value = 0.0f;
22688     int x = loc.x + index;
22689     int y = loc.y + index;
22690     while (x > 0 || y > 0) {
22691         if (x % 3 == 1 && y % 3 == 1) {
22692             value = 1.0f;
22693             break;
22694         }
22695         x /= 3;
22696         y /= 3;
22697     }
22698
22699     write_imagef(dst, loc, value);
22700 }
22701 @end verbatim
22702
22703 @end itemize
22704
22705 @section sierpinski
22706
22707 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
22708
22709 This source accepts the following options:
22710
22711 @table @option
22712 @item size, s
22713 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22714 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22715
22716 @item rate, r
22717 Set frame rate, expressed as number of frames per second. Default
22718 value is "25".
22719
22720 @item seed
22721 Set seed which is used for random panning.
22722
22723 @item jump
22724 Set max jump for single pan destination. Allowed range is from 1 to 10000.
22725
22726 @item type
22727 Set fractal type, can be default @code{carpet} or @code{triangle}.
22728 @end table
22729
22730 @c man end VIDEO SOURCES
22731
22732 @chapter Video Sinks
22733 @c man begin VIDEO SINKS
22734
22735 Below is a description of the currently available video sinks.
22736
22737 @section buffersink
22738
22739 Buffer video frames, and make them available to the end of the filter
22740 graph.
22741
22742 This sink is mainly intended for programmatic use, in particular
22743 through the interface defined in @file{libavfilter/buffersink.h}
22744 or the options system.
22745
22746 It accepts a pointer to an AVBufferSinkContext structure, which
22747 defines the incoming buffers' formats, to be passed as the opaque
22748 parameter to @code{avfilter_init_filter} for initialization.
22749
22750 @section nullsink
22751
22752 Null video sink: do absolutely nothing with the input video. It is
22753 mainly useful as a template and for use in analysis / debugging
22754 tools.
22755
22756 @c man end VIDEO SINKS
22757
22758 @chapter Multimedia Filters
22759 @c man begin MULTIMEDIA FILTERS
22760
22761 Below is a description of the currently available multimedia filters.
22762
22763 @section abitscope
22764
22765 Convert input audio to a video output, displaying the audio bit scope.
22766
22767 The filter accepts the following options:
22768
22769 @table @option
22770 @item rate, r
22771 Set frame rate, expressed as number of frames per second. Default
22772 value is "25".
22773
22774 @item size, s
22775 Specify the video size for the output. For the syntax of this option, check the
22776 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22777 Default value is @code{1024x256}.
22778
22779 @item colors
22780 Specify list of colors separated by space or by '|' which will be used to
22781 draw channels. Unrecognized or missing colors will be replaced
22782 by white color.
22783 @end table
22784
22785 @section adrawgraph
22786 Draw a graph using input audio metadata.
22787
22788 See @ref{drawgraph}
22789
22790 @section agraphmonitor
22791
22792 See @ref{graphmonitor}.
22793
22794 @section ahistogram
22795
22796 Convert input audio to a video output, displaying the volume histogram.
22797
22798 The filter accepts the following options:
22799
22800 @table @option
22801 @item dmode
22802 Specify how histogram is calculated.
22803
22804 It accepts the following values:
22805 @table @samp
22806 @item single
22807 Use single histogram for all channels.
22808 @item separate
22809 Use separate histogram for each channel.
22810 @end table
22811 Default is @code{single}.
22812
22813 @item rate, r
22814 Set frame rate, expressed as number of frames per second. Default
22815 value is "25".
22816
22817 @item size, s
22818 Specify the video size for the output. For the syntax of this option, check the
22819 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22820 Default value is @code{hd720}.
22821
22822 @item scale
22823 Set display scale.
22824
22825 It accepts the following values:
22826 @table @samp
22827 @item log
22828 logarithmic
22829 @item sqrt
22830 square root
22831 @item cbrt
22832 cubic root
22833 @item lin
22834 linear
22835 @item rlog
22836 reverse logarithmic
22837 @end table
22838 Default is @code{log}.
22839
22840 @item ascale
22841 Set amplitude scale.
22842
22843 It accepts the following values:
22844 @table @samp
22845 @item log
22846 logarithmic
22847 @item lin
22848 linear
22849 @end table
22850 Default is @code{log}.
22851
22852 @item acount
22853 Set how much frames to accumulate in histogram.
22854 Default is 1. Setting this to -1 accumulates all frames.
22855
22856 @item rheight
22857 Set histogram ratio of window height.
22858
22859 @item slide
22860 Set sonogram sliding.
22861
22862 It accepts the following values:
22863 @table @samp
22864 @item replace
22865 replace old rows with new ones.
22866 @item scroll
22867 scroll from top to bottom.
22868 @end table
22869 Default is @code{replace}.
22870 @end table
22871
22872 @section aphasemeter
22873
22874 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
22875 representing mean phase of current audio frame. A video output can also be produced and is
22876 enabled by default. The audio is passed through as first output.
22877
22878 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
22879 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
22880 and @code{1} means channels are in phase.
22881
22882 The filter accepts the following options, all related to its video output:
22883
22884 @table @option
22885 @item rate, r
22886 Set the output frame rate. Default value is @code{25}.
22887
22888 @item size, s
22889 Set the video size for the output. For the syntax of this option, check the
22890 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22891 Default value is @code{800x400}.
22892
22893 @item rc
22894 @item gc
22895 @item bc
22896 Specify the red, green, blue contrast. Default values are @code{2},
22897 @code{7} and @code{1}.
22898 Allowed range is @code{[0, 255]}.
22899
22900 @item mpc
22901 Set color which will be used for drawing median phase. If color is
22902 @code{none} which is default, no median phase value will be drawn.
22903
22904 @item video
22905 Enable video output. Default is enabled.
22906 @end table
22907
22908 @section avectorscope
22909
22910 Convert input audio to a video output, representing the audio vector
22911 scope.
22912
22913 The filter is used to measure the difference between channels of stereo
22914 audio stream. A monaural signal, consisting of identical left and right
22915 signal, results in straight vertical line. Any stereo separation is visible
22916 as a deviation from this line, creating a Lissajous figure.
22917 If the straight (or deviation from it) but horizontal line appears this
22918 indicates that the left and right channels are out of phase.
22919
22920 The filter accepts the following options:
22921
22922 @table @option
22923 @item mode, m
22924 Set the vectorscope mode.
22925
22926 Available values are:
22927 @table @samp
22928 @item lissajous
22929 Lissajous rotated by 45 degrees.
22930
22931 @item lissajous_xy
22932 Same as above but not rotated.
22933
22934 @item polar
22935 Shape resembling half of circle.
22936 @end table
22937
22938 Default value is @samp{lissajous}.
22939
22940 @item size, s
22941 Set the video size for the output. For the syntax of this option, check the
22942 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22943 Default value is @code{400x400}.
22944
22945 @item rate, r
22946 Set the output frame rate. Default value is @code{25}.
22947
22948 @item rc
22949 @item gc
22950 @item bc
22951 @item ac
22952 Specify the red, green, blue and alpha contrast. Default values are @code{40},
22953 @code{160}, @code{80} and @code{255}.
22954 Allowed range is @code{[0, 255]}.
22955
22956 @item rf
22957 @item gf
22958 @item bf
22959 @item af
22960 Specify the red, green, blue and alpha fade. Default values are @code{15},
22961 @code{10}, @code{5} and @code{5}.
22962 Allowed range is @code{[0, 255]}.
22963
22964 @item zoom
22965 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
22966 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
22967
22968 @item draw
22969 Set the vectorscope drawing mode.
22970
22971 Available values are:
22972 @table @samp
22973 @item dot
22974 Draw dot for each sample.
22975
22976 @item line
22977 Draw line between previous and current sample.
22978 @end table
22979
22980 Default value is @samp{dot}.
22981
22982 @item scale
22983 Specify amplitude scale of audio samples.
22984
22985 Available values are:
22986 @table @samp
22987 @item lin
22988 Linear.
22989
22990 @item sqrt
22991 Square root.
22992
22993 @item cbrt
22994 Cubic root.
22995
22996 @item log
22997 Logarithmic.
22998 @end table
22999
23000 @item swap
23001 Swap left channel axis with right channel axis.
23002
23003 @item mirror
23004 Mirror axis.
23005
23006 @table @samp
23007 @item none
23008 No mirror.
23009
23010 @item x
23011 Mirror only x axis.
23012
23013 @item y
23014 Mirror only y axis.
23015
23016 @item xy
23017 Mirror both axis.
23018 @end table
23019
23020 @end table
23021
23022 @subsection Examples
23023
23024 @itemize
23025 @item
23026 Complete example using @command{ffplay}:
23027 @example
23028 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
23029              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
23030 @end example
23031 @end itemize
23032
23033 @section bench, abench
23034
23035 Benchmark part of a filtergraph.
23036
23037 The filter accepts the following options:
23038
23039 @table @option
23040 @item action
23041 Start or stop a timer.
23042
23043 Available values are:
23044 @table @samp
23045 @item start
23046 Get the current time, set it as frame metadata (using the key
23047 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
23048
23049 @item stop
23050 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
23051 the input frame metadata to get the time difference. Time difference, average,
23052 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
23053 @code{min}) are then printed. The timestamps are expressed in seconds.
23054 @end table
23055 @end table
23056
23057 @subsection Examples
23058
23059 @itemize
23060 @item
23061 Benchmark @ref{selectivecolor} filter:
23062 @example
23063 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
23064 @end example
23065 @end itemize
23066
23067 @section concat
23068
23069 Concatenate audio and video streams, joining them together one after the
23070 other.
23071
23072 The filter works on segments of synchronized video and audio streams. All
23073 segments must have the same number of streams of each type, and that will
23074 also be the number of streams at output.
23075
23076 The filter accepts the following options:
23077
23078 @table @option
23079
23080 @item n
23081 Set the number of segments. Default is 2.
23082
23083 @item v
23084 Set the number of output video streams, that is also the number of video
23085 streams in each segment. Default is 1.
23086
23087 @item a
23088 Set the number of output audio streams, that is also the number of audio
23089 streams in each segment. Default is 0.
23090
23091 @item unsafe
23092 Activate unsafe mode: do not fail if segments have a different format.
23093
23094 @end table
23095
23096 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
23097 @var{a} audio outputs.
23098
23099 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
23100 segment, in the same order as the outputs, then the inputs for the second
23101 segment, etc.
23102
23103 Related streams do not always have exactly the same duration, for various
23104 reasons including codec frame size or sloppy authoring. For that reason,
23105 related synchronized streams (e.g. a video and its audio track) should be
23106 concatenated at once. The concat filter will use the duration of the longest
23107 stream in each segment (except the last one), and if necessary pad shorter
23108 audio streams with silence.
23109
23110 For this filter to work correctly, all segments must start at timestamp 0.
23111
23112 All corresponding streams must have the same parameters in all segments; the
23113 filtering system will automatically select a common pixel format for video
23114 streams, and a common sample format, sample rate and channel layout for
23115 audio streams, but other settings, such as resolution, must be converted
23116 explicitly by the user.
23117
23118 Different frame rates are acceptable but will result in variable frame rate
23119 at output; be sure to configure the output file to handle it.
23120
23121 @subsection Examples
23122
23123 @itemize
23124 @item
23125 Concatenate an opening, an episode and an ending, all in bilingual version
23126 (video in stream 0, audio in streams 1 and 2):
23127 @example
23128 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
23129   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
23130    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
23131   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
23132 @end example
23133
23134 @item
23135 Concatenate two parts, handling audio and video separately, using the
23136 (a)movie sources, and adjusting the resolution:
23137 @example
23138 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
23139 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
23140 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
23141 @end example
23142 Note that a desync will happen at the stitch if the audio and video streams
23143 do not have exactly the same duration in the first file.
23144
23145 @end itemize
23146
23147 @subsection Commands
23148
23149 This filter supports the following commands:
23150 @table @option
23151 @item next
23152 Close the current segment and step to the next one
23153 @end table
23154
23155 @anchor{ebur128}
23156 @section ebur128
23157
23158 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
23159 level. By default, it logs a message at a frequency of 10Hz with the
23160 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
23161 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
23162
23163 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
23164 sample format is double-precision floating point. The input stream will be converted to
23165 this specification, if needed. Users may need to insert aformat and/or aresample filters
23166 after this filter to obtain the original parameters.
23167
23168 The filter also has a video output (see the @var{video} option) with a real
23169 time graph to observe the loudness evolution. The graphic contains the logged
23170 message mentioned above, so it is not printed anymore when this option is set,
23171 unless the verbose logging is set. The main graphing area contains the
23172 short-term loudness (3 seconds of analysis), and the gauge on the right is for
23173 the momentary loudness (400 milliseconds), but can optionally be configured
23174 to instead display short-term loudness (see @var{gauge}).
23175
23176 The green area marks a  +/- 1LU target range around the target loudness
23177 (-23LUFS by default, unless modified through @var{target}).
23178
23179 More information about the Loudness Recommendation EBU R128 on
23180 @url{http://tech.ebu.ch/loudness}.
23181
23182 The filter accepts the following options:
23183
23184 @table @option
23185
23186 @item video
23187 Activate the video output. The audio stream is passed unchanged whether this
23188 option is set or no. The video stream will be the first output stream if
23189 activated. Default is @code{0}.
23190
23191 @item size
23192 Set the video size. This option is for video only. For the syntax of this
23193 option, check the
23194 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23195 Default and minimum resolution is @code{640x480}.
23196
23197 @item meter
23198 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
23199 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
23200 other integer value between this range is allowed.
23201
23202 @item metadata
23203 Set metadata injection. If set to @code{1}, the audio input will be segmented
23204 into 100ms output frames, each of them containing various loudness information
23205 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
23206
23207 Default is @code{0}.
23208
23209 @item framelog
23210 Force the frame logging level.
23211
23212 Available values are:
23213 @table @samp
23214 @item info
23215 information logging level
23216 @item verbose
23217 verbose logging level
23218 @end table
23219
23220 By default, the logging level is set to @var{info}. If the @option{video} or
23221 the @option{metadata} options are set, it switches to @var{verbose}.
23222
23223 @item peak
23224 Set peak mode(s).
23225
23226 Available modes can be cumulated (the option is a @code{flag} type). Possible
23227 values are:
23228 @table @samp
23229 @item none
23230 Disable any peak mode (default).
23231 @item sample
23232 Enable sample-peak mode.
23233
23234 Simple peak mode looking for the higher sample value. It logs a message
23235 for sample-peak (identified by @code{SPK}).
23236 @item true
23237 Enable true-peak mode.
23238
23239 If enabled, the peak lookup is done on an over-sampled version of the input
23240 stream for better peak accuracy. It logs a message for true-peak.
23241 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
23242 This mode requires a build with @code{libswresample}.
23243 @end table
23244
23245 @item dualmono
23246 Treat mono input files as "dual mono". If a mono file is intended for playback
23247 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
23248 If set to @code{true}, this option will compensate for this effect.
23249 Multi-channel input files are not affected by this option.
23250
23251 @item panlaw
23252 Set a specific pan law to be used for the measurement of dual mono files.
23253 This parameter is optional, and has a default value of -3.01dB.
23254
23255 @item target
23256 Set a specific target level (in LUFS) used as relative zero in the visualization.
23257 This parameter is optional and has a default value of -23LUFS as specified
23258 by EBU R128. However, material published online may prefer a level of -16LUFS
23259 (e.g. for use with podcasts or video platforms).
23260
23261 @item gauge
23262 Set the value displayed by the gauge. Valid values are @code{momentary} and s
23263 @code{shortterm}. By default the momentary value will be used, but in certain
23264 scenarios it may be more useful to observe the short term value instead (e.g.
23265 live mixing).
23266
23267 @item scale
23268 Sets the display scale for the loudness. Valid parameters are @code{absolute}
23269 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
23270 video output, not the summary or continuous log output.
23271 @end table
23272
23273 @subsection Examples
23274
23275 @itemize
23276 @item
23277 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
23278 @example
23279 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
23280 @end example
23281
23282 @item
23283 Run an analysis with @command{ffmpeg}:
23284 @example
23285 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
23286 @end example
23287 @end itemize
23288
23289 @section interleave, ainterleave
23290
23291 Temporally interleave frames from several inputs.
23292
23293 @code{interleave} works with video inputs, @code{ainterleave} with audio.
23294
23295 These filters read frames from several inputs and send the oldest
23296 queued frame to the output.
23297
23298 Input streams must have well defined, monotonically increasing frame
23299 timestamp values.
23300
23301 In order to submit one frame to output, these filters need to enqueue
23302 at least one frame for each input, so they cannot work in case one
23303 input is not yet terminated and will not receive incoming frames.
23304
23305 For example consider the case when one input is a @code{select} filter
23306 which always drops input frames. The @code{interleave} filter will keep
23307 reading from that input, but it will never be able to send new frames
23308 to output until the input sends an end-of-stream signal.
23309
23310 Also, depending on inputs synchronization, the filters will drop
23311 frames in case one input receives more frames than the other ones, and
23312 the queue is already filled.
23313
23314 These filters accept the following options:
23315
23316 @table @option
23317 @item nb_inputs, n
23318 Set the number of different inputs, it is 2 by default.
23319
23320 @item duration
23321 How to determine the end-of-stream.
23322
23323 @table @option
23324 @item longest
23325 The duration of the longest input. (default)
23326
23327 @item shortest
23328 The duration of the shortest input.
23329
23330 @item first
23331 The duration of the first input.
23332 @end table
23333
23334 @end table
23335
23336 @subsection Examples
23337
23338 @itemize
23339 @item
23340 Interleave frames belonging to different streams using @command{ffmpeg}:
23341 @example
23342 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
23343 @end example
23344
23345 @item
23346 Add flickering blur effect:
23347 @example
23348 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
23349 @end example
23350 @end itemize
23351
23352 @section metadata, ametadata
23353
23354 Manipulate frame metadata.
23355
23356 This filter accepts the following options:
23357
23358 @table @option
23359 @item mode
23360 Set mode of operation of the filter.
23361
23362 Can be one of the following:
23363
23364 @table @samp
23365 @item select
23366 If both @code{value} and @code{key} is set, select frames
23367 which have such metadata. If only @code{key} is set, select
23368 every frame that has such key in metadata.
23369
23370 @item add
23371 Add new metadata @code{key} and @code{value}. If key is already available
23372 do nothing.
23373
23374 @item modify
23375 Modify value of already present key.
23376
23377 @item delete
23378 If @code{value} is set, delete only keys that have such value.
23379 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
23380 the frame.
23381
23382 @item print
23383 Print key and its value if metadata was found. If @code{key} is not set print all
23384 metadata values available in frame.
23385 @end table
23386
23387 @item key
23388 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
23389
23390 @item value
23391 Set metadata value which will be used. This option is mandatory for
23392 @code{modify} and @code{add} mode.
23393
23394 @item function
23395 Which function to use when comparing metadata value and @code{value}.
23396
23397 Can be one of following:
23398
23399 @table @samp
23400 @item same_str
23401 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
23402
23403 @item starts_with
23404 Values are interpreted as strings, returns true if metadata value starts with
23405 the @code{value} option string.
23406
23407 @item less
23408 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
23409
23410 @item equal
23411 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
23412
23413 @item greater
23414 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
23415
23416 @item expr
23417 Values are interpreted as floats, returns true if expression from option @code{expr}
23418 evaluates to true.
23419
23420 @item ends_with
23421 Values are interpreted as strings, returns true if metadata value ends with
23422 the @code{value} option string.
23423 @end table
23424
23425 @item expr
23426 Set expression which is used when @code{function} is set to @code{expr}.
23427 The expression is evaluated through the eval API and can contain the following
23428 constants:
23429
23430 @table @option
23431 @item VALUE1
23432 Float representation of @code{value} from metadata key.
23433
23434 @item VALUE2
23435 Float representation of @code{value} as supplied by user in @code{value} option.
23436 @end table
23437
23438 @item file
23439 If specified in @code{print} mode, output is written to the named file. Instead of
23440 plain filename any writable url can be specified. Filename ``-'' is a shorthand
23441 for standard output. If @code{file} option is not set, output is written to the log
23442 with AV_LOG_INFO loglevel.
23443
23444 @item direct
23445 Reduces buffering in print mode when output is written to a URL set using @var{file}.
23446
23447 @end table
23448
23449 @subsection Examples
23450
23451 @itemize
23452 @item
23453 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
23454 between 0 and 1.
23455 @example
23456 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
23457 @end example
23458 @item
23459 Print silencedetect output to file @file{metadata.txt}.
23460 @example
23461 silencedetect,ametadata=mode=print:file=metadata.txt
23462 @end example
23463 @item
23464 Direct all metadata to a pipe with file descriptor 4.
23465 @example
23466 metadata=mode=print:file='pipe\:4'
23467 @end example
23468 @end itemize
23469
23470 @section perms, aperms
23471
23472 Set read/write permissions for the output frames.
23473
23474 These filters are mainly aimed at developers to test direct path in the
23475 following filter in the filtergraph.
23476
23477 The filters accept the following options:
23478
23479 @table @option
23480 @item mode
23481 Select the permissions mode.
23482
23483 It accepts the following values:
23484 @table @samp
23485 @item none
23486 Do nothing. This is the default.
23487 @item ro
23488 Set all the output frames read-only.
23489 @item rw
23490 Set all the output frames directly writable.
23491 @item toggle
23492 Make the frame read-only if writable, and writable if read-only.
23493 @item random
23494 Set each output frame read-only or writable randomly.
23495 @end table
23496
23497 @item seed
23498 Set the seed for the @var{random} mode, must be an integer included between
23499 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
23500 @code{-1}, the filter will try to use a good random seed on a best effort
23501 basis.
23502 @end table
23503
23504 Note: in case of auto-inserted filter between the permission filter and the
23505 following one, the permission might not be received as expected in that
23506 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
23507 perms/aperms filter can avoid this problem.
23508
23509 @section realtime, arealtime
23510
23511 Slow down filtering to match real time approximately.
23512
23513 These filters will pause the filtering for a variable amount of time to
23514 match the output rate with the input timestamps.
23515 They are similar to the @option{re} option to @code{ffmpeg}.
23516
23517 They accept the following options:
23518
23519 @table @option
23520 @item limit
23521 Time limit for the pauses. Any pause longer than that will be considered
23522 a timestamp discontinuity and reset the timer. Default is 2 seconds.
23523 @item speed
23524 Speed factor for processing. The value must be a float larger than zero.
23525 Values larger than 1.0 will result in faster than realtime processing,
23526 smaller will slow processing down. The @var{limit} is automatically adapted
23527 accordingly. Default is 1.0.
23528
23529 A processing speed faster than what is possible without these filters cannot
23530 be achieved.
23531 @end table
23532
23533 @anchor{select}
23534 @section select, aselect
23535
23536 Select frames to pass in output.
23537
23538 This filter accepts the following options:
23539
23540 @table @option
23541
23542 @item expr, e
23543 Set expression, which is evaluated for each input frame.
23544
23545 If the expression is evaluated to zero, the frame is discarded.
23546
23547 If the evaluation result is negative or NaN, the frame is sent to the
23548 first output; otherwise it is sent to the output with index
23549 @code{ceil(val)-1}, assuming that the input index starts from 0.
23550
23551 For example a value of @code{1.2} corresponds to the output with index
23552 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
23553
23554 @item outputs, n
23555 Set the number of outputs. The output to which to send the selected
23556 frame is based on the result of the evaluation. Default value is 1.
23557 @end table
23558
23559 The expression can contain the following constants:
23560
23561 @table @option
23562 @item n
23563 The (sequential) number of the filtered frame, starting from 0.
23564
23565 @item selected_n
23566 The (sequential) number of the selected frame, starting from 0.
23567
23568 @item prev_selected_n
23569 The sequential number of the last selected frame. It's NAN if undefined.
23570
23571 @item TB
23572 The timebase of the input timestamps.
23573
23574 @item pts
23575 The PTS (Presentation TimeStamp) of the filtered video frame,
23576 expressed in @var{TB} units. It's NAN if undefined.
23577
23578 @item t
23579 The PTS of the filtered video frame,
23580 expressed in seconds. It's NAN if undefined.
23581
23582 @item prev_pts
23583 The PTS of the previously filtered video frame. It's NAN if undefined.
23584
23585 @item prev_selected_pts
23586 The PTS of the last previously filtered video frame. It's NAN if undefined.
23587
23588 @item prev_selected_t
23589 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
23590
23591 @item start_pts
23592 The PTS of the first video frame in the video. It's NAN if undefined.
23593
23594 @item start_t
23595 The time of the first video frame in the video. It's NAN if undefined.
23596
23597 @item pict_type @emph{(video only)}
23598 The type of the filtered frame. It can assume one of the following
23599 values:
23600 @table @option
23601 @item I
23602 @item P
23603 @item B
23604 @item S
23605 @item SI
23606 @item SP
23607 @item BI
23608 @end table
23609
23610 @item interlace_type @emph{(video only)}
23611 The frame interlace type. It can assume one of the following values:
23612 @table @option
23613 @item PROGRESSIVE
23614 The frame is progressive (not interlaced).
23615 @item TOPFIRST
23616 The frame is top-field-first.
23617 @item BOTTOMFIRST
23618 The frame is bottom-field-first.
23619 @end table
23620
23621 @item consumed_sample_n @emph{(audio only)}
23622 the number of selected samples before the current frame
23623
23624 @item samples_n @emph{(audio only)}
23625 the number of samples in the current frame
23626
23627 @item sample_rate @emph{(audio only)}
23628 the input sample rate
23629
23630 @item key
23631 This is 1 if the filtered frame is a key-frame, 0 otherwise.
23632
23633 @item pos
23634 the position in the file of the filtered frame, -1 if the information
23635 is not available (e.g. for synthetic video)
23636
23637 @item scene @emph{(video only)}
23638 value between 0 and 1 to indicate a new scene; a low value reflects a low
23639 probability for the current frame to introduce a new scene, while a higher
23640 value means the current frame is more likely to be one (see the example below)
23641
23642 @item concatdec_select
23643 The concat demuxer can select only part of a concat input file by setting an
23644 inpoint and an outpoint, but the output packets may not be entirely contained
23645 in the selected interval. By using this variable, it is possible to skip frames
23646 generated by the concat demuxer which are not exactly contained in the selected
23647 interval.
23648
23649 This works by comparing the frame pts against the @var{lavf.concat.start_time}
23650 and the @var{lavf.concat.duration} packet metadata values which are also
23651 present in the decoded frames.
23652
23653 The @var{concatdec_select} variable is -1 if the frame pts is at least
23654 start_time and either the duration metadata is missing or the frame pts is less
23655 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
23656 missing.
23657
23658 That basically means that an input frame is selected if its pts is within the
23659 interval set by the concat demuxer.
23660
23661 @end table
23662
23663 The default value of the select expression is "1".
23664
23665 @subsection Examples
23666
23667 @itemize
23668 @item
23669 Select all frames in input:
23670 @example
23671 select
23672 @end example
23673
23674 The example above is the same as:
23675 @example
23676 select=1
23677 @end example
23678
23679 @item
23680 Skip all frames:
23681 @example
23682 select=0
23683 @end example
23684
23685 @item
23686 Select only I-frames:
23687 @example
23688 select='eq(pict_type\,I)'
23689 @end example
23690
23691 @item
23692 Select one frame every 100:
23693 @example
23694 select='not(mod(n\,100))'
23695 @end example
23696
23697 @item
23698 Select only frames contained in the 10-20 time interval:
23699 @example
23700 select=between(t\,10\,20)
23701 @end example
23702
23703 @item
23704 Select only I-frames contained in the 10-20 time interval:
23705 @example
23706 select=between(t\,10\,20)*eq(pict_type\,I)
23707 @end example
23708
23709 @item
23710 Select frames with a minimum distance of 10 seconds:
23711 @example
23712 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
23713 @end example
23714
23715 @item
23716 Use aselect to select only audio frames with samples number > 100:
23717 @example
23718 aselect='gt(samples_n\,100)'
23719 @end example
23720
23721 @item
23722 Create a mosaic of the first scenes:
23723 @example
23724 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
23725 @end example
23726
23727 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
23728 choice.
23729
23730 @item
23731 Send even and odd frames to separate outputs, and compose them:
23732 @example
23733 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
23734 @end example
23735
23736 @item
23737 Select useful frames from an ffconcat file which is using inpoints and
23738 outpoints but where the source files are not intra frame only.
23739 @example
23740 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
23741 @end example
23742 @end itemize
23743
23744 @section sendcmd, asendcmd
23745
23746 Send commands to filters in the filtergraph.
23747
23748 These filters read commands to be sent to other filters in the
23749 filtergraph.
23750
23751 @code{sendcmd} must be inserted between two video filters,
23752 @code{asendcmd} must be inserted between two audio filters, but apart
23753 from that they act the same way.
23754
23755 The specification of commands can be provided in the filter arguments
23756 with the @var{commands} option, or in a file specified by the
23757 @var{filename} option.
23758
23759 These filters accept the following options:
23760 @table @option
23761 @item commands, c
23762 Set the commands to be read and sent to the other filters.
23763 @item filename, f
23764 Set the filename of the commands to be read and sent to the other
23765 filters.
23766 @end table
23767
23768 @subsection Commands syntax
23769
23770 A commands description consists of a sequence of interval
23771 specifications, comprising a list of commands to be executed when a
23772 particular event related to that interval occurs. The occurring event
23773 is typically the current frame time entering or leaving a given time
23774 interval.
23775
23776 An interval is specified by the following syntax:
23777 @example
23778 @var{START}[-@var{END}] @var{COMMANDS};
23779 @end example
23780
23781 The time interval is specified by the @var{START} and @var{END} times.
23782 @var{END} is optional and defaults to the maximum time.
23783
23784 The current frame time is considered within the specified interval if
23785 it is included in the interval [@var{START}, @var{END}), that is when
23786 the time is greater or equal to @var{START} and is lesser than
23787 @var{END}.
23788
23789 @var{COMMANDS} consists of a sequence of one or more command
23790 specifications, separated by ",", relating to that interval.  The
23791 syntax of a command specification is given by:
23792 @example
23793 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
23794 @end example
23795
23796 @var{FLAGS} is optional and specifies the type of events relating to
23797 the time interval which enable sending the specified command, and must
23798 be a non-null sequence of identifier flags separated by "+" or "|" and
23799 enclosed between "[" and "]".
23800
23801 The following flags are recognized:
23802 @table @option
23803 @item enter
23804 The command is sent when the current frame timestamp enters the
23805 specified interval. In other words, the command is sent when the
23806 previous frame timestamp was not in the given interval, and the
23807 current is.
23808
23809 @item leave
23810 The command is sent when the current frame timestamp leaves the
23811 specified interval. In other words, the command is sent when the
23812 previous frame timestamp was in the given interval, and the
23813 current is not.
23814
23815 @item expr
23816 The command @var{ARG} is interpreted as expression and result of
23817 expression is passed as @var{ARG}.
23818
23819 The expression is evaluated through the eval API and can contain the following
23820 constants:
23821
23822 @table @option
23823 @item POS
23824 Original position in the file of the frame, or undefined if undefined
23825 for the current frame.
23826
23827 @item PTS
23828 The presentation timestamp in input.
23829
23830 @item N
23831 The count of the input frame for video or audio, starting from 0.
23832
23833 @item T
23834 The time in seconds of the current frame.
23835
23836 @item TS
23837 The start time in seconds of the current command interval.
23838
23839 @item TE
23840 The end time in seconds of the current command interval.
23841
23842 @item TI
23843 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
23844 @end table
23845
23846 @end table
23847
23848 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
23849 assumed.
23850
23851 @var{TARGET} specifies the target of the command, usually the name of
23852 the filter class or a specific filter instance name.
23853
23854 @var{COMMAND} specifies the name of the command for the target filter.
23855
23856 @var{ARG} is optional and specifies the optional list of argument for
23857 the given @var{COMMAND}.
23858
23859 Between one interval specification and another, whitespaces, or
23860 sequences of characters starting with @code{#} until the end of line,
23861 are ignored and can be used to annotate comments.
23862
23863 A simplified BNF description of the commands specification syntax
23864 follows:
23865 @example
23866 @var{COMMAND_FLAG}  ::= "enter" | "leave"
23867 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
23868 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
23869 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
23870 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
23871 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
23872 @end example
23873
23874 @subsection Examples
23875
23876 @itemize
23877 @item
23878 Specify audio tempo change at second 4:
23879 @example
23880 asendcmd=c='4.0 atempo tempo 1.5',atempo
23881 @end example
23882
23883 @item
23884 Target a specific filter instance:
23885 @example
23886 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
23887 @end example
23888
23889 @item
23890 Specify a list of drawtext and hue commands in a file.
23891 @example
23892 # show text in the interval 5-10
23893 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
23894          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
23895
23896 # desaturate the image in the interval 15-20
23897 15.0-20.0 [enter] hue s 0,
23898           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
23899           [leave] hue s 1,
23900           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
23901
23902 # apply an exponential saturation fade-out effect, starting from time 25
23903 25 [enter] hue s exp(25-t)
23904 @end example
23905
23906 A filtergraph allowing to read and process the above command list
23907 stored in a file @file{test.cmd}, can be specified with:
23908 @example
23909 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
23910 @end example
23911 @end itemize
23912
23913 @anchor{setpts}
23914 @section setpts, asetpts
23915
23916 Change the PTS (presentation timestamp) of the input frames.
23917
23918 @code{setpts} works on video frames, @code{asetpts} on audio frames.
23919
23920 This filter accepts the following options:
23921
23922 @table @option
23923
23924 @item expr
23925 The expression which is evaluated for each frame to construct its timestamp.
23926
23927 @end table
23928
23929 The expression is evaluated through the eval API and can contain the following
23930 constants:
23931
23932 @table @option
23933 @item FRAME_RATE, FR
23934 frame rate, only defined for constant frame-rate video
23935
23936 @item PTS
23937 The presentation timestamp in input
23938
23939 @item N
23940 The count of the input frame for video or the number of consumed samples,
23941 not including the current frame for audio, starting from 0.
23942
23943 @item NB_CONSUMED_SAMPLES
23944 The number of consumed samples, not including the current frame (only
23945 audio)
23946
23947 @item NB_SAMPLES, S
23948 The number of samples in the current frame (only audio)
23949
23950 @item SAMPLE_RATE, SR
23951 The audio sample rate.
23952
23953 @item STARTPTS
23954 The PTS of the first frame.
23955
23956 @item STARTT
23957 the time in seconds of the first frame
23958
23959 @item INTERLACED
23960 State whether the current frame is interlaced.
23961
23962 @item T
23963 the time in seconds of the current frame
23964
23965 @item POS
23966 original position in the file of the frame, or undefined if undefined
23967 for the current frame
23968
23969 @item PREV_INPTS
23970 The previous input PTS.
23971
23972 @item PREV_INT
23973 previous input time in seconds
23974
23975 @item PREV_OUTPTS
23976 The previous output PTS.
23977
23978 @item PREV_OUTT
23979 previous output time in seconds
23980
23981 @item RTCTIME
23982 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
23983 instead.
23984
23985 @item RTCSTART
23986 The wallclock (RTC) time at the start of the movie in microseconds.
23987
23988 @item TB
23989 The timebase of the input timestamps.
23990
23991 @end table
23992
23993 @subsection Examples
23994
23995 @itemize
23996 @item
23997 Start counting PTS from zero
23998 @example
23999 setpts=PTS-STARTPTS
24000 @end example
24001
24002 @item
24003 Apply fast motion effect:
24004 @example
24005 setpts=0.5*PTS
24006 @end example
24007
24008 @item
24009 Apply slow motion effect:
24010 @example
24011 setpts=2.0*PTS
24012 @end example
24013
24014 @item
24015 Set fixed rate of 25 frames per second:
24016 @example
24017 setpts=N/(25*TB)
24018 @end example
24019
24020 @item
24021 Set fixed rate 25 fps with some jitter:
24022 @example
24023 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
24024 @end example
24025
24026 @item
24027 Apply an offset of 10 seconds to the input PTS:
24028 @example
24029 setpts=PTS+10/TB
24030 @end example
24031
24032 @item
24033 Generate timestamps from a "live source" and rebase onto the current timebase:
24034 @example
24035 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
24036 @end example
24037
24038 @item
24039 Generate timestamps by counting samples:
24040 @example
24041 asetpts=N/SR/TB
24042 @end example
24043
24044 @end itemize
24045
24046 @section setrange
24047
24048 Force color range for the output video frame.
24049
24050 The @code{setrange} filter marks the color range property for the
24051 output frames. It does not change the input frame, but only sets the
24052 corresponding property, which affects how the frame is treated by
24053 following filters.
24054
24055 The filter accepts the following options:
24056
24057 @table @option
24058
24059 @item range
24060 Available values are:
24061
24062 @table @samp
24063 @item auto
24064 Keep the same color range property.
24065
24066 @item unspecified, unknown
24067 Set the color range as unspecified.
24068
24069 @item limited, tv, mpeg
24070 Set the color range as limited.
24071
24072 @item full, pc, jpeg
24073 Set the color range as full.
24074 @end table
24075 @end table
24076
24077 @section settb, asettb
24078
24079 Set the timebase to use for the output frames timestamps.
24080 It is mainly useful for testing timebase configuration.
24081
24082 It accepts the following parameters:
24083
24084 @table @option
24085
24086 @item expr, tb
24087 The expression which is evaluated into the output timebase.
24088
24089 @end table
24090
24091 The value for @option{tb} is an arithmetic expression representing a
24092 rational. The expression can contain the constants "AVTB" (the default
24093 timebase), "intb" (the input timebase) and "sr" (the sample rate,
24094 audio only). Default value is "intb".
24095
24096 @subsection Examples
24097
24098 @itemize
24099 @item
24100 Set the timebase to 1/25:
24101 @example
24102 settb=expr=1/25
24103 @end example
24104
24105 @item
24106 Set the timebase to 1/10:
24107 @example
24108 settb=expr=0.1
24109 @end example
24110
24111 @item
24112 Set the timebase to 1001/1000:
24113 @example
24114 settb=1+0.001
24115 @end example
24116
24117 @item
24118 Set the timebase to 2*intb:
24119 @example
24120 settb=2*intb
24121 @end example
24122
24123 @item
24124 Set the default timebase value:
24125 @example
24126 settb=AVTB
24127 @end example
24128 @end itemize
24129
24130 @section showcqt
24131 Convert input audio to a video output representing frequency spectrum
24132 logarithmically using Brown-Puckette constant Q transform algorithm with
24133 direct frequency domain coefficient calculation (but the transform itself
24134 is not really constant Q, instead the Q factor is actually variable/clamped),
24135 with musical tone scale, from E0 to D#10.
24136
24137 The filter accepts the following options:
24138
24139 @table @option
24140 @item size, s
24141 Specify the video size for the output. It must be even. For the syntax of this option,
24142 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24143 Default value is @code{1920x1080}.
24144
24145 @item fps, rate, r
24146 Set the output frame rate. Default value is @code{25}.
24147
24148 @item bar_h
24149 Set the bargraph height. It must be even. Default value is @code{-1} which
24150 computes the bargraph height automatically.
24151
24152 @item axis_h
24153 Set the axis height. It must be even. Default value is @code{-1} which computes
24154 the axis height automatically.
24155
24156 @item sono_h
24157 Set the sonogram height. It must be even. Default value is @code{-1} which
24158 computes the sonogram height automatically.
24159
24160 @item fullhd
24161 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
24162 instead. Default value is @code{1}.
24163
24164 @item sono_v, volume
24165 Specify the sonogram volume expression. It can contain variables:
24166 @table @option
24167 @item bar_v
24168 the @var{bar_v} evaluated expression
24169 @item frequency, freq, f
24170 the frequency where it is evaluated
24171 @item timeclamp, tc
24172 the value of @var{timeclamp} option
24173 @end table
24174 and functions:
24175 @table @option
24176 @item a_weighting(f)
24177 A-weighting of equal loudness
24178 @item b_weighting(f)
24179 B-weighting of equal loudness
24180 @item c_weighting(f)
24181 C-weighting of equal loudness.
24182 @end table
24183 Default value is @code{16}.
24184
24185 @item bar_v, volume2
24186 Specify the bargraph volume expression. It can contain variables:
24187 @table @option
24188 @item sono_v
24189 the @var{sono_v} evaluated expression
24190 @item frequency, freq, f
24191 the frequency where it is evaluated
24192 @item timeclamp, tc
24193 the value of @var{timeclamp} option
24194 @end table
24195 and functions:
24196 @table @option
24197 @item a_weighting(f)
24198 A-weighting of equal loudness
24199 @item b_weighting(f)
24200 B-weighting of equal loudness
24201 @item c_weighting(f)
24202 C-weighting of equal loudness.
24203 @end table
24204 Default value is @code{sono_v}.
24205
24206 @item sono_g, gamma
24207 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
24208 higher gamma makes the spectrum having more range. Default value is @code{3}.
24209 Acceptable range is @code{[1, 7]}.
24210
24211 @item bar_g, gamma2
24212 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
24213 @code{[1, 7]}.
24214
24215 @item bar_t
24216 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
24217 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
24218
24219 @item timeclamp, tc
24220 Specify the transform timeclamp. At low frequency, there is trade-off between
24221 accuracy in time domain and frequency domain. If timeclamp is lower,
24222 event in time domain is represented more accurately (such as fast bass drum),
24223 otherwise event in frequency domain is represented more accurately
24224 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
24225
24226 @item attack
24227 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
24228 limits future samples by applying asymmetric windowing in time domain, useful
24229 when low latency is required. Accepted range is @code{[0, 1]}.
24230
24231 @item basefreq
24232 Specify the transform base frequency. Default value is @code{20.01523126408007475},
24233 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
24234
24235 @item endfreq
24236 Specify the transform end frequency. Default value is @code{20495.59681441799654},
24237 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
24238
24239 @item coeffclamp
24240 This option is deprecated and ignored.
24241
24242 @item tlength
24243 Specify the transform length in time domain. Use this option to control accuracy
24244 trade-off between time domain and frequency domain at every frequency sample.
24245 It can contain variables:
24246 @table @option
24247 @item frequency, freq, f
24248 the frequency where it is evaluated
24249 @item timeclamp, tc
24250 the value of @var{timeclamp} option.
24251 @end table
24252 Default value is @code{384*tc/(384+tc*f)}.
24253
24254 @item count
24255 Specify the transform count for every video frame. Default value is @code{6}.
24256 Acceptable range is @code{[1, 30]}.
24257
24258 @item fcount
24259 Specify the transform count for every single pixel. Default value is @code{0},
24260 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
24261
24262 @item fontfile
24263 Specify font file for use with freetype to draw the axis. If not specified,
24264 use embedded font. Note that drawing with font file or embedded font is not
24265 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
24266 option instead.
24267
24268 @item font
24269 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
24270 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
24271 escaping.
24272
24273 @item fontcolor
24274 Specify font color expression. This is arithmetic expression that should return
24275 integer value 0xRRGGBB. It can contain variables:
24276 @table @option
24277 @item frequency, freq, f
24278 the frequency where it is evaluated
24279 @item timeclamp, tc
24280 the value of @var{timeclamp} option
24281 @end table
24282 and functions:
24283 @table @option
24284 @item midi(f)
24285 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
24286 @item r(x), g(x), b(x)
24287 red, green, and blue value of intensity x.
24288 @end table
24289 Default value is @code{st(0, (midi(f)-59.5)/12);
24290 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
24291 r(1-ld(1)) + b(ld(1))}.
24292
24293 @item axisfile
24294 Specify image file to draw the axis. This option override @var{fontfile} and
24295 @var{fontcolor} option.
24296
24297 @item axis, text
24298 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
24299 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
24300 Default value is @code{1}.
24301
24302 @item csp
24303 Set colorspace. The accepted values are:
24304 @table @samp
24305 @item unspecified
24306 Unspecified (default)
24307
24308 @item bt709
24309 BT.709
24310
24311 @item fcc
24312 FCC
24313
24314 @item bt470bg
24315 BT.470BG or BT.601-6 625
24316
24317 @item smpte170m
24318 SMPTE-170M or BT.601-6 525
24319
24320 @item smpte240m
24321 SMPTE-240M
24322
24323 @item bt2020ncl
24324 BT.2020 with non-constant luminance
24325
24326 @end table
24327
24328 @item cscheme
24329 Set spectrogram color scheme. This is list of floating point values with format
24330 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
24331 The default is @code{1|0.5|0|0|0.5|1}.
24332
24333 @end table
24334
24335 @subsection Examples
24336
24337 @itemize
24338 @item
24339 Playing audio while showing the spectrum:
24340 @example
24341 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
24342 @end example
24343
24344 @item
24345 Same as above, but with frame rate 30 fps:
24346 @example
24347 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
24348 @end example
24349
24350 @item
24351 Playing at 1280x720:
24352 @example
24353 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
24354 @end example
24355
24356 @item
24357 Disable sonogram display:
24358 @example
24359 sono_h=0
24360 @end example
24361
24362 @item
24363 A1 and its harmonics: A1, A2, (near)E3, A3:
24364 @example
24365 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),
24366                  asplit[a][out1]; [a] showcqt [out0]'
24367 @end example
24368
24369 @item
24370 Same as above, but with more accuracy in frequency domain:
24371 @example
24372 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),
24373                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
24374 @end example
24375
24376 @item
24377 Custom volume:
24378 @example
24379 bar_v=10:sono_v=bar_v*a_weighting(f)
24380 @end example
24381
24382 @item
24383 Custom gamma, now spectrum is linear to the amplitude.
24384 @example
24385 bar_g=2:sono_g=2
24386 @end example
24387
24388 @item
24389 Custom tlength equation:
24390 @example
24391 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)))'
24392 @end example
24393
24394 @item
24395 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
24396 @example
24397 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
24398 @end example
24399
24400 @item
24401 Custom font using fontconfig:
24402 @example
24403 font='Courier New,Monospace,mono|bold'
24404 @end example
24405
24406 @item
24407 Custom frequency range with custom axis using image file:
24408 @example
24409 axisfile=myaxis.png:basefreq=40:endfreq=10000
24410 @end example
24411 @end itemize
24412
24413 @section showfreqs
24414
24415 Convert input audio to video output representing the audio power spectrum.
24416 Audio amplitude is on Y-axis while frequency is on X-axis.
24417
24418 The filter accepts the following options:
24419
24420 @table @option
24421 @item size, s
24422 Specify size of video. For the syntax of this option, check the
24423 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24424 Default is @code{1024x512}.
24425
24426 @item mode
24427 Set display mode.
24428 This set how each frequency bin will be represented.
24429
24430 It accepts the following values:
24431 @table @samp
24432 @item line
24433 @item bar
24434 @item dot
24435 @end table
24436 Default is @code{bar}.
24437
24438 @item ascale
24439 Set amplitude scale.
24440
24441 It accepts the following values:
24442 @table @samp
24443 @item lin
24444 Linear scale.
24445
24446 @item sqrt
24447 Square root scale.
24448
24449 @item cbrt
24450 Cubic root scale.
24451
24452 @item log
24453 Logarithmic scale.
24454 @end table
24455 Default is @code{log}.
24456
24457 @item fscale
24458 Set frequency scale.
24459
24460 It accepts the following values:
24461 @table @samp
24462 @item lin
24463 Linear scale.
24464
24465 @item log
24466 Logarithmic scale.
24467
24468 @item rlog
24469 Reverse logarithmic scale.
24470 @end table
24471 Default is @code{lin}.
24472
24473 @item win_size
24474 Set window size. Allowed range is from 16 to 65536.
24475
24476 Default is @code{2048}
24477
24478 @item win_func
24479 Set windowing function.
24480
24481 It accepts the following values:
24482 @table @samp
24483 @item rect
24484 @item bartlett
24485 @item hanning
24486 @item hamming
24487 @item blackman
24488 @item welch
24489 @item flattop
24490 @item bharris
24491 @item bnuttall
24492 @item bhann
24493 @item sine
24494 @item nuttall
24495 @item lanczos
24496 @item gauss
24497 @item tukey
24498 @item dolph
24499 @item cauchy
24500 @item parzen
24501 @item poisson
24502 @item bohman
24503 @end table
24504 Default is @code{hanning}.
24505
24506 @item overlap
24507 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
24508 which means optimal overlap for selected window function will be picked.
24509
24510 @item averaging
24511 Set time averaging. Setting this to 0 will display current maximal peaks.
24512 Default is @code{1}, which means time averaging is disabled.
24513
24514 @item colors
24515 Specify list of colors separated by space or by '|' which will be used to
24516 draw channel frequencies. Unrecognized or missing colors will be replaced
24517 by white color.
24518
24519 @item cmode
24520 Set channel display mode.
24521
24522 It accepts the following values:
24523 @table @samp
24524 @item combined
24525 @item separate
24526 @end table
24527 Default is @code{combined}.
24528
24529 @item minamp
24530 Set minimum amplitude used in @code{log} amplitude scaler.
24531
24532 @end table
24533
24534 @section showspatial
24535
24536 Convert stereo input audio to a video output, representing the spatial relationship
24537 between two channels.
24538
24539 The filter accepts the following options:
24540
24541 @table @option
24542 @item size, s
24543 Specify the video size for the output. For the syntax of this option, check the
24544 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24545 Default value is @code{512x512}.
24546
24547 @item win_size
24548 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
24549
24550 @item win_func
24551 Set window function.
24552
24553 It accepts the following values:
24554 @table @samp
24555 @item rect
24556 @item bartlett
24557 @item hann
24558 @item hanning
24559 @item hamming
24560 @item blackman
24561 @item welch
24562 @item flattop
24563 @item bharris
24564 @item bnuttall
24565 @item bhann
24566 @item sine
24567 @item nuttall
24568 @item lanczos
24569 @item gauss
24570 @item tukey
24571 @item dolph
24572 @item cauchy
24573 @item parzen
24574 @item poisson
24575 @item bohman
24576 @end table
24577
24578 Default value is @code{hann}.
24579
24580 @item overlap
24581 Set ratio of overlap window. Default value is @code{0.5}.
24582 When value is @code{1} overlap is set to recommended size for specific
24583 window function currently used.
24584 @end table
24585
24586 @anchor{showspectrum}
24587 @section showspectrum
24588
24589 Convert input audio to a video output, representing the audio frequency
24590 spectrum.
24591
24592 The filter accepts the following options:
24593
24594 @table @option
24595 @item size, s
24596 Specify the video size for the output. For the syntax of this option, check the
24597 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24598 Default value is @code{640x512}.
24599
24600 @item slide
24601 Specify how the spectrum should slide along the window.
24602
24603 It accepts the following values:
24604 @table @samp
24605 @item replace
24606 the samples start again on the left when they reach the right
24607 @item scroll
24608 the samples scroll from right to left
24609 @item fullframe
24610 frames are only produced when the samples reach the right
24611 @item rscroll
24612 the samples scroll from left to right
24613 @end table
24614
24615 Default value is @code{replace}.
24616
24617 @item mode
24618 Specify display mode.
24619
24620 It accepts the following values:
24621 @table @samp
24622 @item combined
24623 all channels are displayed in the same row
24624 @item separate
24625 all channels are displayed in separate rows
24626 @end table
24627
24628 Default value is @samp{combined}.
24629
24630 @item color
24631 Specify display color mode.
24632
24633 It accepts the following values:
24634 @table @samp
24635 @item channel
24636 each channel is displayed in a separate color
24637 @item intensity
24638 each channel is displayed using the same color scheme
24639 @item rainbow
24640 each channel is displayed using the rainbow color scheme
24641 @item moreland
24642 each channel is displayed using the moreland color scheme
24643 @item nebulae
24644 each channel is displayed using the nebulae color scheme
24645 @item fire
24646 each channel is displayed using the fire color scheme
24647 @item fiery
24648 each channel is displayed using the fiery color scheme
24649 @item fruit
24650 each channel is displayed using the fruit color scheme
24651 @item cool
24652 each channel is displayed using the cool color scheme
24653 @item magma
24654 each channel is displayed using the magma color scheme
24655 @item green
24656 each channel is displayed using the green color scheme
24657 @item viridis
24658 each channel is displayed using the viridis color scheme
24659 @item plasma
24660 each channel is displayed using the plasma color scheme
24661 @item cividis
24662 each channel is displayed using the cividis color scheme
24663 @item terrain
24664 each channel is displayed using the terrain color scheme
24665 @end table
24666
24667 Default value is @samp{channel}.
24668
24669 @item scale
24670 Specify scale used for calculating intensity color values.
24671
24672 It accepts the following values:
24673 @table @samp
24674 @item lin
24675 linear
24676 @item sqrt
24677 square root, default
24678 @item cbrt
24679 cubic root
24680 @item log
24681 logarithmic
24682 @item 4thrt
24683 4th root
24684 @item 5thrt
24685 5th root
24686 @end table
24687
24688 Default value is @samp{sqrt}.
24689
24690 @item fscale
24691 Specify frequency scale.
24692
24693 It accepts the following values:
24694 @table @samp
24695 @item lin
24696 linear
24697 @item log
24698 logarithmic
24699 @end table
24700
24701 Default value is @samp{lin}.
24702
24703 @item saturation
24704 Set saturation modifier for displayed colors. Negative values provide
24705 alternative color scheme. @code{0} is no saturation at all.
24706 Saturation must be in [-10.0, 10.0] range.
24707 Default value is @code{1}.
24708
24709 @item win_func
24710 Set window function.
24711
24712 It accepts the following values:
24713 @table @samp
24714 @item rect
24715 @item bartlett
24716 @item hann
24717 @item hanning
24718 @item hamming
24719 @item blackman
24720 @item welch
24721 @item flattop
24722 @item bharris
24723 @item bnuttall
24724 @item bhann
24725 @item sine
24726 @item nuttall
24727 @item lanczos
24728 @item gauss
24729 @item tukey
24730 @item dolph
24731 @item cauchy
24732 @item parzen
24733 @item poisson
24734 @item bohman
24735 @end table
24736
24737 Default value is @code{hann}.
24738
24739 @item orientation
24740 Set orientation of time vs frequency axis. Can be @code{vertical} or
24741 @code{horizontal}. Default is @code{vertical}.
24742
24743 @item overlap
24744 Set ratio of overlap window. Default value is @code{0}.
24745 When value is @code{1} overlap is set to recommended size for specific
24746 window function currently used.
24747
24748 @item gain
24749 Set scale gain for calculating intensity color values.
24750 Default value is @code{1}.
24751
24752 @item data
24753 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
24754
24755 @item rotation
24756 Set color rotation, must be in [-1.0, 1.0] range.
24757 Default value is @code{0}.
24758
24759 @item start
24760 Set start frequency from which to display spectrogram. Default is @code{0}.
24761
24762 @item stop
24763 Set stop frequency to which to display spectrogram. Default is @code{0}.
24764
24765 @item fps
24766 Set upper frame rate limit. Default is @code{auto}, unlimited.
24767
24768 @item legend
24769 Draw time and frequency axes and legends. Default is disabled.
24770 @end table
24771
24772 The usage is very similar to the showwaves filter; see the examples in that
24773 section.
24774
24775 @subsection Examples
24776
24777 @itemize
24778 @item
24779 Large window with logarithmic color scaling:
24780 @example
24781 showspectrum=s=1280x480:scale=log
24782 @end example
24783
24784 @item
24785 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
24786 @example
24787 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24788              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
24789 @end example
24790 @end itemize
24791
24792 @section showspectrumpic
24793
24794 Convert input audio to a single video frame, representing the audio frequency
24795 spectrum.
24796
24797 The filter accepts the following options:
24798
24799 @table @option
24800 @item size, s
24801 Specify the video size for the output. For the syntax of this option, check the
24802 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24803 Default value is @code{4096x2048}.
24804
24805 @item mode
24806 Specify display mode.
24807
24808 It accepts the following values:
24809 @table @samp
24810 @item combined
24811 all channels are displayed in the same row
24812 @item separate
24813 all channels are displayed in separate rows
24814 @end table
24815 Default value is @samp{combined}.
24816
24817 @item color
24818 Specify display color mode.
24819
24820 It accepts the following values:
24821 @table @samp
24822 @item channel
24823 each channel is displayed in a separate color
24824 @item intensity
24825 each channel is displayed using the same color scheme
24826 @item rainbow
24827 each channel is displayed using the rainbow color scheme
24828 @item moreland
24829 each channel is displayed using the moreland color scheme
24830 @item nebulae
24831 each channel is displayed using the nebulae color scheme
24832 @item fire
24833 each channel is displayed using the fire color scheme
24834 @item fiery
24835 each channel is displayed using the fiery color scheme
24836 @item fruit
24837 each channel is displayed using the fruit color scheme
24838 @item cool
24839 each channel is displayed using the cool color scheme
24840 @item magma
24841 each channel is displayed using the magma color scheme
24842 @item green
24843 each channel is displayed using the green color scheme
24844 @item viridis
24845 each channel is displayed using the viridis color scheme
24846 @item plasma
24847 each channel is displayed using the plasma color scheme
24848 @item cividis
24849 each channel is displayed using the cividis color scheme
24850 @item terrain
24851 each channel is displayed using the terrain color scheme
24852 @end table
24853 Default value is @samp{intensity}.
24854
24855 @item scale
24856 Specify scale used for calculating intensity color values.
24857
24858 It accepts the following values:
24859 @table @samp
24860 @item lin
24861 linear
24862 @item sqrt
24863 square root, default
24864 @item cbrt
24865 cubic root
24866 @item log
24867 logarithmic
24868 @item 4thrt
24869 4th root
24870 @item 5thrt
24871 5th root
24872 @end table
24873 Default value is @samp{log}.
24874
24875 @item fscale
24876 Specify frequency scale.
24877
24878 It accepts the following values:
24879 @table @samp
24880 @item lin
24881 linear
24882 @item log
24883 logarithmic
24884 @end table
24885
24886 Default value is @samp{lin}.
24887
24888 @item saturation
24889 Set saturation modifier for displayed colors. Negative values provide
24890 alternative color scheme. @code{0} is no saturation at all.
24891 Saturation must be in [-10.0, 10.0] range.
24892 Default value is @code{1}.
24893
24894 @item win_func
24895 Set window function.
24896
24897 It accepts the following values:
24898 @table @samp
24899 @item rect
24900 @item bartlett
24901 @item hann
24902 @item hanning
24903 @item hamming
24904 @item blackman
24905 @item welch
24906 @item flattop
24907 @item bharris
24908 @item bnuttall
24909 @item bhann
24910 @item sine
24911 @item nuttall
24912 @item lanczos
24913 @item gauss
24914 @item tukey
24915 @item dolph
24916 @item cauchy
24917 @item parzen
24918 @item poisson
24919 @item bohman
24920 @end table
24921 Default value is @code{hann}.
24922
24923 @item orientation
24924 Set orientation of time vs frequency axis. Can be @code{vertical} or
24925 @code{horizontal}. Default is @code{vertical}.
24926
24927 @item gain
24928 Set scale gain for calculating intensity color values.
24929 Default value is @code{1}.
24930
24931 @item legend
24932 Draw time and frequency axes and legends. Default is enabled.
24933
24934 @item rotation
24935 Set color rotation, must be in [-1.0, 1.0] range.
24936 Default value is @code{0}.
24937
24938 @item start
24939 Set start frequency from which to display spectrogram. Default is @code{0}.
24940
24941 @item stop
24942 Set stop frequency to which to display spectrogram. Default is @code{0}.
24943 @end table
24944
24945 @subsection Examples
24946
24947 @itemize
24948 @item
24949 Extract an audio spectrogram of a whole audio track
24950 in a 1024x1024 picture using @command{ffmpeg}:
24951 @example
24952 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
24953 @end example
24954 @end itemize
24955
24956 @section showvolume
24957
24958 Convert input audio volume to a video output.
24959
24960 The filter accepts the following options:
24961
24962 @table @option
24963 @item rate, r
24964 Set video rate.
24965
24966 @item b
24967 Set border width, allowed range is [0, 5]. Default is 1.
24968
24969 @item w
24970 Set channel width, allowed range is [80, 8192]. Default is 400.
24971
24972 @item h
24973 Set channel height, allowed range is [1, 900]. Default is 20.
24974
24975 @item f
24976 Set fade, allowed range is [0, 1]. Default is 0.95.
24977
24978 @item c
24979 Set volume color expression.
24980
24981 The expression can use the following variables:
24982
24983 @table @option
24984 @item VOLUME
24985 Current max volume of channel in dB.
24986
24987 @item PEAK
24988 Current peak.
24989
24990 @item CHANNEL
24991 Current channel number, starting from 0.
24992 @end table
24993
24994 @item t
24995 If set, displays channel names. Default is enabled.
24996
24997 @item v
24998 If set, displays volume values. Default is enabled.
24999
25000 @item o
25001 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
25002 default is @code{h}.
25003
25004 @item s
25005 Set step size, allowed range is [0, 5]. Default is 0, which means
25006 step is disabled.
25007
25008 @item p
25009 Set background opacity, allowed range is [0, 1]. Default is 0.
25010
25011 @item m
25012 Set metering mode, can be peak: @code{p} or rms: @code{r},
25013 default is @code{p}.
25014
25015 @item ds
25016 Set display scale, can be linear: @code{lin} or log: @code{log},
25017 default is @code{lin}.
25018
25019 @item dm
25020 In second.
25021 If set to > 0., display a line for the max level
25022 in the previous seconds.
25023 default is disabled: @code{0.}
25024
25025 @item dmc
25026 The color of the max line. Use when @code{dm} option is set to > 0.
25027 default is: @code{orange}
25028 @end table
25029
25030 @section showwaves
25031
25032 Convert input audio to a video output, representing the samples waves.
25033
25034 The filter accepts the following options:
25035
25036 @table @option
25037 @item size, s
25038 Specify the video size for the output. For the syntax of this option, check the
25039 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25040 Default value is @code{600x240}.
25041
25042 @item mode
25043 Set display mode.
25044
25045 Available values are:
25046 @table @samp
25047 @item point
25048 Draw a point for each sample.
25049
25050 @item line
25051 Draw a vertical line for each sample.
25052
25053 @item p2p
25054 Draw a point for each sample and a line between them.
25055
25056 @item cline
25057 Draw a centered vertical line for each sample.
25058 @end table
25059
25060 Default value is @code{point}.
25061
25062 @item n
25063 Set the number of samples which are printed on the same column. A
25064 larger value will decrease the frame rate. Must be a positive
25065 integer. This option can be set only if the value for @var{rate}
25066 is not explicitly specified.
25067
25068 @item rate, r
25069 Set the (approximate) output frame rate. This is done by setting the
25070 option @var{n}. Default value is "25".
25071
25072 @item split_channels
25073 Set if channels should be drawn separately or overlap. Default value is 0.
25074
25075 @item colors
25076 Set colors separated by '|' which are going to be used for drawing of each channel.
25077
25078 @item scale
25079 Set amplitude scale.
25080
25081 Available values are:
25082 @table @samp
25083 @item lin
25084 Linear.
25085
25086 @item log
25087 Logarithmic.
25088
25089 @item sqrt
25090 Square root.
25091
25092 @item cbrt
25093 Cubic root.
25094 @end table
25095
25096 Default is linear.
25097
25098 @item draw
25099 Set the draw mode. This is mostly useful to set for high @var{n}.
25100
25101 Available values are:
25102 @table @samp
25103 @item scale
25104 Scale pixel values for each drawn sample.
25105
25106 @item full
25107 Draw every sample directly.
25108 @end table
25109
25110 Default value is @code{scale}.
25111 @end table
25112
25113 @subsection Examples
25114
25115 @itemize
25116 @item
25117 Output the input file audio and the corresponding video representation
25118 at the same time:
25119 @example
25120 amovie=a.mp3,asplit[out0],showwaves[out1]
25121 @end example
25122
25123 @item
25124 Create a synthetic signal and show it with showwaves, forcing a
25125 frame rate of 30 frames per second:
25126 @example
25127 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
25128 @end example
25129 @end itemize
25130
25131 @section showwavespic
25132
25133 Convert input audio to a single video frame, representing the samples waves.
25134
25135 The filter accepts the following options:
25136
25137 @table @option
25138 @item size, s
25139 Specify the video size for the output. For the syntax of this option, check the
25140 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25141 Default value is @code{600x240}.
25142
25143 @item split_channels
25144 Set if channels should be drawn separately or overlap. Default value is 0.
25145
25146 @item colors
25147 Set colors separated by '|' which are going to be used for drawing of each channel.
25148
25149 @item scale
25150 Set amplitude scale.
25151
25152 Available values are:
25153 @table @samp
25154 @item lin
25155 Linear.
25156
25157 @item log
25158 Logarithmic.
25159
25160 @item sqrt
25161 Square root.
25162
25163 @item cbrt
25164 Cubic root.
25165 @end table
25166
25167 Default is linear.
25168
25169 @item draw
25170 Set the draw mode.
25171
25172 Available values are:
25173 @table @samp
25174 @item scale
25175 Scale pixel values for each drawn sample.
25176
25177 @item full
25178 Draw every sample directly.
25179 @end table
25180
25181 Default value is @code{scale}.
25182 @end table
25183
25184 @subsection Examples
25185
25186 @itemize
25187 @item
25188 Extract a channel split representation of the wave form of a whole audio track
25189 in a 1024x800 picture using @command{ffmpeg}:
25190 @example
25191 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
25192 @end example
25193 @end itemize
25194
25195 @section sidedata, asidedata
25196
25197 Delete frame side data, or select frames based on it.
25198
25199 This filter accepts the following options:
25200
25201 @table @option
25202 @item mode
25203 Set mode of operation of the filter.
25204
25205 Can be one of the following:
25206
25207 @table @samp
25208 @item select
25209 Select every frame with side data of @code{type}.
25210
25211 @item delete
25212 Delete side data of @code{type}. If @code{type} is not set, delete all side
25213 data in the frame.
25214
25215 @end table
25216
25217 @item type
25218 Set side data type used with all modes. Must be set for @code{select} mode. For
25219 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
25220 in @file{libavutil/frame.h}. For example, to choose
25221 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
25222
25223 @end table
25224
25225 @section spectrumsynth
25226
25227 Synthesize audio from 2 input video spectrums, first input stream represents
25228 magnitude across time and second represents phase across time.
25229 The filter will transform from frequency domain as displayed in videos back
25230 to time domain as presented in audio output.
25231
25232 This filter is primarily created for reversing processed @ref{showspectrum}
25233 filter outputs, but can synthesize sound from other spectrograms too.
25234 But in such case results are going to be poor if the phase data is not
25235 available, because in such cases phase data need to be recreated, usually
25236 it's just recreated from random noise.
25237 For best results use gray only output (@code{channel} color mode in
25238 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
25239 @code{lin} scale for phase video. To produce phase, for 2nd video, use
25240 @code{data} option. Inputs videos should generally use @code{fullframe}
25241 slide mode as that saves resources needed for decoding video.
25242
25243 The filter accepts the following options:
25244
25245 @table @option
25246 @item sample_rate
25247 Specify sample rate of output audio, the sample rate of audio from which
25248 spectrum was generated may differ.
25249
25250 @item channels
25251 Set number of channels represented in input video spectrums.
25252
25253 @item scale
25254 Set scale which was used when generating magnitude input spectrum.
25255 Can be @code{lin} or @code{log}. Default is @code{log}.
25256
25257 @item slide
25258 Set slide which was used when generating inputs spectrums.
25259 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
25260 Default is @code{fullframe}.
25261
25262 @item win_func
25263 Set window function used for resynthesis.
25264
25265 @item overlap
25266 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25267 which means optimal overlap for selected window function will be picked.
25268
25269 @item orientation
25270 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
25271 Default is @code{vertical}.
25272 @end table
25273
25274 @subsection Examples
25275
25276 @itemize
25277 @item
25278 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
25279 then resynthesize videos back to audio with spectrumsynth:
25280 @example
25281 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
25282 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
25283 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
25284 @end example
25285 @end itemize
25286
25287 @section split, asplit
25288
25289 Split input into several identical outputs.
25290
25291 @code{asplit} works with audio input, @code{split} with video.
25292
25293 The filter accepts a single parameter which specifies the number of outputs. If
25294 unspecified, it defaults to 2.
25295
25296 @subsection Examples
25297
25298 @itemize
25299 @item
25300 Create two separate outputs from the same input:
25301 @example
25302 [in] split [out0][out1]
25303 @end example
25304
25305 @item
25306 To create 3 or more outputs, you need to specify the number of
25307 outputs, like in:
25308 @example
25309 [in] asplit=3 [out0][out1][out2]
25310 @end example
25311
25312 @item
25313 Create two separate outputs from the same input, one cropped and
25314 one padded:
25315 @example
25316 [in] split [splitout1][splitout2];
25317 [splitout1] crop=100:100:0:0    [cropout];
25318 [splitout2] pad=200:200:100:100 [padout];
25319 @end example
25320
25321 @item
25322 Create 5 copies of the input audio with @command{ffmpeg}:
25323 @example
25324 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
25325 @end example
25326 @end itemize
25327
25328 @section zmq, azmq
25329
25330 Receive commands sent through a libzmq client, and forward them to
25331 filters in the filtergraph.
25332
25333 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
25334 must be inserted between two video filters, @code{azmq} between two
25335 audio filters. Both are capable to send messages to any filter type.
25336
25337 To enable these filters you need to install the libzmq library and
25338 headers and configure FFmpeg with @code{--enable-libzmq}.
25339
25340 For more information about libzmq see:
25341 @url{http://www.zeromq.org/}
25342
25343 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
25344 receives messages sent through a network interface defined by the
25345 @option{bind_address} (or the abbreviation "@option{b}") option.
25346 Default value of this option is @file{tcp://localhost:5555}. You may
25347 want to alter this value to your needs, but do not forget to escape any
25348 ':' signs (see @ref{filtergraph escaping}).
25349
25350 The received message must be in the form:
25351 @example
25352 @var{TARGET} @var{COMMAND} [@var{ARG}]
25353 @end example
25354
25355 @var{TARGET} specifies the target of the command, usually the name of
25356 the filter class or a specific filter instance name. The default
25357 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
25358 but you can override this by using the @samp{filter_name@@id} syntax
25359 (see @ref{Filtergraph syntax}).
25360
25361 @var{COMMAND} specifies the name of the command for the target filter.
25362
25363 @var{ARG} is optional and specifies the optional argument list for the
25364 given @var{COMMAND}.
25365
25366 Upon reception, the message is processed and the corresponding command
25367 is injected into the filtergraph. Depending on the result, the filter
25368 will send a reply to the client, adopting the format:
25369 @example
25370 @var{ERROR_CODE} @var{ERROR_REASON}
25371 @var{MESSAGE}
25372 @end example
25373
25374 @var{MESSAGE} is optional.
25375
25376 @subsection Examples
25377
25378 Look at @file{tools/zmqsend} for an example of a zmq client which can
25379 be used to send commands processed by these filters.
25380
25381 Consider the following filtergraph generated by @command{ffplay}.
25382 In this example the last overlay filter has an instance name. All other
25383 filters will have default instance names.
25384
25385 @example
25386 ffplay -dumpgraph 1 -f lavfi "
25387 color=s=100x100:c=red  [l];
25388 color=s=100x100:c=blue [r];
25389 nullsrc=s=200x100, zmq [bg];
25390 [bg][l]   overlay     [bg+l];
25391 [bg+l][r] overlay@@my=x=100 "
25392 @end example
25393
25394 To change the color of the left side of the video, the following
25395 command can be used:
25396 @example
25397 echo Parsed_color_0 c yellow | tools/zmqsend
25398 @end example
25399
25400 To change the right side:
25401 @example
25402 echo Parsed_color_1 c pink | tools/zmqsend
25403 @end example
25404
25405 To change the position of the right side:
25406 @example
25407 echo overlay@@my x 150 | tools/zmqsend
25408 @end example
25409
25410
25411 @c man end MULTIMEDIA FILTERS
25412
25413 @chapter Multimedia Sources
25414 @c man begin MULTIMEDIA SOURCES
25415
25416 Below is a description of the currently available multimedia sources.
25417
25418 @section amovie
25419
25420 This is the same as @ref{movie} source, except it selects an audio
25421 stream by default.
25422
25423 @anchor{movie}
25424 @section movie
25425
25426 Read audio and/or video stream(s) from a movie container.
25427
25428 It accepts the following parameters:
25429
25430 @table @option
25431 @item filename
25432 The name of the resource to read (not necessarily a file; it can also be a
25433 device or a stream accessed through some protocol).
25434
25435 @item format_name, f
25436 Specifies the format assumed for the movie to read, and can be either
25437 the name of a container or an input device. If not specified, the
25438 format is guessed from @var{movie_name} or by probing.
25439
25440 @item seek_point, sp
25441 Specifies the seek point in seconds. The frames will be output
25442 starting from this seek point. The parameter is evaluated with
25443 @code{av_strtod}, so the numerical value may be suffixed by an IS
25444 postfix. The default value is "0".
25445
25446 @item streams, s
25447 Specifies the streams to read. Several streams can be specified,
25448 separated by "+". The source will then have as many outputs, in the
25449 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
25450 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
25451 respectively the default (best suited) video and audio stream. Default
25452 is "dv", or "da" if the filter is called as "amovie".
25453
25454 @item stream_index, si
25455 Specifies the index of the video stream to read. If the value is -1,
25456 the most suitable video stream will be automatically selected. The default
25457 value is "-1". Deprecated. If the filter is called "amovie", it will select
25458 audio instead of video.
25459
25460 @item loop
25461 Specifies how many times to read the stream in sequence.
25462 If the value is 0, the stream will be looped infinitely.
25463 Default value is "1".
25464
25465 Note that when the movie is looped the source timestamps are not
25466 changed, so it will generate non monotonically increasing timestamps.
25467
25468 @item discontinuity
25469 Specifies the time difference between frames above which the point is
25470 considered a timestamp discontinuity which is removed by adjusting the later
25471 timestamps.
25472 @end table
25473
25474 It allows overlaying a second video on top of the main input of
25475 a filtergraph, as shown in this graph:
25476 @example
25477 input -----------> deltapts0 --> overlay --> output
25478                                     ^
25479                                     |
25480 movie --> scale--> deltapts1 -------+
25481 @end example
25482 @subsection Examples
25483
25484 @itemize
25485 @item
25486 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
25487 on top of the input labelled "in":
25488 @example
25489 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
25490 [in] setpts=PTS-STARTPTS [main];
25491 [main][over] overlay=16:16 [out]
25492 @end example
25493
25494 @item
25495 Read from a video4linux2 device, and overlay it on top of the input
25496 labelled "in":
25497 @example
25498 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
25499 [in] setpts=PTS-STARTPTS [main];
25500 [main][over] overlay=16:16 [out]
25501 @end example
25502
25503 @item
25504 Read the first video stream and the audio stream with id 0x81 from
25505 dvd.vob; the video is connected to the pad named "video" and the audio is
25506 connected to the pad named "audio":
25507 @example
25508 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
25509 @end example
25510 @end itemize
25511
25512 @subsection Commands
25513
25514 Both movie and amovie support the following commands:
25515 @table @option
25516 @item seek
25517 Perform seek using "av_seek_frame".
25518 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
25519 @itemize
25520 @item
25521 @var{stream_index}: If stream_index is -1, a default
25522 stream is selected, and @var{timestamp} is automatically converted
25523 from AV_TIME_BASE units to the stream specific time_base.
25524 @item
25525 @var{timestamp}: Timestamp in AVStream.time_base units
25526 or, if no stream is specified, in AV_TIME_BASE units.
25527 @item
25528 @var{flags}: Flags which select direction and seeking mode.
25529 @end itemize
25530
25531 @item get_duration
25532 Get movie duration in AV_TIME_BASE units.
25533
25534 @end table
25535
25536 @c man end MULTIMEDIA SOURCES