]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc/filters: clarify metadata and logging for blackdetect
[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 Bit_depth
2333 Dynamic_range
2334 Zero_crossings
2335 Zero_crossings_rate
2336 Number_of_NaNs
2337 Number_of_Infs
2338 Number_of_denormals
2339
2340 and for Overall:
2341 DC_offset
2342 Min_level
2343 Max_level
2344 Min_difference
2345 Max_difference
2346 Mean_difference
2347 RMS_difference
2348 Peak_level
2349 RMS_level
2350 RMS_peak
2351 RMS_trough
2352 Flat_factor
2353 Peak_count
2354 Bit_depth
2355 Number_of_samples
2356 Number_of_NaNs
2357 Number_of_Infs
2358 Number_of_denormals
2359
2360 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2361 this @code{lavfi.astats.Overall.Peak_count}.
2362
2363 For description what each key means read below.
2364
2365 @item reset
2366 Set number of frame after which stats are going to be recalculated.
2367 Default is disabled.
2368
2369 @item measure_perchannel
2370 Select the entries which need to be measured per channel. The metadata keys can
2371 be used as flags, default is @option{all} which measures everything.
2372 @option{none} disables all per channel measurement.
2373
2374 @item measure_overall
2375 Select the entries which need to be measured overall. The metadata keys can
2376 be used as flags, default is @option{all} which measures everything.
2377 @option{none} disables all overall measurement.
2378
2379 @end table
2380
2381 A description of each shown parameter follows:
2382
2383 @table @option
2384 @item DC offset
2385 Mean amplitude displacement from zero.
2386
2387 @item Min level
2388 Minimal sample level.
2389
2390 @item Max level
2391 Maximal sample level.
2392
2393 @item Min difference
2394 Minimal difference between two consecutive samples.
2395
2396 @item Max difference
2397 Maximal difference between two consecutive samples.
2398
2399 @item Mean difference
2400 Mean difference between two consecutive samples.
2401 The average of each difference between two consecutive samples.
2402
2403 @item RMS difference
2404 Root Mean Square difference between two consecutive samples.
2405
2406 @item Peak level dB
2407 @item RMS level dB
2408 Standard peak and RMS level measured in dBFS.
2409
2410 @item RMS peak dB
2411 @item RMS trough dB
2412 Peak and trough values for RMS level measured over a short window.
2413
2414 @item Crest factor
2415 Standard ratio of peak to RMS level (note: not in dB).
2416
2417 @item Flat factor
2418 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2419 (i.e. either @var{Min level} or @var{Max level}).
2420
2421 @item Peak count
2422 Number of occasions (not the number of samples) that the signal attained either
2423 @var{Min level} or @var{Max level}.
2424
2425 @item Bit depth
2426 Overall bit depth of audio. Number of bits used for each sample.
2427
2428 @item Dynamic range
2429 Measured dynamic range of audio in dB.
2430
2431 @item Zero crossings
2432 Number of points where the waveform crosses the zero level axis.
2433
2434 @item Zero crossings rate
2435 Rate of Zero crossings and number of audio samples.
2436 @end table
2437
2438 @section atempo
2439
2440 Adjust audio tempo.
2441
2442 The filter accepts exactly one parameter, the audio tempo. If not
2443 specified then the filter will assume nominal 1.0 tempo. Tempo must
2444 be in the [0.5, 100.0] range.
2445
2446 Note that tempo greater than 2 will skip some samples rather than
2447 blend them in.  If for any reason this is a concern it is always
2448 possible to daisy-chain several instances of atempo to achieve the
2449 desired product tempo.
2450
2451 @subsection Examples
2452
2453 @itemize
2454 @item
2455 Slow down audio to 80% tempo:
2456 @example
2457 atempo=0.8
2458 @end example
2459
2460 @item
2461 To speed up audio to 300% tempo:
2462 @example
2463 atempo=3
2464 @end example
2465
2466 @item
2467 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2468 @example
2469 atempo=sqrt(3),atempo=sqrt(3)
2470 @end example
2471 @end itemize
2472
2473 @subsection Commands
2474
2475 This filter supports the following commands:
2476 @table @option
2477 @item tempo
2478 Change filter tempo scale factor.
2479 Syntax for the command is : "@var{tempo}"
2480 @end table
2481
2482 @section atrim
2483
2484 Trim the input so that the output contains one continuous subpart of the input.
2485
2486 It accepts the following parameters:
2487 @table @option
2488 @item start
2489 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2490 sample with the timestamp @var{start} will be the first sample in the output.
2491
2492 @item end
2493 Specify time of the first audio sample that will be dropped, i.e. the
2494 audio sample immediately preceding the one with the timestamp @var{end} will be
2495 the last sample in the output.
2496
2497 @item start_pts
2498 Same as @var{start}, except this option sets the start timestamp in samples
2499 instead of seconds.
2500
2501 @item end_pts
2502 Same as @var{end}, except this option sets the end timestamp in samples instead
2503 of seconds.
2504
2505 @item duration
2506 The maximum duration of the output in seconds.
2507
2508 @item start_sample
2509 The number of the first sample that should be output.
2510
2511 @item end_sample
2512 The number of the first sample that should be dropped.
2513 @end table
2514
2515 @option{start}, @option{end}, and @option{duration} are expressed as time
2516 duration specifications; see
2517 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2518
2519 Note that the first two sets of the start/end options and the @option{duration}
2520 option look at the frame timestamp, while the _sample options simply count the
2521 samples that pass through the filter. So start/end_pts and start/end_sample will
2522 give different results when the timestamps are wrong, inexact or do not start at
2523 zero. Also note that this filter does not modify the timestamps. If you wish
2524 to have the output timestamps start at zero, insert the asetpts filter after the
2525 atrim filter.
2526
2527 If multiple start or end options are set, this filter tries to be greedy and
2528 keep all samples that match at least one of the specified constraints. To keep
2529 only the part that matches all the constraints at once, chain multiple atrim
2530 filters.
2531
2532 The defaults are such that all the input is kept. So it is possible to set e.g.
2533 just the end values to keep everything before the specified time.
2534
2535 Examples:
2536 @itemize
2537 @item
2538 Drop everything except the second minute of input:
2539 @example
2540 ffmpeg -i INPUT -af atrim=60:120
2541 @end example
2542
2543 @item
2544 Keep only the first 1000 samples:
2545 @example
2546 ffmpeg -i INPUT -af atrim=end_sample=1000
2547 @end example
2548
2549 @end itemize
2550
2551 @section axcorrelate
2552 Calculate normalized cross-correlation between two input audio streams.
2553
2554 Resulted samples are always between -1 and 1 inclusive.
2555 If result is 1 it means two input samples are highly correlated in that selected segment.
2556 Result 0 means they are not correlated at all.
2557 If result is -1 it means two input samples are out of phase, which means they cancel each
2558 other.
2559
2560 The filter accepts the following options:
2561
2562 @table @option
2563 @item size
2564 Set size of segment over which cross-correlation is calculated.
2565 Default is 256. Allowed range is from 2 to 131072.
2566
2567 @item algo
2568 Set algorithm for cross-correlation. Can be @code{slow} or @code{fast}.
2569 Default is @code{slow}. Fast algorithm assumes mean values over any given segment
2570 are always zero and thus need much less calculations to make.
2571 This is generally not true, but is valid for typical audio streams.
2572 @end table
2573
2574 @subsection Examples
2575
2576 @itemize
2577 @item
2578 Calculate correlation between channels in stereo audio stream:
2579 @example
2580 ffmpeg -i stereo.wav -af channelsplit,axcorrelate=size=1024:algo=fast correlation.wav
2581 @end example
2582 @end itemize
2583
2584 @section bandpass
2585
2586 Apply a two-pole Butterworth band-pass filter with central
2587 frequency @var{frequency}, and (3dB-point) band-width width.
2588 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2589 instead of the default: constant 0dB peak gain.
2590 The filter roll off at 6dB per octave (20dB per decade).
2591
2592 The filter accepts the following options:
2593
2594 @table @option
2595 @item frequency, f
2596 Set the filter's central frequency. Default is @code{3000}.
2597
2598 @item csg
2599 Constant skirt gain if set to 1. Defaults to 0.
2600
2601 @item width_type, t
2602 Set method to specify band-width of filter.
2603 @table @option
2604 @item h
2605 Hz
2606 @item q
2607 Q-Factor
2608 @item o
2609 octave
2610 @item s
2611 slope
2612 @item k
2613 kHz
2614 @end table
2615
2616 @item width, w
2617 Specify the band-width of a filter in width_type units.
2618
2619 @item mix, m
2620 How much to use filtered signal in output. Default is 1.
2621 Range is between 0 and 1.
2622
2623 @item channels, c
2624 Specify which channels to filter, by default all available are filtered.
2625
2626 @item normalize, n
2627 Normalize biquad coefficients, by default is disabled.
2628 Enabling it will normalize magnitude response at DC to 0dB.
2629 @end table
2630
2631 @subsection Commands
2632
2633 This filter supports the following commands:
2634 @table @option
2635 @item frequency, f
2636 Change bandpass frequency.
2637 Syntax for the command is : "@var{frequency}"
2638
2639 @item width_type, t
2640 Change bandpass width_type.
2641 Syntax for the command is : "@var{width_type}"
2642
2643 @item width, w
2644 Change bandpass width.
2645 Syntax for the command is : "@var{width}"
2646
2647 @item mix, m
2648 Change bandpass mix.
2649 Syntax for the command is : "@var{mix}"
2650 @end table
2651
2652 @section bandreject
2653
2654 Apply a two-pole Butterworth band-reject filter with central
2655 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2656 The filter roll off at 6dB per octave (20dB per decade).
2657
2658 The filter accepts the following options:
2659
2660 @table @option
2661 @item frequency, f
2662 Set the filter's central frequency. Default is @code{3000}.
2663
2664 @item width_type, t
2665 Set method to specify band-width of filter.
2666 @table @option
2667 @item h
2668 Hz
2669 @item q
2670 Q-Factor
2671 @item o
2672 octave
2673 @item s
2674 slope
2675 @item k
2676 kHz
2677 @end table
2678
2679 @item width, w
2680 Specify the band-width of a filter in width_type units.
2681
2682 @item mix, m
2683 How much to use filtered signal in output. Default is 1.
2684 Range is between 0 and 1.
2685
2686 @item channels, c
2687 Specify which channels to filter, by default all available are filtered.
2688
2689 @item normalize, n
2690 Normalize biquad coefficients, by default is disabled.
2691 Enabling it will normalize magnitude response at DC to 0dB.
2692 @end table
2693
2694 @subsection Commands
2695
2696 This filter supports the following commands:
2697 @table @option
2698 @item frequency, f
2699 Change bandreject frequency.
2700 Syntax for the command is : "@var{frequency}"
2701
2702 @item width_type, t
2703 Change bandreject width_type.
2704 Syntax for the command is : "@var{width_type}"
2705
2706 @item width, w
2707 Change bandreject width.
2708 Syntax for the command is : "@var{width}"
2709
2710 @item mix, m
2711 Change bandreject mix.
2712 Syntax for the command is : "@var{mix}"
2713 @end table
2714
2715 @section bass, lowshelf
2716
2717 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2718 shelving filter with a response similar to that of a standard
2719 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2720
2721 The filter accepts the following options:
2722
2723 @table @option
2724 @item gain, g
2725 Give the gain at 0 Hz. Its useful range is about -20
2726 (for a large cut) to +20 (for a large boost).
2727 Beware of clipping when using a positive gain.
2728
2729 @item frequency, f
2730 Set the filter's central frequency and so can be used
2731 to extend or reduce the frequency range to be boosted or cut.
2732 The default value is @code{100} Hz.
2733
2734 @item width_type, t
2735 Set method to specify band-width of filter.
2736 @table @option
2737 @item h
2738 Hz
2739 @item q
2740 Q-Factor
2741 @item o
2742 octave
2743 @item s
2744 slope
2745 @item k
2746 kHz
2747 @end table
2748
2749 @item width, w
2750 Determine how steep is the filter's shelf transition.
2751
2752 @item mix, m
2753 How much to use filtered signal in output. Default is 1.
2754 Range is between 0 and 1.
2755
2756 @item channels, c
2757 Specify which channels to filter, by default all available are filtered.
2758
2759 @item normalize, n
2760 Normalize biquad coefficients, by default is disabled.
2761 Enabling it will normalize magnitude response at DC to 0dB.
2762 @end table
2763
2764 @subsection Commands
2765
2766 This filter supports the following commands:
2767 @table @option
2768 @item frequency, f
2769 Change bass frequency.
2770 Syntax for the command is : "@var{frequency}"
2771
2772 @item width_type, t
2773 Change bass width_type.
2774 Syntax for the command is : "@var{width_type}"
2775
2776 @item width, w
2777 Change bass width.
2778 Syntax for the command is : "@var{width}"
2779
2780 @item gain, g
2781 Change bass gain.
2782 Syntax for the command is : "@var{gain}"
2783
2784 @item mix, m
2785 Change bass mix.
2786 Syntax for the command is : "@var{mix}"
2787 @end table
2788
2789 @section biquad
2790
2791 Apply a biquad IIR filter with the given coefficients.
2792 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2793 are the numerator and denominator coefficients respectively.
2794 and @var{channels}, @var{c} specify which channels to filter, by default all
2795 available are filtered.
2796
2797 @subsection Commands
2798
2799 This filter supports the following commands:
2800 @table @option
2801 @item a0
2802 @item a1
2803 @item a2
2804 @item b0
2805 @item b1
2806 @item b2
2807 Change biquad parameter.
2808 Syntax for the command is : "@var{value}"
2809
2810 @item mix, m
2811 How much to use filtered signal in output. Default is 1.
2812 Range is between 0 and 1.
2813
2814 @item channels, c
2815 Specify which channels to filter, by default all available are filtered.
2816
2817 @item normalize, n
2818 Normalize biquad coefficients, by default is disabled.
2819 Enabling it will normalize magnitude response at DC to 0dB.
2820 @end table
2821
2822 @section bs2b
2823 Bauer stereo to binaural transformation, which improves headphone listening of
2824 stereo audio records.
2825
2826 To enable compilation of this filter you need to configure FFmpeg with
2827 @code{--enable-libbs2b}.
2828
2829 It accepts the following parameters:
2830 @table @option
2831
2832 @item profile
2833 Pre-defined crossfeed level.
2834 @table @option
2835
2836 @item default
2837 Default level (fcut=700, feed=50).
2838
2839 @item cmoy
2840 Chu Moy circuit (fcut=700, feed=60).
2841
2842 @item jmeier
2843 Jan Meier circuit (fcut=650, feed=95).
2844
2845 @end table
2846
2847 @item fcut
2848 Cut frequency (in Hz).
2849
2850 @item feed
2851 Feed level (in Hz).
2852
2853 @end table
2854
2855 @section channelmap
2856
2857 Remap input channels to new locations.
2858
2859 It accepts the following parameters:
2860 @table @option
2861 @item map
2862 Map channels from input to output. The argument is a '|'-separated list of
2863 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2864 @var{in_channel} form. @var{in_channel} can be either the name of the input
2865 channel (e.g. FL for front left) or its index in the input channel layout.
2866 @var{out_channel} is the name of the output channel or its index in the output
2867 channel layout. If @var{out_channel} is not given then it is implicitly an
2868 index, starting with zero and increasing by one for each mapping.
2869
2870 @item channel_layout
2871 The channel layout of the output stream.
2872 @end table
2873
2874 If no mapping is present, the filter will implicitly map input channels to
2875 output channels, preserving indices.
2876
2877 @subsection Examples
2878
2879 @itemize
2880 @item
2881 For example, assuming a 5.1+downmix input MOV file,
2882 @example
2883 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2884 @end example
2885 will create an output WAV file tagged as stereo from the downmix channels of
2886 the input.
2887
2888 @item
2889 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2890 @example
2891 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2892 @end example
2893 @end itemize
2894
2895 @section channelsplit
2896
2897 Split each channel from an input audio stream into a separate output stream.
2898
2899 It accepts the following parameters:
2900 @table @option
2901 @item channel_layout
2902 The channel layout of the input stream. The default is "stereo".
2903 @item channels
2904 A channel layout describing the channels to be extracted as separate output streams
2905 or "all" to extract each input channel as a separate stream. The default is "all".
2906
2907 Choosing channels not present in channel layout in the input will result in an error.
2908 @end table
2909
2910 @subsection Examples
2911
2912 @itemize
2913 @item
2914 For example, assuming a stereo input MP3 file,
2915 @example
2916 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2917 @end example
2918 will create an output Matroska file with two audio streams, one containing only
2919 the left channel and the other the right channel.
2920
2921 @item
2922 Split a 5.1 WAV file into per-channel files:
2923 @example
2924 ffmpeg -i in.wav -filter_complex
2925 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2926 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2927 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2928 side_right.wav
2929 @end example
2930
2931 @item
2932 Extract only LFE from a 5.1 WAV file:
2933 @example
2934 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2935 -map '[LFE]' lfe.wav
2936 @end example
2937 @end itemize
2938
2939 @section chorus
2940 Add a chorus effect to the audio.
2941
2942 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2943
2944 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2945 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2946 The modulation depth defines the range the modulated delay is played before or after
2947 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2948 sound tuned around the original one, like in a chorus where some vocals are slightly
2949 off key.
2950
2951 It accepts the following parameters:
2952 @table @option
2953 @item in_gain
2954 Set input gain. Default is 0.4.
2955
2956 @item out_gain
2957 Set output gain. Default is 0.4.
2958
2959 @item delays
2960 Set delays. A typical delay is around 40ms to 60ms.
2961
2962 @item decays
2963 Set decays.
2964
2965 @item speeds
2966 Set speeds.
2967
2968 @item depths
2969 Set depths.
2970 @end table
2971
2972 @subsection Examples
2973
2974 @itemize
2975 @item
2976 A single delay:
2977 @example
2978 chorus=0.7:0.9:55:0.4:0.25:2
2979 @end example
2980
2981 @item
2982 Two delays:
2983 @example
2984 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2985 @end example
2986
2987 @item
2988 Fuller sounding chorus with three delays:
2989 @example
2990 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
2991 @end example
2992 @end itemize
2993
2994 @section compand
2995 Compress or expand the audio's dynamic range.
2996
2997 It accepts the following parameters:
2998
2999 @table @option
3000
3001 @item attacks
3002 @item decays
3003 A list of times in seconds for each channel over which the instantaneous level
3004 of the input signal is averaged to determine its volume. @var{attacks} refers to
3005 increase of volume and @var{decays} refers to decrease of volume. For most
3006 situations, the attack time (response to the audio getting louder) should be
3007 shorter than the decay time, because the human ear is more sensitive to sudden
3008 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
3009 a typical value for decay is 0.8 seconds.
3010 If specified number of attacks & decays is lower than number of channels, the last
3011 set attack/decay will be used for all remaining channels.
3012
3013 @item points
3014 A list of points for the transfer function, specified in dB relative to the
3015 maximum possible signal amplitude. Each key points list must be defined using
3016 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
3017 @code{x0/y0 x1/y1 x2/y2 ....}
3018
3019 The input values must be in strictly increasing order but the transfer function
3020 does not have to be monotonically rising. The point @code{0/0} is assumed but
3021 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
3022 function are @code{-70/-70|-60/-20|1/0}.
3023
3024 @item soft-knee
3025 Set the curve radius in dB for all joints. It defaults to 0.01.
3026
3027 @item gain
3028 Set the additional gain in dB to be applied at all points on the transfer
3029 function. This allows for easy adjustment of the overall gain.
3030 It defaults to 0.
3031
3032 @item volume
3033 Set an initial volume, in dB, to be assumed for each channel when filtering
3034 starts. This permits the user to supply a nominal level initially, so that, for
3035 example, a very large gain is not applied to initial signal levels before the
3036 companding has begun to operate. A typical value for audio which is initially
3037 quiet is -90 dB. It defaults to 0.
3038
3039 @item delay
3040 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
3041 delayed before being fed to the volume adjuster. Specifying a delay
3042 approximately equal to the attack/decay times allows the filter to effectively
3043 operate in predictive rather than reactive mode. It defaults to 0.
3044
3045 @end table
3046
3047 @subsection Examples
3048
3049 @itemize
3050 @item
3051 Make music with both quiet and loud passages suitable for listening to in a
3052 noisy environment:
3053 @example
3054 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
3055 @end example
3056
3057 Another example for audio with whisper and explosion parts:
3058 @example
3059 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
3060 @end example
3061
3062 @item
3063 A noise gate for when the noise is at a lower level than the signal:
3064 @example
3065 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
3066 @end example
3067
3068 @item
3069 Here is another noise gate, this time for when the noise is at a higher level
3070 than the signal (making it, in some ways, similar to squelch):
3071 @example
3072 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
3073 @end example
3074
3075 @item
3076 2:1 compression starting at -6dB:
3077 @example
3078 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
3079 @end example
3080
3081 @item
3082 2:1 compression starting at -9dB:
3083 @example
3084 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
3085 @end example
3086
3087 @item
3088 2:1 compression starting at -12dB:
3089 @example
3090 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
3091 @end example
3092
3093 @item
3094 2:1 compression starting at -18dB:
3095 @example
3096 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
3097 @end example
3098
3099 @item
3100 3:1 compression starting at -15dB:
3101 @example
3102 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
3103 @end example
3104
3105 @item
3106 Compressor/Gate:
3107 @example
3108 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
3109 @end example
3110
3111 @item
3112 Expander:
3113 @example
3114 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
3115 @end example
3116
3117 @item
3118 Hard limiter at -6dB:
3119 @example
3120 compand=attacks=0:points=-80/-80|-6/-6|20/-6
3121 @end example
3122
3123 @item
3124 Hard limiter at -12dB:
3125 @example
3126 compand=attacks=0:points=-80/-80|-12/-12|20/-12
3127 @end example
3128
3129 @item
3130 Hard noise gate at -35 dB:
3131 @example
3132 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
3133 @end example
3134
3135 @item
3136 Soft limiter:
3137 @example
3138 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
3139 @end example
3140 @end itemize
3141
3142 @section compensationdelay
3143
3144 Compensation Delay Line is a metric based delay to compensate differing
3145 positions of microphones or speakers.
3146
3147 For example, you have recorded guitar with two microphones placed in
3148 different locations. Because the front of sound wave has fixed speed in
3149 normal conditions, the phasing of microphones can vary and depends on
3150 their location and interposition. The best sound mix can be achieved when
3151 these microphones are in phase (synchronized). Note that a distance of
3152 ~30 cm between microphones makes one microphone capture the signal in
3153 antiphase to the other microphone. That makes the final mix sound moody.
3154 This filter helps to solve phasing problems by adding different delays
3155 to each microphone track and make them synchronized.
3156
3157 The best result can be reached when you take one track as base and
3158 synchronize other tracks one by one with it.
3159 Remember that synchronization/delay tolerance depends on sample rate, too.
3160 Higher sample rates will give more tolerance.
3161
3162 The filter accepts the following parameters:
3163
3164 @table @option
3165 @item mm
3166 Set millimeters distance. This is compensation distance for fine tuning.
3167 Default is 0.
3168
3169 @item cm
3170 Set cm distance. This is compensation distance for tightening distance setup.
3171 Default is 0.
3172
3173 @item m
3174 Set meters distance. This is compensation distance for hard distance setup.
3175 Default is 0.
3176
3177 @item dry
3178 Set dry amount. Amount of unprocessed (dry) signal.
3179 Default is 0.
3180
3181 @item wet
3182 Set wet amount. Amount of processed (wet) signal.
3183 Default is 1.
3184
3185 @item temp
3186 Set temperature in degrees Celsius. This is the temperature of the environment.
3187 Default is 20.
3188 @end table
3189
3190 @section crossfeed
3191 Apply headphone crossfeed filter.
3192
3193 Crossfeed is the process of blending the left and right channels of stereo
3194 audio recording.
3195 It is mainly used to reduce extreme stereo separation of low frequencies.
3196
3197 The intent is to produce more speaker like sound to the listener.
3198
3199 The filter accepts the following options:
3200
3201 @table @option
3202 @item strength
3203 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3204 This sets gain of low shelf filter for side part of stereo image.
3205 Default is -6dB. Max allowed is -30db when strength is set to 1.
3206
3207 @item range
3208 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3209 This sets cut off frequency of low shelf filter. Default is cut off near
3210 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3211
3212 @item level_in
3213 Set input gain. Default is 0.9.
3214
3215 @item level_out
3216 Set output gain. Default is 1.
3217 @end table
3218
3219 @section crystalizer
3220 Simple algorithm to expand audio dynamic range.
3221
3222 The filter accepts the following options:
3223
3224 @table @option
3225 @item i
3226 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3227 (unchanged sound) to 10.0 (maximum effect).
3228
3229 @item c
3230 Enable clipping. By default is enabled.
3231 @end table
3232
3233 @subsection Commands
3234
3235 This filter supports the all above options as @ref{commands}.
3236
3237 @section dcshift
3238 Apply a DC shift to the audio.
3239
3240 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3241 in the recording chain) from the audio. The effect of a DC offset is reduced
3242 headroom and hence volume. The @ref{astats} filter can be used to determine if
3243 a signal has a DC offset.
3244
3245 @table @option
3246 @item shift
3247 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3248 the audio.
3249
3250 @item limitergain
3251 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3252 used to prevent clipping.
3253 @end table
3254
3255 @section deesser
3256
3257 Apply de-essing to the audio samples.
3258
3259 @table @option
3260 @item i
3261 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3262 Default is 0.
3263
3264 @item m
3265 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3266 Default is 0.5.
3267
3268 @item f
3269 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3270 Default is 0.5.
3271
3272 @item s
3273 Set the output mode.
3274
3275 It accepts the following values:
3276 @table @option
3277 @item i
3278 Pass input unchanged.
3279
3280 @item o
3281 Pass ess filtered out.
3282
3283 @item e
3284 Pass only ess.
3285
3286 Default value is @var{o}.
3287 @end table
3288
3289 @end table
3290
3291 @section drmeter
3292 Measure audio dynamic range.
3293
3294 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3295 is found in transition material. And anything less that 8 have very poor dynamics
3296 and is very compressed.
3297
3298 The filter accepts the following options:
3299
3300 @table @option
3301 @item length
3302 Set window length in seconds used to split audio into segments of equal length.
3303 Default is 3 seconds.
3304 @end table
3305
3306 @section dynaudnorm
3307 Dynamic Audio Normalizer.
3308
3309 This filter applies a certain amount of gain to the input audio in order
3310 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3311 contrast to more "simple" normalization algorithms, the Dynamic Audio
3312 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3313 This allows for applying extra gain to the "quiet" sections of the audio
3314 while avoiding distortions or clipping the "loud" sections. In other words:
3315 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3316 sections, in the sense that the volume of each section is brought to the
3317 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3318 this goal *without* applying "dynamic range compressing". It will retain 100%
3319 of the dynamic range *within* each section of the audio file.
3320
3321 @table @option
3322 @item framelen, f
3323 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3324 Default is 500 milliseconds.
3325 The Dynamic Audio Normalizer processes the input audio in small chunks,
3326 referred to as frames. This is required, because a peak magnitude has no
3327 meaning for just a single sample value. Instead, we need to determine the
3328 peak magnitude for a contiguous sequence of sample values. While a "standard"
3329 normalizer would simply use the peak magnitude of the complete file, the
3330 Dynamic Audio Normalizer determines the peak magnitude individually for each
3331 frame. The length of a frame is specified in milliseconds. By default, the
3332 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3333 been found to give good results with most files.
3334 Note that the exact frame length, in number of samples, will be determined
3335 automatically, based on the sampling rate of the individual input audio file.
3336
3337 @item gausssize, g
3338 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3339 number. Default is 31.
3340 Probably the most important parameter of the Dynamic Audio Normalizer is the
3341 @code{window size} of the Gaussian smoothing filter. The filter's window size
3342 is specified in frames, centered around the current frame. For the sake of
3343 simplicity, this must be an odd number. Consequently, the default value of 31
3344 takes into account the current frame, as well as the 15 preceding frames and
3345 the 15 subsequent frames. Using a larger window results in a stronger
3346 smoothing effect and thus in less gain variation, i.e. slower gain
3347 adaptation. Conversely, using a smaller window results in a weaker smoothing
3348 effect and thus in more gain variation, i.e. faster gain adaptation.
3349 In other words, the more you increase this value, the more the Dynamic Audio
3350 Normalizer will behave like a "traditional" normalization filter. On the
3351 contrary, the more you decrease this value, the more the Dynamic Audio
3352 Normalizer will behave like a dynamic range compressor.
3353
3354 @item peak, p
3355 Set the target peak value. This specifies the highest permissible magnitude
3356 level for the normalized audio input. This filter will try to approach the
3357 target peak magnitude as closely as possible, but at the same time it also
3358 makes sure that the normalized signal will never exceed the peak magnitude.
3359 A frame's maximum local gain factor is imposed directly by the target peak
3360 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3361 It is not recommended to go above this value.
3362
3363 @item maxgain, m
3364 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3365 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3366 factor for each input frame, i.e. the maximum gain factor that does not
3367 result in clipping or distortion. The maximum gain factor is determined by
3368 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3369 additionally bounds the frame's maximum gain factor by a predetermined
3370 (global) maximum gain factor. This is done in order to avoid excessive gain
3371 factors in "silent" or almost silent frames. By default, the maximum gain
3372 factor is 10.0, For most inputs the default value should be sufficient and
3373 it usually is not recommended to increase this value. Though, for input
3374 with an extremely low overall volume level, it may be necessary to allow even
3375 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3376 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3377 Instead, a "sigmoid" threshold function will be applied. This way, the
3378 gain factors will smoothly approach the threshold value, but never exceed that
3379 value.
3380
3381 @item targetrms, r
3382 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3383 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3384 This means that the maximum local gain factor for each frame is defined
3385 (only) by the frame's highest magnitude sample. This way, the samples can
3386 be amplified as much as possible without exceeding the maximum signal
3387 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3388 Normalizer can also take into account the frame's root mean square,
3389 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3390 determine the power of a time-varying signal. It is therefore considered
3391 that the RMS is a better approximation of the "perceived loudness" than
3392 just looking at the signal's peak magnitude. Consequently, by adjusting all
3393 frames to a constant RMS value, a uniform "perceived loudness" can be
3394 established. If a target RMS value has been specified, a frame's local gain
3395 factor is defined as the factor that would result in exactly that RMS value.
3396 Note, however, that the maximum local gain factor is still restricted by the
3397 frame's highest magnitude sample, in order to prevent clipping.
3398
3399 @item coupling, n
3400 Enable channels coupling. By default is enabled.
3401 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3402 amount. This means the same gain factor will be applied to all channels, i.e.
3403 the maximum possible gain factor is determined by the "loudest" channel.
3404 However, in some recordings, it may happen that the volume of the different
3405 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3406 In this case, this option can be used to disable the channel coupling. This way,
3407 the gain factor will be determined independently for each channel, depending
3408 only on the individual channel's highest magnitude sample. This allows for
3409 harmonizing the volume of the different channels.
3410
3411 @item correctdc, c
3412 Enable DC bias correction. By default is disabled.
3413 An audio signal (in the time domain) is a sequence of sample values.
3414 In the Dynamic Audio Normalizer these sample values are represented in the
3415 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3416 audio signal, or "waveform", should be centered around the zero point.
3417 That means if we calculate the mean value of all samples in a file, or in a
3418 single frame, then the result should be 0.0 or at least very close to that
3419 value. If, however, there is a significant deviation of the mean value from
3420 0.0, in either positive or negative direction, this is referred to as a
3421 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3422 Audio Normalizer provides optional DC bias correction.
3423 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3424 the mean value, or "DC correction" offset, of each input frame and subtract
3425 that value from all of the frame's sample values which ensures those samples
3426 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3427 boundaries, the DC correction offset values will be interpolated smoothly
3428 between neighbouring frames.
3429
3430 @item altboundary, b
3431 Enable alternative boundary mode. By default is disabled.
3432 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3433 around each frame. This includes the preceding frames as well as the
3434 subsequent frames. However, for the "boundary" frames, located at the very
3435 beginning and at the very end of the audio file, not all neighbouring
3436 frames are available. In particular, for the first few frames in the audio
3437 file, the preceding frames are not known. And, similarly, for the last few
3438 frames in the audio file, the subsequent frames are not known. Thus, the
3439 question arises which gain factors should be assumed for the missing frames
3440 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3441 to deal with this situation. The default boundary mode assumes a gain factor
3442 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3443 "fade out" at the beginning and at the end of the input, respectively.
3444
3445 @item compress, s
3446 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3447 By default, the Dynamic Audio Normalizer does not apply "traditional"
3448 compression. This means that signal peaks will not be pruned and thus the
3449 full dynamic range will be retained within each local neighbourhood. However,
3450 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3451 normalization algorithm with a more "traditional" compression.
3452 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3453 (thresholding) function. If (and only if) the compression feature is enabled,
3454 all input frames will be processed by a soft knee thresholding function prior
3455 to the actual normalization process. Put simply, the thresholding function is
3456 going to prune all samples whose magnitude exceeds a certain threshold value.
3457 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3458 value. Instead, the threshold value will be adjusted for each individual
3459 frame.
3460 In general, smaller parameters result in stronger compression, and vice versa.
3461 Values below 3.0 are not recommended, because audible distortion may appear.
3462
3463 @item threshold, t
3464 Set the target threshold value. This specifies the lowest permissible
3465 magnitude level for the audio input which will be normalized.
3466 If input frame volume is above this value frame will be normalized.
3467 Otherwise frame may not be normalized at all. The default value is set
3468 to 0, which means all input frames will be normalized.
3469 This option is mostly useful if digital noise is not wanted to be amplified.
3470 @end table
3471
3472 @subsection Commands
3473
3474 This filter supports the all above options as @ref{commands}.
3475
3476 @section earwax
3477
3478 Make audio easier to listen to on headphones.
3479
3480 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3481 so that when listened to on headphones the stereo image is moved from
3482 inside your head (standard for headphones) to outside and in front of
3483 the listener (standard for speakers).
3484
3485 Ported from SoX.
3486
3487 @section equalizer
3488
3489 Apply a two-pole peaking equalisation (EQ) filter. With this
3490 filter, the signal-level at and around a selected frequency can
3491 be increased or decreased, whilst (unlike bandpass and bandreject
3492 filters) that at all other frequencies is unchanged.
3493
3494 In order to produce complex equalisation curves, this filter can
3495 be given several times, each with a different central frequency.
3496
3497 The filter accepts the following options:
3498
3499 @table @option
3500 @item frequency, f
3501 Set the filter's central frequency in Hz.
3502
3503 @item width_type, t
3504 Set method to specify band-width of filter.
3505 @table @option
3506 @item h
3507 Hz
3508 @item q
3509 Q-Factor
3510 @item o
3511 octave
3512 @item s
3513 slope
3514 @item k
3515 kHz
3516 @end table
3517
3518 @item width, w
3519 Specify the band-width of a filter in width_type units.
3520
3521 @item gain, g
3522 Set the required gain or attenuation in dB.
3523 Beware of clipping when using a positive gain.
3524
3525 @item mix, m
3526 How much to use filtered signal in output. Default is 1.
3527 Range is between 0 and 1.
3528
3529 @item channels, c
3530 Specify which channels to filter, by default all available are filtered.
3531
3532 @item normalize, n
3533 Normalize biquad coefficients, by default is disabled.
3534 Enabling it will normalize magnitude response at DC to 0dB.
3535 @end table
3536
3537 @subsection Examples
3538 @itemize
3539 @item
3540 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3541 @example
3542 equalizer=f=1000:t=h:width=200:g=-10
3543 @end example
3544
3545 @item
3546 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3547 @example
3548 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3549 @end example
3550 @end itemize
3551
3552 @subsection Commands
3553
3554 This filter supports the following commands:
3555 @table @option
3556 @item frequency, f
3557 Change equalizer frequency.
3558 Syntax for the command is : "@var{frequency}"
3559
3560 @item width_type, t
3561 Change equalizer width_type.
3562 Syntax for the command is : "@var{width_type}"
3563
3564 @item width, w
3565 Change equalizer width.
3566 Syntax for the command is : "@var{width}"
3567
3568 @item gain, g
3569 Change equalizer gain.
3570 Syntax for the command is : "@var{gain}"
3571
3572 @item mix, m
3573 Change equalizer mix.
3574 Syntax for the command is : "@var{mix}"
3575 @end table
3576
3577 @section extrastereo
3578
3579 Linearly increases the difference between left and right channels which
3580 adds some sort of "live" effect to playback.
3581
3582 The filter accepts the following options:
3583
3584 @table @option
3585 @item m
3586 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3587 (average of both channels), with 1.0 sound will be unchanged, with
3588 -1.0 left and right channels will be swapped.
3589
3590 @item c
3591 Enable clipping. By default is enabled.
3592 @end table
3593
3594 @subsection Commands
3595
3596 This filter supports the all above options as @ref{commands}.
3597
3598 @section firequalizer
3599 Apply FIR Equalization using arbitrary frequency response.
3600
3601 The filter accepts the following option:
3602
3603 @table @option
3604 @item gain
3605 Set gain curve equation (in dB). The expression can contain variables:
3606 @table @option
3607 @item f
3608 the evaluated frequency
3609 @item sr
3610 sample rate
3611 @item ch
3612 channel number, set to 0 when multichannels evaluation is disabled
3613 @item chid
3614 channel id, see libavutil/channel_layout.h, set to the first channel id when
3615 multichannels evaluation is disabled
3616 @item chs
3617 number of channels
3618 @item chlayout
3619 channel_layout, see libavutil/channel_layout.h
3620
3621 @end table
3622 and functions:
3623 @table @option
3624 @item gain_interpolate(f)
3625 interpolate gain on frequency f based on gain_entry
3626 @item cubic_interpolate(f)
3627 same as gain_interpolate, but smoother
3628 @end table
3629 This option is also available as command. Default is @code{gain_interpolate(f)}.
3630
3631 @item gain_entry
3632 Set gain entry for gain_interpolate function. The expression can
3633 contain functions:
3634 @table @option
3635 @item entry(f, g)
3636 store gain entry at frequency f with value g
3637 @end table
3638 This option is also available as command.
3639
3640 @item delay
3641 Set filter delay in seconds. Higher value means more accurate.
3642 Default is @code{0.01}.
3643
3644 @item accuracy
3645 Set filter accuracy in Hz. Lower value means more accurate.
3646 Default is @code{5}.
3647
3648 @item wfunc
3649 Set window function. Acceptable values are:
3650 @table @option
3651 @item rectangular
3652 rectangular window, useful when gain curve is already smooth
3653 @item hann
3654 hann window (default)
3655 @item hamming
3656 hamming window
3657 @item blackman
3658 blackman window
3659 @item nuttall3
3660 3-terms continuous 1st derivative nuttall window
3661 @item mnuttall3
3662 minimum 3-terms discontinuous nuttall window
3663 @item nuttall
3664 4-terms continuous 1st derivative nuttall window
3665 @item bnuttall
3666 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3667 @item bharris
3668 blackman-harris window
3669 @item tukey
3670 tukey window
3671 @end table
3672
3673 @item fixed
3674 If enabled, use fixed number of audio samples. This improves speed when
3675 filtering with large delay. Default is disabled.
3676
3677 @item multi
3678 Enable multichannels evaluation on gain. Default is disabled.
3679
3680 @item zero_phase
3681 Enable zero phase mode by subtracting timestamp to compensate delay.
3682 Default is disabled.
3683
3684 @item scale
3685 Set scale used by gain. Acceptable values are:
3686 @table @option
3687 @item linlin
3688 linear frequency, linear gain
3689 @item linlog
3690 linear frequency, logarithmic (in dB) gain (default)
3691 @item loglin
3692 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3693 @item loglog
3694 logarithmic frequency, logarithmic gain
3695 @end table
3696
3697 @item dumpfile
3698 Set file for dumping, suitable for gnuplot.
3699
3700 @item dumpscale
3701 Set scale for dumpfile. Acceptable values are same with scale option.
3702 Default is linlog.
3703
3704 @item fft2
3705 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3706 Default is disabled.
3707
3708 @item min_phase
3709 Enable minimum phase impulse response. Default is disabled.
3710 @end table
3711
3712 @subsection Examples
3713 @itemize
3714 @item
3715 lowpass at 1000 Hz:
3716 @example
3717 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3718 @end example
3719 @item
3720 lowpass at 1000 Hz with gain_entry:
3721 @example
3722 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3723 @end example
3724 @item
3725 custom equalization:
3726 @example
3727 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3728 @end example
3729 @item
3730 higher delay with zero phase to compensate delay:
3731 @example
3732 firequalizer=delay=0.1:fixed=on:zero_phase=on
3733 @end example
3734 @item
3735 lowpass on left channel, highpass on right channel:
3736 @example
3737 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3738 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3739 @end example
3740 @end itemize
3741
3742 @section flanger
3743 Apply a flanging effect to the audio.
3744
3745 The filter accepts the following options:
3746
3747 @table @option
3748 @item delay
3749 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3750
3751 @item depth
3752 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3753
3754 @item regen
3755 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3756 Default value is 0.
3757
3758 @item width
3759 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3760 Default value is 71.
3761
3762 @item speed
3763 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3764
3765 @item shape
3766 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3767 Default value is @var{sinusoidal}.
3768
3769 @item phase
3770 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3771 Default value is 25.
3772
3773 @item interp
3774 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3775 Default is @var{linear}.
3776 @end table
3777
3778 @section haas
3779 Apply Haas effect to audio.
3780
3781 Note that this makes most sense to apply on mono signals.
3782 With this filter applied to mono signals it give some directionality and
3783 stretches its stereo image.
3784
3785 The filter accepts the following options:
3786
3787 @table @option
3788 @item level_in
3789 Set input level. By default is @var{1}, or 0dB
3790
3791 @item level_out
3792 Set output level. By default is @var{1}, or 0dB.
3793
3794 @item side_gain
3795 Set gain applied to side part of signal. By default is @var{1}.
3796
3797 @item middle_source
3798 Set kind of middle source. Can be one of the following:
3799
3800 @table @samp
3801 @item left
3802 Pick left channel.
3803
3804 @item right
3805 Pick right channel.
3806
3807 @item mid
3808 Pick middle part signal of stereo image.
3809
3810 @item side
3811 Pick side part signal of stereo image.
3812 @end table
3813
3814 @item middle_phase
3815 Change middle phase. By default is disabled.
3816
3817 @item left_delay
3818 Set left channel delay. By default is @var{2.05} milliseconds.
3819
3820 @item left_balance
3821 Set left channel balance. By default is @var{-1}.
3822
3823 @item left_gain
3824 Set left channel gain. By default is @var{1}.
3825
3826 @item left_phase
3827 Change left phase. By default is disabled.
3828
3829 @item right_delay
3830 Set right channel delay. By defaults is @var{2.12} milliseconds.
3831
3832 @item right_balance
3833 Set right channel balance. By default is @var{1}.
3834
3835 @item right_gain
3836 Set right channel gain. By default is @var{1}.
3837
3838 @item right_phase
3839 Change right phase. By default is enabled.
3840 @end table
3841
3842 @section hdcd
3843
3844 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3845 embedded HDCD codes is expanded into a 20-bit PCM stream.
3846
3847 The filter supports the Peak Extend and Low-level Gain Adjustment features
3848 of HDCD, and detects the Transient Filter flag.
3849
3850 @example
3851 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3852 @end example
3853
3854 When using the filter with wav, note the default encoding for wav is 16-bit,
3855 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3856 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3857 @example
3858 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3859 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3860 @end example
3861
3862 The filter accepts the following options:
3863
3864 @table @option
3865 @item disable_autoconvert
3866 Disable any automatic format conversion or resampling in the filter graph.
3867
3868 @item process_stereo
3869 Process the stereo channels together. If target_gain does not match between
3870 channels, consider it invalid and use the last valid target_gain.
3871
3872 @item cdt_ms
3873 Set the code detect timer period in ms.
3874
3875 @item force_pe
3876 Always extend peaks above -3dBFS even if PE isn't signaled.
3877
3878 @item analyze_mode
3879 Replace audio with a solid tone and adjust the amplitude to signal some
3880 specific aspect of the decoding process. The output file can be loaded in
3881 an audio editor alongside the original to aid analysis.
3882
3883 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3884
3885 Modes are:
3886 @table @samp
3887 @item 0, off
3888 Disabled
3889 @item 1, lle
3890 Gain adjustment level at each sample
3891 @item 2, pe
3892 Samples where peak extend occurs
3893 @item 3, cdt
3894 Samples where the code detect timer is active
3895 @item 4, tgm
3896 Samples where the target gain does not match between channels
3897 @end table
3898 @end table
3899
3900 @section headphone
3901
3902 Apply head-related transfer functions (HRTFs) to create virtual
3903 loudspeakers around the user for binaural listening via headphones.
3904 The HRIRs are provided via additional streams, for each channel
3905 one stereo input stream is needed.
3906
3907 The filter accepts the following options:
3908
3909 @table @option
3910 @item map
3911 Set mapping of input streams for convolution.
3912 The argument is a '|'-separated list of channel names in order as they
3913 are given as additional stream inputs for filter.
3914 This also specify number of input streams. Number of input streams
3915 must be not less than number of channels in first stream plus one.
3916
3917 @item gain
3918 Set gain applied to audio. Value is in dB. Default is 0.
3919
3920 @item type
3921 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3922 processing audio in time domain which is slow.
3923 @var{freq} is processing audio in frequency domain which is fast.
3924 Default is @var{freq}.
3925
3926 @item lfe
3927 Set custom gain for LFE channels. Value is in dB. Default is 0.
3928
3929 @item size
3930 Set size of frame in number of samples which will be processed at once.
3931 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3932
3933 @item hrir
3934 Set format of hrir stream.
3935 Default value is @var{stereo}. Alternative value is @var{multich}.
3936 If value is set to @var{stereo}, number of additional streams should
3937 be greater or equal to number of input channels in first input stream.
3938 Also each additional stream should have stereo number of channels.
3939 If value is set to @var{multich}, number of additional streams should
3940 be exactly one. Also number of input channels of additional stream
3941 should be equal or greater than twice number of channels of first input
3942 stream.
3943 @end table
3944
3945 @subsection Examples
3946
3947 @itemize
3948 @item
3949 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3950 each amovie filter use stereo file with IR coefficients as input.
3951 The files give coefficients for each position of virtual loudspeaker:
3952 @example
3953 ffmpeg -i input.wav
3954 -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"
3955 output.wav
3956 @end example
3957
3958 @item
3959 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3960 but now in @var{multich} @var{hrir} format.
3961 @example
3962 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"
3963 output.wav
3964 @end example
3965 @end itemize
3966
3967 @section highpass
3968
3969 Apply a high-pass filter with 3dB point frequency.
3970 The filter can be either single-pole, or double-pole (the default).
3971 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3972
3973 The filter accepts the following options:
3974
3975 @table @option
3976 @item frequency, f
3977 Set frequency in Hz. Default is 3000.
3978
3979 @item poles, p
3980 Set number of poles. Default is 2.
3981
3982 @item width_type, t
3983 Set method to specify band-width of filter.
3984 @table @option
3985 @item h
3986 Hz
3987 @item q
3988 Q-Factor
3989 @item o
3990 octave
3991 @item s
3992 slope
3993 @item k
3994 kHz
3995 @end table
3996
3997 @item width, w
3998 Specify the band-width of a filter in width_type units.
3999 Applies only to double-pole filter.
4000 The default is 0.707q and gives a Butterworth response.
4001
4002 @item mix, m
4003 How much to use filtered signal in output. Default is 1.
4004 Range is between 0 and 1.
4005
4006 @item channels, c
4007 Specify which channels to filter, by default all available are filtered.
4008
4009 @item normalize, n
4010 Normalize biquad coefficients, by default is disabled.
4011 Enabling it will normalize magnitude response at DC to 0dB.
4012 @end table
4013
4014 @subsection Commands
4015
4016 This filter supports the following commands:
4017 @table @option
4018 @item frequency, f
4019 Change highpass frequency.
4020 Syntax for the command is : "@var{frequency}"
4021
4022 @item width_type, t
4023 Change highpass width_type.
4024 Syntax for the command is : "@var{width_type}"
4025
4026 @item width, w
4027 Change highpass width.
4028 Syntax for the command is : "@var{width}"
4029
4030 @item mix, m
4031 Change highpass mix.
4032 Syntax for the command is : "@var{mix}"
4033 @end table
4034
4035 @section join
4036
4037 Join multiple input streams into one multi-channel stream.
4038
4039 It accepts the following parameters:
4040 @table @option
4041
4042 @item inputs
4043 The number of input streams. It defaults to 2.
4044
4045 @item channel_layout
4046 The desired output channel layout. It defaults to stereo.
4047
4048 @item map
4049 Map channels from inputs to output. The argument is a '|'-separated list of
4050 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
4051 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
4052 can be either the name of the input channel (e.g. FL for front left) or its
4053 index in the specified input stream. @var{out_channel} is the name of the output
4054 channel.
4055 @end table
4056
4057 The filter will attempt to guess the mappings when they are not specified
4058 explicitly. It does so by first trying to find an unused matching input channel
4059 and if that fails it picks the first unused input channel.
4060
4061 Join 3 inputs (with properly set channel layouts):
4062 @example
4063 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
4064 @end example
4065
4066 Build a 5.1 output from 6 single-channel streams:
4067 @example
4068 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
4069 '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'
4070 out
4071 @end example
4072
4073 @section ladspa
4074
4075 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
4076
4077 To enable compilation of this filter you need to configure FFmpeg with
4078 @code{--enable-ladspa}.
4079
4080 @table @option
4081 @item file, f
4082 Specifies the name of LADSPA plugin library to load. If the environment
4083 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
4084 each one of the directories specified by the colon separated list in
4085 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
4086 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
4087 @file{/usr/lib/ladspa/}.
4088
4089 @item plugin, p
4090 Specifies the plugin within the library. Some libraries contain only
4091 one plugin, but others contain many of them. If this is not set filter
4092 will list all available plugins within the specified library.
4093
4094 @item controls, c
4095 Set the '|' separated list of controls which are zero or more floating point
4096 values that determine the behavior of the loaded plugin (for example delay,
4097 threshold or gain).
4098 Controls need to be defined using the following syntax:
4099 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
4100 @var{valuei} is the value set on the @var{i}-th control.
4101 Alternatively they can be also defined using the following syntax:
4102 @var{value0}|@var{value1}|@var{value2}|..., where
4103 @var{valuei} is the value set on the @var{i}-th control.
4104 If @option{controls} is set to @code{help}, all available controls and
4105 their valid ranges are printed.
4106
4107 @item sample_rate, s
4108 Specify the sample rate, default to 44100. Only used if plugin have
4109 zero inputs.
4110
4111 @item nb_samples, n
4112 Set the number of samples per channel per each output frame, default
4113 is 1024. Only used if plugin have zero inputs.
4114
4115 @item duration, d
4116 Set the minimum duration of the sourced audio. See
4117 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4118 for the accepted syntax.
4119 Note that the resulting duration may be greater than the specified duration,
4120 as the generated audio is always cut at the end of a complete frame.
4121 If not specified, or the expressed duration is negative, the audio is
4122 supposed to be generated forever.
4123 Only used if plugin have zero inputs.
4124
4125 @end table
4126
4127 @subsection Examples
4128
4129 @itemize
4130 @item
4131 List all available plugins within amp (LADSPA example plugin) library:
4132 @example
4133 ladspa=file=amp
4134 @end example
4135
4136 @item
4137 List all available controls and their valid ranges for @code{vcf_notch}
4138 plugin from @code{VCF} library:
4139 @example
4140 ladspa=f=vcf:p=vcf_notch:c=help
4141 @end example
4142
4143 @item
4144 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
4145 plugin library:
4146 @example
4147 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
4148 @end example
4149
4150 @item
4151 Add reverberation to the audio using TAP-plugins
4152 (Tom's Audio Processing plugins):
4153 @example
4154 ladspa=file=tap_reverb:tap_reverb
4155 @end example
4156
4157 @item
4158 Generate white noise, with 0.2 amplitude:
4159 @example
4160 ladspa=file=cmt:noise_source_white:c=c0=.2
4161 @end example
4162
4163 @item
4164 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
4165 @code{C* Audio Plugin Suite} (CAPS) library:
4166 @example
4167 ladspa=file=caps:Click:c=c1=20'
4168 @end example
4169
4170 @item
4171 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
4172 @example
4173 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
4174 @end example
4175
4176 @item
4177 Increase volume by 20dB using fast lookahead limiter from Steve Harris
4178 @code{SWH Plugins} collection:
4179 @example
4180 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
4181 @end example
4182
4183 @item
4184 Attenuate low frequencies using Multiband EQ from Steve Harris
4185 @code{SWH Plugins} collection:
4186 @example
4187 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
4188 @end example
4189
4190 @item
4191 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
4192 (CAPS) library:
4193 @example
4194 ladspa=caps:Narrower
4195 @end example
4196
4197 @item
4198 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
4199 @example
4200 ladspa=caps:White:.2
4201 @end example
4202
4203 @item
4204 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
4205 @example
4206 ladspa=caps:Fractal:c=c1=1
4207 @end example
4208
4209 @item
4210 Dynamic volume normalization using @code{VLevel} plugin:
4211 @example
4212 ladspa=vlevel-ladspa:vlevel_mono
4213 @end example
4214 @end itemize
4215
4216 @subsection Commands
4217
4218 This filter supports the following commands:
4219 @table @option
4220 @item cN
4221 Modify the @var{N}-th control value.
4222
4223 If the specified value is not valid, it is ignored and prior one is kept.
4224 @end table
4225
4226 @section loudnorm
4227
4228 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4229 Support for both single pass (livestreams, files) and double pass (files) modes.
4230 This algorithm can target IL, LRA, and maximum true peak. In dynamic mode, to accurately
4231 detect true peaks, the audio stream will be upsampled to 192 kHz.
4232 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4233
4234 The filter accepts the following options:
4235
4236 @table @option
4237 @item I, i
4238 Set integrated loudness target.
4239 Range is -70.0 - -5.0. Default value is -24.0.
4240
4241 @item LRA, lra
4242 Set loudness range target.
4243 Range is 1.0 - 20.0. Default value is 7.0.
4244
4245 @item TP, tp
4246 Set maximum true peak.
4247 Range is -9.0 - +0.0. Default value is -2.0.
4248
4249 @item measured_I, measured_i
4250 Measured IL of input file.
4251 Range is -99.0 - +0.0.
4252
4253 @item measured_LRA, measured_lra
4254 Measured LRA of input file.
4255 Range is  0.0 - 99.0.
4256
4257 @item measured_TP, measured_tp
4258 Measured true peak of input file.
4259 Range is  -99.0 - +99.0.
4260
4261 @item measured_thresh
4262 Measured threshold of input file.
4263 Range is -99.0 - +0.0.
4264
4265 @item offset
4266 Set offset gain. Gain is applied before the true-peak limiter.
4267 Range is  -99.0 - +99.0. Default is +0.0.
4268
4269 @item linear
4270 Normalize by linearly scaling the source audio.
4271 @code{measured_I}, @code{measured_LRA}, @code{measured_TP},
4272 and @code{measured_thresh} must all be specified. Target LRA shouldn't
4273 be lower than source LRA and the change in integrated loudness shouldn't
4274 result in a true peak which exceeds the target TP. If any of these
4275 conditions aren't met, normalization mode will revert to @var{dynamic}.
4276 Options are @code{true} or @code{false}. Default is @code{true}.
4277
4278 @item dual_mono
4279 Treat mono input files as "dual-mono". If a mono file is intended for playback
4280 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4281 If set to @code{true}, this option will compensate for this effect.
4282 Multi-channel input files are not affected by this option.
4283 Options are true or false. Default is false.
4284
4285 @item print_format
4286 Set print format for stats. Options are summary, json, or none.
4287 Default value is none.
4288 @end table
4289
4290 @section lowpass
4291
4292 Apply a low-pass filter with 3dB point frequency.
4293 The filter can be either single-pole or double-pole (the default).
4294 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4295
4296 The filter accepts the following options:
4297
4298 @table @option
4299 @item frequency, f
4300 Set frequency in Hz. Default is 500.
4301
4302 @item poles, p
4303 Set number of poles. Default is 2.
4304
4305 @item width_type, t
4306 Set method to specify band-width of filter.
4307 @table @option
4308 @item h
4309 Hz
4310 @item q
4311 Q-Factor
4312 @item o
4313 octave
4314 @item s
4315 slope
4316 @item k
4317 kHz
4318 @end table
4319
4320 @item width, w
4321 Specify the band-width of a filter in width_type units.
4322 Applies only to double-pole filter.
4323 The default is 0.707q and gives a Butterworth response.
4324
4325 @item mix, m
4326 How much to use filtered signal in output. Default is 1.
4327 Range is between 0 and 1.
4328
4329 @item channels, c
4330 Specify which channels to filter, by default all available are filtered.
4331
4332 @item normalize, n
4333 Normalize biquad coefficients, by default is disabled.
4334 Enabling it will normalize magnitude response at DC to 0dB.
4335 @end table
4336
4337 @subsection Examples
4338 @itemize
4339 @item
4340 Lowpass only LFE channel, it LFE is not present it does nothing:
4341 @example
4342 lowpass=c=LFE
4343 @end example
4344 @end itemize
4345
4346 @subsection Commands
4347
4348 This filter supports the following commands:
4349 @table @option
4350 @item frequency, f
4351 Change lowpass frequency.
4352 Syntax for the command is : "@var{frequency}"
4353
4354 @item width_type, t
4355 Change lowpass width_type.
4356 Syntax for the command is : "@var{width_type}"
4357
4358 @item width, w
4359 Change lowpass width.
4360 Syntax for the command is : "@var{width}"
4361
4362 @item mix, m
4363 Change lowpass mix.
4364 Syntax for the command is : "@var{mix}"
4365 @end table
4366
4367 @section lv2
4368
4369 Load a LV2 (LADSPA Version 2) plugin.
4370
4371 To enable compilation of this filter you need to configure FFmpeg with
4372 @code{--enable-lv2}.
4373
4374 @table @option
4375 @item plugin, p
4376 Specifies the plugin URI. You may need to escape ':'.
4377
4378 @item controls, c
4379 Set the '|' separated list of controls which are zero or more floating point
4380 values that determine the behavior of the loaded plugin (for example delay,
4381 threshold or gain).
4382 If @option{controls} is set to @code{help}, all available controls and
4383 their valid ranges are printed.
4384
4385 @item sample_rate, s
4386 Specify the sample rate, default to 44100. Only used if plugin have
4387 zero inputs.
4388
4389 @item nb_samples, n
4390 Set the number of samples per channel per each output frame, default
4391 is 1024. Only used if plugin have zero inputs.
4392
4393 @item duration, d
4394 Set the minimum duration of the sourced audio. See
4395 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4396 for the accepted syntax.
4397 Note that the resulting duration may be greater than the specified duration,
4398 as the generated audio is always cut at the end of a complete frame.
4399 If not specified, or the expressed duration is negative, the audio is
4400 supposed to be generated forever.
4401 Only used if plugin have zero inputs.
4402 @end table
4403
4404 @subsection Examples
4405
4406 @itemize
4407 @item
4408 Apply bass enhancer plugin from Calf:
4409 @example
4410 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4411 @end example
4412
4413 @item
4414 Apply vinyl plugin from Calf:
4415 @example
4416 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4417 @end example
4418
4419 @item
4420 Apply bit crusher plugin from ArtyFX:
4421 @example
4422 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4423 @end example
4424 @end itemize
4425
4426 @section mcompand
4427 Multiband Compress or expand the audio's dynamic range.
4428
4429 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4430 This is akin to the crossover of a loudspeaker, and results in flat frequency
4431 response when absent compander action.
4432
4433 It accepts the following parameters:
4434
4435 @table @option
4436 @item args
4437 This option syntax is:
4438 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4439 For explanation of each item refer to compand filter documentation.
4440 @end table
4441
4442 @anchor{pan}
4443 @section pan
4444
4445 Mix channels with specific gain levels. The filter accepts the output
4446 channel layout followed by a set of channels definitions.
4447
4448 This filter is also designed to efficiently remap the channels of an audio
4449 stream.
4450
4451 The filter accepts parameters of the form:
4452 "@var{l}|@var{outdef}|@var{outdef}|..."
4453
4454 @table @option
4455 @item l
4456 output channel layout or number of channels
4457
4458 @item outdef
4459 output channel specification, of the form:
4460 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4461
4462 @item out_name
4463 output channel to define, either a channel name (FL, FR, etc.) or a channel
4464 number (c0, c1, etc.)
4465
4466 @item gain
4467 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4468
4469 @item in_name
4470 input channel to use, see out_name for details; it is not possible to mix
4471 named and numbered input channels
4472 @end table
4473
4474 If the `=' in a channel specification is replaced by `<', then the gains for
4475 that specification will be renormalized so that the total is 1, thus
4476 avoiding clipping noise.
4477
4478 @subsection Mixing examples
4479
4480 For example, if you want to down-mix from stereo to mono, but with a bigger
4481 factor for the left channel:
4482 @example
4483 pan=1c|c0=0.9*c0+0.1*c1
4484 @end example
4485
4486 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4487 7-channels surround:
4488 @example
4489 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4490 @end example
4491
4492 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4493 that should be preferred (see "-ac" option) unless you have very specific
4494 needs.
4495
4496 @subsection Remapping examples
4497
4498 The channel remapping will be effective if, and only if:
4499
4500 @itemize
4501 @item gain coefficients are zeroes or ones,
4502 @item only one input per channel output,
4503 @end itemize
4504
4505 If all these conditions are satisfied, the filter will notify the user ("Pure
4506 channel mapping detected"), and use an optimized and lossless method to do the
4507 remapping.
4508
4509 For example, if you have a 5.1 source and want a stereo audio stream by
4510 dropping the extra channels:
4511 @example
4512 pan="stereo| c0=FL | c1=FR"
4513 @end example
4514
4515 Given the same source, you can also switch front left and front right channels
4516 and keep the input channel layout:
4517 @example
4518 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4519 @end example
4520
4521 If the input is a stereo audio stream, you can mute the front left channel (and
4522 still keep the stereo channel layout) with:
4523 @example
4524 pan="stereo|c1=c1"
4525 @end example
4526
4527 Still with a stereo audio stream input, you can copy the right channel in both
4528 front left and right:
4529 @example
4530 pan="stereo| c0=FR | c1=FR"
4531 @end example
4532
4533 @section replaygain
4534
4535 ReplayGain scanner filter. This filter takes an audio stream as an input and
4536 outputs it unchanged.
4537 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4538
4539 @section resample
4540
4541 Convert the audio sample format, sample rate and channel layout. It is
4542 not meant to be used directly.
4543
4544 @section rubberband
4545 Apply time-stretching and pitch-shifting with librubberband.
4546
4547 To enable compilation of this filter, you need to configure FFmpeg with
4548 @code{--enable-librubberband}.
4549
4550 The filter accepts the following options:
4551
4552 @table @option
4553 @item tempo
4554 Set tempo scale factor.
4555
4556 @item pitch
4557 Set pitch scale factor.
4558
4559 @item transients
4560 Set transients detector.
4561 Possible values are:
4562 @table @var
4563 @item crisp
4564 @item mixed
4565 @item smooth
4566 @end table
4567
4568 @item detector
4569 Set detector.
4570 Possible values are:
4571 @table @var
4572 @item compound
4573 @item percussive
4574 @item soft
4575 @end table
4576
4577 @item phase
4578 Set phase.
4579 Possible values are:
4580 @table @var
4581 @item laminar
4582 @item independent
4583 @end table
4584
4585 @item window
4586 Set processing window size.
4587 Possible values are:
4588 @table @var
4589 @item standard
4590 @item short
4591 @item long
4592 @end table
4593
4594 @item smoothing
4595 Set smoothing.
4596 Possible values are:
4597 @table @var
4598 @item off
4599 @item on
4600 @end table
4601
4602 @item formant
4603 Enable formant preservation when shift pitching.
4604 Possible values are:
4605 @table @var
4606 @item shifted
4607 @item preserved
4608 @end table
4609
4610 @item pitchq
4611 Set pitch quality.
4612 Possible values are:
4613 @table @var
4614 @item quality
4615 @item speed
4616 @item consistency
4617 @end table
4618
4619 @item channels
4620 Set channels.
4621 Possible values are:
4622 @table @var
4623 @item apart
4624 @item together
4625 @end table
4626 @end table
4627
4628 @subsection Commands
4629
4630 This filter supports the following commands:
4631 @table @option
4632 @item tempo
4633 Change filter tempo scale factor.
4634 Syntax for the command is : "@var{tempo}"
4635
4636 @item pitch
4637 Change filter pitch scale factor.
4638 Syntax for the command is : "@var{pitch}"
4639 @end table
4640
4641 @section sidechaincompress
4642
4643 This filter acts like normal compressor but has the ability to compress
4644 detected signal using second input signal.
4645 It needs two input streams and returns one output stream.
4646 First input stream will be processed depending on second stream signal.
4647 The filtered signal then can be filtered with other filters in later stages of
4648 processing. See @ref{pan} and @ref{amerge} filter.
4649
4650 The filter accepts the following options:
4651
4652 @table @option
4653 @item level_in
4654 Set input gain. Default is 1. Range is between 0.015625 and 64.
4655
4656 @item mode
4657 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4658 Default is @code{downward}.
4659
4660 @item threshold
4661 If a signal of second stream raises above this level it will affect the gain
4662 reduction of first stream.
4663 By default is 0.125. Range is between 0.00097563 and 1.
4664
4665 @item ratio
4666 Set a ratio about which the signal is reduced. 1:2 means that if the level
4667 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4668 Default is 2. Range is between 1 and 20.
4669
4670 @item attack
4671 Amount of milliseconds the signal has to rise above the threshold before gain
4672 reduction starts. Default is 20. Range is between 0.01 and 2000.
4673
4674 @item release
4675 Amount of milliseconds the signal has to fall below the threshold before
4676 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4677
4678 @item makeup
4679 Set the amount by how much signal will be amplified after processing.
4680 Default is 1. Range is from 1 to 64.
4681
4682 @item knee
4683 Curve the sharp knee around the threshold to enter gain reduction more softly.
4684 Default is 2.82843. Range is between 1 and 8.
4685
4686 @item link
4687 Choose if the @code{average} level between all channels of side-chain stream
4688 or the louder(@code{maximum}) channel of side-chain stream affects the
4689 reduction. Default is @code{average}.
4690
4691 @item detection
4692 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4693 of @code{rms}. Default is @code{rms} which is mainly smoother.
4694
4695 @item level_sc
4696 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4697
4698 @item mix
4699 How much to use compressed signal in output. Default is 1.
4700 Range is between 0 and 1.
4701 @end table
4702
4703 @subsection Commands
4704
4705 This filter supports the all above options as @ref{commands}.
4706
4707 @subsection Examples
4708
4709 @itemize
4710 @item
4711 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4712 depending on the signal of 2nd input and later compressed signal to be
4713 merged with 2nd input:
4714 @example
4715 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4716 @end example
4717 @end itemize
4718
4719 @section sidechaingate
4720
4721 A sidechain gate acts like a normal (wideband) gate but has the ability to
4722 filter the detected signal before sending it to the gain reduction stage.
4723 Normally a gate uses the full range signal to detect a level above the
4724 threshold.
4725 For example: If you cut all lower frequencies from your sidechain signal
4726 the gate will decrease the volume of your track only if not enough highs
4727 appear. With this technique you are able to reduce the resonation of a
4728 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4729 guitar.
4730 It needs two input streams and returns one output stream.
4731 First input stream will be processed depending on second stream signal.
4732
4733 The filter accepts the following options:
4734
4735 @table @option
4736 @item level_in
4737 Set input level before filtering.
4738 Default is 1. Allowed range is from 0.015625 to 64.
4739
4740 @item mode
4741 Set the mode of operation. Can be @code{upward} or @code{downward}.
4742 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4743 will be amplified, expanding dynamic range in upward direction.
4744 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4745
4746 @item range
4747 Set the level of gain reduction when the signal is below the threshold.
4748 Default is 0.06125. Allowed range is from 0 to 1.
4749 Setting this to 0 disables reduction and then filter behaves like expander.
4750
4751 @item threshold
4752 If a signal rises above this level the gain reduction is released.
4753 Default is 0.125. Allowed range is from 0 to 1.
4754
4755 @item ratio
4756 Set a ratio about which the signal is reduced.
4757 Default is 2. Allowed range is from 1 to 9000.
4758
4759 @item attack
4760 Amount of milliseconds the signal has to rise above the threshold before gain
4761 reduction stops.
4762 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4763
4764 @item release
4765 Amount of milliseconds the signal has to fall below the threshold before the
4766 reduction is increased again. Default is 250 milliseconds.
4767 Allowed range is from 0.01 to 9000.
4768
4769 @item makeup
4770 Set amount of amplification of signal after processing.
4771 Default is 1. Allowed range is from 1 to 64.
4772
4773 @item knee
4774 Curve the sharp knee around the threshold to enter gain reduction more softly.
4775 Default is 2.828427125. Allowed range is from 1 to 8.
4776
4777 @item detection
4778 Choose if exact signal should be taken for detection or an RMS like one.
4779 Default is rms. Can be peak or rms.
4780
4781 @item link
4782 Choose if the average level between all channels or the louder channel affects
4783 the reduction.
4784 Default is average. Can be average or maximum.
4785
4786 @item level_sc
4787 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4788 @end table
4789
4790 @section silencedetect
4791
4792 Detect silence in an audio stream.
4793
4794 This filter logs a message when it detects that the input audio volume is less
4795 or equal to a noise tolerance value for a duration greater or equal to the
4796 minimum detected noise duration.
4797
4798 The printed times and duration are expressed in seconds. The
4799 @code{lavfi.silence_start} or @code{lavfi.silence_start.X} metadata key
4800 is set on the first frame whose timestamp equals or exceeds the detection
4801 duration and it contains the timestamp of the first frame of the silence.
4802
4803 The @code{lavfi.silence_duration} or @code{lavfi.silence_duration.X}
4804 and @code{lavfi.silence_end} or @code{lavfi.silence_end.X} metadata
4805 keys are set on the first frame after the silence. If @option{mono} is
4806 enabled, and each channel is evaluated separately, the @code{.X}
4807 suffixed keys are used, and @code{X} corresponds to the channel number.
4808
4809 The filter accepts the following options:
4810
4811 @table @option
4812 @item noise, n
4813 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4814 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4815
4816 @item duration, d
4817 Set silence duration until notification (default is 2 seconds). See
4818 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4819 for the accepted syntax.
4820
4821 @item mono, m
4822 Process each channel separately, instead of combined. By default is disabled.
4823 @end table
4824
4825 @subsection Examples
4826
4827 @itemize
4828 @item
4829 Detect 5 seconds of silence with -50dB noise tolerance:
4830 @example
4831 silencedetect=n=-50dB:d=5
4832 @end example
4833
4834 @item
4835 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4836 tolerance in @file{silence.mp3}:
4837 @example
4838 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4839 @end example
4840 @end itemize
4841
4842 @section silenceremove
4843
4844 Remove silence from the beginning, middle or end of the audio.
4845
4846 The filter accepts the following options:
4847
4848 @table @option
4849 @item start_periods
4850 This value is used to indicate if audio should be trimmed at beginning of
4851 the audio. A value of zero indicates no silence should be trimmed from the
4852 beginning. When specifying a non-zero value, it trims audio up until it
4853 finds non-silence. Normally, when trimming silence from beginning of audio
4854 the @var{start_periods} will be @code{1} but it can be increased to higher
4855 values to trim all audio up to specific count of non-silence periods.
4856 Default value is @code{0}.
4857
4858 @item start_duration
4859 Specify the amount of time that non-silence must be detected before it stops
4860 trimming audio. By increasing the duration, bursts of noises can be treated
4861 as silence and trimmed off. Default value is @code{0}.
4862
4863 @item start_threshold
4864 This indicates what sample value should be treated as silence. For digital
4865 audio, a value of @code{0} may be fine but for audio recorded from analog,
4866 you may wish to increase the value to account for background noise.
4867 Can be specified in dB (in case "dB" is appended to the specified value)
4868 or amplitude ratio. Default value is @code{0}.
4869
4870 @item start_silence
4871 Specify max duration of silence at beginning that will be kept after
4872 trimming. Default is 0, which is equal to trimming all samples detected
4873 as silence.
4874
4875 @item start_mode
4876 Specify mode of detection of silence end in start of multi-channel audio.
4877 Can be @var{any} or @var{all}. Default is @var{any}.
4878 With @var{any}, any sample that is detected as non-silence will cause
4879 stopped trimming of silence.
4880 With @var{all}, only if all channels are detected as non-silence will cause
4881 stopped trimming of silence.
4882
4883 @item stop_periods
4884 Set the count for trimming silence from the end of audio.
4885 To remove silence from the middle of a file, specify a @var{stop_periods}
4886 that is negative. This value is then treated as a positive value and is
4887 used to indicate the effect should restart processing as specified by
4888 @var{start_periods}, making it suitable for removing periods of silence
4889 in the middle of the audio.
4890 Default value is @code{0}.
4891
4892 @item stop_duration
4893 Specify a duration of silence that must exist before audio is not copied any
4894 more. By specifying a higher duration, silence that is wanted can be left in
4895 the audio.
4896 Default value is @code{0}.
4897
4898 @item stop_threshold
4899 This is the same as @option{start_threshold} but for trimming silence from
4900 the end of audio.
4901 Can be specified in dB (in case "dB" is appended to the specified value)
4902 or amplitude ratio. Default value is @code{0}.
4903
4904 @item stop_silence
4905 Specify max duration of silence at end that will be kept after
4906 trimming. Default is 0, which is equal to trimming all samples detected
4907 as silence.
4908
4909 @item stop_mode
4910 Specify mode of detection of silence start in end of multi-channel audio.
4911 Can be @var{any} or @var{all}. Default is @var{any}.
4912 With @var{any}, any sample that is detected as non-silence will cause
4913 stopped trimming of silence.
4914 With @var{all}, only if all channels are detected as non-silence will cause
4915 stopped trimming of silence.
4916
4917 @item detection
4918 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4919 and works better with digital silence which is exactly 0.
4920 Default value is @code{rms}.
4921
4922 @item window
4923 Set duration in number of seconds used to calculate size of window in number
4924 of samples for detecting silence.
4925 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4926 @end table
4927
4928 @subsection Examples
4929
4930 @itemize
4931 @item
4932 The following example shows how this filter can be used to start a recording
4933 that does not contain the delay at the start which usually occurs between
4934 pressing the record button and the start of the performance:
4935 @example
4936 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4937 @end example
4938
4939 @item
4940 Trim all silence encountered from beginning to end where there is more than 1
4941 second of silence in audio:
4942 @example
4943 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4944 @end example
4945
4946 @item
4947 Trim all digital silence samples, using peak detection, from beginning to end
4948 where there is more than 0 samples of digital silence in audio and digital
4949 silence is detected in all channels at same positions in stream:
4950 @example
4951 silenceremove=window=0:detection=peak:stop_mode=all:start_mode=all:stop_periods=-1:stop_threshold=0
4952 @end example
4953 @end itemize
4954
4955 @section sofalizer
4956
4957 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4958 loudspeakers around the user for binaural listening via headphones (audio
4959 formats up to 9 channels supported).
4960 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4961 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4962 Austrian Academy of Sciences.
4963
4964 To enable compilation of this filter you need to configure FFmpeg with
4965 @code{--enable-libmysofa}.
4966
4967 The filter accepts the following options:
4968
4969 @table @option
4970 @item sofa
4971 Set the SOFA file used for rendering.
4972
4973 @item gain
4974 Set gain applied to audio. Value is in dB. Default is 0.
4975
4976 @item rotation
4977 Set rotation of virtual loudspeakers in deg. Default is 0.
4978
4979 @item elevation
4980 Set elevation of virtual speakers in deg. Default is 0.
4981
4982 @item radius
4983 Set distance in meters between loudspeakers and the listener with near-field
4984 HRTFs. Default is 1.
4985
4986 @item type
4987 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4988 processing audio in time domain which is slow.
4989 @var{freq} is processing audio in frequency domain which is fast.
4990 Default is @var{freq}.
4991
4992 @item speakers
4993 Set custom positions of virtual loudspeakers. Syntax for this option is:
4994 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4995 Each virtual loudspeaker is described with short channel name following with
4996 azimuth and elevation in degrees.
4997 Each virtual loudspeaker description is separated by '|'.
4998 For example to override front left and front right channel positions use:
4999 'speakers=FL 45 15|FR 345 15'.
5000 Descriptions with unrecognised channel names are ignored.
5001
5002 @item lfegain
5003 Set custom gain for LFE channels. Value is in dB. Default is 0.
5004
5005 @item framesize
5006 Set custom frame size in number of samples. Default is 1024.
5007 Allowed range is from 1024 to 96000. Only used if option @samp{type}
5008 is set to @var{freq}.
5009
5010 @item normalize
5011 Should all IRs be normalized upon importing SOFA file.
5012 By default is enabled.
5013
5014 @item interpolate
5015 Should nearest IRs be interpolated with neighbor IRs if exact position
5016 does not match. By default is disabled.
5017
5018 @item minphase
5019 Minphase all IRs upon loading of SOFA file. By default is disabled.
5020
5021 @item anglestep
5022 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
5023
5024 @item radstep
5025 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
5026 @end table
5027
5028 @subsection Examples
5029
5030 @itemize
5031 @item
5032 Using ClubFritz6 sofa file:
5033 @example
5034 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
5035 @end example
5036
5037 @item
5038 Using ClubFritz12 sofa file and bigger radius with small rotation:
5039 @example
5040 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
5041 @end example
5042
5043 @item
5044 Similar as above but with custom speaker positions for front left, front right, back left and back right
5045 and also with custom gain:
5046 @example
5047 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
5048 @end example
5049 @end itemize
5050
5051 @section stereotools
5052
5053 This filter has some handy utilities to manage stereo signals, for converting
5054 M/S stereo recordings to L/R signal while having control over the parameters
5055 or spreading the stereo image of master track.
5056
5057 The filter accepts the following options:
5058
5059 @table @option
5060 @item level_in
5061 Set input level before filtering for both channels. Defaults is 1.
5062 Allowed range is from 0.015625 to 64.
5063
5064 @item level_out
5065 Set output level after filtering for both channels. Defaults is 1.
5066 Allowed range is from 0.015625 to 64.
5067
5068 @item balance_in
5069 Set input balance between both channels. Default is 0.
5070 Allowed range is from -1 to 1.
5071
5072 @item balance_out
5073 Set output balance between both channels. Default is 0.
5074 Allowed range is from -1 to 1.
5075
5076 @item softclip
5077 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
5078 clipping. Disabled by default.
5079
5080 @item mutel
5081 Mute the left channel. Disabled by default.
5082
5083 @item muter
5084 Mute the right channel. Disabled by default.
5085
5086 @item phasel
5087 Change the phase of the left channel. Disabled by default.
5088
5089 @item phaser
5090 Change the phase of the right channel. Disabled by default.
5091
5092 @item mode
5093 Set stereo mode. Available values are:
5094
5095 @table @samp
5096 @item lr>lr
5097 Left/Right to Left/Right, this is default.
5098
5099 @item lr>ms
5100 Left/Right to Mid/Side.
5101
5102 @item ms>lr
5103 Mid/Side to Left/Right.
5104
5105 @item lr>ll
5106 Left/Right to Left/Left.
5107
5108 @item lr>rr
5109 Left/Right to Right/Right.
5110
5111 @item lr>l+r
5112 Left/Right to Left + Right.
5113
5114 @item lr>rl
5115 Left/Right to Right/Left.
5116
5117 @item ms>ll
5118 Mid/Side to Left/Left.
5119
5120 @item ms>rr
5121 Mid/Side to Right/Right.
5122 @end table
5123
5124 @item slev
5125 Set level of side signal. Default is 1.
5126 Allowed range is from 0.015625 to 64.
5127
5128 @item sbal
5129 Set balance of side signal. Default is 0.
5130 Allowed range is from -1 to 1.
5131
5132 @item mlev
5133 Set level of the middle signal. Default is 1.
5134 Allowed range is from 0.015625 to 64.
5135
5136 @item mpan
5137 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
5138
5139 @item base
5140 Set stereo base between mono and inversed channels. Default is 0.
5141 Allowed range is from -1 to 1.
5142
5143 @item delay
5144 Set delay in milliseconds how much to delay left from right channel and
5145 vice versa. Default is 0. Allowed range is from -20 to 20.
5146
5147 @item sclevel
5148 Set S/C level. Default is 1. Allowed range is from 1 to 100.
5149
5150 @item phase
5151 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
5152
5153 @item bmode_in, bmode_out
5154 Set balance mode for balance_in/balance_out option.
5155
5156 Can be one of the following:
5157
5158 @table @samp
5159 @item balance
5160 Classic balance mode. Attenuate one channel at time.
5161 Gain is raised up to 1.
5162
5163 @item amplitude
5164 Similar as classic mode above but gain is raised up to 2.
5165
5166 @item power
5167 Equal power distribution, from -6dB to +6dB range.
5168 @end table
5169 @end table
5170
5171 @subsection Examples
5172
5173 @itemize
5174 @item
5175 Apply karaoke like effect:
5176 @example
5177 stereotools=mlev=0.015625
5178 @end example
5179
5180 @item
5181 Convert M/S signal to L/R:
5182 @example
5183 "stereotools=mode=ms>lr"
5184 @end example
5185 @end itemize
5186
5187 @section stereowiden
5188
5189 This filter enhance the stereo effect by suppressing signal common to both
5190 channels and by delaying the signal of left into right and vice versa,
5191 thereby widening the stereo effect.
5192
5193 The filter accepts the following options:
5194
5195 @table @option
5196 @item delay
5197 Time in milliseconds of the delay of left signal into right and vice versa.
5198 Default is 20 milliseconds.
5199
5200 @item feedback
5201 Amount of gain in delayed signal into right and vice versa. Gives a delay
5202 effect of left signal in right output and vice versa which gives widening
5203 effect. Default is 0.3.
5204
5205 @item crossfeed
5206 Cross feed of left into right with inverted phase. This helps in suppressing
5207 the mono. If the value is 1 it will cancel all the signal common to both
5208 channels. Default is 0.3.
5209
5210 @item drymix
5211 Set level of input signal of original channel. Default is 0.8.
5212 @end table
5213
5214 @subsection Commands
5215
5216 This filter supports the all above options except @code{delay} as @ref{commands}.
5217
5218 @section superequalizer
5219 Apply 18 band equalizer.
5220
5221 The filter accepts the following options:
5222 @table @option
5223 @item 1b
5224 Set 65Hz band gain.
5225 @item 2b
5226 Set 92Hz band gain.
5227 @item 3b
5228 Set 131Hz band gain.
5229 @item 4b
5230 Set 185Hz band gain.
5231 @item 5b
5232 Set 262Hz band gain.
5233 @item 6b
5234 Set 370Hz band gain.
5235 @item 7b
5236 Set 523Hz band gain.
5237 @item 8b
5238 Set 740Hz band gain.
5239 @item 9b
5240 Set 1047Hz band gain.
5241 @item 10b
5242 Set 1480Hz band gain.
5243 @item 11b
5244 Set 2093Hz band gain.
5245 @item 12b
5246 Set 2960Hz band gain.
5247 @item 13b
5248 Set 4186Hz band gain.
5249 @item 14b
5250 Set 5920Hz band gain.
5251 @item 15b
5252 Set 8372Hz band gain.
5253 @item 16b
5254 Set 11840Hz band gain.
5255 @item 17b
5256 Set 16744Hz band gain.
5257 @item 18b
5258 Set 20000Hz band gain.
5259 @end table
5260
5261 @section surround
5262 Apply audio surround upmix filter.
5263
5264 This filter allows to produce multichannel output from audio stream.
5265
5266 The filter accepts the following options:
5267
5268 @table @option
5269 @item chl_out
5270 Set output channel layout. By default, this is @var{5.1}.
5271
5272 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5273 for the required syntax.
5274
5275 @item chl_in
5276 Set input channel layout. By default, this is @var{stereo}.
5277
5278 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5279 for the required syntax.
5280
5281 @item level_in
5282 Set input volume level. By default, this is @var{1}.
5283
5284 @item level_out
5285 Set output volume level. By default, this is @var{1}.
5286
5287 @item lfe
5288 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5289
5290 @item lfe_low
5291 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5292
5293 @item lfe_high
5294 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5295
5296 @item lfe_mode
5297 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5298 In @var{add} mode, LFE channel is created from input audio and added to output.
5299 In @var{sub} mode, LFE channel is created from input audio and added to output but
5300 also all non-LFE output channels are subtracted with output LFE channel.
5301
5302 @item angle
5303 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5304 Default is @var{90}.
5305
5306 @item fc_in
5307 Set front center input volume. By default, this is @var{1}.
5308
5309 @item fc_out
5310 Set front center output volume. By default, this is @var{1}.
5311
5312 @item fl_in
5313 Set front left input volume. By default, this is @var{1}.
5314
5315 @item fl_out
5316 Set front left output volume. By default, this is @var{1}.
5317
5318 @item fr_in
5319 Set front right input volume. By default, this is @var{1}.
5320
5321 @item fr_out
5322 Set front right output volume. By default, this is @var{1}.
5323
5324 @item sl_in
5325 Set side left input volume. By default, this is @var{1}.
5326
5327 @item sl_out
5328 Set side left output volume. By default, this is @var{1}.
5329
5330 @item sr_in
5331 Set side right input volume. By default, this is @var{1}.
5332
5333 @item sr_out
5334 Set side right output volume. By default, this is @var{1}.
5335
5336 @item bl_in
5337 Set back left input volume. By default, this is @var{1}.
5338
5339 @item bl_out
5340 Set back left output volume. By default, this is @var{1}.
5341
5342 @item br_in
5343 Set back right input volume. By default, this is @var{1}.
5344
5345 @item br_out
5346 Set back right output volume. By default, this is @var{1}.
5347
5348 @item bc_in
5349 Set back center input volume. By default, this is @var{1}.
5350
5351 @item bc_out
5352 Set back center output volume. By default, this is @var{1}.
5353
5354 @item lfe_in
5355 Set LFE input volume. By default, this is @var{1}.
5356
5357 @item lfe_out
5358 Set LFE output volume. By default, this is @var{1}.
5359
5360 @item allx
5361 Set spread usage of stereo image across X axis for all channels.
5362
5363 @item ally
5364 Set spread usage of stereo image across Y axis for all channels.
5365
5366 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5367 Set spread usage of stereo image across X axis for each channel.
5368
5369 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5370 Set spread usage of stereo image across Y axis for each channel.
5371
5372 @item win_size
5373 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5374
5375 @item win_func
5376 Set window function.
5377
5378 It accepts the following values:
5379 @table @samp
5380 @item rect
5381 @item bartlett
5382 @item hann, hanning
5383 @item hamming
5384 @item blackman
5385 @item welch
5386 @item flattop
5387 @item bharris
5388 @item bnuttall
5389 @item bhann
5390 @item sine
5391 @item nuttall
5392 @item lanczos
5393 @item gauss
5394 @item tukey
5395 @item dolph
5396 @item cauchy
5397 @item parzen
5398 @item poisson
5399 @item bohman
5400 @end table
5401 Default is @code{hann}.
5402
5403 @item overlap
5404 Set window overlap. If set to 1, the recommended overlap for selected
5405 window function will be picked. Default is @code{0.5}.
5406 @end table
5407
5408 @section treble, highshelf
5409
5410 Boost or cut treble (upper) frequencies of the audio using a two-pole
5411 shelving filter with a response similar to that of a standard
5412 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5413
5414 The filter accepts the following options:
5415
5416 @table @option
5417 @item gain, g
5418 Give the gain at whichever is the lower of ~22 kHz and the
5419 Nyquist frequency. Its useful range is about -20 (for a large cut)
5420 to +20 (for a large boost). Beware of clipping when using a positive gain.
5421
5422 @item frequency, f
5423 Set the filter's central frequency and so can be used
5424 to extend or reduce the frequency range to be boosted or cut.
5425 The default value is @code{3000} Hz.
5426
5427 @item width_type, t
5428 Set method to specify band-width of filter.
5429 @table @option
5430 @item h
5431 Hz
5432 @item q
5433 Q-Factor
5434 @item o
5435 octave
5436 @item s
5437 slope
5438 @item k
5439 kHz
5440 @end table
5441
5442 @item width, w
5443 Determine how steep is the filter's shelf transition.
5444
5445 @item mix, m
5446 How much to use filtered signal in output. Default is 1.
5447 Range is between 0 and 1.
5448
5449 @item channels, c
5450 Specify which channels to filter, by default all available are filtered.
5451
5452 @item normalize, n
5453 Normalize biquad coefficients, by default is disabled.
5454 Enabling it will normalize magnitude response at DC to 0dB.
5455 @end table
5456
5457 @subsection Commands
5458
5459 This filter supports the following commands:
5460 @table @option
5461 @item frequency, f
5462 Change treble frequency.
5463 Syntax for the command is : "@var{frequency}"
5464
5465 @item width_type, t
5466 Change treble width_type.
5467 Syntax for the command is : "@var{width_type}"
5468
5469 @item width, w
5470 Change treble width.
5471 Syntax for the command is : "@var{width}"
5472
5473 @item gain, g
5474 Change treble gain.
5475 Syntax for the command is : "@var{gain}"
5476
5477 @item mix, m
5478 Change treble mix.
5479 Syntax for the command is : "@var{mix}"
5480 @end table
5481
5482 @section tremolo
5483
5484 Sinusoidal amplitude modulation.
5485
5486 The filter accepts the following options:
5487
5488 @table @option
5489 @item f
5490 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5491 (20 Hz or lower) will result in a tremolo effect.
5492 This filter may also be used as a ring modulator by specifying
5493 a modulation frequency higher than 20 Hz.
5494 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5495
5496 @item d
5497 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5498 Default value is 0.5.
5499 @end table
5500
5501 @section vibrato
5502
5503 Sinusoidal phase modulation.
5504
5505 The filter accepts the following options:
5506
5507 @table @option
5508 @item f
5509 Modulation frequency in Hertz.
5510 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5511
5512 @item d
5513 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5514 Default value is 0.5.
5515 @end table
5516
5517 @section volume
5518
5519 Adjust the input audio volume.
5520
5521 It accepts the following parameters:
5522 @table @option
5523
5524 @item volume
5525 Set audio volume expression.
5526
5527 Output values are clipped to the maximum value.
5528
5529 The output audio volume is given by the relation:
5530 @example
5531 @var{output_volume} = @var{volume} * @var{input_volume}
5532 @end example
5533
5534 The default value for @var{volume} is "1.0".
5535
5536 @item precision
5537 This parameter represents the mathematical precision.
5538
5539 It determines which input sample formats will be allowed, which affects the
5540 precision of the volume scaling.
5541
5542 @table @option
5543 @item fixed
5544 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5545 @item float
5546 32-bit floating-point; this limits input sample format to FLT. (default)
5547 @item double
5548 64-bit floating-point; this limits input sample format to DBL.
5549 @end table
5550
5551 @item replaygain
5552 Choose the behaviour on encountering ReplayGain side data in input frames.
5553
5554 @table @option
5555 @item drop
5556 Remove ReplayGain side data, ignoring its contents (the default).
5557
5558 @item ignore
5559 Ignore ReplayGain side data, but leave it in the frame.
5560
5561 @item track
5562 Prefer the track gain, if present.
5563
5564 @item album
5565 Prefer the album gain, if present.
5566 @end table
5567
5568 @item replaygain_preamp
5569 Pre-amplification gain in dB to apply to the selected replaygain gain.
5570
5571 Default value for @var{replaygain_preamp} is 0.0.
5572
5573 @item replaygain_noclip
5574 Prevent clipping by limiting the gain applied.
5575
5576 Default value for @var{replaygain_noclip} is 1.
5577
5578 @item eval
5579 Set when the volume expression is evaluated.
5580
5581 It accepts the following values:
5582 @table @samp
5583 @item once
5584 only evaluate expression once during the filter initialization, or
5585 when the @samp{volume} command is sent
5586
5587 @item frame
5588 evaluate expression for each incoming frame
5589 @end table
5590
5591 Default value is @samp{once}.
5592 @end table
5593
5594 The volume expression can contain the following parameters.
5595
5596 @table @option
5597 @item n
5598 frame number (starting at zero)
5599 @item nb_channels
5600 number of channels
5601 @item nb_consumed_samples
5602 number of samples consumed by the filter
5603 @item nb_samples
5604 number of samples in the current frame
5605 @item pos
5606 original frame position in the file
5607 @item pts
5608 frame PTS
5609 @item sample_rate
5610 sample rate
5611 @item startpts
5612 PTS at start of stream
5613 @item startt
5614 time at start of stream
5615 @item t
5616 frame time
5617 @item tb
5618 timestamp timebase
5619 @item volume
5620 last set volume value
5621 @end table
5622
5623 Note that when @option{eval} is set to @samp{once} only the
5624 @var{sample_rate} and @var{tb} variables are available, all other
5625 variables will evaluate to NAN.
5626
5627 @subsection Commands
5628
5629 This filter supports the following commands:
5630 @table @option
5631 @item volume
5632 Modify the volume expression.
5633 The command accepts the same syntax of the corresponding option.
5634
5635 If the specified expression is not valid, it is kept at its current
5636 value.
5637 @end table
5638
5639 @subsection Examples
5640
5641 @itemize
5642 @item
5643 Halve the input audio volume:
5644 @example
5645 volume=volume=0.5
5646 volume=volume=1/2
5647 volume=volume=-6.0206dB
5648 @end example
5649
5650 In all the above example the named key for @option{volume} can be
5651 omitted, for example like in:
5652 @example
5653 volume=0.5
5654 @end example
5655
5656 @item
5657 Increase input audio power by 6 decibels using fixed-point precision:
5658 @example
5659 volume=volume=6dB:precision=fixed
5660 @end example
5661
5662 @item
5663 Fade volume after time 10 with an annihilation period of 5 seconds:
5664 @example
5665 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5666 @end example
5667 @end itemize
5668
5669 @section volumedetect
5670
5671 Detect the volume of the input video.
5672
5673 The filter has no parameters. The input is not modified. Statistics about
5674 the volume will be printed in the log when the input stream end is reached.
5675
5676 In particular it will show the mean volume (root mean square), maximum
5677 volume (on a per-sample basis), and the beginning of a histogram of the
5678 registered volume values (from the maximum value to a cumulated 1/1000 of
5679 the samples).
5680
5681 All volumes are in decibels relative to the maximum PCM value.
5682
5683 @subsection Examples
5684
5685 Here is an excerpt of the output:
5686 @example
5687 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5688 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5689 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5690 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5691 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5692 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5693 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5694 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5695 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5696 @end example
5697
5698 It means that:
5699 @itemize
5700 @item
5701 The mean square energy is approximately -27 dB, or 10^-2.7.
5702 @item
5703 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5704 @item
5705 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5706 @end itemize
5707
5708 In other words, raising the volume by +4 dB does not cause any clipping,
5709 raising it by +5 dB causes clipping for 6 samples, etc.
5710
5711 @c man end AUDIO FILTERS
5712
5713 @chapter Audio Sources
5714 @c man begin AUDIO SOURCES
5715
5716 Below is a description of the currently available audio sources.
5717
5718 @section abuffer
5719
5720 Buffer audio frames, and make them available to the filter chain.
5721
5722 This source is mainly intended for a programmatic use, in particular
5723 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5724
5725 It accepts the following parameters:
5726 @table @option
5727
5728 @item time_base
5729 The timebase which will be used for timestamps of submitted frames. It must be
5730 either a floating-point number or in @var{numerator}/@var{denominator} form.
5731
5732 @item sample_rate
5733 The sample rate of the incoming audio buffers.
5734
5735 @item sample_fmt
5736 The sample format of the incoming audio buffers.
5737 Either a sample format name or its corresponding integer representation from
5738 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5739
5740 @item channel_layout
5741 The channel layout of the incoming audio buffers.
5742 Either a channel layout name from channel_layout_map in
5743 @file{libavutil/channel_layout.c} or its corresponding integer representation
5744 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5745
5746 @item channels
5747 The number of channels of the incoming audio buffers.
5748 If both @var{channels} and @var{channel_layout} are specified, then they
5749 must be consistent.
5750
5751 @end table
5752
5753 @subsection Examples
5754
5755 @example
5756 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5757 @end example
5758
5759 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5760 Since the sample format with name "s16p" corresponds to the number
5761 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5762 equivalent to:
5763 @example
5764 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5765 @end example
5766
5767 @section aevalsrc
5768
5769 Generate an audio signal specified by an expression.
5770
5771 This source accepts in input one or more expressions (one for each
5772 channel), which are evaluated and used to generate a corresponding
5773 audio signal.
5774
5775 This source accepts the following options:
5776
5777 @table @option
5778 @item exprs
5779 Set the '|'-separated expressions list for each separate channel. In case the
5780 @option{channel_layout} option is not specified, the selected channel layout
5781 depends on the number of provided expressions. Otherwise the last
5782 specified expression is applied to the remaining output channels.
5783
5784 @item channel_layout, c
5785 Set the channel layout. The number of channels in the specified layout
5786 must be equal to the number of specified expressions.
5787
5788 @item duration, d
5789 Set the minimum duration of the sourced audio. See
5790 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5791 for the accepted syntax.
5792 Note that the resulting duration may be greater than the specified
5793 duration, as the generated audio is always cut at the end of a
5794 complete frame.
5795
5796 If not specified, or the expressed duration is negative, the audio is
5797 supposed to be generated forever.
5798
5799 @item nb_samples, n
5800 Set the number of samples per channel per each output frame,
5801 default to 1024.
5802
5803 @item sample_rate, s
5804 Specify the sample rate, default to 44100.
5805 @end table
5806
5807 Each expression in @var{exprs} can contain the following constants:
5808
5809 @table @option
5810 @item n
5811 number of the evaluated sample, starting from 0
5812
5813 @item t
5814 time of the evaluated sample expressed in seconds, starting from 0
5815
5816 @item s
5817 sample rate
5818
5819 @end table
5820
5821 @subsection Examples
5822
5823 @itemize
5824 @item
5825 Generate silence:
5826 @example
5827 aevalsrc=0
5828 @end example
5829
5830 @item
5831 Generate a sin signal with frequency of 440 Hz, set sample rate to
5832 8000 Hz:
5833 @example
5834 aevalsrc="sin(440*2*PI*t):s=8000"
5835 @end example
5836
5837 @item
5838 Generate a two channels signal, specify the channel layout (Front
5839 Center + Back Center) explicitly:
5840 @example
5841 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5842 @end example
5843
5844 @item
5845 Generate white noise:
5846 @example
5847 aevalsrc="-2+random(0)"
5848 @end example
5849
5850 @item
5851 Generate an amplitude modulated signal:
5852 @example
5853 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5854 @end example
5855
5856 @item
5857 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5858 @example
5859 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5860 @end example
5861
5862 @end itemize
5863
5864 @section afirsrc
5865
5866 Generate a FIR coefficients using frequency sampling method.
5867
5868 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5869
5870 The filter accepts the following options:
5871
5872 @table @option
5873 @item taps, t
5874 Set number of filter coefficents in output audio stream.
5875 Default value is 1025.
5876
5877 @item frequency, f
5878 Set frequency points from where magnitude and phase are set.
5879 This must be in non decreasing order, and first element must be 0, while last element
5880 must be 1. Elements are separated by white spaces.
5881
5882 @item magnitude, m
5883 Set magnitude value for every frequency point set by @option{frequency}.
5884 Number of values must be same as number of frequency points.
5885 Values are separated by white spaces.
5886
5887 @item phase, p
5888 Set phase value for every frequency point set by @option{frequency}.
5889 Number of values must be same as number of frequency points.
5890 Values are separated by white spaces.
5891
5892 @item sample_rate, r
5893 Set sample rate, default is 44100.
5894
5895 @item nb_samples, n
5896 Set number of samples per each frame. Default is 1024.
5897
5898 @item win_func, w
5899 Set window function. Default is blackman.
5900 @end table
5901
5902 @section anullsrc
5903
5904 The null audio source, return unprocessed audio frames. It is mainly useful
5905 as a template and to be employed in analysis / debugging tools, or as
5906 the source for filters which ignore the input data (for example the sox
5907 synth filter).
5908
5909 This source accepts the following options:
5910
5911 @table @option
5912
5913 @item channel_layout, cl
5914
5915 Specifies the channel layout, and can be either an integer or a string
5916 representing a channel layout. The default value of @var{channel_layout}
5917 is "stereo".
5918
5919 Check the channel_layout_map definition in
5920 @file{libavutil/channel_layout.c} for the mapping between strings and
5921 channel layout values.
5922
5923 @item sample_rate, r
5924 Specifies the sample rate, and defaults to 44100.
5925
5926 @item nb_samples, n
5927 Set the number of samples per requested frames.
5928
5929 @end table
5930
5931 @subsection Examples
5932
5933 @itemize
5934 @item
5935 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5936 @example
5937 anullsrc=r=48000:cl=4
5938 @end example
5939
5940 @item
5941 Do the same operation with a more obvious syntax:
5942 @example
5943 anullsrc=r=48000:cl=mono
5944 @end example
5945 @end itemize
5946
5947 All the parameters need to be explicitly defined.
5948
5949 @section flite
5950
5951 Synthesize a voice utterance using the libflite library.
5952
5953 To enable compilation of this filter you need to configure FFmpeg with
5954 @code{--enable-libflite}.
5955
5956 Note that versions of the flite library prior to 2.0 are not thread-safe.
5957
5958 The filter accepts the following options:
5959
5960 @table @option
5961
5962 @item list_voices
5963 If set to 1, list the names of the available voices and exit
5964 immediately. Default value is 0.
5965
5966 @item nb_samples, n
5967 Set the maximum number of samples per frame. Default value is 512.
5968
5969 @item textfile
5970 Set the filename containing the text to speak.
5971
5972 @item text
5973 Set the text to speak.
5974
5975 @item voice, v
5976 Set the voice to use for the speech synthesis. Default value is
5977 @code{kal}. See also the @var{list_voices} option.
5978 @end table
5979
5980 @subsection Examples
5981
5982 @itemize
5983 @item
5984 Read from file @file{speech.txt}, and synthesize the text using the
5985 standard flite voice:
5986 @example
5987 flite=textfile=speech.txt
5988 @end example
5989
5990 @item
5991 Read the specified text selecting the @code{slt} voice:
5992 @example
5993 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5994 @end example
5995
5996 @item
5997 Input text to ffmpeg:
5998 @example
5999 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
6000 @end example
6001
6002 @item
6003 Make @file{ffplay} speak the specified text, using @code{flite} and
6004 the @code{lavfi} device:
6005 @example
6006 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
6007 @end example
6008 @end itemize
6009
6010 For more information about libflite, check:
6011 @url{http://www.festvox.org/flite/}
6012
6013 @section anoisesrc
6014
6015 Generate a noise audio signal.
6016
6017 The filter accepts the following options:
6018
6019 @table @option
6020 @item sample_rate, r
6021 Specify the sample rate. Default value is 48000 Hz.
6022
6023 @item amplitude, a
6024 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
6025 is 1.0.
6026
6027 @item duration, d
6028 Specify the duration of the generated audio stream. Not specifying this option
6029 results in noise with an infinite length.
6030
6031 @item color, colour, c
6032 Specify the color of noise. Available noise colors are white, pink, brown,
6033 blue, violet and velvet. Default color is white.
6034
6035 @item seed, s
6036 Specify a value used to seed the PRNG.
6037
6038 @item nb_samples, n
6039 Set the number of samples per each output frame, default is 1024.
6040 @end table
6041
6042 @subsection Examples
6043
6044 @itemize
6045
6046 @item
6047 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
6048 @example
6049 anoisesrc=d=60:c=pink:r=44100:a=0.5
6050 @end example
6051 @end itemize
6052
6053 @section hilbert
6054
6055 Generate odd-tap Hilbert transform FIR coefficients.
6056
6057 The resulting stream can be used with @ref{afir} filter for phase-shifting
6058 the signal by 90 degrees.
6059
6060 This is used in many matrix coding schemes and for analytic signal generation.
6061 The process is often written as a multiplication by i (or j), the imaginary unit.
6062
6063 The filter accepts the following options:
6064
6065 @table @option
6066
6067 @item sample_rate, s
6068 Set sample rate, default is 44100.
6069
6070 @item taps, t
6071 Set length of FIR filter, default is 22051.
6072
6073 @item nb_samples, n
6074 Set number of samples per each frame.
6075
6076 @item win_func, w
6077 Set window function to be used when generating FIR coefficients.
6078 @end table
6079
6080 @section sinc
6081
6082 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
6083
6084 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
6085
6086 The filter accepts the following options:
6087
6088 @table @option
6089 @item sample_rate, r
6090 Set sample rate, default is 44100.
6091
6092 @item nb_samples, n
6093 Set number of samples per each frame. Default is 1024.
6094
6095 @item hp
6096 Set high-pass frequency. Default is 0.
6097
6098 @item lp
6099 Set low-pass frequency. Default is 0.
6100 If high-pass frequency is lower than low-pass frequency and low-pass frequency
6101 is higher than 0 then filter will create band-pass filter coefficients,
6102 otherwise band-reject filter coefficients.
6103
6104 @item phase
6105 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
6106
6107 @item beta
6108 Set Kaiser window beta.
6109
6110 @item att
6111 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
6112
6113 @item round
6114 Enable rounding, by default is disabled.
6115
6116 @item hptaps
6117 Set number of taps for high-pass filter.
6118
6119 @item lptaps
6120 Set number of taps for low-pass filter.
6121 @end table
6122
6123 @section sine
6124
6125 Generate an audio signal made of a sine wave with amplitude 1/8.
6126
6127 The audio signal is bit-exact.
6128
6129 The filter accepts the following options:
6130
6131 @table @option
6132
6133 @item frequency, f
6134 Set the carrier frequency. Default is 440 Hz.
6135
6136 @item beep_factor, b
6137 Enable a periodic beep every second with frequency @var{beep_factor} times
6138 the carrier frequency. Default is 0, meaning the beep is disabled.
6139
6140 @item sample_rate, r
6141 Specify the sample rate, default is 44100.
6142
6143 @item duration, d
6144 Specify the duration of the generated audio stream.
6145
6146 @item samples_per_frame
6147 Set the number of samples per output frame.
6148
6149 The expression can contain the following constants:
6150
6151 @table @option
6152 @item n
6153 The (sequential) number of the output audio frame, starting from 0.
6154
6155 @item pts
6156 The PTS (Presentation TimeStamp) of the output audio frame,
6157 expressed in @var{TB} units.
6158
6159 @item t
6160 The PTS of the output audio frame, expressed in seconds.
6161
6162 @item TB
6163 The timebase of the output audio frames.
6164 @end table
6165
6166 Default is @code{1024}.
6167 @end table
6168
6169 @subsection Examples
6170
6171 @itemize
6172
6173 @item
6174 Generate a simple 440 Hz sine wave:
6175 @example
6176 sine
6177 @end example
6178
6179 @item
6180 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
6181 @example
6182 sine=220:4:d=5
6183 sine=f=220:b=4:d=5
6184 sine=frequency=220:beep_factor=4:duration=5
6185 @end example
6186
6187 @item
6188 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
6189 pattern:
6190 @example
6191 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
6192 @end example
6193 @end itemize
6194
6195 @c man end AUDIO SOURCES
6196
6197 @chapter Audio Sinks
6198 @c man begin AUDIO SINKS
6199
6200 Below is a description of the currently available audio sinks.
6201
6202 @section abuffersink
6203
6204 Buffer audio frames, and make them available to the end of filter chain.
6205
6206 This sink is mainly intended for programmatic use, in particular
6207 through the interface defined in @file{libavfilter/buffersink.h}
6208 or the options system.
6209
6210 It accepts a pointer to an AVABufferSinkContext structure, which
6211 defines the incoming buffers' formats, to be passed as the opaque
6212 parameter to @code{avfilter_init_filter} for initialization.
6213 @section anullsink
6214
6215 Null audio sink; do absolutely nothing with the input audio. It is
6216 mainly useful as a template and for use in analysis / debugging
6217 tools.
6218
6219 @c man end AUDIO SINKS
6220
6221 @chapter Video Filters
6222 @c man begin VIDEO FILTERS
6223
6224 When you configure your FFmpeg build, you can disable any of the
6225 existing filters using @code{--disable-filters}.
6226 The configure output will show the video filters included in your
6227 build.
6228
6229 Below is a description of the currently available video filters.
6230
6231 @section addroi
6232
6233 Mark a region of interest in a video frame.
6234
6235 The frame data is passed through unchanged, but metadata is attached
6236 to the frame indicating regions of interest which can affect the
6237 behaviour of later encoding.  Multiple regions can be marked by
6238 applying the filter multiple times.
6239
6240 @table @option
6241 @item x
6242 Region distance in pixels from the left edge of the frame.
6243 @item y
6244 Region distance in pixels from the top edge of the frame.
6245 @item w
6246 Region width in pixels.
6247 @item h
6248 Region height in pixels.
6249
6250 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
6251 and may contain the following variables:
6252 @table @option
6253 @item iw
6254 Width of the input frame.
6255 @item ih
6256 Height of the input frame.
6257 @end table
6258
6259 @item qoffset
6260 Quantisation offset to apply within the region.
6261
6262 This must be a real value in the range -1 to +1.  A value of zero
6263 indicates no quality change.  A negative value asks for better quality
6264 (less quantisation), while a positive value asks for worse quality
6265 (greater quantisation).
6266
6267 The range is calibrated so that the extreme values indicate the
6268 largest possible offset - if the rest of the frame is encoded with the
6269 worst possible quality, an offset of -1 indicates that this region
6270 should be encoded with the best possible quality anyway.  Intermediate
6271 values are then interpolated in some codec-dependent way.
6272
6273 For example, in 10-bit H.264 the quantisation parameter varies between
6274 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
6275 this region should be encoded with a QP around one-tenth of the full
6276 range better than the rest of the frame.  So, if most of the frame
6277 were to be encoded with a QP of around 30, this region would get a QP
6278 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
6279 An extreme value of -1 would indicate that this region should be
6280 encoded with the best possible quality regardless of the treatment of
6281 the rest of the frame - that is, should be encoded at a QP of -12.
6282 @item clear
6283 If set to true, remove any existing regions of interest marked on the
6284 frame before adding the new one.
6285 @end table
6286
6287 @subsection Examples
6288
6289 @itemize
6290 @item
6291 Mark the centre quarter of the frame as interesting.
6292 @example
6293 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
6294 @end example
6295 @item
6296 Mark the 100-pixel-wide region on the left edge of the frame as very
6297 uninteresting (to be encoded at much lower quality than the rest of
6298 the frame).
6299 @example
6300 addroi=0:0:100:ih:+1/5
6301 @end example
6302 @end itemize
6303
6304 @section alphaextract
6305
6306 Extract the alpha component from the input as a grayscale video. This
6307 is especially useful with the @var{alphamerge} filter.
6308
6309 @section alphamerge
6310
6311 Add or replace the alpha component of the primary input with the
6312 grayscale value of a second input. This is intended for use with
6313 @var{alphaextract} to allow the transmission or storage of frame
6314 sequences that have alpha in a format that doesn't support an alpha
6315 channel.
6316
6317 For example, to reconstruct full frames from a normal YUV-encoded video
6318 and a separate video created with @var{alphaextract}, you might use:
6319 @example
6320 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6321 @end example
6322
6323 Since this filter is designed for reconstruction, it operates on frame
6324 sequences without considering timestamps, and terminates when either
6325 input reaches end of stream. This will cause problems if your encoding
6326 pipeline drops frames. If you're trying to apply an image as an
6327 overlay to a video stream, consider the @var{overlay} filter instead.
6328
6329 @section amplify
6330
6331 Amplify differences between current pixel and pixels of adjacent frames in
6332 same pixel location.
6333
6334 This filter accepts the following options:
6335
6336 @table @option
6337 @item radius
6338 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6339 For example radius of 3 will instruct filter to calculate average of 7 frames.
6340
6341 @item factor
6342 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6343
6344 @item threshold
6345 Set threshold for difference amplification. Any difference greater or equal to
6346 this value will not alter source pixel. Default is 10.
6347 Allowed range is from 0 to 65535.
6348
6349 @item tolerance
6350 Set tolerance for difference amplification. Any difference lower to
6351 this value will not alter source pixel. Default is 0.
6352 Allowed range is from 0 to 65535.
6353
6354 @item low
6355 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6356 This option controls maximum possible value that will decrease source pixel value.
6357
6358 @item high
6359 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6360 This option controls maximum possible value that will increase source pixel value.
6361
6362 @item planes
6363 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6364 @end table
6365
6366 @subsection Commands
6367
6368 This filter supports the following @ref{commands} that corresponds to option of same name:
6369 @table @option
6370 @item factor
6371 @item threshold
6372 @item tolerance
6373 @item low
6374 @item high
6375 @item planes
6376 @end table
6377
6378 @section ass
6379
6380 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6381 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6382 Substation Alpha) subtitles files.
6383
6384 This filter accepts the following option in addition to the common options from
6385 the @ref{subtitles} filter:
6386
6387 @table @option
6388 @item shaping
6389 Set the shaping engine
6390
6391 Available values are:
6392 @table @samp
6393 @item auto
6394 The default libass shaping engine, which is the best available.
6395 @item simple
6396 Fast, font-agnostic shaper that can do only substitutions
6397 @item complex
6398 Slower shaper using OpenType for substitutions and positioning
6399 @end table
6400
6401 The default is @code{auto}.
6402 @end table
6403
6404 @section atadenoise
6405 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6406
6407 The filter accepts the following options:
6408
6409 @table @option
6410 @item 0a
6411 Set threshold A for 1st plane. Default is 0.02.
6412 Valid range is 0 to 0.3.
6413
6414 @item 0b
6415 Set threshold B for 1st plane. Default is 0.04.
6416 Valid range is 0 to 5.
6417
6418 @item 1a
6419 Set threshold A for 2nd plane. Default is 0.02.
6420 Valid range is 0 to 0.3.
6421
6422 @item 1b
6423 Set threshold B for 2nd plane. Default is 0.04.
6424 Valid range is 0 to 5.
6425
6426 @item 2a
6427 Set threshold A for 3rd plane. Default is 0.02.
6428 Valid range is 0 to 0.3.
6429
6430 @item 2b
6431 Set threshold B for 3rd plane. Default is 0.04.
6432 Valid range is 0 to 5.
6433
6434 Threshold A is designed to react on abrupt changes in the input signal and
6435 threshold B is designed to react on continuous changes in the input signal.
6436
6437 @item s
6438 Set number of frames filter will use for averaging. Default is 9. Must be odd
6439 number in range [5, 129].
6440
6441 @item p
6442 Set what planes of frame filter will use for averaging. Default is all.
6443
6444 @item a
6445 Set what variant of algorithm filter will use for averaging. Default is @code{p} parallel.
6446 Alternatively can be set to @code{s} serial.
6447
6448 Parallel can be faster then serial, while other way around is never true.
6449 Parallel will abort early on first change being greater then thresholds, while serial
6450 will continue processing other side of frames if they are equal or bellow thresholds.
6451 @end table
6452
6453 @subsection Commands
6454 This filter supports same @ref{commands} as options except option @code{s}.
6455 The command accepts the same syntax of the corresponding option.
6456
6457 @section avgblur
6458
6459 Apply average blur filter.
6460
6461 The filter accepts the following options:
6462
6463 @table @option
6464 @item sizeX
6465 Set horizontal radius size.
6466
6467 @item planes
6468 Set which planes to filter. By default all planes are filtered.
6469
6470 @item sizeY
6471 Set vertical radius size, if zero it will be same as @code{sizeX}.
6472 Default is @code{0}.
6473 @end table
6474
6475 @subsection Commands
6476 This filter supports same commands as options.
6477 The command accepts the same syntax of the corresponding option.
6478
6479 If the specified expression is not valid, it is kept at its current
6480 value.
6481
6482 @section bbox
6483
6484 Compute the bounding box for the non-black pixels in the input frame
6485 luminance plane.
6486
6487 This filter computes the bounding box containing all the pixels with a
6488 luminance value greater than the minimum allowed value.
6489 The parameters describing the bounding box are printed on the filter
6490 log.
6491
6492 The filter accepts the following option:
6493
6494 @table @option
6495 @item min_val
6496 Set the minimal luminance value. Default is @code{16}.
6497 @end table
6498
6499 @section bilateral
6500 Apply bilateral filter, spatial smoothing while preserving edges.
6501
6502 The filter accepts the following options:
6503 @table @option
6504 @item sigmaS
6505 Set sigma of gaussian function to calculate spatial weight.
6506 Allowed range is 0 to 10. Default is 0.1.
6507
6508 @item sigmaR
6509 Set sigma of gaussian function to calculate range weight.
6510 Allowed range is 0 to 1. Default is 0.1.
6511
6512 @item planes
6513 Set planes to filter. Default is first only.
6514 @end table
6515
6516 @section bitplanenoise
6517
6518 Show and measure bit plane noise.
6519
6520 The filter accepts the following options:
6521
6522 @table @option
6523 @item bitplane
6524 Set which plane to analyze. Default is @code{1}.
6525
6526 @item filter
6527 Filter out noisy pixels from @code{bitplane} set above.
6528 Default is disabled.
6529 @end table
6530
6531 @section blackdetect
6532
6533 Detect video intervals that are (almost) completely black. Can be
6534 useful to detect chapter transitions, commercials, or invalid
6535 recordings.
6536
6537 The filter outputs its detection analysis to both the log as well as
6538 frame metadata. If a black segment of at least the specified minimum
6539 duration is found, a line with the start and end timestamps as well
6540 as duration is printed to the log with level @code{info}. In addition,
6541 a log line with level @code{debug} is printed per frame showing the
6542 black amount detected for that frame.
6543
6544 The filter also attaches metadata to the first frame of a black
6545 segment with key @code{lavfi.black_start} and to the first frame
6546 after the black segment ends with key @code{lavfi.black_end}. The
6547 value is the frame's timestamp. This metadata is added regardless
6548 of the minimum duration specified.
6549
6550 The filter accepts the following options:
6551
6552 @table @option
6553 @item black_min_duration, d
6554 Set the minimum detected black duration expressed in seconds. It must
6555 be a non-negative floating point number.
6556
6557 Default value is 2.0.
6558
6559 @item picture_black_ratio_th, pic_th
6560 Set the threshold for considering a picture "black".
6561 Express the minimum value for the ratio:
6562 @example
6563 @var{nb_black_pixels} / @var{nb_pixels}
6564 @end example
6565
6566 for which a picture is considered black.
6567 Default value is 0.98.
6568
6569 @item pixel_black_th, pix_th
6570 Set the threshold for considering a pixel "black".
6571
6572 The threshold expresses the maximum pixel luminance value for which a
6573 pixel is considered "black". The provided value is scaled according to
6574 the following equation:
6575 @example
6576 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6577 @end example
6578
6579 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6580 the input video format, the range is [0-255] for YUV full-range
6581 formats and [16-235] for YUV non full-range formats.
6582
6583 Default value is 0.10.
6584 @end table
6585
6586 The following example sets the maximum pixel threshold to the minimum
6587 value, and detects only black intervals of 2 or more seconds:
6588 @example
6589 blackdetect=d=2:pix_th=0.00
6590 @end example
6591
6592 @section blackframe
6593
6594 Detect frames that are (almost) completely black. Can be useful to
6595 detect chapter transitions or commercials. Output lines consist of
6596 the frame number of the detected frame, the percentage of blackness,
6597 the position in the file if known or -1 and the timestamp in seconds.
6598
6599 In order to display the output lines, you need to set the loglevel at
6600 least to the AV_LOG_INFO value.
6601
6602 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6603 The value represents the percentage of pixels in the picture that
6604 are below the threshold value.
6605
6606 It accepts the following parameters:
6607
6608 @table @option
6609
6610 @item amount
6611 The percentage of the pixels that have to be below the threshold; it defaults to
6612 @code{98}.
6613
6614 @item threshold, thresh
6615 The threshold below which a pixel value is considered black; it defaults to
6616 @code{32}.
6617
6618 @end table
6619
6620 @anchor{blend}
6621 @section blend
6622
6623 Blend two video frames into each other.
6624
6625 The @code{blend} filter takes two input streams and outputs one
6626 stream, the first input is the "top" layer and second input is
6627 "bottom" layer.  By default, the output terminates when the longest input terminates.
6628
6629 The @code{tblend} (time blend) filter takes two consecutive frames
6630 from one single stream, and outputs the result obtained by blending
6631 the new frame on top of the old frame.
6632
6633 A description of the accepted options follows.
6634
6635 @table @option
6636 @item c0_mode
6637 @item c1_mode
6638 @item c2_mode
6639 @item c3_mode
6640 @item all_mode
6641 Set blend mode for specific pixel component or all pixel components in case
6642 of @var{all_mode}. Default value is @code{normal}.
6643
6644 Available values for component modes are:
6645 @table @samp
6646 @item addition
6647 @item grainmerge
6648 @item and
6649 @item average
6650 @item burn
6651 @item darken
6652 @item difference
6653 @item grainextract
6654 @item divide
6655 @item dodge
6656 @item freeze
6657 @item exclusion
6658 @item extremity
6659 @item glow
6660 @item hardlight
6661 @item hardmix
6662 @item heat
6663 @item lighten
6664 @item linearlight
6665 @item multiply
6666 @item multiply128
6667 @item negation
6668 @item normal
6669 @item or
6670 @item overlay
6671 @item phoenix
6672 @item pinlight
6673 @item reflect
6674 @item screen
6675 @item softlight
6676 @item subtract
6677 @item vividlight
6678 @item xor
6679 @end table
6680
6681 @item c0_opacity
6682 @item c1_opacity
6683 @item c2_opacity
6684 @item c3_opacity
6685 @item all_opacity
6686 Set blend opacity for specific pixel component or all pixel components in case
6687 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6688
6689 @item c0_expr
6690 @item c1_expr
6691 @item c2_expr
6692 @item c3_expr
6693 @item all_expr
6694 Set blend expression for specific pixel component or all pixel components in case
6695 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6696
6697 The expressions can use the following variables:
6698
6699 @table @option
6700 @item N
6701 The sequential number of the filtered frame, starting from @code{0}.
6702
6703 @item X
6704 @item Y
6705 the coordinates of the current sample
6706
6707 @item W
6708 @item H
6709 the width and height of currently filtered plane
6710
6711 @item SW
6712 @item SH
6713 Width and height scale for the plane being filtered. It is the
6714 ratio between the dimensions of the current plane to the luma plane,
6715 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6716 the luma plane and @code{0.5,0.5} for the chroma planes.
6717
6718 @item T
6719 Time of the current frame, expressed in seconds.
6720
6721 @item TOP, A
6722 Value of pixel component at current location for first video frame (top layer).
6723
6724 @item BOTTOM, B
6725 Value of pixel component at current location for second video frame (bottom layer).
6726 @end table
6727 @end table
6728
6729 The @code{blend} filter also supports the @ref{framesync} options.
6730
6731 @subsection Examples
6732
6733 @itemize
6734 @item
6735 Apply transition from bottom layer to top layer in first 10 seconds:
6736 @example
6737 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6738 @end example
6739
6740 @item
6741 Apply linear horizontal transition from top layer to bottom layer:
6742 @example
6743 blend=all_expr='A*(X/W)+B*(1-X/W)'
6744 @end example
6745
6746 @item
6747 Apply 1x1 checkerboard effect:
6748 @example
6749 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6750 @end example
6751
6752 @item
6753 Apply uncover left effect:
6754 @example
6755 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6756 @end example
6757
6758 @item
6759 Apply uncover down effect:
6760 @example
6761 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6762 @end example
6763
6764 @item
6765 Apply uncover up-left effect:
6766 @example
6767 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6768 @end example
6769
6770 @item
6771 Split diagonally video and shows top and bottom layer on each side:
6772 @example
6773 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6774 @end example
6775
6776 @item
6777 Display differences between the current and the previous frame:
6778 @example
6779 tblend=all_mode=grainextract
6780 @end example
6781 @end itemize
6782
6783 @section bm3d
6784
6785 Denoise frames using Block-Matching 3D algorithm.
6786
6787 The filter accepts the following options.
6788
6789 @table @option
6790 @item sigma
6791 Set denoising strength. Default value is 1.
6792 Allowed range is from 0 to 999.9.
6793 The denoising algorithm is very sensitive to sigma, so adjust it
6794 according to the source.
6795
6796 @item block
6797 Set local patch size. This sets dimensions in 2D.
6798
6799 @item bstep
6800 Set sliding step for processing blocks. Default value is 4.
6801 Allowed range is from 1 to 64.
6802 Smaller values allows processing more reference blocks and is slower.
6803
6804 @item group
6805 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6806 When set to 1, no block matching is done. Larger values allows more blocks
6807 in single group.
6808 Allowed range is from 1 to 256.
6809
6810 @item range
6811 Set radius for search block matching. Default is 9.
6812 Allowed range is from 1 to INT32_MAX.
6813
6814 @item mstep
6815 Set step between two search locations for block matching. Default is 1.
6816 Allowed range is from 1 to 64. Smaller is slower.
6817
6818 @item thmse
6819 Set threshold of mean square error for block matching. Valid range is 0 to
6820 INT32_MAX.
6821
6822 @item hdthr
6823 Set thresholding parameter for hard thresholding in 3D transformed domain.
6824 Larger values results in stronger hard-thresholding filtering in frequency
6825 domain.
6826
6827 @item estim
6828 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6829 Default is @code{basic}.
6830
6831 @item ref
6832 If enabled, filter will use 2nd stream for block matching.
6833 Default is disabled for @code{basic} value of @var{estim} option,
6834 and always enabled if value of @var{estim} is @code{final}.
6835
6836 @item planes
6837 Set planes to filter. Default is all available except alpha.
6838 @end table
6839
6840 @subsection Examples
6841
6842 @itemize
6843 @item
6844 Basic filtering with bm3d:
6845 @example
6846 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6847 @end example
6848
6849 @item
6850 Same as above, but filtering only luma:
6851 @example
6852 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6853 @end example
6854
6855 @item
6856 Same as above, but with both estimation modes:
6857 @example
6858 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
6859 @end example
6860
6861 @item
6862 Same as above, but prefilter with @ref{nlmeans} filter instead:
6863 @example
6864 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
6865 @end example
6866 @end itemize
6867
6868 @section boxblur
6869
6870 Apply a boxblur algorithm to the input video.
6871
6872 It accepts the following parameters:
6873
6874 @table @option
6875
6876 @item luma_radius, lr
6877 @item luma_power, lp
6878 @item chroma_radius, cr
6879 @item chroma_power, cp
6880 @item alpha_radius, ar
6881 @item alpha_power, ap
6882
6883 @end table
6884
6885 A description of the accepted options follows.
6886
6887 @table @option
6888 @item luma_radius, lr
6889 @item chroma_radius, cr
6890 @item alpha_radius, ar
6891 Set an expression for the box radius in pixels used for blurring the
6892 corresponding input plane.
6893
6894 The radius value must be a non-negative number, and must not be
6895 greater than the value of the expression @code{min(w,h)/2} for the
6896 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6897 planes.
6898
6899 Default value for @option{luma_radius} is "2". If not specified,
6900 @option{chroma_radius} and @option{alpha_radius} default to the
6901 corresponding value set for @option{luma_radius}.
6902
6903 The expressions can contain the following constants:
6904 @table @option
6905 @item w
6906 @item h
6907 The input width and height in pixels.
6908
6909 @item cw
6910 @item ch
6911 The input chroma image width and height in pixels.
6912
6913 @item hsub
6914 @item vsub
6915 The horizontal and vertical chroma subsample values. For example, for the
6916 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6917 @end table
6918
6919 @item luma_power, lp
6920 @item chroma_power, cp
6921 @item alpha_power, ap
6922 Specify how many times the boxblur filter is applied to the
6923 corresponding plane.
6924
6925 Default value for @option{luma_power} is 2. If not specified,
6926 @option{chroma_power} and @option{alpha_power} default to the
6927 corresponding value set for @option{luma_power}.
6928
6929 A value of 0 will disable the effect.
6930 @end table
6931
6932 @subsection Examples
6933
6934 @itemize
6935 @item
6936 Apply a boxblur filter with the luma, chroma, and alpha radii
6937 set to 2:
6938 @example
6939 boxblur=luma_radius=2:luma_power=1
6940 boxblur=2:1
6941 @end example
6942
6943 @item
6944 Set the luma radius to 2, and alpha and chroma radius to 0:
6945 @example
6946 boxblur=2:1:cr=0:ar=0
6947 @end example
6948
6949 @item
6950 Set the luma and chroma radii to a fraction of the video dimension:
6951 @example
6952 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6953 @end example
6954 @end itemize
6955
6956 @section bwdif
6957
6958 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6959 Deinterlacing Filter").
6960
6961 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6962 interpolation algorithms.
6963 It accepts the following parameters:
6964
6965 @table @option
6966 @item mode
6967 The interlacing mode to adopt. It accepts one of the following values:
6968
6969 @table @option
6970 @item 0, send_frame
6971 Output one frame for each frame.
6972 @item 1, send_field
6973 Output one frame for each field.
6974 @end table
6975
6976 The default value is @code{send_field}.
6977
6978 @item parity
6979 The picture field parity assumed for the input interlaced video. It accepts one
6980 of the following values:
6981
6982 @table @option
6983 @item 0, tff
6984 Assume the top field is first.
6985 @item 1, bff
6986 Assume the bottom field is first.
6987 @item -1, auto
6988 Enable automatic detection of field parity.
6989 @end table
6990
6991 The default value is @code{auto}.
6992 If the interlacing is unknown or the decoder does not export this information,
6993 top field first will be assumed.
6994
6995 @item deint
6996 Specify which frames to deinterlace. Accepts one of the following
6997 values:
6998
6999 @table @option
7000 @item 0, all
7001 Deinterlace all frames.
7002 @item 1, interlaced
7003 Only deinterlace frames marked as interlaced.
7004 @end table
7005
7006 The default value is @code{all}.
7007 @end table
7008
7009 @section cas
7010
7011 Apply Contrast Adaptive Sharpen filter to video stream.
7012
7013 The filter accepts the following options:
7014
7015 @table @option
7016 @item strength
7017 Set the sharpening strength. Default value is 0.
7018
7019 @item planes
7020 Set planes to filter. Default value is to filter all
7021 planes except alpha plane.
7022 @end table
7023
7024 @section chromahold
7025 Remove all color information for all colors except for certain one.
7026
7027 The filter accepts the following options:
7028
7029 @table @option
7030 @item color
7031 The color which will not be replaced with neutral chroma.
7032
7033 @item similarity
7034 Similarity percentage with the above color.
7035 0.01 matches only the exact key color, while 1.0 matches everything.
7036
7037 @item blend
7038 Blend percentage.
7039 0.0 makes pixels either fully gray, or not gray at all.
7040 Higher values result in more preserved color.
7041
7042 @item yuv
7043 Signals that the color passed is already in YUV instead of RGB.
7044
7045 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7046 This can be used to pass exact YUV values as hexadecimal numbers.
7047 @end table
7048
7049 @subsection Commands
7050 This filter supports same @ref{commands} as options.
7051 The command accepts the same syntax of the corresponding option.
7052
7053 If the specified expression is not valid, it is kept at its current
7054 value.
7055
7056 @section chromakey
7057 YUV colorspace color/chroma keying.
7058
7059 The filter accepts the following options:
7060
7061 @table @option
7062 @item color
7063 The color which will be replaced with transparency.
7064
7065 @item similarity
7066 Similarity percentage with the key color.
7067
7068 0.01 matches only the exact key color, while 1.0 matches everything.
7069
7070 @item blend
7071 Blend percentage.
7072
7073 0.0 makes pixels either fully transparent, or not transparent at all.
7074
7075 Higher values result in semi-transparent pixels, with a higher transparency
7076 the more similar the pixels color is to the key color.
7077
7078 @item yuv
7079 Signals that the color passed is already in YUV instead of RGB.
7080
7081 Literal colors like "green" or "red" don't make sense with this enabled anymore.
7082 This can be used to pass exact YUV values as hexadecimal numbers.
7083 @end table
7084
7085 @subsection Commands
7086 This filter supports same @ref{commands} as options.
7087 The command accepts the same syntax of the corresponding option.
7088
7089 If the specified expression is not valid, it is kept at its current
7090 value.
7091
7092 @subsection Examples
7093
7094 @itemize
7095 @item
7096 Make every green pixel in the input image transparent:
7097 @example
7098 ffmpeg -i input.png -vf chromakey=green out.png
7099 @end example
7100
7101 @item
7102 Overlay a greenscreen-video on top of a static black background.
7103 @example
7104 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
7105 @end example
7106 @end itemize
7107
7108 @section chromashift
7109 Shift chroma pixels horizontally and/or vertically.
7110
7111 The filter accepts the following options:
7112 @table @option
7113 @item cbh
7114 Set amount to shift chroma-blue horizontally.
7115 @item cbv
7116 Set amount to shift chroma-blue vertically.
7117 @item crh
7118 Set amount to shift chroma-red horizontally.
7119 @item crv
7120 Set amount to shift chroma-red vertically.
7121 @item edge
7122 Set edge mode, can be @var{smear}, default, or @var{warp}.
7123 @end table
7124
7125 @subsection Commands
7126
7127 This filter supports the all above options as @ref{commands}.
7128
7129 @section ciescope
7130
7131 Display CIE color diagram with pixels overlaid onto it.
7132
7133 The filter accepts the following options:
7134
7135 @table @option
7136 @item system
7137 Set color system.
7138
7139 @table @samp
7140 @item ntsc, 470m
7141 @item ebu, 470bg
7142 @item smpte
7143 @item 240m
7144 @item apple
7145 @item widergb
7146 @item cie1931
7147 @item rec709, hdtv
7148 @item uhdtv, rec2020
7149 @item dcip3
7150 @end table
7151
7152 @item cie
7153 Set CIE system.
7154
7155 @table @samp
7156 @item xyy
7157 @item ucs
7158 @item luv
7159 @end table
7160
7161 @item gamuts
7162 Set what gamuts to draw.
7163
7164 See @code{system} option for available values.
7165
7166 @item size, s
7167 Set ciescope size, by default set to 512.
7168
7169 @item intensity, i
7170 Set intensity used to map input pixel values to CIE diagram.
7171
7172 @item contrast
7173 Set contrast used to draw tongue colors that are out of active color system gamut.
7174
7175 @item corrgamma
7176 Correct gamma displayed on scope, by default enabled.
7177
7178 @item showwhite
7179 Show white point on CIE diagram, by default disabled.
7180
7181 @item gamma
7182 Set input gamma. Used only with XYZ input color space.
7183 @end table
7184
7185 @section codecview
7186
7187 Visualize information exported by some codecs.
7188
7189 Some codecs can export information through frames using side-data or other
7190 means. For example, some MPEG based codecs export motion vectors through the
7191 @var{export_mvs} flag in the codec @option{flags2} option.
7192
7193 The filter accepts the following option:
7194
7195 @table @option
7196 @item mv
7197 Set motion vectors to visualize.
7198
7199 Available flags for @var{mv} are:
7200
7201 @table @samp
7202 @item pf
7203 forward predicted MVs of P-frames
7204 @item bf
7205 forward predicted MVs of B-frames
7206 @item bb
7207 backward predicted MVs of B-frames
7208 @end table
7209
7210 @item qp
7211 Display quantization parameters using the chroma planes.
7212
7213 @item mv_type, mvt
7214 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
7215
7216 Available flags for @var{mv_type} are:
7217
7218 @table @samp
7219 @item fp
7220 forward predicted MVs
7221 @item bp
7222 backward predicted MVs
7223 @end table
7224
7225 @item frame_type, ft
7226 Set frame type to visualize motion vectors of.
7227
7228 Available flags for @var{frame_type} are:
7229
7230 @table @samp
7231 @item if
7232 intra-coded frames (I-frames)
7233 @item pf
7234 predicted frames (P-frames)
7235 @item bf
7236 bi-directionally predicted frames (B-frames)
7237 @end table
7238 @end table
7239
7240 @subsection Examples
7241
7242 @itemize
7243 @item
7244 Visualize forward predicted MVs of all frames using @command{ffplay}:
7245 @example
7246 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
7247 @end example
7248
7249 @item
7250 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
7251 @example
7252 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
7253 @end example
7254 @end itemize
7255
7256 @section colorbalance
7257 Modify intensity of primary colors (red, green and blue) of input frames.
7258
7259 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
7260 regions for the red-cyan, green-magenta or blue-yellow balance.
7261
7262 A positive adjustment value shifts the balance towards the primary color, a negative
7263 value towards the complementary color.
7264
7265 The filter accepts the following options:
7266
7267 @table @option
7268 @item rs
7269 @item gs
7270 @item bs
7271 Adjust red, green and blue shadows (darkest pixels).
7272
7273 @item rm
7274 @item gm
7275 @item bm
7276 Adjust red, green and blue midtones (medium pixels).
7277
7278 @item rh
7279 @item gh
7280 @item bh
7281 Adjust red, green and blue highlights (brightest pixels).
7282
7283 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7284
7285 @item pl
7286 Preserve lightness when changing color balance. Default is disabled.
7287 @end table
7288
7289 @subsection Examples
7290
7291 @itemize
7292 @item
7293 Add red color cast to shadows:
7294 @example
7295 colorbalance=rs=.3
7296 @end example
7297 @end itemize
7298
7299 @subsection Commands
7300
7301 This filter supports the all above options as @ref{commands}.
7302
7303 @section colorchannelmixer
7304
7305 Adjust video input frames by re-mixing color channels.
7306
7307 This filter modifies a color channel by adding the values associated to
7308 the other channels of the same pixels. For example if the value to
7309 modify is red, the output value will be:
7310 @example
7311 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7312 @end example
7313
7314 The filter accepts the following options:
7315
7316 @table @option
7317 @item rr
7318 @item rg
7319 @item rb
7320 @item ra
7321 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7322 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7323
7324 @item gr
7325 @item gg
7326 @item gb
7327 @item ga
7328 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7329 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7330
7331 @item br
7332 @item bg
7333 @item bb
7334 @item ba
7335 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7336 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7337
7338 @item ar
7339 @item ag
7340 @item ab
7341 @item aa
7342 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7343 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7344
7345 Allowed ranges for options are @code{[-2.0, 2.0]}.
7346 @end table
7347
7348 @subsection Examples
7349
7350 @itemize
7351 @item
7352 Convert source to grayscale:
7353 @example
7354 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7355 @end example
7356 @item
7357 Simulate sepia tones:
7358 @example
7359 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7360 @end example
7361 @end itemize
7362
7363 @subsection Commands
7364
7365 This filter supports the all above options as @ref{commands}.
7366
7367 @section colorkey
7368 RGB colorspace color keying.
7369
7370 The filter accepts the following options:
7371
7372 @table @option
7373 @item color
7374 The color which will be replaced with transparency.
7375
7376 @item similarity
7377 Similarity percentage with the key color.
7378
7379 0.01 matches only the exact key color, while 1.0 matches everything.
7380
7381 @item blend
7382 Blend percentage.
7383
7384 0.0 makes pixels either fully transparent, or not transparent at all.
7385
7386 Higher values result in semi-transparent pixels, with a higher transparency
7387 the more similar the pixels color is to the key color.
7388 @end table
7389
7390 @subsection Examples
7391
7392 @itemize
7393 @item
7394 Make every green pixel in the input image transparent:
7395 @example
7396 ffmpeg -i input.png -vf colorkey=green out.png
7397 @end example
7398
7399 @item
7400 Overlay a greenscreen-video on top of a static background image.
7401 @example
7402 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
7403 @end example
7404 @end itemize
7405
7406 @subsection Commands
7407 This filter supports same @ref{commands} as options.
7408 The command accepts the same syntax of the corresponding option.
7409
7410 If the specified expression is not valid, it is kept at its current
7411 value.
7412
7413 @section colorhold
7414 Remove all color information for all RGB colors except for certain one.
7415
7416 The filter accepts the following options:
7417
7418 @table @option
7419 @item color
7420 The color which will not be replaced with neutral gray.
7421
7422 @item similarity
7423 Similarity percentage with the above color.
7424 0.01 matches only the exact key color, while 1.0 matches everything.
7425
7426 @item blend
7427 Blend percentage. 0.0 makes pixels fully gray.
7428 Higher values result in more preserved color.
7429 @end table
7430
7431 @subsection Commands
7432 This filter supports same @ref{commands} as options.
7433 The command accepts the same syntax of the corresponding option.
7434
7435 If the specified expression is not valid, it is kept at its current
7436 value.
7437
7438 @section colorlevels
7439
7440 Adjust video input frames using levels.
7441
7442 The filter accepts the following options:
7443
7444 @table @option
7445 @item rimin
7446 @item gimin
7447 @item bimin
7448 @item aimin
7449 Adjust red, green, blue and alpha input black point.
7450 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
7451
7452 @item rimax
7453 @item gimax
7454 @item bimax
7455 @item aimax
7456 Adjust red, green, blue and alpha input white point.
7457 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
7458
7459 Input levels are used to lighten highlights (bright tones), darken shadows
7460 (dark tones), change the balance of bright and dark tones.
7461
7462 @item romin
7463 @item gomin
7464 @item bomin
7465 @item aomin
7466 Adjust red, green, blue and alpha output black point.
7467 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
7468
7469 @item romax
7470 @item gomax
7471 @item bomax
7472 @item aomax
7473 Adjust red, green, blue and alpha output white point.
7474 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7475
7476 Output levels allows manual selection of a constrained output level range.
7477 @end table
7478
7479 @subsection Examples
7480
7481 @itemize
7482 @item
7483 Make video output darker:
7484 @example
7485 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7486 @end example
7487
7488 @item
7489 Increase contrast:
7490 @example
7491 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7492 @end example
7493
7494 @item
7495 Make video output lighter:
7496 @example
7497 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7498 @end example
7499
7500 @item
7501 Increase brightness:
7502 @example
7503 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7504 @end example
7505 @end itemize
7506
7507 @subsection Commands
7508
7509 This filter supports the all above options as @ref{commands}.
7510
7511 @section colormatrix
7512
7513 Convert color matrix.
7514
7515 The filter accepts the following options:
7516
7517 @table @option
7518 @item src
7519 @item dst
7520 Specify the source and destination color matrix. Both values must be
7521 specified.
7522
7523 The accepted values are:
7524 @table @samp
7525 @item bt709
7526 BT.709
7527
7528 @item fcc
7529 FCC
7530
7531 @item bt601
7532 BT.601
7533
7534 @item bt470
7535 BT.470
7536
7537 @item bt470bg
7538 BT.470BG
7539
7540 @item smpte170m
7541 SMPTE-170M
7542
7543 @item smpte240m
7544 SMPTE-240M
7545
7546 @item bt2020
7547 BT.2020
7548 @end table
7549 @end table
7550
7551 For example to convert from BT.601 to SMPTE-240M, use the command:
7552 @example
7553 colormatrix=bt601:smpte240m
7554 @end example
7555
7556 @section colorspace
7557
7558 Convert colorspace, transfer characteristics or color primaries.
7559 Input video needs to have an even size.
7560
7561 The filter accepts the following options:
7562
7563 @table @option
7564 @anchor{all}
7565 @item all
7566 Specify all color properties at once.
7567
7568 The accepted values are:
7569 @table @samp
7570 @item bt470m
7571 BT.470M
7572
7573 @item bt470bg
7574 BT.470BG
7575
7576 @item bt601-6-525
7577 BT.601-6 525
7578
7579 @item bt601-6-625
7580 BT.601-6 625
7581
7582 @item bt709
7583 BT.709
7584
7585 @item smpte170m
7586 SMPTE-170M
7587
7588 @item smpte240m
7589 SMPTE-240M
7590
7591 @item bt2020
7592 BT.2020
7593
7594 @end table
7595
7596 @anchor{space}
7597 @item space
7598 Specify output colorspace.
7599
7600 The accepted values are:
7601 @table @samp
7602 @item bt709
7603 BT.709
7604
7605 @item fcc
7606 FCC
7607
7608 @item bt470bg
7609 BT.470BG or BT.601-6 625
7610
7611 @item smpte170m
7612 SMPTE-170M or BT.601-6 525
7613
7614 @item smpte240m
7615 SMPTE-240M
7616
7617 @item ycgco
7618 YCgCo
7619
7620 @item bt2020ncl
7621 BT.2020 with non-constant luminance
7622
7623 @end table
7624
7625 @anchor{trc}
7626 @item trc
7627 Specify output transfer characteristics.
7628
7629 The accepted values are:
7630 @table @samp
7631 @item bt709
7632 BT.709
7633
7634 @item bt470m
7635 BT.470M
7636
7637 @item bt470bg
7638 BT.470BG
7639
7640 @item gamma22
7641 Constant gamma of 2.2
7642
7643 @item gamma28
7644 Constant gamma of 2.8
7645
7646 @item smpte170m
7647 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7648
7649 @item smpte240m
7650 SMPTE-240M
7651
7652 @item srgb
7653 SRGB
7654
7655 @item iec61966-2-1
7656 iec61966-2-1
7657
7658 @item iec61966-2-4
7659 iec61966-2-4
7660
7661 @item xvycc
7662 xvycc
7663
7664 @item bt2020-10
7665 BT.2020 for 10-bits content
7666
7667 @item bt2020-12
7668 BT.2020 for 12-bits content
7669
7670 @end table
7671
7672 @anchor{primaries}
7673 @item primaries
7674 Specify output color primaries.
7675
7676 The accepted values are:
7677 @table @samp
7678 @item bt709
7679 BT.709
7680
7681 @item bt470m
7682 BT.470M
7683
7684 @item bt470bg
7685 BT.470BG or BT.601-6 625
7686
7687 @item smpte170m
7688 SMPTE-170M or BT.601-6 525
7689
7690 @item smpte240m
7691 SMPTE-240M
7692
7693 @item film
7694 film
7695
7696 @item smpte431
7697 SMPTE-431
7698
7699 @item smpte432
7700 SMPTE-432
7701
7702 @item bt2020
7703 BT.2020
7704
7705 @item jedec-p22
7706 JEDEC P22 phosphors
7707
7708 @end table
7709
7710 @anchor{range}
7711 @item range
7712 Specify output color range.
7713
7714 The accepted values are:
7715 @table @samp
7716 @item tv
7717 TV (restricted) range
7718
7719 @item mpeg
7720 MPEG (restricted) range
7721
7722 @item pc
7723 PC (full) range
7724
7725 @item jpeg
7726 JPEG (full) range
7727
7728 @end table
7729
7730 @item format
7731 Specify output color format.
7732
7733 The accepted values are:
7734 @table @samp
7735 @item yuv420p
7736 YUV 4:2:0 planar 8-bits
7737
7738 @item yuv420p10
7739 YUV 4:2:0 planar 10-bits
7740
7741 @item yuv420p12
7742 YUV 4:2:0 planar 12-bits
7743
7744 @item yuv422p
7745 YUV 4:2:2 planar 8-bits
7746
7747 @item yuv422p10
7748 YUV 4:2:2 planar 10-bits
7749
7750 @item yuv422p12
7751 YUV 4:2:2 planar 12-bits
7752
7753 @item yuv444p
7754 YUV 4:4:4 planar 8-bits
7755
7756 @item yuv444p10
7757 YUV 4:4:4 planar 10-bits
7758
7759 @item yuv444p12
7760 YUV 4:4:4 planar 12-bits
7761
7762 @end table
7763
7764 @item fast
7765 Do a fast conversion, which skips gamma/primary correction. This will take
7766 significantly less CPU, but will be mathematically incorrect. To get output
7767 compatible with that produced by the colormatrix filter, use fast=1.
7768
7769 @item dither
7770 Specify dithering mode.
7771
7772 The accepted values are:
7773 @table @samp
7774 @item none
7775 No dithering
7776
7777 @item fsb
7778 Floyd-Steinberg dithering
7779 @end table
7780
7781 @item wpadapt
7782 Whitepoint adaptation mode.
7783
7784 The accepted values are:
7785 @table @samp
7786 @item bradford
7787 Bradford whitepoint adaptation
7788
7789 @item vonkries
7790 von Kries whitepoint adaptation
7791
7792 @item identity
7793 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7794 @end table
7795
7796 @item iall
7797 Override all input properties at once. Same accepted values as @ref{all}.
7798
7799 @item ispace
7800 Override input colorspace. Same accepted values as @ref{space}.
7801
7802 @item iprimaries
7803 Override input color primaries. Same accepted values as @ref{primaries}.
7804
7805 @item itrc
7806 Override input transfer characteristics. Same accepted values as @ref{trc}.
7807
7808 @item irange
7809 Override input color range. Same accepted values as @ref{range}.
7810
7811 @end table
7812
7813 The filter converts the transfer characteristics, color space and color
7814 primaries to the specified user values. The output value, if not specified,
7815 is set to a default value based on the "all" property. If that property is
7816 also not specified, the filter will log an error. The output color range and
7817 format default to the same value as the input color range and format. The
7818 input transfer characteristics, color space, color primaries and color range
7819 should be set on the input data. If any of these are missing, the filter will
7820 log an error and no conversion will take place.
7821
7822 For example to convert the input to SMPTE-240M, use the command:
7823 @example
7824 colorspace=smpte240m
7825 @end example
7826
7827 @section convolution
7828
7829 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7830
7831 The filter accepts the following options:
7832
7833 @table @option
7834 @item 0m
7835 @item 1m
7836 @item 2m
7837 @item 3m
7838 Set matrix for each plane.
7839 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7840 and from 1 to 49 odd number of signed integers in @var{row} mode.
7841
7842 @item 0rdiv
7843 @item 1rdiv
7844 @item 2rdiv
7845 @item 3rdiv
7846 Set multiplier for calculated value for each plane.
7847 If unset or 0, it will be sum of all matrix elements.
7848
7849 @item 0bias
7850 @item 1bias
7851 @item 2bias
7852 @item 3bias
7853 Set bias for each plane. This value is added to the result of the multiplication.
7854 Useful for making the overall image brighter or darker. Default is 0.0.
7855
7856 @item 0mode
7857 @item 1mode
7858 @item 2mode
7859 @item 3mode
7860 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7861 Default is @var{square}.
7862 @end table
7863
7864 @subsection Examples
7865
7866 @itemize
7867 @item
7868 Apply sharpen:
7869 @example
7870 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"
7871 @end example
7872
7873 @item
7874 Apply blur:
7875 @example
7876 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"
7877 @end example
7878
7879 @item
7880 Apply edge enhance:
7881 @example
7882 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"
7883 @end example
7884
7885 @item
7886 Apply edge detect:
7887 @example
7888 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"
7889 @end example
7890
7891 @item
7892 Apply laplacian edge detector which includes diagonals:
7893 @example
7894 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"
7895 @end example
7896
7897 @item
7898 Apply emboss:
7899 @example
7900 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"
7901 @end example
7902 @end itemize
7903
7904 @section convolve
7905
7906 Apply 2D convolution of video stream in frequency domain using second stream
7907 as impulse.
7908
7909 The filter accepts the following options:
7910
7911 @table @option
7912 @item planes
7913 Set which planes to process.
7914
7915 @item impulse
7916 Set which impulse video frames will be processed, can be @var{first}
7917 or @var{all}. Default is @var{all}.
7918 @end table
7919
7920 The @code{convolve} filter also supports the @ref{framesync} options.
7921
7922 @section copy
7923
7924 Copy the input video source unchanged to the output. This is mainly useful for
7925 testing purposes.
7926
7927 @anchor{coreimage}
7928 @section coreimage
7929 Video filtering on GPU using Apple's CoreImage API on OSX.
7930
7931 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7932 processed by video hardware. However, software-based OpenGL implementations
7933 exist which means there is no guarantee for hardware processing. It depends on
7934 the respective OSX.
7935
7936 There are many filters and image generators provided by Apple that come with a
7937 large variety of options. The filter has to be referenced by its name along
7938 with its options.
7939
7940 The coreimage filter accepts the following options:
7941 @table @option
7942 @item list_filters
7943 List all available filters and generators along with all their respective
7944 options as well as possible minimum and maximum values along with the default
7945 values.
7946 @example
7947 list_filters=true
7948 @end example
7949
7950 @item filter
7951 Specify all filters by their respective name and options.
7952 Use @var{list_filters} to determine all valid filter names and options.
7953 Numerical options are specified by a float value and are automatically clamped
7954 to their respective value range.  Vector and color options have to be specified
7955 by a list of space separated float values. Character escaping has to be done.
7956 A special option name @code{default} is available to use default options for a
7957 filter.
7958
7959 It is required to specify either @code{default} or at least one of the filter options.
7960 All omitted options are used with their default values.
7961 The syntax of the filter string is as follows:
7962 @example
7963 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7964 @end example
7965
7966 @item output_rect
7967 Specify a rectangle where the output of the filter chain is copied into the
7968 input image. It is given by a list of space separated float values:
7969 @example
7970 output_rect=x\ y\ width\ height
7971 @end example
7972 If not given, the output rectangle equals the dimensions of the input image.
7973 The output rectangle is automatically cropped at the borders of the input
7974 image. Negative values are valid for each component.
7975 @example
7976 output_rect=25\ 25\ 100\ 100
7977 @end example
7978 @end table
7979
7980 Several filters can be chained for successive processing without GPU-HOST
7981 transfers allowing for fast processing of complex filter chains.
7982 Currently, only filters with zero (generators) or exactly one (filters) input
7983 image and one output image are supported. Also, transition filters are not yet
7984 usable as intended.
7985
7986 Some filters generate output images with additional padding depending on the
7987 respective filter kernel. The padding is automatically removed to ensure the
7988 filter output has the same size as the input image.
7989
7990 For image generators, the size of the output image is determined by the
7991 previous output image of the filter chain or the input image of the whole
7992 filterchain, respectively. The generators do not use the pixel information of
7993 this image to generate their output. However, the generated output is
7994 blended onto this image, resulting in partial or complete coverage of the
7995 output image.
7996
7997 The @ref{coreimagesrc} video source can be used for generating input images
7998 which are directly fed into the filter chain. By using it, providing input
7999 images by another video source or an input video is not required.
8000
8001 @subsection Examples
8002
8003 @itemize
8004
8005 @item
8006 List all filters available:
8007 @example
8008 coreimage=list_filters=true
8009 @end example
8010
8011 @item
8012 Use the CIBoxBlur filter with default options to blur an image:
8013 @example
8014 coreimage=filter=CIBoxBlur@@default
8015 @end example
8016
8017 @item
8018 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
8019 its center at 100x100 and a radius of 50 pixels:
8020 @example
8021 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
8022 @end example
8023
8024 @item
8025 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
8026 given as complete and escaped command-line for Apple's standard bash shell:
8027 @example
8028 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
8029 @end example
8030 @end itemize
8031
8032 @section cover_rect
8033
8034 Cover a rectangular object
8035
8036 It accepts the following options:
8037
8038 @table @option
8039 @item cover
8040 Filepath of the optional cover image, needs to be in yuv420.
8041
8042 @item mode
8043 Set covering mode.
8044
8045 It accepts the following values:
8046 @table @samp
8047 @item cover
8048 cover it by the supplied image
8049 @item blur
8050 cover it by interpolating the surrounding pixels
8051 @end table
8052
8053 Default value is @var{blur}.
8054 @end table
8055
8056 @subsection Examples
8057
8058 @itemize
8059 @item
8060 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
8061 @example
8062 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8063 @end example
8064 @end itemize
8065
8066 @section crop
8067
8068 Crop the input video to given dimensions.
8069
8070 It accepts the following parameters:
8071
8072 @table @option
8073 @item w, out_w
8074 The width of the output video. It defaults to @code{iw}.
8075 This expression is evaluated only once during the filter
8076 configuration, or when the @samp{w} or @samp{out_w} command is sent.
8077
8078 @item h, out_h
8079 The height of the output video. It defaults to @code{ih}.
8080 This expression is evaluated only once during the filter
8081 configuration, or when the @samp{h} or @samp{out_h} command is sent.
8082
8083 @item x
8084 The horizontal position, in the input video, of the left edge of the output
8085 video. It defaults to @code{(in_w-out_w)/2}.
8086 This expression is evaluated per-frame.
8087
8088 @item y
8089 The vertical position, in the input video, of the top edge of the output video.
8090 It defaults to @code{(in_h-out_h)/2}.
8091 This expression is evaluated per-frame.
8092
8093 @item keep_aspect
8094 If set to 1 will force the output display aspect ratio
8095 to be the same of the input, by changing the output sample aspect
8096 ratio. It defaults to 0.
8097
8098 @item exact
8099 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
8100 width/height/x/y as specified and will not be rounded to nearest smaller value.
8101 It defaults to 0.
8102 @end table
8103
8104 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
8105 expressions containing the following constants:
8106
8107 @table @option
8108 @item x
8109 @item y
8110 The computed values for @var{x} and @var{y}. They are evaluated for
8111 each new frame.
8112
8113 @item in_w
8114 @item in_h
8115 The input width and height.
8116
8117 @item iw
8118 @item ih
8119 These are the same as @var{in_w} and @var{in_h}.
8120
8121 @item out_w
8122 @item out_h
8123 The output (cropped) width and height.
8124
8125 @item ow
8126 @item oh
8127 These are the same as @var{out_w} and @var{out_h}.
8128
8129 @item a
8130 same as @var{iw} / @var{ih}
8131
8132 @item sar
8133 input sample aspect ratio
8134
8135 @item dar
8136 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8137
8138 @item hsub
8139 @item vsub
8140 horizontal and vertical chroma subsample values. For example for the
8141 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8142
8143 @item n
8144 The number of the input frame, starting from 0.
8145
8146 @item pos
8147 the position in the file of the input frame, NAN if unknown
8148
8149 @item t
8150 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
8151
8152 @end table
8153
8154 The expression for @var{out_w} may depend on the value of @var{out_h},
8155 and the expression for @var{out_h} may depend on @var{out_w}, but they
8156 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
8157 evaluated after @var{out_w} and @var{out_h}.
8158
8159 The @var{x} and @var{y} parameters specify the expressions for the
8160 position of the top-left corner of the output (non-cropped) area. They
8161 are evaluated for each frame. If the evaluated value is not valid, it
8162 is approximated to the nearest valid value.
8163
8164 The expression for @var{x} may depend on @var{y}, and the expression
8165 for @var{y} may depend on @var{x}.
8166
8167 @subsection Examples
8168
8169 @itemize
8170 @item
8171 Crop area with size 100x100 at position (12,34).
8172 @example
8173 crop=100:100:12:34
8174 @end example
8175
8176 Using named options, the example above becomes:
8177 @example
8178 crop=w=100:h=100:x=12:y=34
8179 @end example
8180
8181 @item
8182 Crop the central input area with size 100x100:
8183 @example
8184 crop=100:100
8185 @end example
8186
8187 @item
8188 Crop the central input area with size 2/3 of the input video:
8189 @example
8190 crop=2/3*in_w:2/3*in_h
8191 @end example
8192
8193 @item
8194 Crop the input video central square:
8195 @example
8196 crop=out_w=in_h
8197 crop=in_h
8198 @end example
8199
8200 @item
8201 Delimit the rectangle with the top-left corner placed at position
8202 100:100 and the right-bottom corner corresponding to the right-bottom
8203 corner of the input image.
8204 @example
8205 crop=in_w-100:in_h-100:100:100
8206 @end example
8207
8208 @item
8209 Crop 10 pixels from the left and right borders, and 20 pixels from
8210 the top and bottom borders
8211 @example
8212 crop=in_w-2*10:in_h-2*20
8213 @end example
8214
8215 @item
8216 Keep only the bottom right quarter of the input image:
8217 @example
8218 crop=in_w/2:in_h/2:in_w/2:in_h/2
8219 @end example
8220
8221 @item
8222 Crop height for getting Greek harmony:
8223 @example
8224 crop=in_w:1/PHI*in_w
8225 @end example
8226
8227 @item
8228 Apply trembling effect:
8229 @example
8230 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)
8231 @end example
8232
8233 @item
8234 Apply erratic camera effect depending on timestamp:
8235 @example
8236 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)"
8237 @end example
8238
8239 @item
8240 Set x depending on the value of y:
8241 @example
8242 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
8243 @end example
8244 @end itemize
8245
8246 @subsection Commands
8247
8248 This filter supports the following commands:
8249 @table @option
8250 @item w, out_w
8251 @item h, out_h
8252 @item x
8253 @item y
8254 Set width/height of the output video and the horizontal/vertical position
8255 in the input video.
8256 The command accepts the same syntax of the corresponding option.
8257
8258 If the specified expression is not valid, it is kept at its current
8259 value.
8260 @end table
8261
8262 @section cropdetect
8263
8264 Auto-detect the crop size.
8265
8266 It calculates the necessary cropping parameters and prints the
8267 recommended parameters via the logging system. The detected dimensions
8268 correspond to the non-black area of the input video.
8269
8270 It accepts the following parameters:
8271
8272 @table @option
8273
8274 @item limit
8275 Set higher black value threshold, which can be optionally specified
8276 from nothing (0) to everything (255 for 8-bit based formats). An intensity
8277 value greater to the set value is considered non-black. It defaults to 24.
8278 You can also specify a value between 0.0 and 1.0 which will be scaled depending
8279 on the bitdepth of the pixel format.
8280
8281 @item round
8282 The value which the width/height should be divisible by. It defaults to
8283 16. The offset is automatically adjusted to center the video. Use 2 to
8284 get only even dimensions (needed for 4:2:2 video). 16 is best when
8285 encoding to most video codecs.
8286
8287 @item reset_count, reset
8288 Set the counter that determines after how many frames cropdetect will
8289 reset the previously detected largest video area and start over to
8290 detect the current optimal crop area. Default value is 0.
8291
8292 This can be useful when channel logos distort the video area. 0
8293 indicates 'never reset', and returns the largest area encountered during
8294 playback.
8295 @end table
8296
8297 @anchor{cue}
8298 @section cue
8299
8300 Delay video filtering until a given wallclock timestamp. The filter first
8301 passes on @option{preroll} amount of frames, then it buffers at most
8302 @option{buffer} amount of frames and waits for the cue. After reaching the cue
8303 it forwards the buffered frames and also any subsequent frames coming in its
8304 input.
8305
8306 The filter can be used synchronize the output of multiple ffmpeg processes for
8307 realtime output devices like decklink. By putting the delay in the filtering
8308 chain and pre-buffering frames the process can pass on data to output almost
8309 immediately after the target wallclock timestamp is reached.
8310
8311 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
8312 some use cases.
8313
8314 @table @option
8315
8316 @item cue
8317 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
8318
8319 @item preroll
8320 The duration of content to pass on as preroll expressed in seconds. Default is 0.
8321
8322 @item buffer
8323 The maximum duration of content to buffer before waiting for the cue expressed
8324 in seconds. Default is 0.
8325
8326 @end table
8327
8328 @anchor{curves}
8329 @section curves
8330
8331 Apply color adjustments using curves.
8332
8333 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
8334 component (red, green and blue) has its values defined by @var{N} key points
8335 tied from each other using a smooth curve. The x-axis represents the pixel
8336 values from the input frame, and the y-axis the new pixel values to be set for
8337 the output frame.
8338
8339 By default, a component curve is defined by the two points @var{(0;0)} and
8340 @var{(1;1)}. This creates a straight line where each original pixel value is
8341 "adjusted" to its own value, which means no change to the image.
8342
8343 The filter allows you to redefine these two points and add some more. A new
8344 curve (using a natural cubic spline interpolation) will be define to pass
8345 smoothly through all these new coordinates. The new defined points needs to be
8346 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
8347 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
8348 the vector spaces, the values will be clipped accordingly.
8349
8350 The filter accepts the following options:
8351
8352 @table @option
8353 @item preset
8354 Select one of the available color presets. This option can be used in addition
8355 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
8356 options takes priority on the preset values.
8357 Available presets are:
8358 @table @samp
8359 @item none
8360 @item color_negative
8361 @item cross_process
8362 @item darker
8363 @item increase_contrast
8364 @item lighter
8365 @item linear_contrast
8366 @item medium_contrast
8367 @item negative
8368 @item strong_contrast
8369 @item vintage
8370 @end table
8371 Default is @code{none}.
8372 @item master, m
8373 Set the master key points. These points will define a second pass mapping. It
8374 is sometimes called a "luminance" or "value" mapping. It can be used with
8375 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
8376 post-processing LUT.
8377 @item red, r
8378 Set the key points for the red component.
8379 @item green, g
8380 Set the key points for the green component.
8381 @item blue, b
8382 Set the key points for the blue component.
8383 @item all
8384 Set the key points for all components (not including master).
8385 Can be used in addition to the other key points component
8386 options. In this case, the unset component(s) will fallback on this
8387 @option{all} setting.
8388 @item psfile
8389 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
8390 @item plot
8391 Save Gnuplot script of the curves in specified file.
8392 @end table
8393
8394 To avoid some filtergraph syntax conflicts, each key points list need to be
8395 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
8396
8397 @subsection Examples
8398
8399 @itemize
8400 @item
8401 Increase slightly the middle level of blue:
8402 @example
8403 curves=blue='0/0 0.5/0.58 1/1'
8404 @end example
8405
8406 @item
8407 Vintage effect:
8408 @example
8409 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'
8410 @end example
8411 Here we obtain the following coordinates for each components:
8412 @table @var
8413 @item red
8414 @code{(0;0.11) (0.42;0.51) (1;0.95)}
8415 @item green
8416 @code{(0;0) (0.50;0.48) (1;1)}
8417 @item blue
8418 @code{(0;0.22) (0.49;0.44) (1;0.80)}
8419 @end table
8420
8421 @item
8422 The previous example can also be achieved with the associated built-in preset:
8423 @example
8424 curves=preset=vintage
8425 @end example
8426
8427 @item
8428 Or simply:
8429 @example
8430 curves=vintage
8431 @end example
8432
8433 @item
8434 Use a Photoshop preset and redefine the points of the green component:
8435 @example
8436 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
8437 @end example
8438
8439 @item
8440 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
8441 and @command{gnuplot}:
8442 @example
8443 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
8444 gnuplot -p /tmp/curves.plt
8445 @end example
8446 @end itemize
8447
8448 @section datascope
8449
8450 Video data analysis filter.
8451
8452 This filter shows hexadecimal pixel values of part of video.
8453
8454 The filter accepts the following options:
8455
8456 @table @option
8457 @item size, s
8458 Set output video size.
8459
8460 @item x
8461 Set x offset from where to pick pixels.
8462
8463 @item y
8464 Set y offset from where to pick pixels.
8465
8466 @item mode
8467 Set scope mode, can be one of the following:
8468 @table @samp
8469 @item mono
8470 Draw hexadecimal pixel values with white color on black background.
8471
8472 @item color
8473 Draw hexadecimal pixel values with input video pixel color on black
8474 background.
8475
8476 @item color2
8477 Draw hexadecimal pixel values on color background picked from input video,
8478 the text color is picked in such way so its always visible.
8479 @end table
8480
8481 @item axis
8482 Draw rows and columns numbers on left and top of video.
8483
8484 @item opacity
8485 Set background opacity.
8486
8487 @item format
8488 Set display number format. Can be @code{hex}, or @code{dec}. Default is @code{hex}.
8489 @end table
8490
8491 @section dctdnoiz
8492
8493 Denoise frames using 2D DCT (frequency domain filtering).
8494
8495 This filter is not designed for real time.
8496
8497 The filter accepts the following options:
8498
8499 @table @option
8500 @item sigma, s
8501 Set the noise sigma constant.
8502
8503 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8504 coefficient (absolute value) below this threshold with be dropped.
8505
8506 If you need a more advanced filtering, see @option{expr}.
8507
8508 Default is @code{0}.
8509
8510 @item overlap
8511 Set number overlapping pixels for each block. Since the filter can be slow, you
8512 may want to reduce this value, at the cost of a less effective filter and the
8513 risk of various artefacts.
8514
8515 If the overlapping value doesn't permit processing the whole input width or
8516 height, a warning will be displayed and according borders won't be denoised.
8517
8518 Default value is @var{blocksize}-1, which is the best possible setting.
8519
8520 @item expr, e
8521 Set the coefficient factor expression.
8522
8523 For each coefficient of a DCT block, this expression will be evaluated as a
8524 multiplier value for the coefficient.
8525
8526 If this is option is set, the @option{sigma} option will be ignored.
8527
8528 The absolute value of the coefficient can be accessed through the @var{c}
8529 variable.
8530
8531 @item n
8532 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8533 @var{blocksize}, which is the width and height of the processed blocks.
8534
8535 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8536 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8537 on the speed processing. Also, a larger block size does not necessarily means a
8538 better de-noising.
8539 @end table
8540
8541 @subsection Examples
8542
8543 Apply a denoise with a @option{sigma} of @code{4.5}:
8544 @example
8545 dctdnoiz=4.5
8546 @end example
8547
8548 The same operation can be achieved using the expression system:
8549 @example
8550 dctdnoiz=e='gte(c, 4.5*3)'
8551 @end example
8552
8553 Violent denoise using a block size of @code{16x16}:
8554 @example
8555 dctdnoiz=15:n=4
8556 @end example
8557
8558 @section deband
8559
8560 Remove banding artifacts from input video.
8561 It works by replacing banded pixels with average value of referenced pixels.
8562
8563 The filter accepts the following options:
8564
8565 @table @option
8566 @item 1thr
8567 @item 2thr
8568 @item 3thr
8569 @item 4thr
8570 Set banding detection threshold for each plane. Default is 0.02.
8571 Valid range is 0.00003 to 0.5.
8572 If difference between current pixel and reference pixel is less than threshold,
8573 it will be considered as banded.
8574
8575 @item range, r
8576 Banding detection range in pixels. Default is 16. If positive, random number
8577 in range 0 to set value will be used. If negative, exact absolute value
8578 will be used.
8579 The range defines square of four pixels around current pixel.
8580
8581 @item direction, d
8582 Set direction in radians from which four pixel will be compared. If positive,
8583 random direction from 0 to set direction will be picked. If negative, exact of
8584 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8585 will pick only pixels on same row and -PI/2 will pick only pixels on same
8586 column.
8587
8588 @item blur, b
8589 If enabled, current pixel is compared with average value of all four
8590 surrounding pixels. The default is enabled. If disabled current pixel is
8591 compared with all four surrounding pixels. The pixel is considered banded
8592 if only all four differences with surrounding pixels are less than threshold.
8593
8594 @item coupling, c
8595 If enabled, current pixel is changed if and only if all pixel components are banded,
8596 e.g. banding detection threshold is triggered for all color components.
8597 The default is disabled.
8598 @end table
8599
8600 @section deblock
8601
8602 Remove blocking artifacts from input video.
8603
8604 The filter accepts the following options:
8605
8606 @table @option
8607 @item filter
8608 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8609 This controls what kind of deblocking is applied.
8610
8611 @item block
8612 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8613
8614 @item alpha
8615 @item beta
8616 @item gamma
8617 @item delta
8618 Set blocking detection thresholds. Allowed range is 0 to 1.
8619 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8620 Using higher threshold gives more deblocking strength.
8621 Setting @var{alpha} controls threshold detection at exact edge of block.
8622 Remaining options controls threshold detection near the edge. Each one for
8623 below/above or left/right. Setting any of those to @var{0} disables
8624 deblocking.
8625
8626 @item planes
8627 Set planes to filter. Default is to filter all available planes.
8628 @end table
8629
8630 @subsection Examples
8631
8632 @itemize
8633 @item
8634 Deblock using weak filter and block size of 4 pixels.
8635 @example
8636 deblock=filter=weak:block=4
8637 @end example
8638
8639 @item
8640 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8641 deblocking more edges.
8642 @example
8643 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8644 @end example
8645
8646 @item
8647 Similar as above, but filter only first plane.
8648 @example
8649 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8650 @end example
8651
8652 @item
8653 Similar as above, but filter only second and third plane.
8654 @example
8655 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8656 @end example
8657 @end itemize
8658
8659 @anchor{decimate}
8660 @section decimate
8661
8662 Drop duplicated frames at regular intervals.
8663
8664 The filter accepts the following options:
8665
8666 @table @option
8667 @item cycle
8668 Set the number of frames from which one will be dropped. Setting this to
8669 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8670 Default is @code{5}.
8671
8672 @item dupthresh
8673 Set the threshold for duplicate detection. If the difference metric for a frame
8674 is less than or equal to this value, then it is declared as duplicate. Default
8675 is @code{1.1}
8676
8677 @item scthresh
8678 Set scene change threshold. Default is @code{15}.
8679
8680 @item blockx
8681 @item blocky
8682 Set the size of the x and y-axis blocks used during metric calculations.
8683 Larger blocks give better noise suppression, but also give worse detection of
8684 small movements. Must be a power of two. Default is @code{32}.
8685
8686 @item ppsrc
8687 Mark main input as a pre-processed input and activate clean source input
8688 stream. This allows the input to be pre-processed with various filters to help
8689 the metrics calculation while keeping the frame selection lossless. When set to
8690 @code{1}, the first stream is for the pre-processed input, and the second
8691 stream is the clean source from where the kept frames are chosen. Default is
8692 @code{0}.
8693
8694 @item chroma
8695 Set whether or not chroma is considered in the metric calculations. Default is
8696 @code{1}.
8697 @end table
8698
8699 @section deconvolve
8700
8701 Apply 2D deconvolution of video stream in frequency domain using second stream
8702 as impulse.
8703
8704 The filter accepts the following options:
8705
8706 @table @option
8707 @item planes
8708 Set which planes to process.
8709
8710 @item impulse
8711 Set which impulse video frames will be processed, can be @var{first}
8712 or @var{all}. Default is @var{all}.
8713
8714 @item noise
8715 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8716 and height are not same and not power of 2 or if stream prior to convolving
8717 had noise.
8718 @end table
8719
8720 The @code{deconvolve} filter also supports the @ref{framesync} options.
8721
8722 @section dedot
8723
8724 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8725
8726 It accepts the following options:
8727
8728 @table @option
8729 @item m
8730 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8731 @var{rainbows} for cross-color reduction.
8732
8733 @item lt
8734 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8735
8736 @item tl
8737 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8738
8739 @item tc
8740 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8741
8742 @item ct
8743 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8744 @end table
8745
8746 @section deflate
8747
8748 Apply deflate effect to the video.
8749
8750 This filter replaces the pixel by the local(3x3) average by taking into account
8751 only values lower than the pixel.
8752
8753 It accepts the following options:
8754
8755 @table @option
8756 @item threshold0
8757 @item threshold1
8758 @item threshold2
8759 @item threshold3
8760 Limit the maximum change for each plane, default is 65535.
8761 If 0, plane will remain unchanged.
8762 @end table
8763
8764 @subsection Commands
8765
8766 This filter supports the all above options as @ref{commands}.
8767
8768 @section deflicker
8769
8770 Remove temporal frame luminance variations.
8771
8772 It accepts the following options:
8773
8774 @table @option
8775 @item size, s
8776 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8777
8778 @item mode, m
8779 Set averaging mode to smooth temporal luminance variations.
8780
8781 Available values are:
8782 @table @samp
8783 @item am
8784 Arithmetic mean
8785
8786 @item gm
8787 Geometric mean
8788
8789 @item hm
8790 Harmonic mean
8791
8792 @item qm
8793 Quadratic mean
8794
8795 @item cm
8796 Cubic mean
8797
8798 @item pm
8799 Power mean
8800
8801 @item median
8802 Median
8803 @end table
8804
8805 @item bypass
8806 Do not actually modify frame. Useful when one only wants metadata.
8807 @end table
8808
8809 @section dejudder
8810
8811 Remove judder produced by partially interlaced telecined content.
8812
8813 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8814 source was partially telecined content then the output of @code{pullup,dejudder}
8815 will have a variable frame rate. May change the recorded frame rate of the
8816 container. Aside from that change, this filter will not affect constant frame
8817 rate video.
8818
8819 The option available in this filter is:
8820 @table @option
8821
8822 @item cycle
8823 Specify the length of the window over which the judder repeats.
8824
8825 Accepts any integer greater than 1. Useful values are:
8826 @table @samp
8827
8828 @item 4
8829 If the original was telecined from 24 to 30 fps (Film to NTSC).
8830
8831 @item 5
8832 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8833
8834 @item 20
8835 If a mixture of the two.
8836 @end table
8837
8838 The default is @samp{4}.
8839 @end table
8840
8841 @section delogo
8842
8843 Suppress a TV station logo by a simple interpolation of the surrounding
8844 pixels. Just set a rectangle covering the logo and watch it disappear
8845 (and sometimes something even uglier appear - your mileage may vary).
8846
8847 It accepts the following parameters:
8848 @table @option
8849
8850 @item x
8851 @item y
8852 Specify the top left corner coordinates of the logo. They must be
8853 specified.
8854
8855 @item w
8856 @item h
8857 Specify the width and height of the logo to clear. They must be
8858 specified.
8859
8860 @item band, t
8861 Specify the thickness of the fuzzy edge of the rectangle (added to
8862 @var{w} and @var{h}). The default value is 1. This option is
8863 deprecated, setting higher values should no longer be necessary and
8864 is not recommended.
8865
8866 @item show
8867 When set to 1, a green rectangle is drawn on the screen to simplify
8868 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8869 The default value is 0.
8870
8871 The rectangle is drawn on the outermost pixels which will be (partly)
8872 replaced with interpolated values. The values of the next pixels
8873 immediately outside this rectangle in each direction will be used to
8874 compute the interpolated pixel values inside the rectangle.
8875
8876 @end table
8877
8878 @subsection Examples
8879
8880 @itemize
8881 @item
8882 Set a rectangle covering the area with top left corner coordinates 0,0
8883 and size 100x77, and a band of size 10:
8884 @example
8885 delogo=x=0:y=0:w=100:h=77:band=10
8886 @end example
8887
8888 @end itemize
8889
8890 @anchor{derain}
8891 @section derain
8892
8893 Remove the rain in the input image/video by applying the derain methods based on
8894 convolutional neural networks. Supported models:
8895
8896 @itemize
8897 @item
8898 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8899 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8900 @end itemize
8901
8902 Training as well as model generation scripts are provided in
8903 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8904
8905 Native model files (.model) can be generated from TensorFlow model
8906 files (.pb) by using tools/python/convert.py
8907
8908 The filter accepts the following options:
8909
8910 @table @option
8911 @item filter_type
8912 Specify which filter to use. This option accepts the following values:
8913
8914 @table @samp
8915 @item derain
8916 Derain filter. To conduct derain filter, you need to use a derain model.
8917
8918 @item dehaze
8919 Dehaze filter. To conduct dehaze filter, you need to use a dehaze model.
8920 @end table
8921 Default value is @samp{derain}.
8922
8923 @item dnn_backend
8924 Specify which DNN backend to use for model loading and execution. This option accepts
8925 the following values:
8926
8927 @table @samp
8928 @item native
8929 Native implementation of DNN loading and execution.
8930
8931 @item tensorflow
8932 TensorFlow backend. To enable this backend you
8933 need to install the TensorFlow for C library (see
8934 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
8935 @code{--enable-libtensorflow}
8936 @end table
8937 Default value is @samp{native}.
8938
8939 @item model
8940 Set path to model file specifying network architecture and its parameters.
8941 Note that different backends use different file formats. TensorFlow and native
8942 backend can load files for only its format.
8943 @end table
8944
8945 It can also be finished with @ref{dnn_processing} filter.
8946
8947 @section deshake
8948
8949 Attempt to fix small changes in horizontal and/or vertical shift. This
8950 filter helps remove camera shake from hand-holding a camera, bumping a
8951 tripod, moving on a vehicle, etc.
8952
8953 The filter accepts the following options:
8954
8955 @table @option
8956
8957 @item x
8958 @item y
8959 @item w
8960 @item h
8961 Specify a rectangular area where to limit the search for motion
8962 vectors.
8963 If desired the search for motion vectors can be limited to a
8964 rectangular area of the frame defined by its top left corner, width
8965 and height. These parameters have the same meaning as the drawbox
8966 filter which can be used to visualise the position of the bounding
8967 box.
8968
8969 This is useful when simultaneous movement of subjects within the frame
8970 might be confused for camera motion by the motion vector search.
8971
8972 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8973 then the full frame is used. This allows later options to be set
8974 without specifying the bounding box for the motion vector search.
8975
8976 Default - search the whole frame.
8977
8978 @item rx
8979 @item ry
8980 Specify the maximum extent of movement in x and y directions in the
8981 range 0-64 pixels. Default 16.
8982
8983 @item edge
8984 Specify how to generate pixels to fill blanks at the edge of the
8985 frame. Available values are:
8986 @table @samp
8987 @item blank, 0
8988 Fill zeroes at blank locations
8989 @item original, 1
8990 Original image at blank locations
8991 @item clamp, 2
8992 Extruded edge value at blank locations
8993 @item mirror, 3
8994 Mirrored edge at blank locations
8995 @end table
8996 Default value is @samp{mirror}.
8997
8998 @item blocksize
8999 Specify the blocksize to use for motion search. Range 4-128 pixels,
9000 default 8.
9001
9002 @item contrast
9003 Specify the contrast threshold for blocks. Only blocks with more than
9004 the specified contrast (difference between darkest and lightest
9005 pixels) will be considered. Range 1-255, default 125.
9006
9007 @item search
9008 Specify the search strategy. Available values are:
9009 @table @samp
9010 @item exhaustive, 0
9011 Set exhaustive search
9012 @item less, 1
9013 Set less exhaustive search.
9014 @end table
9015 Default value is @samp{exhaustive}.
9016
9017 @item filename
9018 If set then a detailed log of the motion search is written to the
9019 specified file.
9020
9021 @end table
9022
9023 @section despill
9024
9025 Remove unwanted contamination of foreground colors, caused by reflected color of
9026 greenscreen or bluescreen.
9027
9028 This filter accepts the following options:
9029
9030 @table @option
9031 @item type
9032 Set what type of despill to use.
9033
9034 @item mix
9035 Set how spillmap will be generated.
9036
9037 @item expand
9038 Set how much to get rid of still remaining spill.
9039
9040 @item red
9041 Controls amount of red in spill area.
9042
9043 @item green
9044 Controls amount of green in spill area.
9045 Should be -1 for greenscreen.
9046
9047 @item blue
9048 Controls amount of blue in spill area.
9049 Should be -1 for bluescreen.
9050
9051 @item brightness
9052 Controls brightness of spill area, preserving colors.
9053
9054 @item alpha
9055 Modify alpha from generated spillmap.
9056 @end table
9057
9058 @section detelecine
9059
9060 Apply an exact inverse of the telecine operation. It requires a predefined
9061 pattern specified using the pattern option which must be the same as that passed
9062 to the telecine filter.
9063
9064 This filter accepts the following options:
9065
9066 @table @option
9067 @item first_field
9068 @table @samp
9069 @item top, t
9070 top field first
9071 @item bottom, b
9072 bottom field first
9073 The default value is @code{top}.
9074 @end table
9075
9076 @item pattern
9077 A string of numbers representing the pulldown pattern you wish to apply.
9078 The default value is @code{23}.
9079
9080 @item start_frame
9081 A number representing position of the first frame with respect to the telecine
9082 pattern. This is to be used if the stream is cut. The default value is @code{0}.
9083 @end table
9084
9085 @section dilation
9086
9087 Apply dilation effect to the video.
9088
9089 This filter replaces the pixel by the local(3x3) maximum.
9090
9091 It accepts the following options:
9092
9093 @table @option
9094 @item threshold0
9095 @item threshold1
9096 @item threshold2
9097 @item threshold3
9098 Limit the maximum change for each plane, default is 65535.
9099 If 0, plane will remain unchanged.
9100
9101 @item coordinates
9102 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9103 pixels are used.
9104
9105 Flags to local 3x3 coordinates maps like this:
9106
9107     1 2 3
9108     4   5
9109     6 7 8
9110 @end table
9111
9112 @subsection Commands
9113
9114 This filter supports the all above options as @ref{commands}.
9115
9116 @section displace
9117
9118 Displace pixels as indicated by second and third input stream.
9119
9120 It takes three input streams and outputs one stream, the first input is the
9121 source, and second and third input are displacement maps.
9122
9123 The second input specifies how much to displace pixels along the
9124 x-axis, while the third input specifies how much to displace pixels
9125 along the y-axis.
9126 If one of displacement map streams terminates, last frame from that
9127 displacement map will be used.
9128
9129 Note that once generated, displacements maps can be reused over and over again.
9130
9131 A description of the accepted options follows.
9132
9133 @table @option
9134 @item edge
9135 Set displace behavior for pixels that are out of range.
9136
9137 Available values are:
9138 @table @samp
9139 @item blank
9140 Missing pixels are replaced by black pixels.
9141
9142 @item smear
9143 Adjacent pixels will spread out to replace missing pixels.
9144
9145 @item wrap
9146 Out of range pixels are wrapped so they point to pixels of other side.
9147
9148 @item mirror
9149 Out of range pixels will be replaced with mirrored pixels.
9150 @end table
9151 Default is @samp{smear}.
9152
9153 @end table
9154
9155 @subsection Examples
9156
9157 @itemize
9158 @item
9159 Add ripple effect to rgb input of video size hd720:
9160 @example
9161 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
9162 @end example
9163
9164 @item
9165 Add wave effect to rgb input of video size hd720:
9166 @example
9167 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
9168 @end example
9169 @end itemize
9170
9171 @anchor{dnn_processing}
9172 @section dnn_processing
9173
9174 Do image processing with deep neural networks. It works together with another filter
9175 which converts the pixel format of the Frame to what the dnn network requires.
9176
9177 The filter accepts the following options:
9178
9179 @table @option
9180 @item dnn_backend
9181 Specify which DNN backend to use for model loading and execution. This option accepts
9182 the following values:
9183
9184 @table @samp
9185 @item native
9186 Native implementation of DNN loading and execution.
9187
9188 @item tensorflow
9189 TensorFlow backend. To enable this backend you
9190 need to install the TensorFlow for C library (see
9191 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
9192 @code{--enable-libtensorflow}
9193 @end table
9194
9195 Default value is @samp{native}.
9196
9197 @item model
9198 Set path to model file specifying network architecture and its parameters.
9199 Note that different backends use different file formats. TensorFlow and native
9200 backend can load files for only its format.
9201
9202 Native model file (.model) can be generated from TensorFlow model file (.pb) by using tools/python/convert.py
9203
9204 @item input
9205 Set the input name of the dnn network.
9206
9207 @item output
9208 Set the output name of the dnn network.
9209
9210 @end table
9211
9212 @subsection Examples
9213
9214 @itemize
9215 @item
9216 Remove rain in rgb24 frame with can.pb (see @ref{derain} filter):
9217 @example
9218 ./ffmpeg -i rain.jpg -vf format=rgb24,dnn_processing=dnn_backend=tensorflow:model=can.pb:input=x:output=y derain.jpg
9219 @end example
9220
9221 @item
9222 Halve the pixel value of the frame with format gray32f:
9223 @example
9224 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
9225 @end example
9226
9227 @item
9228 Handle the Y channel with srcnn.pb (see @ref{sr} filter) for frame with yuv420p (planar YUV formats supported):
9229 @example
9230 ./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
9231 @end example
9232
9233 @item
9234 Handle the Y channel with espcn.pb (see @ref{sr} filter), which changes frame size, for format yuv420p (planar YUV formats supported):
9235 @example
9236 ./ffmpeg -i 480p.jpg -vf format=yuv420p,dnn_processing=dnn_backend=tensorflow:model=espcn.pb:input=x:output=y -y tmp.espcn.jpg
9237 @end example
9238
9239 @end itemize
9240
9241 @section drawbox
9242
9243 Draw a colored box on the input image.
9244
9245 It accepts the following parameters:
9246
9247 @table @option
9248 @item x
9249 @item y
9250 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
9251
9252 @item width, w
9253 @item height, h
9254 The expressions which specify the width and height of the box; if 0 they are interpreted as
9255 the input width and height. It defaults to 0.
9256
9257 @item color, c
9258 Specify the color of the box to write. For the general syntax of this option,
9259 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9260 value @code{invert} is used, the box edge color is the same as the
9261 video with inverted luma.
9262
9263 @item thickness, t
9264 The expression which sets the thickness of the box edge.
9265 A value of @code{fill} will create a filled box. Default value is @code{3}.
9266
9267 See below for the list of accepted constants.
9268
9269 @item replace
9270 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
9271 will overwrite the video's color and alpha pixels.
9272 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
9273 @end table
9274
9275 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9276 following constants:
9277
9278 @table @option
9279 @item dar
9280 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9281
9282 @item hsub
9283 @item vsub
9284 horizontal and vertical chroma subsample values. For example for the
9285 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9286
9287 @item in_h, ih
9288 @item in_w, iw
9289 The input width and height.
9290
9291 @item sar
9292 The input sample aspect ratio.
9293
9294 @item x
9295 @item y
9296 The x and y offset coordinates where the box is drawn.
9297
9298 @item w
9299 @item h
9300 The width and height of the drawn box.
9301
9302 @item t
9303 The thickness of the drawn box.
9304
9305 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9306 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9307
9308 @end table
9309
9310 @subsection Examples
9311
9312 @itemize
9313 @item
9314 Draw a black box around the edge of the input image:
9315 @example
9316 drawbox
9317 @end example
9318
9319 @item
9320 Draw a box with color red and an opacity of 50%:
9321 @example
9322 drawbox=10:20:200:60:red@@0.5
9323 @end example
9324
9325 The previous example can be specified as:
9326 @example
9327 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
9328 @end example
9329
9330 @item
9331 Fill the box with pink color:
9332 @example
9333 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
9334 @end example
9335
9336 @item
9337 Draw a 2-pixel red 2.40:1 mask:
9338 @example
9339 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
9340 @end example
9341 @end itemize
9342
9343 @subsection Commands
9344 This filter supports same commands as options.
9345 The command accepts the same syntax of the corresponding option.
9346
9347 If the specified expression is not valid, it is kept at its current
9348 value.
9349
9350 @anchor{drawgraph}
9351 @section drawgraph
9352 Draw a graph using input video metadata.
9353
9354 It accepts the following parameters:
9355
9356 @table @option
9357 @item m1
9358 Set 1st frame metadata key from which metadata values will be used to draw a graph.
9359
9360 @item fg1
9361 Set 1st foreground color expression.
9362
9363 @item m2
9364 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
9365
9366 @item fg2
9367 Set 2nd foreground color expression.
9368
9369 @item m3
9370 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
9371
9372 @item fg3
9373 Set 3rd foreground color expression.
9374
9375 @item m4
9376 Set 4th frame metadata key from which metadata values will be used to draw a graph.
9377
9378 @item fg4
9379 Set 4th foreground color expression.
9380
9381 @item min
9382 Set minimal value of metadata value.
9383
9384 @item max
9385 Set maximal value of metadata value.
9386
9387 @item bg
9388 Set graph background color. Default is white.
9389
9390 @item mode
9391 Set graph mode.
9392
9393 Available values for mode is:
9394 @table @samp
9395 @item bar
9396 @item dot
9397 @item line
9398 @end table
9399
9400 Default is @code{line}.
9401
9402 @item slide
9403 Set slide mode.
9404
9405 Available values for slide is:
9406 @table @samp
9407 @item frame
9408 Draw new frame when right border is reached.
9409
9410 @item replace
9411 Replace old columns with new ones.
9412
9413 @item scroll
9414 Scroll from right to left.
9415
9416 @item rscroll
9417 Scroll from left to right.
9418
9419 @item picture
9420 Draw single picture.
9421 @end table
9422
9423 Default is @code{frame}.
9424
9425 @item size
9426 Set size of graph video. For the syntax of this option, check the
9427 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9428 The default value is @code{900x256}.
9429
9430 @item rate, r
9431 Set the output frame rate. Default value is @code{25}.
9432
9433 The foreground color expressions can use the following variables:
9434 @table @option
9435 @item MIN
9436 Minimal value of metadata value.
9437
9438 @item MAX
9439 Maximal value of metadata value.
9440
9441 @item VAL
9442 Current metadata key value.
9443 @end table
9444
9445 The color is defined as 0xAABBGGRR.
9446 @end table
9447
9448 Example using metadata from @ref{signalstats} filter:
9449 @example
9450 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
9451 @end example
9452
9453 Example using metadata from @ref{ebur128} filter:
9454 @example
9455 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
9456 @end example
9457
9458 @section drawgrid
9459
9460 Draw a grid on the input image.
9461
9462 It accepts the following parameters:
9463
9464 @table @option
9465 @item x
9466 @item y
9467 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
9468
9469 @item width, w
9470 @item height, h
9471 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
9472 input width and height, respectively, minus @code{thickness}, so image gets
9473 framed. Default to 0.
9474
9475 @item color, c
9476 Specify the color of the grid. For the general syntax of this option,
9477 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
9478 value @code{invert} is used, the grid color is the same as the
9479 video with inverted luma.
9480
9481 @item thickness, t
9482 The expression which sets the thickness of the grid line. Default value is @code{1}.
9483
9484 See below for the list of accepted constants.
9485
9486 @item replace
9487 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
9488 will overwrite the video's color and alpha pixels.
9489 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
9490 @end table
9491
9492 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
9493 following constants:
9494
9495 @table @option
9496 @item dar
9497 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
9498
9499 @item hsub
9500 @item vsub
9501 horizontal and vertical chroma subsample values. For example for the
9502 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9503
9504 @item in_h, ih
9505 @item in_w, iw
9506 The input grid cell width and height.
9507
9508 @item sar
9509 The input sample aspect ratio.
9510
9511 @item x
9512 @item y
9513 The x and y coordinates of some point of grid intersection (meant to configure offset).
9514
9515 @item w
9516 @item h
9517 The width and height of the drawn cell.
9518
9519 @item t
9520 The thickness of the drawn cell.
9521
9522 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
9523 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
9524
9525 @end table
9526
9527 @subsection Examples
9528
9529 @itemize
9530 @item
9531 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
9532 @example
9533 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
9534 @end example
9535
9536 @item
9537 Draw a white 3x3 grid with an opacity of 50%:
9538 @example
9539 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
9540 @end example
9541 @end itemize
9542
9543 @subsection Commands
9544 This filter supports same commands as options.
9545 The command accepts the same syntax of the corresponding option.
9546
9547 If the specified expression is not valid, it is kept at its current
9548 value.
9549
9550 @anchor{drawtext}
9551 @section drawtext
9552
9553 Draw a text string or text from a specified file on top of a video, using the
9554 libfreetype library.
9555
9556 To enable compilation of this filter, you need to configure FFmpeg with
9557 @code{--enable-libfreetype}.
9558 To enable default font fallback and the @var{font} option you need to
9559 configure FFmpeg with @code{--enable-libfontconfig}.
9560 To enable the @var{text_shaping} option, you need to configure FFmpeg with
9561 @code{--enable-libfribidi}.
9562
9563 @subsection Syntax
9564
9565 It accepts the following parameters:
9566
9567 @table @option
9568
9569 @item box
9570 Used to draw a box around text using the background color.
9571 The value must be either 1 (enable) or 0 (disable).
9572 The default value of @var{box} is 0.
9573
9574 @item boxborderw
9575 Set the width of the border to be drawn around the box using @var{boxcolor}.
9576 The default value of @var{boxborderw} is 0.
9577
9578 @item boxcolor
9579 The color to be used for drawing box around text. For the syntax of this
9580 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9581
9582 The default value of @var{boxcolor} is "white".
9583
9584 @item line_spacing
9585 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
9586 The default value of @var{line_spacing} is 0.
9587
9588 @item borderw
9589 Set the width of the border to be drawn around the text using @var{bordercolor}.
9590 The default value of @var{borderw} is 0.
9591
9592 @item bordercolor
9593 Set the color to be used for drawing border around text. For the syntax of this
9594 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9595
9596 The default value of @var{bordercolor} is "black".
9597
9598 @item expansion
9599 Select how the @var{text} is expanded. Can be either @code{none},
9600 @code{strftime} (deprecated) or
9601 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
9602 below for details.
9603
9604 @item basetime
9605 Set a start time for the count. Value is in microseconds. Only applied
9606 in the deprecated strftime expansion mode. To emulate in normal expansion
9607 mode use the @code{pts} function, supplying the start time (in seconds)
9608 as the second argument.
9609
9610 @item fix_bounds
9611 If true, check and fix text coords to avoid clipping.
9612
9613 @item fontcolor
9614 The color to be used for drawing fonts. For the syntax of this option, check
9615 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
9616
9617 The default value of @var{fontcolor} is "black".
9618
9619 @item fontcolor_expr
9620 String which is expanded the same way as @var{text} to obtain dynamic
9621 @var{fontcolor} value. By default this option has empty value and is not
9622 processed. When this option is set, it overrides @var{fontcolor} option.
9623
9624 @item font
9625 The font family to be used for drawing text. By default Sans.
9626
9627 @item fontfile
9628 The font file to be used for drawing text. The path must be included.
9629 This parameter is mandatory if the fontconfig support is disabled.
9630
9631 @item alpha
9632 Draw the text applying alpha blending. The value can
9633 be a number between 0.0 and 1.0.
9634 The expression accepts the same variables @var{x, y} as well.
9635 The default value is 1.
9636 Please see @var{fontcolor_expr}.
9637
9638 @item fontsize
9639 The font size to be used for drawing text.
9640 The default value of @var{fontsize} is 16.
9641
9642 @item text_shaping
9643 If set to 1, attempt to shape the text (for example, reverse the order of
9644 right-to-left text and join Arabic characters) before drawing it.
9645 Otherwise, just draw the text exactly as given.
9646 By default 1 (if supported).
9647
9648 @item ft_load_flags
9649 The flags to be used for loading the fonts.
9650
9651 The flags map the corresponding flags supported by libfreetype, and are
9652 a combination of the following values:
9653 @table @var
9654 @item default
9655 @item no_scale
9656 @item no_hinting
9657 @item render
9658 @item no_bitmap
9659 @item vertical_layout
9660 @item force_autohint
9661 @item crop_bitmap
9662 @item pedantic
9663 @item ignore_global_advance_width
9664 @item no_recurse
9665 @item ignore_transform
9666 @item monochrome
9667 @item linear_design
9668 @item no_autohint
9669 @end table
9670
9671 Default value is "default".
9672
9673 For more information consult the documentation for the FT_LOAD_*
9674 libfreetype flags.
9675
9676 @item shadowcolor
9677 The color to be used for drawing a shadow behind the drawn text. For the
9678 syntax of this option, check the @ref{color syntax,,"Color" section in the
9679 ffmpeg-utils manual,ffmpeg-utils}.
9680
9681 The default value of @var{shadowcolor} is "black".
9682
9683 @item shadowx
9684 @item shadowy
9685 The x and y offsets for the text shadow position with respect to the
9686 position of the text. They can be either positive or negative
9687 values. The default value for both is "0".
9688
9689 @item start_number
9690 The starting frame number for the n/frame_num variable. The default value
9691 is "0".
9692
9693 @item tabsize
9694 The size in number of spaces to use for rendering the tab.
9695 Default value is 4.
9696
9697 @item timecode
9698 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9699 format. It can be used with or without text parameter. @var{timecode_rate}
9700 option must be specified.
9701
9702 @item timecode_rate, rate, r
9703 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9704 integer. Minimum value is "1".
9705 Drop-frame timecode is supported for frame rates 30 & 60.
9706
9707 @item tc24hmax
9708 If set to 1, the output of the timecode option will wrap around at 24 hours.
9709 Default is 0 (disabled).
9710
9711 @item text
9712 The text string to be drawn. The text must be a sequence of UTF-8
9713 encoded characters.
9714 This parameter is mandatory if no file is specified with the parameter
9715 @var{textfile}.
9716
9717 @item textfile
9718 A text file containing text to be drawn. The text must be a sequence
9719 of UTF-8 encoded characters.
9720
9721 This parameter is mandatory if no text string is specified with the
9722 parameter @var{text}.
9723
9724 If both @var{text} and @var{textfile} are specified, an error is thrown.
9725
9726 @item reload
9727 If set to 1, the @var{textfile} will be reloaded before each frame.
9728 Be sure to update it atomically, or it may be read partially, or even fail.
9729
9730 @item x
9731 @item y
9732 The expressions which specify the offsets where text will be drawn
9733 within the video frame. They are relative to the top/left border of the
9734 output image.
9735
9736 The default value of @var{x} and @var{y} is "0".
9737
9738 See below for the list of accepted constants and functions.
9739 @end table
9740
9741 The parameters for @var{x} and @var{y} are expressions containing the
9742 following constants and functions:
9743
9744 @table @option
9745 @item dar
9746 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9747
9748 @item hsub
9749 @item vsub
9750 horizontal and vertical chroma subsample values. For example for the
9751 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9752
9753 @item line_h, lh
9754 the height of each text line
9755
9756 @item main_h, h, H
9757 the input height
9758
9759 @item main_w, w, W
9760 the input width
9761
9762 @item max_glyph_a, ascent
9763 the maximum distance from the baseline to the highest/upper grid
9764 coordinate used to place a glyph outline point, for all the rendered
9765 glyphs.
9766 It is a positive value, due to the grid's orientation with the Y axis
9767 upwards.
9768
9769 @item max_glyph_d, descent
9770 the maximum distance from the baseline to the lowest grid coordinate
9771 used to place a glyph outline point, for all the rendered glyphs.
9772 This is a negative value, due to the grid's orientation, with the Y axis
9773 upwards.
9774
9775 @item max_glyph_h
9776 maximum glyph height, that is the maximum height for all the glyphs
9777 contained in the rendered text, it is equivalent to @var{ascent} -
9778 @var{descent}.
9779
9780 @item max_glyph_w
9781 maximum glyph width, that is the maximum width for all the glyphs
9782 contained in the rendered text
9783
9784 @item n
9785 the number of input frame, starting from 0
9786
9787 @item rand(min, max)
9788 return a random number included between @var{min} and @var{max}
9789
9790 @item sar
9791 The input sample aspect ratio.
9792
9793 @item t
9794 timestamp expressed in seconds, NAN if the input timestamp is unknown
9795
9796 @item text_h, th
9797 the height of the rendered text
9798
9799 @item text_w, tw
9800 the width of the rendered text
9801
9802 @item x
9803 @item y
9804 the x and y offset coordinates where the text is drawn.
9805
9806 These parameters allow the @var{x} and @var{y} expressions to refer
9807 to each other, so you can for example specify @code{y=x/dar}.
9808
9809 @item pict_type
9810 A one character description of the current frame's picture type.
9811
9812 @item pkt_pos
9813 The current packet's position in the input file or stream
9814 (in bytes, from the start of the input). A value of -1 indicates
9815 this info is not available.
9816
9817 @item pkt_duration
9818 The current packet's duration, in seconds.
9819
9820 @item pkt_size
9821 The current packet's size (in bytes).
9822 @end table
9823
9824 @anchor{drawtext_expansion}
9825 @subsection Text expansion
9826
9827 If @option{expansion} is set to @code{strftime},
9828 the filter recognizes strftime() sequences in the provided text and
9829 expands them accordingly. Check the documentation of strftime(). This
9830 feature is deprecated.
9831
9832 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9833
9834 If @option{expansion} is set to @code{normal} (which is the default),
9835 the following expansion mechanism is used.
9836
9837 The backslash character @samp{\}, followed by any character, always expands to
9838 the second character.
9839
9840 Sequences of the form @code{%@{...@}} are expanded. The text between the
9841 braces is a function name, possibly followed by arguments separated by ':'.
9842 If the arguments contain special characters or delimiters (':' or '@}'),
9843 they should be escaped.
9844
9845 Note that they probably must also be escaped as the value for the
9846 @option{text} option in the filter argument string and as the filter
9847 argument in the filtergraph description, and possibly also for the shell,
9848 that makes up to four levels of escaping; using a text file avoids these
9849 problems.
9850
9851 The following functions are available:
9852
9853 @table @command
9854
9855 @item expr, e
9856 The expression evaluation result.
9857
9858 It must take one argument specifying the expression to be evaluated,
9859 which accepts the same constants and functions as the @var{x} and
9860 @var{y} values. Note that not all constants should be used, for
9861 example the text size is not known when evaluating the expression, so
9862 the constants @var{text_w} and @var{text_h} will have an undefined
9863 value.
9864
9865 @item expr_int_format, eif
9866 Evaluate the expression's value and output as formatted integer.
9867
9868 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9869 The second argument specifies the output format. Allowed values are @samp{x},
9870 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9871 @code{printf} function.
9872 The third parameter is optional and sets the number of positions taken by the output.
9873 It can be used to add padding with zeros from the left.
9874
9875 @item gmtime
9876 The time at which the filter is running, expressed in UTC.
9877 It can accept an argument: a strftime() format string.
9878
9879 @item localtime
9880 The time at which the filter is running, expressed in the local time zone.
9881 It can accept an argument: a strftime() format string.
9882
9883 @item metadata
9884 Frame metadata. Takes one or two arguments.
9885
9886 The first argument is mandatory and specifies the metadata key.
9887
9888 The second argument is optional and specifies a default value, used when the
9889 metadata key is not found or empty.
9890
9891 Available metadata can be identified by inspecting entries
9892 starting with TAG included within each frame section
9893 printed by running @code{ffprobe -show_frames}.
9894
9895 String metadata generated in filters leading to
9896 the drawtext filter are also available.
9897
9898 @item n, frame_num
9899 The frame number, starting from 0.
9900
9901 @item pict_type
9902 A one character description of the current picture type.
9903
9904 @item pts
9905 The timestamp of the current frame.
9906 It can take up to three arguments.
9907
9908 The first argument is the format of the timestamp; it defaults to @code{flt}
9909 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9910 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9911 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9912 @code{localtime} stands for the timestamp of the frame formatted as
9913 local time zone time.
9914
9915 The second argument is an offset added to the timestamp.
9916
9917 If the format is set to @code{hms}, a third argument @code{24HH} may be
9918 supplied to present the hour part of the formatted timestamp in 24h format
9919 (00-23).
9920
9921 If the format is set to @code{localtime} or @code{gmtime},
9922 a third argument may be supplied: a strftime() format string.
9923 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9924 @end table
9925
9926 @subsection Commands
9927
9928 This filter supports altering parameters via commands:
9929 @table @option
9930 @item reinit
9931 Alter existing filter parameters.
9932
9933 Syntax for the argument is the same as for filter invocation, e.g.
9934
9935 @example
9936 fontsize=56:fontcolor=green:text='Hello World'
9937 @end example
9938
9939 Full filter invocation with sendcmd would look like this:
9940
9941 @example
9942 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9943 @end example
9944 @end table
9945
9946 If the entire argument can't be parsed or applied as valid values then the filter will
9947 continue with its existing parameters.
9948
9949 @subsection Examples
9950
9951 @itemize
9952 @item
9953 Draw "Test Text" with font FreeSerif, using the default values for the
9954 optional parameters.
9955
9956 @example
9957 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9958 @end example
9959
9960 @item
9961 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9962 and y=50 (counting from the top-left corner of the screen), text is
9963 yellow with a red box around it. Both the text and the box have an
9964 opacity of 20%.
9965
9966 @example
9967 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9968           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9969 @end example
9970
9971 Note that the double quotes are not necessary if spaces are not used
9972 within the parameter list.
9973
9974 @item
9975 Show the text at the center of the video frame:
9976 @example
9977 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9978 @end example
9979
9980 @item
9981 Show the text at a random position, switching to a new position every 30 seconds:
9982 @example
9983 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)"
9984 @end example
9985
9986 @item
9987 Show a text line sliding from right to left in the last row of the video
9988 frame. The file @file{LONG_LINE} is assumed to contain a single line
9989 with no newlines.
9990 @example
9991 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9992 @end example
9993
9994 @item
9995 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9996 @example
9997 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9998 @end example
9999
10000 @item
10001 Draw a single green letter "g", at the center of the input video.
10002 The glyph baseline is placed at half screen height.
10003 @example
10004 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
10005 @end example
10006
10007 @item
10008 Show text for 1 second every 3 seconds:
10009 @example
10010 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
10011 @end example
10012
10013 @item
10014 Use fontconfig to set the font. Note that the colons need to be escaped.
10015 @example
10016 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
10017 @end example
10018
10019 @item
10020 Print the date of a real-time encoding (see strftime(3)):
10021 @example
10022 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
10023 @end example
10024
10025 @item
10026 Show text fading in and out (appearing/disappearing):
10027 @example
10028 #!/bin/sh
10029 DS=1.0 # display start
10030 DE=10.0 # display end
10031 FID=1.5 # fade in duration
10032 FOD=5 # fade out duration
10033 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 @}"
10034 @end example
10035
10036 @item
10037 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
10038 and the @option{fontsize} value are included in the @option{y} offset.
10039 @example
10040 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
10041 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
10042 @end example
10043
10044 @item
10045 Plot special @var{lavf.image2dec.source_basename} metadata onto each frame if
10046 such metadata exists. Otherwise, plot the string "NA". Note that image2 demuxer
10047 must have option @option{-export_path_metadata 1} for the special metadata fields
10048 to be available for filters.
10049 @example
10050 drawtext="fontsize=20:fontcolor=white:fontfile=FreeSans.ttf:text='%@{metadata\:lavf.image2dec.source_basename\:NA@}':x=10:y=10"
10051 @end example
10052
10053 @end itemize
10054
10055 For more information about libfreetype, check:
10056 @url{http://www.freetype.org/}.
10057
10058 For more information about fontconfig, check:
10059 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
10060
10061 For more information about libfribidi, check:
10062 @url{http://fribidi.org/}.
10063
10064 @section edgedetect
10065
10066 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
10067
10068 The filter accepts the following options:
10069
10070 @table @option
10071 @item low
10072 @item high
10073 Set low and high threshold values used by the Canny thresholding
10074 algorithm.
10075
10076 The high threshold selects the "strong" edge pixels, which are then
10077 connected through 8-connectivity with the "weak" edge pixels selected
10078 by the low threshold.
10079
10080 @var{low} and @var{high} threshold values must be chosen in the range
10081 [0,1], and @var{low} should be lesser or equal to @var{high}.
10082
10083 Default value for @var{low} is @code{20/255}, and default value for @var{high}
10084 is @code{50/255}.
10085
10086 @item mode
10087 Define the drawing mode.
10088
10089 @table @samp
10090 @item wires
10091 Draw white/gray wires on black background.
10092
10093 @item colormix
10094 Mix the colors to create a paint/cartoon effect.
10095
10096 @item canny
10097 Apply Canny edge detector on all selected planes.
10098 @end table
10099 Default value is @var{wires}.
10100
10101 @item planes
10102 Select planes for filtering. By default all available planes are filtered.
10103 @end table
10104
10105 @subsection Examples
10106
10107 @itemize
10108 @item
10109 Standard edge detection with custom values for the hysteresis thresholding:
10110 @example
10111 edgedetect=low=0.1:high=0.4
10112 @end example
10113
10114 @item
10115 Painting effect without thresholding:
10116 @example
10117 edgedetect=mode=colormix:high=0
10118 @end example
10119 @end itemize
10120
10121 @section elbg
10122
10123 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
10124
10125 For each input image, the filter will compute the optimal mapping from
10126 the input to the output given the codebook length, that is the number
10127 of distinct output colors.
10128
10129 This filter accepts the following options.
10130
10131 @table @option
10132 @item codebook_length, l
10133 Set codebook length. The value must be a positive integer, and
10134 represents the number of distinct output colors. Default value is 256.
10135
10136 @item nb_steps, n
10137 Set the maximum number of iterations to apply for computing the optimal
10138 mapping. The higher the value the better the result and the higher the
10139 computation time. Default value is 1.
10140
10141 @item seed, s
10142 Set a random seed, must be an integer included between 0 and
10143 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
10144 will try to use a good random seed on a best effort basis.
10145
10146 @item pal8
10147 Set pal8 output pixel format. This option does not work with codebook
10148 length greater than 256.
10149 @end table
10150
10151 @section entropy
10152
10153 Measure graylevel entropy in histogram of color channels of video frames.
10154
10155 It accepts the following parameters:
10156
10157 @table @option
10158 @item mode
10159 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
10160
10161 @var{diff} mode measures entropy of histogram delta values, absolute differences
10162 between neighbour histogram values.
10163 @end table
10164
10165 @section eq
10166 Set brightness, contrast, saturation and approximate gamma adjustment.
10167
10168 The filter accepts the following options:
10169
10170 @table @option
10171 @item contrast
10172 Set the contrast expression. The value must be a float value in range
10173 @code{-1000.0} to @code{1000.0}. The default value is "1".
10174
10175 @item brightness
10176 Set the brightness expression. The value must be a float value in
10177 range @code{-1.0} to @code{1.0}. The default value is "0".
10178
10179 @item saturation
10180 Set the saturation expression. The value must be a float in
10181 range @code{0.0} to @code{3.0}. The default value is "1".
10182
10183 @item gamma
10184 Set the gamma expression. The value must be a float in range
10185 @code{0.1} to @code{10.0}.  The default value is "1".
10186
10187 @item gamma_r
10188 Set the gamma expression for red. The value must be a float in
10189 range @code{0.1} to @code{10.0}. The default value is "1".
10190
10191 @item gamma_g
10192 Set the gamma expression for green. The value must be a float in range
10193 @code{0.1} to @code{10.0}. The default value is "1".
10194
10195 @item gamma_b
10196 Set the gamma expression for blue. The value must be a float in range
10197 @code{0.1} to @code{10.0}. The default value is "1".
10198
10199 @item gamma_weight
10200 Set the gamma weight expression. It can be used to reduce the effect
10201 of a high gamma value on bright image areas, e.g. keep them from
10202 getting overamplified and just plain white. The value must be a float
10203 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
10204 gamma correction all the way down while @code{1.0} leaves it at its
10205 full strength. Default is "1".
10206
10207 @item eval
10208 Set when the expressions for brightness, contrast, saturation and
10209 gamma expressions are evaluated.
10210
10211 It accepts the following values:
10212 @table @samp
10213 @item init
10214 only evaluate expressions once during the filter initialization or
10215 when a command is processed
10216
10217 @item frame
10218 evaluate expressions for each incoming frame
10219 @end table
10220
10221 Default value is @samp{init}.
10222 @end table
10223
10224 The expressions accept the following parameters:
10225 @table @option
10226 @item n
10227 frame count of the input frame starting from 0
10228
10229 @item pos
10230 byte position of the corresponding packet in the input file, NAN if
10231 unspecified
10232
10233 @item r
10234 frame rate of the input video, NAN if the input frame rate is unknown
10235
10236 @item t
10237 timestamp expressed in seconds, NAN if the input timestamp is unknown
10238 @end table
10239
10240 @subsection Commands
10241 The filter supports the following commands:
10242
10243 @table @option
10244 @item contrast
10245 Set the contrast expression.
10246
10247 @item brightness
10248 Set the brightness expression.
10249
10250 @item saturation
10251 Set the saturation expression.
10252
10253 @item gamma
10254 Set the gamma expression.
10255
10256 @item gamma_r
10257 Set the gamma_r expression.
10258
10259 @item gamma_g
10260 Set gamma_g expression.
10261
10262 @item gamma_b
10263 Set gamma_b expression.
10264
10265 @item gamma_weight
10266 Set gamma_weight expression.
10267
10268 The command accepts the same syntax of the corresponding option.
10269
10270 If the specified expression is not valid, it is kept at its current
10271 value.
10272
10273 @end table
10274
10275 @section erosion
10276
10277 Apply erosion effect to the video.
10278
10279 This filter replaces the pixel by the local(3x3) minimum.
10280
10281 It accepts the following options:
10282
10283 @table @option
10284 @item threshold0
10285 @item threshold1
10286 @item threshold2
10287 @item threshold3
10288 Limit the maximum change for each plane, default is 65535.
10289 If 0, plane will remain unchanged.
10290
10291 @item coordinates
10292 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
10293 pixels are used.
10294
10295 Flags to local 3x3 coordinates maps like this:
10296
10297     1 2 3
10298     4   5
10299     6 7 8
10300 @end table
10301
10302 @subsection Commands
10303
10304 This filter supports the all above options as @ref{commands}.
10305
10306 @section extractplanes
10307
10308 Extract color channel components from input video stream into
10309 separate grayscale video streams.
10310
10311 The filter accepts the following option:
10312
10313 @table @option
10314 @item planes
10315 Set plane(s) to extract.
10316
10317 Available values for planes are:
10318 @table @samp
10319 @item y
10320 @item u
10321 @item v
10322 @item a
10323 @item r
10324 @item g
10325 @item b
10326 @end table
10327
10328 Choosing planes not available in the input will result in an error.
10329 That means you cannot select @code{r}, @code{g}, @code{b} planes
10330 with @code{y}, @code{u}, @code{v} planes at same time.
10331 @end table
10332
10333 @subsection Examples
10334
10335 @itemize
10336 @item
10337 Extract luma, u and v color channel component from input video frame
10338 into 3 grayscale outputs:
10339 @example
10340 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
10341 @end example
10342 @end itemize
10343
10344 @section fade
10345
10346 Apply a fade-in/out effect to the input video.
10347
10348 It accepts the following parameters:
10349
10350 @table @option
10351 @item type, t
10352 The effect type can be either "in" for a fade-in, or "out" for a fade-out
10353 effect.
10354 Default is @code{in}.
10355
10356 @item start_frame, s
10357 Specify the number of the frame to start applying the fade
10358 effect at. Default is 0.
10359
10360 @item nb_frames, n
10361 The number of frames that the fade effect lasts. At the end of the
10362 fade-in effect, the output video will have the same intensity as the input video.
10363 At the end of the fade-out transition, the output video will be filled with the
10364 selected @option{color}.
10365 Default is 25.
10366
10367 @item alpha
10368 If set to 1, fade only alpha channel, if one exists on the input.
10369 Default value is 0.
10370
10371 @item start_time, st
10372 Specify the timestamp (in seconds) of the frame to start to apply the fade
10373 effect. If both start_frame and start_time are specified, the fade will start at
10374 whichever comes last.  Default is 0.
10375
10376 @item duration, d
10377 The number of seconds for which the fade effect has to last. At the end of the
10378 fade-in effect the output video will have the same intensity as the input video,
10379 at the end of the fade-out transition the output video will be filled with the
10380 selected @option{color}.
10381 If both duration and nb_frames are specified, duration is used. Default is 0
10382 (nb_frames is used by default).
10383
10384 @item color, c
10385 Specify the color of the fade. Default is "black".
10386 @end table
10387
10388 @subsection Examples
10389
10390 @itemize
10391 @item
10392 Fade in the first 30 frames of video:
10393 @example
10394 fade=in:0:30
10395 @end example
10396
10397 The command above is equivalent to:
10398 @example
10399 fade=t=in:s=0:n=30
10400 @end example
10401
10402 @item
10403 Fade out the last 45 frames of a 200-frame video:
10404 @example
10405 fade=out:155:45
10406 fade=type=out:start_frame=155:nb_frames=45
10407 @end example
10408
10409 @item
10410 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
10411 @example
10412 fade=in:0:25, fade=out:975:25
10413 @end example
10414
10415 @item
10416 Make the first 5 frames yellow, then fade in from frame 5-24:
10417 @example
10418 fade=in:5:20:color=yellow
10419 @end example
10420
10421 @item
10422 Fade in alpha over first 25 frames of video:
10423 @example
10424 fade=in:0:25:alpha=1
10425 @end example
10426
10427 @item
10428 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
10429 @example
10430 fade=t=in:st=5.5:d=0.5
10431 @end example
10432
10433 @end itemize
10434
10435 @section fftdnoiz
10436 Denoise frames using 3D FFT (frequency domain filtering).
10437
10438 The filter accepts the following options:
10439
10440 @table @option
10441 @item sigma
10442 Set the noise sigma constant. This sets denoising strength.
10443 Default value is 1. Allowed range is from 0 to 30.
10444 Using very high sigma with low overlap may give blocking artifacts.
10445
10446 @item amount
10447 Set amount of denoising. By default all detected noise is reduced.
10448 Default value is 1. Allowed range is from 0 to 1.
10449
10450 @item block
10451 Set size of block, Default is 4, can be 3, 4, 5 or 6.
10452 Actual size of block in pixels is 2 to power of @var{block}, so by default
10453 block size in pixels is 2^4 which is 16.
10454
10455 @item overlap
10456 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
10457
10458 @item prev
10459 Set number of previous frames to use for denoising. By default is set to 0.
10460
10461 @item next
10462 Set number of next frames to to use for denoising. By default is set to 0.
10463
10464 @item planes
10465 Set planes which will be filtered, by default are all available filtered
10466 except alpha.
10467 @end table
10468
10469 @section fftfilt
10470 Apply arbitrary expressions to samples in frequency domain
10471
10472 @table @option
10473 @item dc_Y
10474 Adjust the dc value (gain) of the luma plane of the image. The filter
10475 accepts an integer value in range @code{0} to @code{1000}. The default
10476 value is set to @code{0}.
10477
10478 @item dc_U
10479 Adjust the dc value (gain) of the 1st chroma plane of the image. The
10480 filter accepts an integer value in range @code{0} to @code{1000}. The
10481 default value is set to @code{0}.
10482
10483 @item dc_V
10484 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
10485 filter accepts an integer value in range @code{0} to @code{1000}. The
10486 default value is set to @code{0}.
10487
10488 @item weight_Y
10489 Set the frequency domain weight expression for the luma plane.
10490
10491 @item weight_U
10492 Set the frequency domain weight expression for the 1st chroma plane.
10493
10494 @item weight_V
10495 Set the frequency domain weight expression for the 2nd chroma plane.
10496
10497 @item eval
10498 Set when the expressions are evaluated.
10499
10500 It accepts the following values:
10501 @table @samp
10502 @item init
10503 Only evaluate expressions once during the filter initialization.
10504
10505 @item frame
10506 Evaluate expressions for each incoming frame.
10507 @end table
10508
10509 Default value is @samp{init}.
10510
10511 The filter accepts the following variables:
10512 @item X
10513 @item Y
10514 The coordinates of the current sample.
10515
10516 @item W
10517 @item H
10518 The width and height of the image.
10519
10520 @item N
10521 The number of input frame, starting from 0.
10522 @end table
10523
10524 @subsection Examples
10525
10526 @itemize
10527 @item
10528 High-pass:
10529 @example
10530 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
10531 @end example
10532
10533 @item
10534 Low-pass:
10535 @example
10536 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
10537 @end example
10538
10539 @item
10540 Sharpen:
10541 @example
10542 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
10543 @end example
10544
10545 @item
10546 Blur:
10547 @example
10548 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
10549 @end example
10550
10551 @end itemize
10552
10553 @section field
10554
10555 Extract a single field from an interlaced image using stride
10556 arithmetic to avoid wasting CPU time. The output frames are marked as
10557 non-interlaced.
10558
10559 The filter accepts the following options:
10560
10561 @table @option
10562 @item type
10563 Specify whether to extract the top (if the value is @code{0} or
10564 @code{top}) or the bottom field (if the value is @code{1} or
10565 @code{bottom}).
10566 @end table
10567
10568 @section fieldhint
10569
10570 Create new frames by copying the top and bottom fields from surrounding frames
10571 supplied as numbers by the hint file.
10572
10573 @table @option
10574 @item hint
10575 Set file containing hints: absolute/relative frame numbers.
10576
10577 There must be one line for each frame in a clip. Each line must contain two
10578 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
10579 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
10580 is current frame number for @code{absolute} mode or out of [-1, 1] range
10581 for @code{relative} mode. First number tells from which frame to pick up top
10582 field and second number tells from which frame to pick up bottom field.
10583
10584 If optionally followed by @code{+} output frame will be marked as interlaced,
10585 else if followed by @code{-} output frame will be marked as progressive, else
10586 it will be marked same as input frame.
10587 If optionally followed by @code{t} output frame will use only top field, or in
10588 case of @code{b} it will use only bottom field.
10589 If line starts with @code{#} or @code{;} that line is skipped.
10590
10591 @item mode
10592 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
10593 @end table
10594
10595 Example of first several lines of @code{hint} file for @code{relative} mode:
10596 @example
10597 0,0 - # first frame
10598 1,0 - # second frame, use third's frame top field and second's frame bottom field
10599 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
10600 1,0 -
10601 0,0 -
10602 0,0 -
10603 1,0 -
10604 1,0 -
10605 1,0 -
10606 0,0 -
10607 0,0 -
10608 1,0 -
10609 1,0 -
10610 1,0 -
10611 0,0 -
10612 @end example
10613
10614 @section fieldmatch
10615
10616 Field matching filter for inverse telecine. It is meant to reconstruct the
10617 progressive frames from a telecined stream. The filter does not drop duplicated
10618 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
10619 followed by a decimation filter such as @ref{decimate} in the filtergraph.
10620
10621 The separation of the field matching and the decimation is notably motivated by
10622 the possibility of inserting a de-interlacing filter fallback between the two.
10623 If the source has mixed telecined and real interlaced content,
10624 @code{fieldmatch} will not be able to match fields for the interlaced parts.
10625 But these remaining combed frames will be marked as interlaced, and thus can be
10626 de-interlaced by a later filter such as @ref{yadif} before decimation.
10627
10628 In addition to the various configuration options, @code{fieldmatch} can take an
10629 optional second stream, activated through the @option{ppsrc} option. If
10630 enabled, the frames reconstruction will be based on the fields and frames from
10631 this second stream. This allows the first input to be pre-processed in order to
10632 help the various algorithms of the filter, while keeping the output lossless
10633 (assuming the fields are matched properly). Typically, a field-aware denoiser,
10634 or brightness/contrast adjustments can help.
10635
10636 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
10637 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
10638 which @code{fieldmatch} is based on. While the semantic and usage are very
10639 close, some behaviour and options names can differ.
10640
10641 The @ref{decimate} filter currently only works for constant frame rate input.
10642 If your input has mixed telecined (30fps) and progressive content with a lower
10643 framerate like 24fps use the following filterchain to produce the necessary cfr
10644 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
10645
10646 The filter accepts the following options:
10647
10648 @table @option
10649 @item order
10650 Specify the assumed field order of the input stream. Available values are:
10651
10652 @table @samp
10653 @item auto
10654 Auto detect parity (use FFmpeg's internal parity value).
10655 @item bff
10656 Assume bottom field first.
10657 @item tff
10658 Assume top field first.
10659 @end table
10660
10661 Note that it is sometimes recommended not to trust the parity announced by the
10662 stream.
10663
10664 Default value is @var{auto}.
10665
10666 @item mode
10667 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
10668 sense that it won't risk creating jerkiness due to duplicate frames when
10669 possible, but if there are bad edits or blended fields it will end up
10670 outputting combed frames when a good match might actually exist. On the other
10671 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
10672 but will almost always find a good frame if there is one. The other values are
10673 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
10674 jerkiness and creating duplicate frames versus finding good matches in sections
10675 with bad edits, orphaned fields, blended fields, etc.
10676
10677 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
10678
10679 Available values are:
10680
10681 @table @samp
10682 @item pc
10683 2-way matching (p/c)
10684 @item pc_n
10685 2-way matching, and trying 3rd match if still combed (p/c + n)
10686 @item pc_u
10687 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
10688 @item pc_n_ub
10689 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
10690 still combed (p/c + n + u/b)
10691 @item pcn
10692 3-way matching (p/c/n)
10693 @item pcn_ub
10694 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10695 detected as combed (p/c/n + u/b)
10696 @end table
10697
10698 The parenthesis at the end indicate the matches that would be used for that
10699 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10700 @var{top}).
10701
10702 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10703 the slowest.
10704
10705 Default value is @var{pc_n}.
10706
10707 @item ppsrc
10708 Mark the main input stream as a pre-processed input, and enable the secondary
10709 input stream as the clean source to pick the fields from. See the filter
10710 introduction for more details. It is similar to the @option{clip2} feature from
10711 VFM/TFM.
10712
10713 Default value is @code{0} (disabled).
10714
10715 @item field
10716 Set the field to match from. It is recommended to set this to the same value as
10717 @option{order} unless you experience matching failures with that setting. In
10718 certain circumstances changing the field that is used to match from can have a
10719 large impact on matching performance. Available values are:
10720
10721 @table @samp
10722 @item auto
10723 Automatic (same value as @option{order}).
10724 @item bottom
10725 Match from the bottom field.
10726 @item top
10727 Match from the top field.
10728 @end table
10729
10730 Default value is @var{auto}.
10731
10732 @item mchroma
10733 Set whether or not chroma is included during the match comparisons. In most
10734 cases it is recommended to leave this enabled. You should set this to @code{0}
10735 only if your clip has bad chroma problems such as heavy rainbowing or other
10736 artifacts. Setting this to @code{0} could also be used to speed things up at
10737 the cost of some accuracy.
10738
10739 Default value is @code{1}.
10740
10741 @item y0
10742 @item y1
10743 These define an exclusion band which excludes the lines between @option{y0} and
10744 @option{y1} from being included in the field matching decision. An exclusion
10745 band can be used to ignore subtitles, a logo, or other things that may
10746 interfere with the matching. @option{y0} sets the starting scan line and
10747 @option{y1} sets the ending line; all lines in between @option{y0} and
10748 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10749 @option{y0} and @option{y1} to the same value will disable the feature.
10750 @option{y0} and @option{y1} defaults to @code{0}.
10751
10752 @item scthresh
10753 Set the scene change detection threshold as a percentage of maximum change on
10754 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10755 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10756 @option{scthresh} is @code{[0.0, 100.0]}.
10757
10758 Default value is @code{12.0}.
10759
10760 @item combmatch
10761 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10762 account the combed scores of matches when deciding what match to use as the
10763 final match. Available values are:
10764
10765 @table @samp
10766 @item none
10767 No final matching based on combed scores.
10768 @item sc
10769 Combed scores are only used when a scene change is detected.
10770 @item full
10771 Use combed scores all the time.
10772 @end table
10773
10774 Default is @var{sc}.
10775
10776 @item combdbg
10777 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10778 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10779 Available values are:
10780
10781 @table @samp
10782 @item none
10783 No forced calculation.
10784 @item pcn
10785 Force p/c/n calculations.
10786 @item pcnub
10787 Force p/c/n/u/b calculations.
10788 @end table
10789
10790 Default value is @var{none}.
10791
10792 @item cthresh
10793 This is the area combing threshold used for combed frame detection. This
10794 essentially controls how "strong" or "visible" combing must be to be detected.
10795 Larger values mean combing must be more visible and smaller values mean combing
10796 can be less visible or strong and still be detected. Valid settings are from
10797 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10798 be detected as combed). This is basically a pixel difference value. A good
10799 range is @code{[8, 12]}.
10800
10801 Default value is @code{9}.
10802
10803 @item chroma
10804 Sets whether or not chroma is considered in the combed frame decision.  Only
10805 disable this if your source has chroma problems (rainbowing, etc.) that are
10806 causing problems for the combed frame detection with chroma enabled. Actually,
10807 using @option{chroma}=@var{0} is usually more reliable, except for the case
10808 where there is chroma only combing in the source.
10809
10810 Default value is @code{0}.
10811
10812 @item blockx
10813 @item blocky
10814 Respectively set the x-axis and y-axis size of the window used during combed
10815 frame detection. This has to do with the size of the area in which
10816 @option{combpel} pixels are required to be detected as combed for a frame to be
10817 declared combed. See the @option{combpel} parameter description for more info.
10818 Possible values are any number that is a power of 2 starting at 4 and going up
10819 to 512.
10820
10821 Default value is @code{16}.
10822
10823 @item combpel
10824 The number of combed pixels inside any of the @option{blocky} by
10825 @option{blockx} size blocks on the frame for the frame to be detected as
10826 combed. While @option{cthresh} controls how "visible" the combing must be, this
10827 setting controls "how much" combing there must be in any localized area (a
10828 window defined by the @option{blockx} and @option{blocky} settings) on the
10829 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10830 which point no frames will ever be detected as combed). This setting is known
10831 as @option{MI} in TFM/VFM vocabulary.
10832
10833 Default value is @code{80}.
10834 @end table
10835
10836 @anchor{p/c/n/u/b meaning}
10837 @subsection p/c/n/u/b meaning
10838
10839 @subsubsection p/c/n
10840
10841 We assume the following telecined stream:
10842
10843 @example
10844 Top fields:     1 2 2 3 4
10845 Bottom fields:  1 2 3 4 4
10846 @end example
10847
10848 The numbers correspond to the progressive frame the fields relate to. Here, the
10849 first two frames are progressive, the 3rd and 4th are combed, and so on.
10850
10851 When @code{fieldmatch} is configured to run a matching from bottom
10852 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10853
10854 @example
10855 Input stream:
10856                 T     1 2 2 3 4
10857                 B     1 2 3 4 4   <-- matching reference
10858
10859 Matches:              c c n n c
10860
10861 Output stream:
10862                 T     1 2 3 4 4
10863                 B     1 2 3 4 4
10864 @end example
10865
10866 As a result of the field matching, we can see that some frames get duplicated.
10867 To perform a complete inverse telecine, you need to rely on a decimation filter
10868 after this operation. See for instance the @ref{decimate} filter.
10869
10870 The same operation now matching from top fields (@option{field}=@var{top})
10871 looks like this:
10872
10873 @example
10874 Input stream:
10875                 T     1 2 2 3 4   <-- matching reference
10876                 B     1 2 3 4 4
10877
10878 Matches:              c c p p c
10879
10880 Output stream:
10881                 T     1 2 2 3 4
10882                 B     1 2 2 3 4
10883 @end example
10884
10885 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10886 basically, they refer to the frame and field of the opposite parity:
10887
10888 @itemize
10889 @item @var{p} matches the field of the opposite parity in the previous frame
10890 @item @var{c} matches the field of the opposite parity in the current frame
10891 @item @var{n} matches the field of the opposite parity in the next frame
10892 @end itemize
10893
10894 @subsubsection u/b
10895
10896 The @var{u} and @var{b} matching are a bit special in the sense that they match
10897 from the opposite parity flag. In the following examples, we assume that we are
10898 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10899 'x' is placed above and below each matched fields.
10900
10901 With bottom matching (@option{field}=@var{bottom}):
10902 @example
10903 Match:           c         p           n          b          u
10904
10905                  x       x               x        x          x
10906   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10907   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10908                  x         x           x        x              x
10909
10910 Output frames:
10911                  2          1          2          2          2
10912                  2          2          2          1          3
10913 @end example
10914
10915 With top matching (@option{field}=@var{top}):
10916 @example
10917 Match:           c         p           n          b          u
10918
10919                  x         x           x        x              x
10920   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10921   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10922                  x       x               x        x          x
10923
10924 Output frames:
10925                  2          2          2          1          2
10926                  2          1          3          2          2
10927 @end example
10928
10929 @subsection Examples
10930
10931 Simple IVTC of a top field first telecined stream:
10932 @example
10933 fieldmatch=order=tff:combmatch=none, decimate
10934 @end example
10935
10936 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10937 @example
10938 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10939 @end example
10940
10941 @section fieldorder
10942
10943 Transform the field order of the input video.
10944
10945 It accepts the following parameters:
10946
10947 @table @option
10948
10949 @item order
10950 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10951 for bottom field first.
10952 @end table
10953
10954 The default value is @samp{tff}.
10955
10956 The transformation is done by shifting the picture content up or down
10957 by one line, and filling the remaining line with appropriate picture content.
10958 This method is consistent with most broadcast field order converters.
10959
10960 If the input video is not flagged as being interlaced, or it is already
10961 flagged as being of the required output field order, then this filter does
10962 not alter the incoming video.
10963
10964 It is very useful when converting to or from PAL DV material,
10965 which is bottom field first.
10966
10967 For example:
10968 @example
10969 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10970 @end example
10971
10972 @section fifo, afifo
10973
10974 Buffer input images and send them when they are requested.
10975
10976 It is mainly useful when auto-inserted by the libavfilter
10977 framework.
10978
10979 It does not take parameters.
10980
10981 @section fillborders
10982
10983 Fill borders of the input video, without changing video stream dimensions.
10984 Sometimes video can have garbage at the four edges and you may not want to
10985 crop video input to keep size multiple of some number.
10986
10987 This filter accepts the following options:
10988
10989 @table @option
10990 @item left
10991 Number of pixels to fill from left border.
10992
10993 @item right
10994 Number of pixels to fill from right border.
10995
10996 @item top
10997 Number of pixels to fill from top border.
10998
10999 @item bottom
11000 Number of pixels to fill from bottom border.
11001
11002 @item mode
11003 Set fill mode.
11004
11005 It accepts the following values:
11006 @table @samp
11007 @item smear
11008 fill pixels using outermost pixels
11009
11010 @item mirror
11011 fill pixels using mirroring
11012
11013 @item fixed
11014 fill pixels with constant value
11015 @end table
11016
11017 Default is @var{smear}.
11018
11019 @item color
11020 Set color for pixels in fixed mode. Default is @var{black}.
11021 @end table
11022
11023 @subsection Commands
11024 This filter supports same @ref{commands} as options.
11025 The command accepts the same syntax of the corresponding option.
11026
11027 If the specified expression is not valid, it is kept at its current
11028 value.
11029
11030 @section find_rect
11031
11032 Find a rectangular object
11033
11034 It accepts the following options:
11035
11036 @table @option
11037 @item object
11038 Filepath of the object image, needs to be in gray8.
11039
11040 @item threshold
11041 Detection threshold, default is 0.5.
11042
11043 @item mipmaps
11044 Number of mipmaps, default is 3.
11045
11046 @item xmin, ymin, xmax, ymax
11047 Specifies the rectangle in which to search.
11048 @end table
11049
11050 @subsection Examples
11051
11052 @itemize
11053 @item
11054 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
11055 @example
11056 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
11057 @end example
11058 @end itemize
11059
11060 @section floodfill
11061
11062 Flood area with values of same pixel components with another values.
11063
11064 It accepts the following options:
11065 @table @option
11066 @item x
11067 Set pixel x coordinate.
11068
11069 @item y
11070 Set pixel y coordinate.
11071
11072 @item s0
11073 Set source #0 component value.
11074
11075 @item s1
11076 Set source #1 component value.
11077
11078 @item s2
11079 Set source #2 component value.
11080
11081 @item s3
11082 Set source #3 component value.
11083
11084 @item d0
11085 Set destination #0 component value.
11086
11087 @item d1
11088 Set destination #1 component value.
11089
11090 @item d2
11091 Set destination #2 component value.
11092
11093 @item d3
11094 Set destination #3 component value.
11095 @end table
11096
11097 @anchor{format}
11098 @section format
11099
11100 Convert the input video to one of the specified pixel formats.
11101 Libavfilter will try to pick one that is suitable as input to
11102 the next filter.
11103
11104 It accepts the following parameters:
11105 @table @option
11106
11107 @item pix_fmts
11108 A '|'-separated list of pixel format names, such as
11109 "pix_fmts=yuv420p|monow|rgb24".
11110
11111 @end table
11112
11113 @subsection Examples
11114
11115 @itemize
11116 @item
11117 Convert the input video to the @var{yuv420p} format
11118 @example
11119 format=pix_fmts=yuv420p
11120 @end example
11121
11122 Convert the input video to any of the formats in the list
11123 @example
11124 format=pix_fmts=yuv420p|yuv444p|yuv410p
11125 @end example
11126 @end itemize
11127
11128 @anchor{fps}
11129 @section fps
11130
11131 Convert the video to specified constant frame rate by duplicating or dropping
11132 frames as necessary.
11133
11134 It accepts the following parameters:
11135 @table @option
11136
11137 @item fps
11138 The desired output frame rate. The default is @code{25}.
11139
11140 @item start_time
11141 Assume the first PTS should be the given value, in seconds. This allows for
11142 padding/trimming at the start of stream. By default, no assumption is made
11143 about the first frame's expected PTS, so no padding or trimming is done.
11144 For example, this could be set to 0 to pad the beginning with duplicates of
11145 the first frame if a video stream starts after the audio stream or to trim any
11146 frames with a negative PTS.
11147
11148 @item round
11149 Timestamp (PTS) rounding method.
11150
11151 Possible values are:
11152 @table @option
11153 @item zero
11154 round towards 0
11155 @item inf
11156 round away from 0
11157 @item down
11158 round towards -infinity
11159 @item up
11160 round towards +infinity
11161 @item near
11162 round to nearest
11163 @end table
11164 The default is @code{near}.
11165
11166 @item eof_action
11167 Action performed when reading the last frame.
11168
11169 Possible values are:
11170 @table @option
11171 @item round
11172 Use same timestamp rounding method as used for other frames.
11173 @item pass
11174 Pass through last frame if input duration has not been reached yet.
11175 @end table
11176 The default is @code{round}.
11177
11178 @end table
11179
11180 Alternatively, the options can be specified as a flat string:
11181 @var{fps}[:@var{start_time}[:@var{round}]].
11182
11183 See also the @ref{setpts} filter.
11184
11185 @subsection Examples
11186
11187 @itemize
11188 @item
11189 A typical usage in order to set the fps to 25:
11190 @example
11191 fps=fps=25
11192 @end example
11193
11194 @item
11195 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
11196 @example
11197 fps=fps=film:round=near
11198 @end example
11199 @end itemize
11200
11201 @section framepack
11202
11203 Pack two different video streams into a stereoscopic video, setting proper
11204 metadata on supported codecs. The two views should have the same size and
11205 framerate and processing will stop when the shorter video ends. Please note
11206 that you may conveniently adjust view properties with the @ref{scale} and
11207 @ref{fps} filters.
11208
11209 It accepts the following parameters:
11210 @table @option
11211
11212 @item format
11213 The desired packing format. Supported values are:
11214
11215 @table @option
11216
11217 @item sbs
11218 The views are next to each other (default).
11219
11220 @item tab
11221 The views are on top of each other.
11222
11223 @item lines
11224 The views are packed by line.
11225
11226 @item columns
11227 The views are packed by column.
11228
11229 @item frameseq
11230 The views are temporally interleaved.
11231
11232 @end table
11233
11234 @end table
11235
11236 Some examples:
11237
11238 @example
11239 # Convert left and right views into a frame-sequential video
11240 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
11241
11242 # Convert views into a side-by-side video with the same output resolution as the input
11243 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
11244 @end example
11245
11246 @section framerate
11247
11248 Change the frame rate by interpolating new video output frames from the source
11249 frames.
11250
11251 This filter is not designed to function correctly with interlaced media. If
11252 you wish to change the frame rate of interlaced media then you are required
11253 to deinterlace before this filter and re-interlace after this filter.
11254
11255 A description of the accepted options follows.
11256
11257 @table @option
11258 @item fps
11259 Specify the output frames per second. This option can also be specified
11260 as a value alone. The default is @code{50}.
11261
11262 @item interp_start
11263 Specify the start of a range where the output frame will be created as a
11264 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11265 the default is @code{15}.
11266
11267 @item interp_end
11268 Specify the end of a range where the output frame will be created as a
11269 linear interpolation of two frames. The range is [@code{0}-@code{255}],
11270 the default is @code{240}.
11271
11272 @item scene
11273 Specify the level at which a scene change is detected as a value between
11274 0 and 100 to indicate a new scene; a low value reflects a low
11275 probability for the current frame to introduce a new scene, while a higher
11276 value means the current frame is more likely to be one.
11277 The default is @code{8.2}.
11278
11279 @item flags
11280 Specify flags influencing the filter process.
11281
11282 Available value for @var{flags} is:
11283
11284 @table @option
11285 @item scene_change_detect, scd
11286 Enable scene change detection using the value of the option @var{scene}.
11287 This flag is enabled by default.
11288 @end table
11289 @end table
11290
11291 @section framestep
11292
11293 Select one frame every N-th frame.
11294
11295 This filter accepts the following option:
11296 @table @option
11297 @item step
11298 Select frame after every @code{step} frames.
11299 Allowed values are positive integers higher than 0. Default value is @code{1}.
11300 @end table
11301
11302 @section freezedetect
11303
11304 Detect frozen video.
11305
11306 This filter logs a message and sets frame metadata when it detects that the
11307 input video has no significant change in content during a specified duration.
11308 Video freeze detection calculates the mean average absolute difference of all
11309 the components of video frames and compares it to a noise floor.
11310
11311 The printed times and duration are expressed in seconds. The
11312 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
11313 whose timestamp equals or exceeds the detection duration and it contains the
11314 timestamp of the first frame of the freeze. The
11315 @code{lavfi.freezedetect.freeze_duration} and
11316 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
11317 after the freeze.
11318
11319 The filter accepts the following options:
11320
11321 @table @option
11322 @item noise, n
11323 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
11324 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
11325 0.001.
11326
11327 @item duration, d
11328 Set freeze duration until notification (default is 2 seconds).
11329 @end table
11330
11331 @section freezeframes
11332
11333 Freeze video frames.
11334
11335 This filter freezes video frames using frame from 2nd input.
11336
11337 The filter accepts the following options:
11338
11339 @table @option
11340 @item first
11341 Set number of first frame from which to start freeze.
11342
11343 @item last
11344 Set number of last frame from which to end freeze.
11345
11346 @item replace
11347 Set number of frame from 2nd input which will be used instead of replaced frames.
11348 @end table
11349
11350 @anchor{frei0r}
11351 @section frei0r
11352
11353 Apply a frei0r effect to the input video.
11354
11355 To enable the compilation of this filter, you need to install the frei0r
11356 header and configure FFmpeg with @code{--enable-frei0r}.
11357
11358 It accepts the following parameters:
11359
11360 @table @option
11361
11362 @item filter_name
11363 The name of the frei0r effect to load. If the environment variable
11364 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
11365 directories specified by the colon-separated list in @env{FREI0R_PATH}.
11366 Otherwise, the standard frei0r paths are searched, in this order:
11367 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
11368 @file{/usr/lib/frei0r-1/}.
11369
11370 @item filter_params
11371 A '|'-separated list of parameters to pass to the frei0r effect.
11372
11373 @end table
11374
11375 A frei0r effect parameter can be a boolean (its value is either
11376 "y" or "n"), a double, a color (specified as
11377 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
11378 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
11379 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
11380 a position (specified as @var{X}/@var{Y}, where
11381 @var{X} and @var{Y} are floating point numbers) and/or a string.
11382
11383 The number and types of parameters depend on the loaded effect. If an
11384 effect parameter is not specified, the default value is set.
11385
11386 @subsection Examples
11387
11388 @itemize
11389 @item
11390 Apply the distort0r effect, setting the first two double parameters:
11391 @example
11392 frei0r=filter_name=distort0r:filter_params=0.5|0.01
11393 @end example
11394
11395 @item
11396 Apply the colordistance effect, taking a color as the first parameter:
11397 @example
11398 frei0r=colordistance:0.2/0.3/0.4
11399 frei0r=colordistance:violet
11400 frei0r=colordistance:0x112233
11401 @end example
11402
11403 @item
11404 Apply the perspective effect, specifying the top left and top right image
11405 positions:
11406 @example
11407 frei0r=perspective:0.2/0.2|0.8/0.2
11408 @end example
11409 @end itemize
11410
11411 For more information, see
11412 @url{http://frei0r.dyne.org}
11413
11414 @section fspp
11415
11416 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
11417
11418 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
11419 processing filter, one of them is performed once per block, not per pixel.
11420 This allows for much higher speed.
11421
11422 The filter accepts the following options:
11423
11424 @table @option
11425 @item quality
11426 Set quality. This option defines the number of levels for averaging. It accepts
11427 an integer in the range 4-5. Default value is @code{4}.
11428
11429 @item qp
11430 Force a constant quantization parameter. It accepts an integer in range 0-63.
11431 If not set, the filter will use the QP from the video stream (if available).
11432
11433 @item strength
11434 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
11435 more details but also more artifacts, while higher values make the image smoother
11436 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
11437
11438 @item use_bframe_qp
11439 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
11440 option may cause flicker since the B-Frames have often larger QP. Default is
11441 @code{0} (not enabled).
11442
11443 @end table
11444
11445 @section gblur
11446
11447 Apply Gaussian blur filter.
11448
11449 The filter accepts the following options:
11450
11451 @table @option
11452 @item sigma
11453 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
11454
11455 @item steps
11456 Set number of steps for Gaussian approximation. Default is @code{1}.
11457
11458 @item planes
11459 Set which planes to filter. By default all planes are filtered.
11460
11461 @item sigmaV
11462 Set vertical sigma, if negative it will be same as @code{sigma}.
11463 Default is @code{-1}.
11464 @end table
11465
11466 @subsection Commands
11467 This filter supports same commands as options.
11468 The command accepts the same syntax of the corresponding option.
11469
11470 If the specified expression is not valid, it is kept at its current
11471 value.
11472
11473 @section geq
11474
11475 Apply generic equation to each pixel.
11476
11477 The filter accepts the following options:
11478
11479 @table @option
11480 @item lum_expr, lum
11481 Set the luminance expression.
11482 @item cb_expr, cb
11483 Set the chrominance blue expression.
11484 @item cr_expr, cr
11485 Set the chrominance red expression.
11486 @item alpha_expr, a
11487 Set the alpha expression.
11488 @item red_expr, r
11489 Set the red expression.
11490 @item green_expr, g
11491 Set the green expression.
11492 @item blue_expr, b
11493 Set the blue expression.
11494 @end table
11495
11496 The colorspace is selected according to the specified options. If one
11497 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
11498 options is specified, the filter will automatically select a YCbCr
11499 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
11500 @option{blue_expr} options is specified, it will select an RGB
11501 colorspace.
11502
11503 If one of the chrominance expression is not defined, it falls back on the other
11504 one. If no alpha expression is specified it will evaluate to opaque value.
11505 If none of chrominance expressions are specified, they will evaluate
11506 to the luminance expression.
11507
11508 The expressions can use the following variables and functions:
11509
11510 @table @option
11511 @item N
11512 The sequential number of the filtered frame, starting from @code{0}.
11513
11514 @item X
11515 @item Y
11516 The coordinates of the current sample.
11517
11518 @item W
11519 @item H
11520 The width and height of the image.
11521
11522 @item SW
11523 @item SH
11524 Width and height scale depending on the currently filtered plane. It is the
11525 ratio between the corresponding luma plane number of pixels and the current
11526 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
11527 @code{0.5,0.5} for chroma planes.
11528
11529 @item T
11530 Time of the current frame, expressed in seconds.
11531
11532 @item p(x, y)
11533 Return the value of the pixel at location (@var{x},@var{y}) of the current
11534 plane.
11535
11536 @item lum(x, y)
11537 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
11538 plane.
11539
11540 @item cb(x, y)
11541 Return the value of the pixel at location (@var{x},@var{y}) of the
11542 blue-difference chroma plane. Return 0 if there is no such plane.
11543
11544 @item cr(x, y)
11545 Return the value of the pixel at location (@var{x},@var{y}) of the
11546 red-difference chroma plane. Return 0 if there is no such plane.
11547
11548 @item r(x, y)
11549 @item g(x, y)
11550 @item b(x, y)
11551 Return the value of the pixel at location (@var{x},@var{y}) of the
11552 red/green/blue component. Return 0 if there is no such component.
11553
11554 @item alpha(x, y)
11555 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
11556 plane. Return 0 if there is no such plane.
11557
11558 @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)
11559 Sum of sample values in the rectangle from (0,0) to (x,y), this allows obtaining
11560 sums of samples within a rectangle. See the functions without the sum postfix.
11561
11562 @item interpolation
11563 Set one of interpolation methods:
11564 @table @option
11565 @item nearest, n
11566 @item bilinear, b
11567 @end table
11568 Default is bilinear.
11569 @end table
11570
11571 For functions, if @var{x} and @var{y} are outside the area, the value will be
11572 automatically clipped to the closer edge.
11573
11574 Please note that this filter can use multiple threads in which case each slice
11575 will have its own expression state. If you want to use only a single expression
11576 state because your expressions depend on previous state then you should limit
11577 the number of filter threads to 1.
11578
11579 @subsection Examples
11580
11581 @itemize
11582 @item
11583 Flip the image horizontally:
11584 @example
11585 geq=p(W-X\,Y)
11586 @end example
11587
11588 @item
11589 Generate a bidimensional sine wave, with angle @code{PI/3} and a
11590 wavelength of 100 pixels:
11591 @example
11592 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
11593 @end example
11594
11595 @item
11596 Generate a fancy enigmatic moving light:
11597 @example
11598 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
11599 @end example
11600
11601 @item
11602 Generate a quick emboss effect:
11603 @example
11604 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
11605 @end example
11606
11607 @item
11608 Modify RGB components depending on pixel position:
11609 @example
11610 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
11611 @end example
11612
11613 @item
11614 Create a radial gradient that is the same size as the input (also see
11615 the @ref{vignette} filter):
11616 @example
11617 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
11618 @end example
11619 @end itemize
11620
11621 @section gradfun
11622
11623 Fix the banding artifacts that are sometimes introduced into nearly flat
11624 regions by truncation to 8-bit color depth.
11625 Interpolate the gradients that should go where the bands are, and
11626 dither them.
11627
11628 It is designed for playback only.  Do not use it prior to
11629 lossy compression, because compression tends to lose the dither and
11630 bring back the bands.
11631
11632 It accepts the following parameters:
11633
11634 @table @option
11635
11636 @item strength
11637 The maximum amount by which the filter will change any one pixel. This is also
11638 the threshold for detecting nearly flat regions. Acceptable values range from
11639 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
11640 valid range.
11641
11642 @item radius
11643 The neighborhood to fit the gradient to. A larger radius makes for smoother
11644 gradients, but also prevents the filter from modifying the pixels near detailed
11645 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
11646 values will be clipped to the valid range.
11647
11648 @end table
11649
11650 Alternatively, the options can be specified as a flat string:
11651 @var{strength}[:@var{radius}]
11652
11653 @subsection Examples
11654
11655 @itemize
11656 @item
11657 Apply the filter with a @code{3.5} strength and radius of @code{8}:
11658 @example
11659 gradfun=3.5:8
11660 @end example
11661
11662 @item
11663 Specify radius, omitting the strength (which will fall-back to the default
11664 value):
11665 @example
11666 gradfun=radius=8
11667 @end example
11668
11669 @end itemize
11670
11671 @anchor{graphmonitor}
11672 @section graphmonitor
11673 Show various filtergraph stats.
11674
11675 With this filter one can debug complete filtergraph.
11676 Especially issues with links filling with queued frames.
11677
11678 The filter accepts the following options:
11679
11680 @table @option
11681 @item size, s
11682 Set video output size. Default is @var{hd720}.
11683
11684 @item opacity, o
11685 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
11686
11687 @item mode, m
11688 Set output mode, can be @var{fulll} or @var{compact}.
11689 In @var{compact} mode only filters with some queued frames have displayed stats.
11690
11691 @item flags, f
11692 Set flags which enable which stats are shown in video.
11693
11694 Available values for flags are:
11695 @table @samp
11696 @item queue
11697 Display number of queued frames in each link.
11698
11699 @item frame_count_in
11700 Display number of frames taken from filter.
11701
11702 @item frame_count_out
11703 Display number of frames given out from filter.
11704
11705 @item pts
11706 Display current filtered frame pts.
11707
11708 @item time
11709 Display current filtered frame time.
11710
11711 @item timebase
11712 Display time base for filter link.
11713
11714 @item format
11715 Display used format for filter link.
11716
11717 @item size
11718 Display video size or number of audio channels in case of audio used by filter link.
11719
11720 @item rate
11721 Display video frame rate or sample rate in case of audio used by filter link.
11722 @end table
11723
11724 @item rate, r
11725 Set upper limit for video rate of output stream, Default value is @var{25}.
11726 This guarantee that output video frame rate will not be higher than this value.
11727 @end table
11728
11729 @section greyedge
11730 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11731 and corrects the scene colors accordingly.
11732
11733 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11734
11735 The filter accepts the following options:
11736
11737 @table @option
11738 @item difford
11739 The order of differentiation to be applied on the scene. Must be chosen in the range
11740 [0,2] and default value is 1.
11741
11742 @item minknorm
11743 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11744 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11745 max value instead of calculating Minkowski distance.
11746
11747 @item sigma
11748 The standard deviation of Gaussian blur to be applied on the scene. Must be
11749 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11750 can't be equal to 0 if @var{difford} is greater than 0.
11751 @end table
11752
11753 @subsection Examples
11754 @itemize
11755
11756 @item
11757 Grey Edge:
11758 @example
11759 greyedge=difford=1:minknorm=5:sigma=2
11760 @end example
11761
11762 @item
11763 Max Edge:
11764 @example
11765 greyedge=difford=1:minknorm=0:sigma=2
11766 @end example
11767
11768 @end itemize
11769
11770 @anchor{haldclut}
11771 @section haldclut
11772
11773 Apply a Hald CLUT to a video stream.
11774
11775 First input is the video stream to process, and second one is the Hald CLUT.
11776 The Hald CLUT input can be a simple picture or a complete video stream.
11777
11778 The filter accepts the following options:
11779
11780 @table @option
11781 @item shortest
11782 Force termination when the shortest input terminates. Default is @code{0}.
11783 @item repeatlast
11784 Continue applying the last CLUT after the end of the stream. A value of
11785 @code{0} disable the filter after the last frame of the CLUT is reached.
11786 Default is @code{1}.
11787 @end table
11788
11789 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11790 filters share the same internals).
11791
11792 This filter also supports the @ref{framesync} options.
11793
11794 More information about the Hald CLUT can be found on Eskil Steenberg's website
11795 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11796
11797 @subsection Workflow examples
11798
11799 @subsubsection Hald CLUT video stream
11800
11801 Generate an identity Hald CLUT stream altered with various effects:
11802 @example
11803 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
11804 @end example
11805
11806 Note: make sure you use a lossless codec.
11807
11808 Then use it with @code{haldclut} to apply it on some random stream:
11809 @example
11810 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11811 @end example
11812
11813 The Hald CLUT will be applied to the 10 first seconds (duration of
11814 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11815 to the remaining frames of the @code{mandelbrot} stream.
11816
11817 @subsubsection Hald CLUT with preview
11818
11819 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11820 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11821 biggest possible square starting at the top left of the picture. The remaining
11822 padding pixels (bottom or right) will be ignored. This area can be used to add
11823 a preview of the Hald CLUT.
11824
11825 Typically, the following generated Hald CLUT will be supported by the
11826 @code{haldclut} filter:
11827
11828 @example
11829 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11830    pad=iw+320 [padded_clut];
11831    smptebars=s=320x256, split [a][b];
11832    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11833    [main][b] overlay=W-320" -frames:v 1 clut.png
11834 @end example
11835
11836 It contains the original and a preview of the effect of the CLUT: SMPTE color
11837 bars are displayed on the right-top, and below the same color bars processed by
11838 the color changes.
11839
11840 Then, the effect of this Hald CLUT can be visualized with:
11841 @example
11842 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11843 @end example
11844
11845 @section hflip
11846
11847 Flip the input video horizontally.
11848
11849 For example, to horizontally flip the input video with @command{ffmpeg}:
11850 @example
11851 ffmpeg -i in.avi -vf "hflip" out.avi
11852 @end example
11853
11854 @section histeq
11855 This filter applies a global color histogram equalization on a
11856 per-frame basis.
11857
11858 It can be used to correct video that has a compressed range of pixel
11859 intensities.  The filter redistributes the pixel intensities to
11860 equalize their distribution across the intensity range. It may be
11861 viewed as an "automatically adjusting contrast filter". This filter is
11862 useful only for correcting degraded or poorly captured source
11863 video.
11864
11865 The filter accepts the following options:
11866
11867 @table @option
11868 @item strength
11869 Determine the amount of equalization to be applied.  As the strength
11870 is reduced, the distribution of pixel intensities more-and-more
11871 approaches that of the input frame. The value must be a float number
11872 in the range [0,1] and defaults to 0.200.
11873
11874 @item intensity
11875 Set the maximum intensity that can generated and scale the output
11876 values appropriately.  The strength should be set as desired and then
11877 the intensity can be limited if needed to avoid washing-out. The value
11878 must be a float number in the range [0,1] and defaults to 0.210.
11879
11880 @item antibanding
11881 Set the antibanding level. If enabled the filter will randomly vary
11882 the luminance of output pixels by a small amount to avoid banding of
11883 the histogram. Possible values are @code{none}, @code{weak} or
11884 @code{strong}. It defaults to @code{none}.
11885 @end table
11886
11887 @anchor{histogram}
11888 @section histogram
11889
11890 Compute and draw a color distribution histogram for the input video.
11891
11892 The computed histogram is a representation of the color component
11893 distribution in an image.
11894
11895 Standard histogram displays the color components distribution in an image.
11896 Displays color graph for each color component. Shows distribution of
11897 the Y, U, V, A or R, G, B components, depending on input format, in the
11898 current frame. Below each graph a color component scale meter is shown.
11899
11900 The filter accepts the following options:
11901
11902 @table @option
11903 @item level_height
11904 Set height of level. Default value is @code{200}.
11905 Allowed range is [50, 2048].
11906
11907 @item scale_height
11908 Set height of color scale. Default value is @code{12}.
11909 Allowed range is [0, 40].
11910
11911 @item display_mode
11912 Set display mode.
11913 It accepts the following values:
11914 @table @samp
11915 @item stack
11916 Per color component graphs are placed below each other.
11917
11918 @item parade
11919 Per color component graphs are placed side by side.
11920
11921 @item overlay
11922 Presents information identical to that in the @code{parade}, except
11923 that the graphs representing color components are superimposed directly
11924 over one another.
11925 @end table
11926 Default is @code{stack}.
11927
11928 @item levels_mode
11929 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11930 Default is @code{linear}.
11931
11932 @item components
11933 Set what color components to display.
11934 Default is @code{7}.
11935
11936 @item fgopacity
11937 Set foreground opacity. Default is @code{0.7}.
11938
11939 @item bgopacity
11940 Set background opacity. Default is @code{0.5}.
11941 @end table
11942
11943 @subsection Examples
11944
11945 @itemize
11946
11947 @item
11948 Calculate and draw histogram:
11949 @example
11950 ffplay -i input -vf histogram
11951 @end example
11952
11953 @end itemize
11954
11955 @anchor{hqdn3d}
11956 @section hqdn3d
11957
11958 This is a high precision/quality 3d denoise filter. It aims to reduce
11959 image noise, producing smooth images and making still images really
11960 still. It should enhance compressibility.
11961
11962 It accepts the following optional parameters:
11963
11964 @table @option
11965 @item luma_spatial
11966 A non-negative floating point number which specifies spatial luma strength.
11967 It defaults to 4.0.
11968
11969 @item chroma_spatial
11970 A non-negative floating point number which specifies spatial chroma strength.
11971 It defaults to 3.0*@var{luma_spatial}/4.0.
11972
11973 @item luma_tmp
11974 A floating point number which specifies luma temporal strength. It defaults to
11975 6.0*@var{luma_spatial}/4.0.
11976
11977 @item chroma_tmp
11978 A floating point number which specifies chroma temporal strength. It defaults to
11979 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11980 @end table
11981
11982 @subsection Commands
11983 This filter supports same @ref{commands} as options.
11984 The command accepts the same syntax of the corresponding option.
11985
11986 If the specified expression is not valid, it is kept at its current
11987 value.
11988
11989 @anchor{hwdownload}
11990 @section hwdownload
11991
11992 Download hardware frames to system memory.
11993
11994 The input must be in hardware frames, and the output a non-hardware format.
11995 Not all formats will be supported on the output - it may be necessary to insert
11996 an additional @option{format} filter immediately following in the graph to get
11997 the output in a supported format.
11998
11999 @section hwmap
12000
12001 Map hardware frames to system memory or to another device.
12002
12003 This filter has several different modes of operation; which one is used depends
12004 on the input and output formats:
12005 @itemize
12006 @item
12007 Hardware frame input, normal frame output
12008
12009 Map the input frames to system memory and pass them to the output.  If the
12010 original hardware frame is later required (for example, after overlaying
12011 something else on part of it), the @option{hwmap} filter can be used again
12012 in the next mode to retrieve it.
12013 @item
12014 Normal frame input, hardware frame output
12015
12016 If the input is actually a software-mapped hardware frame, then unmap it -
12017 that is, return the original hardware frame.
12018
12019 Otherwise, a device must be provided.  Create new hardware surfaces on that
12020 device for the output, then map them back to the software format at the input
12021 and give those frames to the preceding filter.  This will then act like the
12022 @option{hwupload} filter, but may be able to avoid an additional copy when
12023 the input is already in a compatible format.
12024 @item
12025 Hardware frame input and output
12026
12027 A device must be supplied for the output, either directly or with the
12028 @option{derive_device} option.  The input and output devices must be of
12029 different types and compatible - the exact meaning of this is
12030 system-dependent, but typically it means that they must refer to the same
12031 underlying hardware context (for example, refer to the same graphics card).
12032
12033 If the input frames were originally created on the output device, then unmap
12034 to retrieve the original frames.
12035
12036 Otherwise, map the frames to the output device - create new hardware frames
12037 on the output corresponding to the frames on the input.
12038 @end itemize
12039
12040 The following additional parameters are accepted:
12041
12042 @table @option
12043 @item mode
12044 Set the frame mapping mode.  Some combination of:
12045 @table @var
12046 @item read
12047 The mapped frame should be readable.
12048 @item write
12049 The mapped frame should be writeable.
12050 @item overwrite
12051 The mapping will always overwrite the entire frame.
12052
12053 This may improve performance in some cases, as the original contents of the
12054 frame need not be loaded.
12055 @item direct
12056 The mapping must not involve any copying.
12057
12058 Indirect mappings to copies of frames are created in some cases where either
12059 direct mapping is not possible or it would have unexpected properties.
12060 Setting this flag ensures that the mapping is direct and will fail if that is
12061 not possible.
12062 @end table
12063 Defaults to @var{read+write} if not specified.
12064
12065 @item derive_device @var{type}
12066 Rather than using the device supplied at initialisation, instead derive a new
12067 device of type @var{type} from the device the input frames exist on.
12068
12069 @item reverse
12070 In a hardware to hardware mapping, map in reverse - create frames in the sink
12071 and map them back to the source.  This may be necessary in some cases where
12072 a mapping in one direction is required but only the opposite direction is
12073 supported by the devices being used.
12074
12075 This option is dangerous - it may break the preceding filter in undefined
12076 ways if there are any additional constraints on that filter's output.
12077 Do not use it without fully understanding the implications of its use.
12078 @end table
12079
12080 @anchor{hwupload}
12081 @section hwupload
12082
12083 Upload system memory frames to hardware surfaces.
12084
12085 The device to upload to must be supplied when the filter is initialised.  If
12086 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
12087 option or with the @option{derive_device} option.  The input and output devices
12088 must be of different types and compatible - the exact meaning of this is
12089 system-dependent, but typically it means that they must refer to the same
12090 underlying hardware context (for example, refer to the same graphics card).
12091
12092 The following additional parameters are accepted:
12093
12094 @table @option
12095 @item derive_device @var{type}
12096 Rather than using the device supplied at initialisation, instead derive a new
12097 device of type @var{type} from the device the input frames exist on.
12098 @end table
12099
12100 @anchor{hwupload_cuda}
12101 @section hwupload_cuda
12102
12103 Upload system memory frames to a CUDA device.
12104
12105 It accepts the following optional parameters:
12106
12107 @table @option
12108 @item device
12109 The number of the CUDA device to use
12110 @end table
12111
12112 @section hqx
12113
12114 Apply a high-quality magnification filter designed for pixel art. This filter
12115 was originally created by Maxim Stepin.
12116
12117 It accepts the following option:
12118
12119 @table @option
12120 @item n
12121 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
12122 @code{hq3x} and @code{4} for @code{hq4x}.
12123 Default is @code{3}.
12124 @end table
12125
12126 @section hstack
12127 Stack input videos horizontally.
12128
12129 All streams must be of same pixel format and of same height.
12130
12131 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
12132 to create same output.
12133
12134 The filter accepts the following option:
12135
12136 @table @option
12137 @item inputs
12138 Set number of input streams. Default is 2.
12139
12140 @item shortest
12141 If set to 1, force the output to terminate when the shortest input
12142 terminates. Default value is 0.
12143 @end table
12144
12145 @section hue
12146
12147 Modify the hue and/or the saturation of the input.
12148
12149 It accepts the following parameters:
12150
12151 @table @option
12152 @item h
12153 Specify the hue angle as a number of degrees. It accepts an expression,
12154 and defaults to "0".
12155
12156 @item s
12157 Specify the saturation in the [-10,10] range. It accepts an expression and
12158 defaults to "1".
12159
12160 @item H
12161 Specify the hue angle as a number of radians. It accepts an
12162 expression, and defaults to "0".
12163
12164 @item b
12165 Specify the brightness in the [-10,10] range. It accepts an expression and
12166 defaults to "0".
12167 @end table
12168
12169 @option{h} and @option{H} are mutually exclusive, and can't be
12170 specified at the same time.
12171
12172 The @option{b}, @option{h}, @option{H} and @option{s} option values are
12173 expressions containing the following constants:
12174
12175 @table @option
12176 @item n
12177 frame count of the input frame starting from 0
12178
12179 @item pts
12180 presentation timestamp of the input frame expressed in time base units
12181
12182 @item r
12183 frame rate of the input video, NAN if the input frame rate is unknown
12184
12185 @item t
12186 timestamp expressed in seconds, NAN if the input timestamp is unknown
12187
12188 @item tb
12189 time base of the input video
12190 @end table
12191
12192 @subsection Examples
12193
12194 @itemize
12195 @item
12196 Set the hue to 90 degrees and the saturation to 1.0:
12197 @example
12198 hue=h=90:s=1
12199 @end example
12200
12201 @item
12202 Same command but expressing the hue in radians:
12203 @example
12204 hue=H=PI/2:s=1
12205 @end example
12206
12207 @item
12208 Rotate hue and make the saturation swing between 0
12209 and 2 over a period of 1 second:
12210 @example
12211 hue="H=2*PI*t: s=sin(2*PI*t)+1"
12212 @end example
12213
12214 @item
12215 Apply a 3 seconds saturation fade-in effect starting at 0:
12216 @example
12217 hue="s=min(t/3\,1)"
12218 @end example
12219
12220 The general fade-in expression can be written as:
12221 @example
12222 hue="s=min(0\, max((t-START)/DURATION\, 1))"
12223 @end example
12224
12225 @item
12226 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
12227 @example
12228 hue="s=max(0\, min(1\, (8-t)/3))"
12229 @end example
12230
12231 The general fade-out expression can be written as:
12232 @example
12233 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
12234 @end example
12235
12236 @end itemize
12237
12238 @subsection Commands
12239
12240 This filter supports the following commands:
12241 @table @option
12242 @item b
12243 @item s
12244 @item h
12245 @item H
12246 Modify the hue and/or the saturation and/or brightness of the input video.
12247 The command accepts the same syntax of the corresponding option.
12248
12249 If the specified expression is not valid, it is kept at its current
12250 value.
12251 @end table
12252
12253 @section hysteresis
12254
12255 Grow first stream into second stream by connecting components.
12256 This makes it possible to build more robust edge masks.
12257
12258 This filter accepts the following options:
12259
12260 @table @option
12261 @item planes
12262 Set which planes will be processed as bitmap, unprocessed planes will be
12263 copied from first stream.
12264 By default value 0xf, all planes will be processed.
12265
12266 @item threshold
12267 Set threshold which is used in filtering. If pixel component value is higher than
12268 this value filter algorithm for connecting components is activated.
12269 By default value is 0.
12270 @end table
12271
12272 The @code{hysteresis} filter also supports the @ref{framesync} options.
12273
12274 @section idet
12275
12276 Detect video interlacing type.
12277
12278 This filter tries to detect if the input frames are interlaced, progressive,
12279 top or bottom field first. It will also try to detect fields that are
12280 repeated between adjacent frames (a sign of telecine).
12281
12282 Single frame detection considers only immediately adjacent frames when classifying each frame.
12283 Multiple frame detection incorporates the classification history of previous frames.
12284
12285 The filter will log these metadata values:
12286
12287 @table @option
12288 @item single.current_frame
12289 Detected type of current frame using single-frame detection. One of:
12290 ``tff'' (top field first), ``bff'' (bottom field first),
12291 ``progressive'', or ``undetermined''
12292
12293 @item single.tff
12294 Cumulative number of frames detected as top field first using single-frame detection.
12295
12296 @item multiple.tff
12297 Cumulative number of frames detected as top field first using multiple-frame detection.
12298
12299 @item single.bff
12300 Cumulative number of frames detected as bottom field first using single-frame detection.
12301
12302 @item multiple.current_frame
12303 Detected type of current frame using multiple-frame detection. One of:
12304 ``tff'' (top field first), ``bff'' (bottom field first),
12305 ``progressive'', or ``undetermined''
12306
12307 @item multiple.bff
12308 Cumulative number of frames detected as bottom field first using multiple-frame detection.
12309
12310 @item single.progressive
12311 Cumulative number of frames detected as progressive using single-frame detection.
12312
12313 @item multiple.progressive
12314 Cumulative number of frames detected as progressive using multiple-frame detection.
12315
12316 @item single.undetermined
12317 Cumulative number of frames that could not be classified using single-frame detection.
12318
12319 @item multiple.undetermined
12320 Cumulative number of frames that could not be classified using multiple-frame detection.
12321
12322 @item repeated.current_frame
12323 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
12324
12325 @item repeated.neither
12326 Cumulative number of frames with no repeated field.
12327
12328 @item repeated.top
12329 Cumulative number of frames with the top field repeated from the previous frame's top field.
12330
12331 @item repeated.bottom
12332 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
12333 @end table
12334
12335 The filter accepts the following options:
12336
12337 @table @option
12338 @item intl_thres
12339 Set interlacing threshold.
12340 @item prog_thres
12341 Set progressive threshold.
12342 @item rep_thres
12343 Threshold for repeated field detection.
12344 @item half_life
12345 Number of frames after which a given frame's contribution to the
12346 statistics is halved (i.e., it contributes only 0.5 to its
12347 classification). The default of 0 means that all frames seen are given
12348 full weight of 1.0 forever.
12349 @item analyze_interlaced_flag
12350 When this is not 0 then idet will use the specified number of frames to determine
12351 if the interlaced flag is accurate, it will not count undetermined frames.
12352 If the flag is found to be accurate it will be used without any further
12353 computations, if it is found to be inaccurate it will be cleared without any
12354 further computations. This allows inserting the idet filter as a low computational
12355 method to clean up the interlaced flag
12356 @end table
12357
12358 @section il
12359
12360 Deinterleave or interleave fields.
12361
12362 This filter allows one to process interlaced images fields without
12363 deinterlacing them. Deinterleaving splits the input frame into 2
12364 fields (so called half pictures). Odd lines are moved to the top
12365 half of the output image, even lines to the bottom half.
12366 You can process (filter) them independently and then re-interleave them.
12367
12368 The filter accepts the following options:
12369
12370 @table @option
12371 @item luma_mode, l
12372 @item chroma_mode, c
12373 @item alpha_mode, a
12374 Available values for @var{luma_mode}, @var{chroma_mode} and
12375 @var{alpha_mode} are:
12376
12377 @table @samp
12378 @item none
12379 Do nothing.
12380
12381 @item deinterleave, d
12382 Deinterleave fields, placing one above the other.
12383
12384 @item interleave, i
12385 Interleave fields. Reverse the effect of deinterleaving.
12386 @end table
12387 Default value is @code{none}.
12388
12389 @item luma_swap, ls
12390 @item chroma_swap, cs
12391 @item alpha_swap, as
12392 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
12393 @end table
12394
12395 @subsection Commands
12396
12397 This filter supports the all above options as @ref{commands}.
12398
12399 @section inflate
12400
12401 Apply inflate effect to the video.
12402
12403 This filter replaces the pixel by the local(3x3) average by taking into account
12404 only values higher than the pixel.
12405
12406 It accepts the following options:
12407
12408 @table @option
12409 @item threshold0
12410 @item threshold1
12411 @item threshold2
12412 @item threshold3
12413 Limit the maximum change for each plane, default is 65535.
12414 If 0, plane will remain unchanged.
12415 @end table
12416
12417 @subsection Commands
12418
12419 This filter supports the all above options as @ref{commands}.
12420
12421 @section interlace
12422
12423 Simple interlacing filter from progressive contents. This interleaves upper (or
12424 lower) lines from odd frames with lower (or upper) lines from even frames,
12425 halving the frame rate and preserving image height.
12426
12427 @example
12428    Original        Original             New Frame
12429    Frame 'j'      Frame 'j+1'             (tff)
12430   ==========      ===========       ==================
12431     Line 0  -------------------->    Frame 'j' Line 0
12432     Line 1          Line 1  ---->   Frame 'j+1' Line 1
12433     Line 2 --------------------->    Frame 'j' Line 2
12434     Line 3          Line 3  ---->   Frame 'j+1' Line 3
12435      ...             ...                   ...
12436 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
12437 @end example
12438
12439 It accepts the following optional parameters:
12440
12441 @table @option
12442 @item scan
12443 This determines whether the interlaced frame is taken from the even
12444 (tff - default) or odd (bff) lines of the progressive frame.
12445
12446 @item lowpass
12447 Vertical lowpass filter to avoid twitter interlacing and
12448 reduce moire patterns.
12449
12450 @table @samp
12451 @item 0, off
12452 Disable vertical lowpass filter
12453
12454 @item 1, linear
12455 Enable linear filter (default)
12456
12457 @item 2, complex
12458 Enable complex filter. This will slightly less reduce twitter and moire
12459 but better retain detail and subjective sharpness impression.
12460
12461 @end table
12462 @end table
12463
12464 @section kerndeint
12465
12466 Deinterlace input video by applying Donald Graft's adaptive kernel
12467 deinterling. Work on interlaced parts of a video to produce
12468 progressive frames.
12469
12470 The description of the accepted parameters follows.
12471
12472 @table @option
12473 @item thresh
12474 Set the threshold which affects the filter's tolerance when
12475 determining if a pixel line must be processed. It must be an integer
12476 in the range [0,255] and defaults to 10. A value of 0 will result in
12477 applying the process on every pixels.
12478
12479 @item map
12480 Paint pixels exceeding the threshold value to white if set to 1.
12481 Default is 0.
12482
12483 @item order
12484 Set the fields order. Swap fields if set to 1, leave fields alone if
12485 0. Default is 0.
12486
12487 @item sharp
12488 Enable additional sharpening if set to 1. Default is 0.
12489
12490 @item twoway
12491 Enable twoway sharpening if set to 1. Default is 0.
12492 @end table
12493
12494 @subsection Examples
12495
12496 @itemize
12497 @item
12498 Apply default values:
12499 @example
12500 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
12501 @end example
12502
12503 @item
12504 Enable additional sharpening:
12505 @example
12506 kerndeint=sharp=1
12507 @end example
12508
12509 @item
12510 Paint processed pixels in white:
12511 @example
12512 kerndeint=map=1
12513 @end example
12514 @end itemize
12515
12516 @section lagfun
12517
12518 Slowly update darker pixels.
12519
12520 This filter makes short flashes of light appear longer.
12521 This filter accepts the following options:
12522
12523 @table @option
12524 @item decay
12525 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
12526
12527 @item planes
12528 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
12529 @end table
12530
12531 @section lenscorrection
12532
12533 Correct radial lens distortion
12534
12535 This filter can be used to correct for radial distortion as can result from the use
12536 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
12537 one can use tools available for example as part of opencv or simply trial-and-error.
12538 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
12539 and extract the k1 and k2 coefficients from the resulting matrix.
12540
12541 Note that effectively the same filter is available in the open-source tools Krita and
12542 Digikam from the KDE project.
12543
12544 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
12545 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
12546 brightness distribution, so you may want to use both filters together in certain
12547 cases, though you will have to take care of ordering, i.e. whether vignetting should
12548 be applied before or after lens correction.
12549
12550 @subsection Options
12551
12552 The filter accepts the following options:
12553
12554 @table @option
12555 @item cx
12556 Relative x-coordinate of the focal point of the image, and thereby the center of the
12557 distortion. This value has a range [0,1] and is expressed as fractions of the image
12558 width. Default is 0.5.
12559 @item cy
12560 Relative y-coordinate of the focal point of the image, and thereby the center of the
12561 distortion. This value has a range [0,1] and is expressed as fractions of the image
12562 height. Default is 0.5.
12563 @item k1
12564 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
12565 no correction. Default is 0.
12566 @item k2
12567 Coefficient of the double quadratic correction term. This value has a range [-1,1].
12568 0 means no correction. Default is 0.
12569 @end table
12570
12571 The formula that generates the correction is:
12572
12573 @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)
12574
12575 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
12576 distances from the focal point in the source and target images, respectively.
12577
12578 @section lensfun
12579
12580 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
12581
12582 The @code{lensfun} filter requires the camera make, camera model, and lens model
12583 to apply the lens correction. The filter will load the lensfun database and
12584 query it to find the corresponding camera and lens entries in the database. As
12585 long as these entries can be found with the given options, the filter can
12586 perform corrections on frames. Note that incomplete strings will result in the
12587 filter choosing the best match with the given options, and the filter will
12588 output the chosen camera and lens models (logged with level "info"). You must
12589 provide the make, camera model, and lens model as they are required.
12590
12591 The filter accepts the following options:
12592
12593 @table @option
12594 @item make
12595 The make of the camera (for example, "Canon"). This option is required.
12596
12597 @item model
12598 The model of the camera (for example, "Canon EOS 100D"). This option is
12599 required.
12600
12601 @item lens_model
12602 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
12603 option is required.
12604
12605 @item mode
12606 The type of correction to apply. The following values are valid options:
12607
12608 @table @samp
12609 @item vignetting
12610 Enables fixing lens vignetting.
12611
12612 @item geometry
12613 Enables fixing lens geometry. This is the default.
12614
12615 @item subpixel
12616 Enables fixing chromatic aberrations.
12617
12618 @item vig_geo
12619 Enables fixing lens vignetting and lens geometry.
12620
12621 @item vig_subpixel
12622 Enables fixing lens vignetting and chromatic aberrations.
12623
12624 @item distortion
12625 Enables fixing both lens geometry and chromatic aberrations.
12626
12627 @item all
12628 Enables all possible corrections.
12629
12630 @end table
12631 @item focal_length
12632 The focal length of the image/video (zoom; expected constant for video). For
12633 example, a 18--55mm lens has focal length range of [18--55], so a value in that
12634 range should be chosen when using that lens. Default 18.
12635
12636 @item aperture
12637 The aperture of the image/video (expected constant for video). Note that
12638 aperture is only used for vignetting correction. Default 3.5.
12639
12640 @item focus_distance
12641 The focus distance of the image/video (expected constant for video). Note that
12642 focus distance is only used for vignetting and only slightly affects the
12643 vignetting correction process. If unknown, leave it at the default value (which
12644 is 1000).
12645
12646 @item scale
12647 The scale factor which is applied after transformation. After correction the
12648 video is no longer necessarily rectangular. This parameter controls how much of
12649 the resulting image is visible. The value 0 means that a value will be chosen
12650 automatically such that there is little or no unmapped area in the output
12651 image. 1.0 means that no additional scaling is done. Lower values may result
12652 in more of the corrected image being visible, while higher values may avoid
12653 unmapped areas in the output.
12654
12655 @item target_geometry
12656 The target geometry of the output image/video. The following values are valid
12657 options:
12658
12659 @table @samp
12660 @item rectilinear (default)
12661 @item fisheye
12662 @item panoramic
12663 @item equirectangular
12664 @item fisheye_orthographic
12665 @item fisheye_stereographic
12666 @item fisheye_equisolid
12667 @item fisheye_thoby
12668 @end table
12669 @item reverse
12670 Apply the reverse of image correction (instead of correcting distortion, apply
12671 it).
12672
12673 @item interpolation
12674 The type of interpolation used when correcting distortion. The following values
12675 are valid options:
12676
12677 @table @samp
12678 @item nearest
12679 @item linear (default)
12680 @item lanczos
12681 @end table
12682 @end table
12683
12684 @subsection Examples
12685
12686 @itemize
12687 @item
12688 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
12689 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
12690 aperture of "8.0".
12691
12692 @example
12693 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
12694 @end example
12695
12696 @item
12697 Apply the same as before, but only for the first 5 seconds of video.
12698
12699 @example
12700 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
12701 @end example
12702
12703 @end itemize
12704
12705 @section libvmaf
12706
12707 Obtain the VMAF (Video Multi-Method Assessment Fusion)
12708 score between two input videos.
12709
12710 The obtained VMAF score is printed through the logging system.
12711
12712 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
12713 After installing the library it can be enabled using:
12714 @code{./configure --enable-libvmaf --enable-version3}.
12715 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
12716
12717 The filter has following options:
12718
12719 @table @option
12720 @item model_path
12721 Set the model path which is to be used for SVM.
12722 Default value: @code{"/usr/local/share/model/vmaf_v0.6.1.pkl"}
12723
12724 @item log_path
12725 Set the file path to be used to store logs.
12726
12727 @item log_fmt
12728 Set the format of the log file (xml or json).
12729
12730 @item enable_transform
12731 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
12732 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
12733 Default value: @code{false}
12734
12735 @item phone_model
12736 Invokes the phone model which will generate VMAF scores higher than in the
12737 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12738 Default value: @code{false}
12739
12740 @item psnr
12741 Enables computing psnr along with vmaf.
12742 Default value: @code{false}
12743
12744 @item ssim
12745 Enables computing ssim along with vmaf.
12746 Default value: @code{false}
12747
12748 @item ms_ssim
12749 Enables computing ms_ssim along with vmaf.
12750 Default value: @code{false}
12751
12752 @item pool
12753 Set the pool method to be used for computing vmaf.
12754 Options are @code{min}, @code{harmonic_mean} or @code{mean} (default).
12755
12756 @item n_threads
12757 Set number of threads to be used when computing vmaf.
12758 Default value: @code{0}, which makes use of all available logical processors.
12759
12760 @item n_subsample
12761 Set interval for frame subsampling used when computing vmaf.
12762 Default value: @code{1}
12763
12764 @item enable_conf_interval
12765 Enables confidence interval.
12766 Default value: @code{false}
12767 @end table
12768
12769 This filter also supports the @ref{framesync} options.
12770
12771 @subsection Examples
12772 @itemize
12773 @item
12774 On the below examples the input file @file{main.mpg} being processed is
12775 compared with the reference file @file{ref.mpg}.
12776
12777 @example
12778 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12779 @end example
12780
12781 @item
12782 Example with options:
12783 @example
12784 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12785 @end example
12786
12787 @item
12788 Example with options and different containers:
12789 @example
12790 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 -
12791 @end example
12792 @end itemize
12793
12794 @section limiter
12795
12796 Limits the pixel components values to the specified range [min, max].
12797
12798 The filter accepts the following options:
12799
12800 @table @option
12801 @item min
12802 Lower bound. Defaults to the lowest allowed value for the input.
12803
12804 @item max
12805 Upper bound. Defaults to the highest allowed value for the input.
12806
12807 @item planes
12808 Specify which planes will be processed. Defaults to all available.
12809 @end table
12810
12811 @section loop
12812
12813 Loop video frames.
12814
12815 The filter accepts the following options:
12816
12817 @table @option
12818 @item loop
12819 Set the number of loops. Setting this value to -1 will result in infinite loops.
12820 Default is 0.
12821
12822 @item size
12823 Set maximal size in number of frames. Default is 0.
12824
12825 @item start
12826 Set first frame of loop. Default is 0.
12827 @end table
12828
12829 @subsection Examples
12830
12831 @itemize
12832 @item
12833 Loop single first frame infinitely:
12834 @example
12835 loop=loop=-1:size=1:start=0
12836 @end example
12837
12838 @item
12839 Loop single first frame 10 times:
12840 @example
12841 loop=loop=10:size=1:start=0
12842 @end example
12843
12844 @item
12845 Loop 10 first frames 5 times:
12846 @example
12847 loop=loop=5:size=10:start=0
12848 @end example
12849 @end itemize
12850
12851 @section lut1d
12852
12853 Apply a 1D LUT to an input video.
12854
12855 The filter accepts the following options:
12856
12857 @table @option
12858 @item file
12859 Set the 1D LUT file name.
12860
12861 Currently supported formats:
12862 @table @samp
12863 @item cube
12864 Iridas
12865 @item csp
12866 cineSpace
12867 @end table
12868
12869 @item interp
12870 Select interpolation mode.
12871
12872 Available values are:
12873
12874 @table @samp
12875 @item nearest
12876 Use values from the nearest defined point.
12877 @item linear
12878 Interpolate values using the linear interpolation.
12879 @item cosine
12880 Interpolate values using the cosine interpolation.
12881 @item cubic
12882 Interpolate values using the cubic interpolation.
12883 @item spline
12884 Interpolate values using the spline interpolation.
12885 @end table
12886 @end table
12887
12888 @anchor{lut3d}
12889 @section lut3d
12890
12891 Apply a 3D LUT to an input video.
12892
12893 The filter accepts the following options:
12894
12895 @table @option
12896 @item file
12897 Set the 3D LUT file name.
12898
12899 Currently supported formats:
12900 @table @samp
12901 @item 3dl
12902 AfterEffects
12903 @item cube
12904 Iridas
12905 @item dat
12906 DaVinci
12907 @item m3d
12908 Pandora
12909 @item csp
12910 cineSpace
12911 @end table
12912 @item interp
12913 Select interpolation mode.
12914
12915 Available values are:
12916
12917 @table @samp
12918 @item nearest
12919 Use values from the nearest defined point.
12920 @item trilinear
12921 Interpolate values using the 8 points defining a cube.
12922 @item tetrahedral
12923 Interpolate values using a tetrahedron.
12924 @end table
12925 @end table
12926
12927 @section lumakey
12928
12929 Turn certain luma values into transparency.
12930
12931 The filter accepts the following options:
12932
12933 @table @option
12934 @item threshold
12935 Set the luma which will be used as base for transparency.
12936 Default value is @code{0}.
12937
12938 @item tolerance
12939 Set the range of luma values to be keyed out.
12940 Default value is @code{0.01}.
12941
12942 @item softness
12943 Set the range of softness. Default value is @code{0}.
12944 Use this to control gradual transition from zero to full transparency.
12945 @end table
12946
12947 @subsection Commands
12948 This filter supports same @ref{commands} as options.
12949 The command accepts the same syntax of the corresponding option.
12950
12951 If the specified expression is not valid, it is kept at its current
12952 value.
12953
12954 @section lut, lutrgb, lutyuv
12955
12956 Compute a look-up table for binding each pixel component input value
12957 to an output value, and apply it to the input video.
12958
12959 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12960 to an RGB input video.
12961
12962 These filters accept the following parameters:
12963 @table @option
12964 @item c0
12965 set first pixel component expression
12966 @item c1
12967 set second pixel component expression
12968 @item c2
12969 set third pixel component expression
12970 @item c3
12971 set fourth pixel component expression, corresponds to the alpha component
12972
12973 @item r
12974 set red component expression
12975 @item g
12976 set green component expression
12977 @item b
12978 set blue component expression
12979 @item a
12980 alpha component expression
12981
12982 @item y
12983 set Y/luminance component expression
12984 @item u
12985 set U/Cb component expression
12986 @item v
12987 set V/Cr component expression
12988 @end table
12989
12990 Each of them specifies the expression to use for computing the lookup table for
12991 the corresponding pixel component values.
12992
12993 The exact component associated to each of the @var{c*} options depends on the
12994 format in input.
12995
12996 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12997 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12998
12999 The expressions can contain the following constants and functions:
13000
13001 @table @option
13002 @item w
13003 @item h
13004 The input width and height.
13005
13006 @item val
13007 The input value for the pixel component.
13008
13009 @item clipval
13010 The input value, clipped to the @var{minval}-@var{maxval} range.
13011
13012 @item maxval
13013 The maximum value for the pixel component.
13014
13015 @item minval
13016 The minimum value for the pixel component.
13017
13018 @item negval
13019 The negated value for the pixel component value, clipped to the
13020 @var{minval}-@var{maxval} range; it corresponds to the expression
13021 "maxval-clipval+minval".
13022
13023 @item clip(val)
13024 The computed value in @var{val}, clipped to the
13025 @var{minval}-@var{maxval} range.
13026
13027 @item gammaval(gamma)
13028 The computed gamma correction value of the pixel component value,
13029 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
13030 expression
13031 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
13032
13033 @end table
13034
13035 All expressions default to "val".
13036
13037 @subsection Examples
13038
13039 @itemize
13040 @item
13041 Negate input video:
13042 @example
13043 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
13044 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
13045 @end example
13046
13047 The above is the same as:
13048 @example
13049 lutrgb="r=negval:g=negval:b=negval"
13050 lutyuv="y=negval:u=negval:v=negval"
13051 @end example
13052
13053 @item
13054 Negate luminance:
13055 @example
13056 lutyuv=y=negval
13057 @end example
13058
13059 @item
13060 Remove chroma components, turning the video into a graytone image:
13061 @example
13062 lutyuv="u=128:v=128"
13063 @end example
13064
13065 @item
13066 Apply a luma burning effect:
13067 @example
13068 lutyuv="y=2*val"
13069 @end example
13070
13071 @item
13072 Remove green and blue components:
13073 @example
13074 lutrgb="g=0:b=0"
13075 @end example
13076
13077 @item
13078 Set a constant alpha channel value on input:
13079 @example
13080 format=rgba,lutrgb=a="maxval-minval/2"
13081 @end example
13082
13083 @item
13084 Correct luminance gamma by a factor of 0.5:
13085 @example
13086 lutyuv=y=gammaval(0.5)
13087 @end example
13088
13089 @item
13090 Discard least significant bits of luma:
13091 @example
13092 lutyuv=y='bitand(val, 128+64+32)'
13093 @end example
13094
13095 @item
13096 Technicolor like effect:
13097 @example
13098 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
13099 @end example
13100 @end itemize
13101
13102 @section lut2, tlut2
13103
13104 The @code{lut2} filter takes two input streams and outputs one
13105 stream.
13106
13107 The @code{tlut2} (time lut2) filter takes two consecutive frames
13108 from one single stream.
13109
13110 This filter accepts the following parameters:
13111 @table @option
13112 @item c0
13113 set first pixel component expression
13114 @item c1
13115 set second pixel component expression
13116 @item c2
13117 set third pixel component expression
13118 @item c3
13119 set fourth pixel component expression, corresponds to the alpha component
13120
13121 @item d
13122 set output bit depth, only available for @code{lut2} filter. By default is 0,
13123 which means bit depth is automatically picked from first input format.
13124 @end table
13125
13126 The @code{lut2} filter also supports the @ref{framesync} options.
13127
13128 Each of them specifies the expression to use for computing the lookup table for
13129 the corresponding pixel component values.
13130
13131 The exact component associated to each of the @var{c*} options depends on the
13132 format in inputs.
13133
13134 The expressions can contain the following constants:
13135
13136 @table @option
13137 @item w
13138 @item h
13139 The input width and height.
13140
13141 @item x
13142 The first input value for the pixel component.
13143
13144 @item y
13145 The second input value for the pixel component.
13146
13147 @item bdx
13148 The first input video bit depth.
13149
13150 @item bdy
13151 The second input video bit depth.
13152 @end table
13153
13154 All expressions default to "x".
13155
13156 @subsection Examples
13157
13158 @itemize
13159 @item
13160 Highlight differences between two RGB video streams:
13161 @example
13162 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)'
13163 @end example
13164
13165 @item
13166 Highlight differences between two YUV video streams:
13167 @example
13168 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)'
13169 @end example
13170
13171 @item
13172 Show max difference between two video streams:
13173 @example
13174 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)))'
13175 @end example
13176 @end itemize
13177
13178 @section maskedclamp
13179
13180 Clamp the first input stream with the second input and third input stream.
13181
13182 Returns the value of first stream to be between second input
13183 stream - @code{undershoot} and third input stream + @code{overshoot}.
13184
13185 This filter accepts the following options:
13186 @table @option
13187 @item undershoot
13188 Default value is @code{0}.
13189
13190 @item overshoot
13191 Default value is @code{0}.
13192
13193 @item planes
13194 Set which planes will be processed as bitmap, unprocessed planes will be
13195 copied from first stream.
13196 By default value 0xf, all planes will be processed.
13197 @end table
13198
13199 @section maskedmax
13200
13201 Merge the second and third input stream into output stream using absolute differences
13202 between second input stream and first input stream and absolute difference between
13203 third input stream and first input stream. The picked value will be from second input
13204 stream if second absolute difference is greater than first one or from third input stream
13205 otherwise.
13206
13207 This filter accepts the following options:
13208 @table @option
13209 @item planes
13210 Set which planes will be processed as bitmap, unprocessed planes will be
13211 copied from first stream.
13212 By default value 0xf, all planes will be processed.
13213 @end table
13214
13215 @section maskedmerge
13216
13217 Merge the first input stream with the second input stream using per pixel
13218 weights in the third input stream.
13219
13220 A value of 0 in the third stream pixel component means that pixel component
13221 from first stream is returned unchanged, while maximum value (eg. 255 for
13222 8-bit videos) means that pixel component from second stream is returned
13223 unchanged. Intermediate values define the amount of merging between both
13224 input stream's pixel components.
13225
13226 This filter accepts the following options:
13227 @table @option
13228 @item planes
13229 Set which planes will be processed as bitmap, unprocessed planes will be
13230 copied from first stream.
13231 By default value 0xf, all planes will be processed.
13232 @end table
13233
13234 @section maskedmin
13235
13236 Merge the second and third input stream into output stream using absolute differences
13237 between second input stream and first input stream and absolute difference between
13238 third input stream and first input stream. The picked value will be from second input
13239 stream if second absolute difference is less than first one or from third input stream
13240 otherwise.
13241
13242 This filter accepts the following options:
13243 @table @option
13244 @item planes
13245 Set which planes will be processed as bitmap, unprocessed planes will be
13246 copied from first stream.
13247 By default value 0xf, all planes will be processed.
13248 @end table
13249
13250 @section maskfun
13251 Create mask from input video.
13252
13253 For example it is useful to create motion masks after @code{tblend} filter.
13254
13255 This filter accepts the following options:
13256
13257 @table @option
13258 @item low
13259 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
13260
13261 @item high
13262 Set high threshold. Any pixel component higher than this value will be set to max value
13263 allowed for current pixel format.
13264
13265 @item planes
13266 Set planes to filter, by default all available planes are filtered.
13267
13268 @item fill
13269 Fill all frame pixels with this value.
13270
13271 @item sum
13272 Set max average pixel value for frame. If sum of all pixel components is higher that this
13273 average, output frame will be completely filled with value set by @var{fill} option.
13274 Typically useful for scene changes when used in combination with @code{tblend} filter.
13275 @end table
13276
13277 @section mcdeint
13278
13279 Apply motion-compensation deinterlacing.
13280
13281 It needs one field per frame as input and must thus be used together
13282 with yadif=1/3 or equivalent.
13283
13284 This filter accepts the following options:
13285 @table @option
13286 @item mode
13287 Set the deinterlacing mode.
13288
13289 It accepts one of the following values:
13290 @table @samp
13291 @item fast
13292 @item medium
13293 @item slow
13294 use iterative motion estimation
13295 @item extra_slow
13296 like @samp{slow}, but use multiple reference frames.
13297 @end table
13298 Default value is @samp{fast}.
13299
13300 @item parity
13301 Set the picture field parity assumed for the input video. It must be
13302 one of the following values:
13303
13304 @table @samp
13305 @item 0, tff
13306 assume top field first
13307 @item 1, bff
13308 assume bottom field first
13309 @end table
13310
13311 Default value is @samp{bff}.
13312
13313 @item qp
13314 Set per-block quantization parameter (QP) used by the internal
13315 encoder.
13316
13317 Higher values should result in a smoother motion vector field but less
13318 optimal individual vectors. Default value is 1.
13319 @end table
13320
13321 @section median
13322
13323 Pick median pixel from certain rectangle defined by radius.
13324
13325 This filter accepts the following options:
13326
13327 @table @option
13328 @item radius
13329 Set horizontal radius size. Default value is @code{1}.
13330 Allowed range is integer from 1 to 127.
13331
13332 @item planes
13333 Set which planes to process. Default is @code{15}, which is all available planes.
13334
13335 @item radiusV
13336 Set vertical radius size. Default value is @code{0}.
13337 Allowed range is integer from 0 to 127.
13338 If it is 0, value will be picked from horizontal @code{radius} option.
13339
13340 @item percentile
13341 Set median percentile. Default value is @code{0.5}.
13342 Default value of @code{0.5} will pick always median values, while @code{0} will pick
13343 minimum values, and @code{1} maximum values.
13344 @end table
13345
13346 @subsection Commands
13347 This filter supports same @ref{commands} as options.
13348 The command accepts the same syntax of the corresponding option.
13349
13350 If the specified expression is not valid, it is kept at its current
13351 value.
13352
13353 @section mergeplanes
13354
13355 Merge color channel components from several video streams.
13356
13357 The filter accepts up to 4 input streams, and merge selected input
13358 planes to the output video.
13359
13360 This filter accepts the following options:
13361 @table @option
13362 @item mapping
13363 Set input to output plane mapping. Default is @code{0}.
13364
13365 The mappings is specified as a bitmap. It should be specified as a
13366 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
13367 mapping for the first plane of the output stream. 'A' sets the number of
13368 the input stream to use (from 0 to 3), and 'a' the plane number of the
13369 corresponding input to use (from 0 to 3). The rest of the mappings is
13370 similar, 'Bb' describes the mapping for the output stream second
13371 plane, 'Cc' describes the mapping for the output stream third plane and
13372 'Dd' describes the mapping for the output stream fourth plane.
13373
13374 @item format
13375 Set output pixel format. Default is @code{yuva444p}.
13376 @end table
13377
13378 @subsection Examples
13379
13380 @itemize
13381 @item
13382 Merge three gray video streams of same width and height into single video stream:
13383 @example
13384 [a0][a1][a2]mergeplanes=0x001020:yuv444p
13385 @end example
13386
13387 @item
13388 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
13389 @example
13390 [a0][a1]mergeplanes=0x00010210:yuva444p
13391 @end example
13392
13393 @item
13394 Swap Y and A plane in yuva444p stream:
13395 @example
13396 format=yuva444p,mergeplanes=0x03010200:yuva444p
13397 @end example
13398
13399 @item
13400 Swap U and V plane in yuv420p stream:
13401 @example
13402 format=yuv420p,mergeplanes=0x000201:yuv420p
13403 @end example
13404
13405 @item
13406 Cast a rgb24 clip to yuv444p:
13407 @example
13408 format=rgb24,mergeplanes=0x000102:yuv444p
13409 @end example
13410 @end itemize
13411
13412 @section mestimate
13413
13414 Estimate and export motion vectors using block matching algorithms.
13415 Motion vectors are stored in frame side data to be used by other filters.
13416
13417 This filter accepts the following options:
13418 @table @option
13419 @item method
13420 Specify the motion estimation method. Accepts one of the following values:
13421
13422 @table @samp
13423 @item esa
13424 Exhaustive search algorithm.
13425 @item tss
13426 Three step search algorithm.
13427 @item tdls
13428 Two dimensional logarithmic search algorithm.
13429 @item ntss
13430 New three step search algorithm.
13431 @item fss
13432 Four step search algorithm.
13433 @item ds
13434 Diamond search algorithm.
13435 @item hexbs
13436 Hexagon-based search algorithm.
13437 @item epzs
13438 Enhanced predictive zonal search algorithm.
13439 @item umh
13440 Uneven multi-hexagon search algorithm.
13441 @end table
13442 Default value is @samp{esa}.
13443
13444 @item mb_size
13445 Macroblock size. Default @code{16}.
13446
13447 @item search_param
13448 Search parameter. Default @code{7}.
13449 @end table
13450
13451 @section midequalizer
13452
13453 Apply Midway Image Equalization effect using two video streams.
13454
13455 Midway Image Equalization adjusts a pair of images to have the same
13456 histogram, while maintaining their dynamics as much as possible. It's
13457 useful for e.g. matching exposures from a pair of stereo cameras.
13458
13459 This filter has two inputs and one output, which must be of same pixel format, but
13460 may be of different sizes. The output of filter is first input adjusted with
13461 midway histogram of both inputs.
13462
13463 This filter accepts the following option:
13464
13465 @table @option
13466 @item planes
13467 Set which planes to process. Default is @code{15}, which is all available planes.
13468 @end table
13469
13470 @section minterpolate
13471
13472 Convert the video to specified frame rate using motion interpolation.
13473
13474 This filter accepts the following options:
13475 @table @option
13476 @item fps
13477 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}.
13478
13479 @item mi_mode
13480 Motion interpolation mode. Following values are accepted:
13481 @table @samp
13482 @item dup
13483 Duplicate previous or next frame for interpolating new ones.
13484 @item blend
13485 Blend source frames. Interpolated frame is mean of previous and next frames.
13486 @item mci
13487 Motion compensated interpolation. Following options are effective when this mode is selected:
13488
13489 @table @samp
13490 @item mc_mode
13491 Motion compensation mode. Following values are accepted:
13492 @table @samp
13493 @item obmc
13494 Overlapped block motion compensation.
13495 @item aobmc
13496 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
13497 @end table
13498 Default mode is @samp{obmc}.
13499
13500 @item me_mode
13501 Motion estimation mode. Following values are accepted:
13502 @table @samp
13503 @item bidir
13504 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
13505 @item bilat
13506 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
13507 @end table
13508 Default mode is @samp{bilat}.
13509
13510 @item me
13511 The algorithm to be used for motion estimation. Following values are accepted:
13512 @table @samp
13513 @item esa
13514 Exhaustive search algorithm.
13515 @item tss
13516 Three step search algorithm.
13517 @item tdls
13518 Two dimensional logarithmic search algorithm.
13519 @item ntss
13520 New three step search algorithm.
13521 @item fss
13522 Four step search algorithm.
13523 @item ds
13524 Diamond search algorithm.
13525 @item hexbs
13526 Hexagon-based search algorithm.
13527 @item epzs
13528 Enhanced predictive zonal search algorithm.
13529 @item umh
13530 Uneven multi-hexagon search algorithm.
13531 @end table
13532 Default algorithm is @samp{epzs}.
13533
13534 @item mb_size
13535 Macroblock size. Default @code{16}.
13536
13537 @item search_param
13538 Motion estimation search parameter. Default @code{32}.
13539
13540 @item vsbmc
13541 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).
13542 @end table
13543 @end table
13544
13545 @item scd
13546 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:
13547 @table @samp
13548 @item none
13549 Disable scene change detection.
13550 @item fdiff
13551 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
13552 @end table
13553 Default method is @samp{fdiff}.
13554
13555 @item scd_threshold
13556 Scene change detection threshold. Default is @code{5.0}.
13557 @end table
13558
13559 @section mix
13560
13561 Mix several video input streams into one video stream.
13562
13563 A description of the accepted options follows.
13564
13565 @table @option
13566 @item nb_inputs
13567 The number of inputs. If unspecified, it defaults to 2.
13568
13569 @item weights
13570 Specify weight of each input video stream as sequence.
13571 Each weight is separated by space. If number of weights
13572 is smaller than number of @var{frames} last specified
13573 weight will be used for all remaining unset weights.
13574
13575 @item scale
13576 Specify scale, if it is set it will be multiplied with sum
13577 of each weight multiplied with pixel values to give final destination
13578 pixel value. By default @var{scale} is auto scaled to sum of weights.
13579
13580 @item duration
13581 Specify how end of stream is determined.
13582 @table @samp
13583 @item longest
13584 The duration of the longest input. (default)
13585
13586 @item shortest
13587 The duration of the shortest input.
13588
13589 @item first
13590 The duration of the first input.
13591 @end table
13592 @end table
13593
13594 @section mpdecimate
13595
13596 Drop frames that do not differ greatly from the previous frame in
13597 order to reduce frame rate.
13598
13599 The main use of this filter is for very-low-bitrate encoding
13600 (e.g. streaming over dialup modem), but it could in theory be used for
13601 fixing movies that were inverse-telecined incorrectly.
13602
13603 A description of the accepted options follows.
13604
13605 @table @option
13606 @item max
13607 Set the maximum number of consecutive frames which can be dropped (if
13608 positive), or the minimum interval between dropped frames (if
13609 negative). If the value is 0, the frame is dropped disregarding the
13610 number of previous sequentially dropped frames.
13611
13612 Default value is 0.
13613
13614 @item hi
13615 @item lo
13616 @item frac
13617 Set the dropping threshold values.
13618
13619 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
13620 represent actual pixel value differences, so a threshold of 64
13621 corresponds to 1 unit of difference for each pixel, or the same spread
13622 out differently over the block.
13623
13624 A frame is a candidate for dropping if no 8x8 blocks differ by more
13625 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
13626 meaning the whole image) differ by more than a threshold of @option{lo}.
13627
13628 Default value for @option{hi} is 64*12, default value for @option{lo} is
13629 64*5, and default value for @option{frac} is 0.33.
13630 @end table
13631
13632
13633 @section negate
13634
13635 Negate (invert) the input video.
13636
13637 It accepts the following option:
13638
13639 @table @option
13640
13641 @item negate_alpha
13642 With value 1, it negates the alpha component, if present. Default value is 0.
13643 @end table
13644
13645 @anchor{nlmeans}
13646 @section nlmeans
13647
13648 Denoise frames using Non-Local Means algorithm.
13649
13650 Each pixel is adjusted by looking for other pixels with similar contexts. This
13651 context similarity is defined by comparing their surrounding patches of size
13652 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
13653 around the pixel.
13654
13655 Note that the research area defines centers for patches, which means some
13656 patches will be made of pixels outside that research area.
13657
13658 The filter accepts the following options.
13659
13660 @table @option
13661 @item s
13662 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
13663
13664 @item p
13665 Set patch size. Default is 7. Must be odd number in range [0, 99].
13666
13667 @item pc
13668 Same as @option{p} but for chroma planes.
13669
13670 The default value is @var{0} and means automatic.
13671
13672 @item r
13673 Set research size. Default is 15. Must be odd number in range [0, 99].
13674
13675 @item rc
13676 Same as @option{r} but for chroma planes.
13677
13678 The default value is @var{0} and means automatic.
13679 @end table
13680
13681 @section nnedi
13682
13683 Deinterlace video using neural network edge directed interpolation.
13684
13685 This filter accepts the following options:
13686
13687 @table @option
13688 @item weights
13689 Mandatory option, without binary file filter can not work.
13690 Currently file can be found here:
13691 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
13692
13693 @item deint
13694 Set which frames to deinterlace, by default it is @code{all}.
13695 Can be @code{all} or @code{interlaced}.
13696
13697 @item field
13698 Set mode of operation.
13699
13700 Can be one of the following:
13701
13702 @table @samp
13703 @item af
13704 Use frame flags, both fields.
13705 @item a
13706 Use frame flags, single field.
13707 @item t
13708 Use top field only.
13709 @item b
13710 Use bottom field only.
13711 @item tf
13712 Use both fields, top first.
13713 @item bf
13714 Use both fields, bottom first.
13715 @end table
13716
13717 @item planes
13718 Set which planes to process, by default filter process all frames.
13719
13720 @item nsize
13721 Set size of local neighborhood around each pixel, used by the predictor neural
13722 network.
13723
13724 Can be one of the following:
13725
13726 @table @samp
13727 @item s8x6
13728 @item s16x6
13729 @item s32x6
13730 @item s48x6
13731 @item s8x4
13732 @item s16x4
13733 @item s32x4
13734 @end table
13735
13736 @item nns
13737 Set the number of neurons in predictor neural network.
13738 Can be one of the following:
13739
13740 @table @samp
13741 @item n16
13742 @item n32
13743 @item n64
13744 @item n128
13745 @item n256
13746 @end table
13747
13748 @item qual
13749 Controls the number of different neural network predictions that are blended
13750 together to compute the final output value. Can be @code{fast}, default or
13751 @code{slow}.
13752
13753 @item etype
13754 Set which set of weights to use in the predictor.
13755 Can be one of the following:
13756
13757 @table @samp
13758 @item a
13759 weights trained to minimize absolute error
13760 @item s
13761 weights trained to minimize squared error
13762 @end table
13763
13764 @item pscrn
13765 Controls whether or not the prescreener neural network is used to decide
13766 which pixels should be processed by the predictor neural network and which
13767 can be handled by simple cubic interpolation.
13768 The prescreener is trained to know whether cubic interpolation will be
13769 sufficient for a pixel or whether it should be predicted by the predictor nn.
13770 The computational complexity of the prescreener nn is much less than that of
13771 the predictor nn. Since most pixels can be handled by cubic interpolation,
13772 using the prescreener generally results in much faster processing.
13773 The prescreener is pretty accurate, so the difference between using it and not
13774 using it is almost always unnoticeable.
13775
13776 Can be one of the following:
13777
13778 @table @samp
13779 @item none
13780 @item original
13781 @item new
13782 @end table
13783
13784 Default is @code{new}.
13785
13786 @item fapprox
13787 Set various debugging flags.
13788 @end table
13789
13790 @section noformat
13791
13792 Force libavfilter not to use any of the specified pixel formats for the
13793 input to the next filter.
13794
13795 It accepts the following parameters:
13796 @table @option
13797
13798 @item pix_fmts
13799 A '|'-separated list of pixel format names, such as
13800 pix_fmts=yuv420p|monow|rgb24".
13801
13802 @end table
13803
13804 @subsection Examples
13805
13806 @itemize
13807 @item
13808 Force libavfilter to use a format different from @var{yuv420p} for the
13809 input to the vflip filter:
13810 @example
13811 noformat=pix_fmts=yuv420p,vflip
13812 @end example
13813
13814 @item
13815 Convert the input video to any of the formats not contained in the list:
13816 @example
13817 noformat=yuv420p|yuv444p|yuv410p
13818 @end example
13819 @end itemize
13820
13821 @section noise
13822
13823 Add noise on video input frame.
13824
13825 The filter accepts the following options:
13826
13827 @table @option
13828 @item all_seed
13829 @item c0_seed
13830 @item c1_seed
13831 @item c2_seed
13832 @item c3_seed
13833 Set noise seed for specific pixel component or all pixel components in case
13834 of @var{all_seed}. Default value is @code{123457}.
13835
13836 @item all_strength, alls
13837 @item c0_strength, c0s
13838 @item c1_strength, c1s
13839 @item c2_strength, c2s
13840 @item c3_strength, c3s
13841 Set noise strength for specific pixel component or all pixel components in case
13842 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13843
13844 @item all_flags, allf
13845 @item c0_flags, c0f
13846 @item c1_flags, c1f
13847 @item c2_flags, c2f
13848 @item c3_flags, c3f
13849 Set pixel component flags or set flags for all components if @var{all_flags}.
13850 Available values for component flags are:
13851 @table @samp
13852 @item a
13853 averaged temporal noise (smoother)
13854 @item p
13855 mix random noise with a (semi)regular pattern
13856 @item t
13857 temporal noise (noise pattern changes between frames)
13858 @item u
13859 uniform noise (gaussian otherwise)
13860 @end table
13861 @end table
13862
13863 @subsection Examples
13864
13865 Add temporal and uniform noise to input video:
13866 @example
13867 noise=alls=20:allf=t+u
13868 @end example
13869
13870 @section normalize
13871
13872 Normalize RGB video (aka histogram stretching, contrast stretching).
13873 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13874
13875 For each channel of each frame, the filter computes the input range and maps
13876 it linearly to the user-specified output range. The output range defaults
13877 to the full dynamic range from pure black to pure white.
13878
13879 Temporal smoothing can be used on the input range to reduce flickering (rapid
13880 changes in brightness) caused when small dark or bright objects enter or leave
13881 the scene. This is similar to the auto-exposure (automatic gain control) on a
13882 video camera, and, like a video camera, it may cause a period of over- or
13883 under-exposure of the video.
13884
13885 The R,G,B channels can be normalized independently, which may cause some
13886 color shifting, or linked together as a single channel, which prevents
13887 color shifting. Linked normalization preserves hue. Independent normalization
13888 does not, so it can be used to remove some color casts. Independent and linked
13889 normalization can be combined in any ratio.
13890
13891 The normalize filter accepts the following options:
13892
13893 @table @option
13894 @item blackpt
13895 @item whitept
13896 Colors which define the output range. The minimum input value is mapped to
13897 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13898 The defaults are black and white respectively. Specifying white for
13899 @var{blackpt} and black for @var{whitept} will give color-inverted,
13900 normalized video. Shades of grey can be used to reduce the dynamic range
13901 (contrast). Specifying saturated colors here can create some interesting
13902 effects.
13903
13904 @item smoothing
13905 The number of previous frames to use for temporal smoothing. The input range
13906 of each channel is smoothed using a rolling average over the current frame
13907 and the @var{smoothing} previous frames. The default is 0 (no temporal
13908 smoothing).
13909
13910 @item independence
13911 Controls the ratio of independent (color shifting) channel normalization to
13912 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13913 independent. Defaults to 1.0 (fully independent).
13914
13915 @item strength
13916 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13917 expensive no-op. Defaults to 1.0 (full strength).
13918
13919 @end table
13920
13921 @subsection Commands
13922 This filter supports same @ref{commands} as options, excluding @var{smoothing} option.
13923 The command accepts the same syntax of the corresponding option.
13924
13925 If the specified expression is not valid, it is kept at its current
13926 value.
13927
13928 @subsection Examples
13929
13930 Stretch video contrast to use the full dynamic range, with no temporal
13931 smoothing; may flicker depending on the source content:
13932 @example
13933 normalize=blackpt=black:whitept=white:smoothing=0
13934 @end example
13935
13936 As above, but with 50 frames of temporal smoothing; flicker should be
13937 reduced, depending on the source content:
13938 @example
13939 normalize=blackpt=black:whitept=white:smoothing=50
13940 @end example
13941
13942 As above, but with hue-preserving linked channel normalization:
13943 @example
13944 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13945 @end example
13946
13947 As above, but with half strength:
13948 @example
13949 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13950 @end example
13951
13952 Map the darkest input color to red, the brightest input color to cyan:
13953 @example
13954 normalize=blackpt=red:whitept=cyan
13955 @end example
13956
13957 @section null
13958
13959 Pass the video source unchanged to the output.
13960
13961 @section ocr
13962 Optical Character Recognition
13963
13964 This filter uses Tesseract for optical character recognition. To enable
13965 compilation of this filter, you need to configure FFmpeg with
13966 @code{--enable-libtesseract}.
13967
13968 It accepts the following options:
13969
13970 @table @option
13971 @item datapath
13972 Set datapath to tesseract data. Default is to use whatever was
13973 set at installation.
13974
13975 @item language
13976 Set language, default is "eng".
13977
13978 @item whitelist
13979 Set character whitelist.
13980
13981 @item blacklist
13982 Set character blacklist.
13983 @end table
13984
13985 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13986 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13987
13988 @section ocv
13989
13990 Apply a video transform using libopencv.
13991
13992 To enable this filter, install the libopencv library and headers and
13993 configure FFmpeg with @code{--enable-libopencv}.
13994
13995 It accepts the following parameters:
13996
13997 @table @option
13998
13999 @item filter_name
14000 The name of the libopencv filter to apply.
14001
14002 @item filter_params
14003 The parameters to pass to the libopencv filter. If not specified, the default
14004 values are assumed.
14005
14006 @end table
14007
14008 Refer to the official libopencv documentation for more precise
14009 information:
14010 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
14011
14012 Several libopencv filters are supported; see the following subsections.
14013
14014 @anchor{dilate}
14015 @subsection dilate
14016
14017 Dilate an image by using a specific structuring element.
14018 It corresponds to the libopencv function @code{cvDilate}.
14019
14020 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
14021
14022 @var{struct_el} represents a structuring element, and has the syntax:
14023 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
14024
14025 @var{cols} and @var{rows} represent the number of columns and rows of
14026 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
14027 point, and @var{shape} the shape for the structuring element. @var{shape}
14028 must be "rect", "cross", "ellipse", or "custom".
14029
14030 If the value for @var{shape} is "custom", it must be followed by a
14031 string of the form "=@var{filename}". The file with name
14032 @var{filename} is assumed to represent a binary image, with each
14033 printable character corresponding to a bright pixel. When a custom
14034 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
14035 or columns and rows of the read file are assumed instead.
14036
14037 The default value for @var{struct_el} is "3x3+0x0/rect".
14038
14039 @var{nb_iterations} specifies the number of times the transform is
14040 applied to the image, and defaults to 1.
14041
14042 Some examples:
14043 @example
14044 # Use the default values
14045 ocv=dilate
14046
14047 # Dilate using a structuring element with a 5x5 cross, iterating two times
14048 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
14049
14050 # Read the shape from the file diamond.shape, iterating two times.
14051 # The file diamond.shape may contain a pattern of characters like this
14052 #   *
14053 #  ***
14054 # *****
14055 #  ***
14056 #   *
14057 # The specified columns and rows are ignored
14058 # but the anchor point coordinates are not
14059 ocv=dilate:0x0+2x2/custom=diamond.shape|2
14060 @end example
14061
14062 @subsection erode
14063
14064 Erode an image by using a specific structuring element.
14065 It corresponds to the libopencv function @code{cvErode}.
14066
14067 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
14068 with the same syntax and semantics as the @ref{dilate} filter.
14069
14070 @subsection smooth
14071
14072 Smooth the input video.
14073
14074 The filter takes the following parameters:
14075 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
14076
14077 @var{type} is the type of smooth filter to apply, and must be one of
14078 the following values: "blur", "blur_no_scale", "median", "gaussian",
14079 or "bilateral". The default value is "gaussian".
14080
14081 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
14082 depends on the smooth type. @var{param1} and
14083 @var{param2} accept integer positive values or 0. @var{param3} and
14084 @var{param4} accept floating point values.
14085
14086 The default value for @var{param1} is 3. The default value for the
14087 other parameters is 0.
14088
14089 These parameters correspond to the parameters assigned to the
14090 libopencv function @code{cvSmooth}.
14091
14092 @section oscilloscope
14093
14094 2D Video Oscilloscope.
14095
14096 Useful to measure spatial impulse, step responses, chroma delays, etc.
14097
14098 It accepts the following parameters:
14099
14100 @table @option
14101 @item x
14102 Set scope center x position.
14103
14104 @item y
14105 Set scope center y position.
14106
14107 @item s
14108 Set scope size, relative to frame diagonal.
14109
14110 @item t
14111 Set scope tilt/rotation.
14112
14113 @item o
14114 Set trace opacity.
14115
14116 @item tx
14117 Set trace center x position.
14118
14119 @item ty
14120 Set trace center y position.
14121
14122 @item tw
14123 Set trace width, relative to width of frame.
14124
14125 @item th
14126 Set trace height, relative to height of frame.
14127
14128 @item c
14129 Set which components to trace. By default it traces first three components.
14130
14131 @item g
14132 Draw trace grid. By default is enabled.
14133
14134 @item st
14135 Draw some statistics. By default is enabled.
14136
14137 @item sc
14138 Draw scope. By default is enabled.
14139 @end table
14140
14141 @subsection Commands
14142 This filter supports same @ref{commands} as options.
14143 The command accepts the same syntax of the corresponding option.
14144
14145 If the specified expression is not valid, it is kept at its current
14146 value.
14147
14148 @subsection Examples
14149
14150 @itemize
14151 @item
14152 Inspect full first row of video frame.
14153 @example
14154 oscilloscope=x=0.5:y=0:s=1
14155 @end example
14156
14157 @item
14158 Inspect full last row of video frame.
14159 @example
14160 oscilloscope=x=0.5:y=1:s=1
14161 @end example
14162
14163 @item
14164 Inspect full 5th line of video frame of height 1080.
14165 @example
14166 oscilloscope=x=0.5:y=5/1080:s=1
14167 @end example
14168
14169 @item
14170 Inspect full last column of video frame.
14171 @example
14172 oscilloscope=x=1:y=0.5:s=1:t=1
14173 @end example
14174
14175 @end itemize
14176
14177 @anchor{overlay}
14178 @section overlay
14179
14180 Overlay one video on top of another.
14181
14182 It takes two inputs and has one output. The first input is the "main"
14183 video on which the second input is overlaid.
14184
14185 It accepts the following parameters:
14186
14187 A description of the accepted options follows.
14188
14189 @table @option
14190 @item x
14191 @item y
14192 Set the expression for the x and y coordinates of the overlaid video
14193 on the main video. Default value is "0" for both expressions. In case
14194 the expression is invalid, it is set to a huge value (meaning that the
14195 overlay will not be displayed within the output visible area).
14196
14197 @item eof_action
14198 See @ref{framesync}.
14199
14200 @item eval
14201 Set when the expressions for @option{x}, and @option{y} are evaluated.
14202
14203 It accepts the following values:
14204 @table @samp
14205 @item init
14206 only evaluate expressions once during the filter initialization or
14207 when a command is processed
14208
14209 @item frame
14210 evaluate expressions for each incoming frame
14211 @end table
14212
14213 Default value is @samp{frame}.
14214
14215 @item shortest
14216 See @ref{framesync}.
14217
14218 @item format
14219 Set the format for the output video.
14220
14221 It accepts the following values:
14222 @table @samp
14223 @item yuv420
14224 force YUV420 output
14225
14226 @item yuv422
14227 force YUV422 output
14228
14229 @item yuv444
14230 force YUV444 output
14231
14232 @item rgb
14233 force packed RGB output
14234
14235 @item gbrp
14236 force planar RGB output
14237
14238 @item auto
14239 automatically pick format
14240 @end table
14241
14242 Default value is @samp{yuv420}.
14243
14244 @item repeatlast
14245 See @ref{framesync}.
14246
14247 @item alpha
14248 Set format of alpha of the overlaid video, it can be @var{straight} or
14249 @var{premultiplied}. Default is @var{straight}.
14250 @end table
14251
14252 The @option{x}, and @option{y} expressions can contain the following
14253 parameters.
14254
14255 @table @option
14256 @item main_w, W
14257 @item main_h, H
14258 The main input width and height.
14259
14260 @item overlay_w, w
14261 @item overlay_h, h
14262 The overlay input width and height.
14263
14264 @item x
14265 @item y
14266 The computed values for @var{x} and @var{y}. They are evaluated for
14267 each new frame.
14268
14269 @item hsub
14270 @item vsub
14271 horizontal and vertical chroma subsample values of the output
14272 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
14273 @var{vsub} is 1.
14274
14275 @item n
14276 the number of input frame, starting from 0
14277
14278 @item pos
14279 the position in the file of the input frame, NAN if unknown
14280
14281 @item t
14282 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
14283
14284 @end table
14285
14286 This filter also supports the @ref{framesync} options.
14287
14288 Note that the @var{n}, @var{pos}, @var{t} variables are available only
14289 when evaluation is done @emph{per frame}, and will evaluate to NAN
14290 when @option{eval} is set to @samp{init}.
14291
14292 Be aware that frames are taken from each input video in timestamp
14293 order, hence, if their initial timestamps differ, it is a good idea
14294 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
14295 have them begin in the same zero timestamp, as the example for
14296 the @var{movie} filter does.
14297
14298 You can chain together more overlays but you should test the
14299 efficiency of such approach.
14300
14301 @subsection Commands
14302
14303 This filter supports the following commands:
14304 @table @option
14305 @item x
14306 @item y
14307 Modify the x and y of the overlay input.
14308 The command accepts the same syntax of the corresponding option.
14309
14310 If the specified expression is not valid, it is kept at its current
14311 value.
14312 @end table
14313
14314 @subsection Examples
14315
14316 @itemize
14317 @item
14318 Draw the overlay at 10 pixels from the bottom right corner of the main
14319 video:
14320 @example
14321 overlay=main_w-overlay_w-10:main_h-overlay_h-10
14322 @end example
14323
14324 Using named options the example above becomes:
14325 @example
14326 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
14327 @end example
14328
14329 @item
14330 Insert a transparent PNG logo in the bottom left corner of the input,
14331 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
14332 @example
14333 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
14334 @end example
14335
14336 @item
14337 Insert 2 different transparent PNG logos (second logo on bottom
14338 right corner) using the @command{ffmpeg} tool:
14339 @example
14340 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
14341 @end example
14342
14343 @item
14344 Add a transparent color layer on top of the main video; @code{WxH}
14345 must specify the size of the main input to the overlay filter:
14346 @example
14347 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
14348 @end example
14349
14350 @item
14351 Play an original video and a filtered version (here with the deshake
14352 filter) side by side using the @command{ffplay} tool:
14353 @example
14354 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
14355 @end example
14356
14357 The above command is the same as:
14358 @example
14359 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
14360 @end example
14361
14362 @item
14363 Make a sliding overlay appearing from the left to the right top part of the
14364 screen starting since time 2:
14365 @example
14366 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
14367 @end example
14368
14369 @item
14370 Compose output by putting two input videos side to side:
14371 @example
14372 ffmpeg -i left.avi -i right.avi -filter_complex "
14373 nullsrc=size=200x100 [background];
14374 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
14375 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
14376 [background][left]       overlay=shortest=1       [background+left];
14377 [background+left][right] overlay=shortest=1:x=100 [left+right]
14378 "
14379 @end example
14380
14381 @item
14382 Mask 10-20 seconds of a video by applying the delogo filter to a section
14383 @example
14384 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
14385 -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]'
14386 masked.avi
14387 @end example
14388
14389 @item
14390 Chain several overlays in cascade:
14391 @example
14392 nullsrc=s=200x200 [bg];
14393 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
14394 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
14395 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
14396 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
14397 [in3] null,       [mid2] overlay=100:100 [out0]
14398 @end example
14399
14400 @end itemize
14401
14402 @anchor{overlay_cuda}
14403 @section overlay_cuda
14404
14405 Overlay one video on top of another.
14406
14407 This is the CUDA cariant of the @ref{overlay} filter.
14408 It only accepts CUDA frames. The underlying input pixel formats have to match.
14409
14410 It takes two inputs and has one output. The first input is the "main"
14411 video on which the second input is overlaid.
14412
14413 It accepts the following parameters:
14414
14415 @table @option
14416 @item x
14417 @item y
14418 Set the x and y coordinates of the overlaid video on the main video.
14419 Default value is "0" for both expressions.
14420
14421 @item eof_action
14422 See @ref{framesync}.
14423
14424 @item shortest
14425 See @ref{framesync}.
14426
14427 @item repeatlast
14428 See @ref{framesync}.
14429
14430 @end table
14431
14432 This filter also supports the @ref{framesync} options.
14433
14434 @section owdenoise
14435
14436 Apply Overcomplete Wavelet denoiser.
14437
14438 The filter accepts the following options:
14439
14440 @table @option
14441 @item depth
14442 Set depth.
14443
14444 Larger depth values will denoise lower frequency components more, but
14445 slow down filtering.
14446
14447 Must be an int in the range 8-16, default is @code{8}.
14448
14449 @item luma_strength, ls
14450 Set luma strength.
14451
14452 Must be a double value in the range 0-1000, default is @code{1.0}.
14453
14454 @item chroma_strength, cs
14455 Set chroma strength.
14456
14457 Must be a double value in the range 0-1000, default is @code{1.0}.
14458 @end table
14459
14460 @anchor{pad}
14461 @section pad
14462
14463 Add paddings to the input image, and place the original input at the
14464 provided @var{x}, @var{y} coordinates.
14465
14466 It accepts the following parameters:
14467
14468 @table @option
14469 @item width, w
14470 @item height, h
14471 Specify an expression for the size of the output image with the
14472 paddings added. If the value for @var{width} or @var{height} is 0, the
14473 corresponding input size is used for the output.
14474
14475 The @var{width} expression can reference the value set by the
14476 @var{height} expression, and vice versa.
14477
14478 The default value of @var{width} and @var{height} is 0.
14479
14480 @item x
14481 @item y
14482 Specify the offsets to place the input image at within the padded area,
14483 with respect to the top/left border of the output image.
14484
14485 The @var{x} expression can reference the value set by the @var{y}
14486 expression, and vice versa.
14487
14488 The default value of @var{x} and @var{y} is 0.
14489
14490 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
14491 so the input image is centered on the padded area.
14492
14493 @item color
14494 Specify the color of the padded area. For the syntax of this option,
14495 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
14496 manual,ffmpeg-utils}.
14497
14498 The default value of @var{color} is "black".
14499
14500 @item eval
14501 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
14502
14503 It accepts the following values:
14504
14505 @table @samp
14506 @item init
14507 Only evaluate expressions once during the filter initialization or when
14508 a command is processed.
14509
14510 @item frame
14511 Evaluate expressions for each incoming frame.
14512
14513 @end table
14514
14515 Default value is @samp{init}.
14516
14517 @item aspect
14518 Pad to aspect instead to a resolution.
14519
14520 @end table
14521
14522 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
14523 options are expressions containing the following constants:
14524
14525 @table @option
14526 @item in_w
14527 @item in_h
14528 The input video width and height.
14529
14530 @item iw
14531 @item ih
14532 These are the same as @var{in_w} and @var{in_h}.
14533
14534 @item out_w
14535 @item out_h
14536 The output width and height (the size of the padded area), as
14537 specified by the @var{width} and @var{height} expressions.
14538
14539 @item ow
14540 @item oh
14541 These are the same as @var{out_w} and @var{out_h}.
14542
14543 @item x
14544 @item y
14545 The x and y offsets as specified by the @var{x} and @var{y}
14546 expressions, or NAN if not yet specified.
14547
14548 @item a
14549 same as @var{iw} / @var{ih}
14550
14551 @item sar
14552 input sample aspect ratio
14553
14554 @item dar
14555 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
14556
14557 @item hsub
14558 @item vsub
14559 The horizontal and vertical chroma subsample values. For example for the
14560 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14561 @end table
14562
14563 @subsection Examples
14564
14565 @itemize
14566 @item
14567 Add paddings with the color "violet" to the input video. The output video
14568 size is 640x480, and the top-left corner of the input video is placed at
14569 column 0, row 40
14570 @example
14571 pad=640:480:0:40:violet
14572 @end example
14573
14574 The example above is equivalent to the following command:
14575 @example
14576 pad=width=640:height=480:x=0:y=40:color=violet
14577 @end example
14578
14579 @item
14580 Pad the input to get an output with dimensions increased by 3/2,
14581 and put the input video at the center of the padded area:
14582 @example
14583 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
14584 @end example
14585
14586 @item
14587 Pad the input to get a squared output with size equal to the maximum
14588 value between the input width and height, and put the input video at
14589 the center of the padded area:
14590 @example
14591 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
14592 @end example
14593
14594 @item
14595 Pad the input to get a final w/h ratio of 16:9:
14596 @example
14597 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
14598 @end example
14599
14600 @item
14601 In case of anamorphic video, in order to set the output display aspect
14602 correctly, it is necessary to use @var{sar} in the expression,
14603 according to the relation:
14604 @example
14605 (ih * X / ih) * sar = output_dar
14606 X = output_dar / sar
14607 @end example
14608
14609 Thus the previous example needs to be modified to:
14610 @example
14611 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
14612 @end example
14613
14614 @item
14615 Double the output size and put the input video in the bottom-right
14616 corner of the output padded area:
14617 @example
14618 pad="2*iw:2*ih:ow-iw:oh-ih"
14619 @end example
14620 @end itemize
14621
14622 @anchor{palettegen}
14623 @section palettegen
14624
14625 Generate one palette for a whole video stream.
14626
14627 It accepts the following options:
14628
14629 @table @option
14630 @item max_colors
14631 Set the maximum number of colors to quantize in the palette.
14632 Note: the palette will still contain 256 colors; the unused palette entries
14633 will be black.
14634
14635 @item reserve_transparent
14636 Create a palette of 255 colors maximum and reserve the last one for
14637 transparency. Reserving the transparency color is useful for GIF optimization.
14638 If not set, the maximum of colors in the palette will be 256. You probably want
14639 to disable this option for a standalone image.
14640 Set by default.
14641
14642 @item transparency_color
14643 Set the color that will be used as background for transparency.
14644
14645 @item stats_mode
14646 Set statistics mode.
14647
14648 It accepts the following values:
14649 @table @samp
14650 @item full
14651 Compute full frame histograms.
14652 @item diff
14653 Compute histograms only for the part that differs from previous frame. This
14654 might be relevant to give more importance to the moving part of your input if
14655 the background is static.
14656 @item single
14657 Compute new histogram for each frame.
14658 @end table
14659
14660 Default value is @var{full}.
14661 @end table
14662
14663 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
14664 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
14665 color quantization of the palette. This information is also visible at
14666 @var{info} logging level.
14667
14668 @subsection Examples
14669
14670 @itemize
14671 @item
14672 Generate a representative palette of a given video using @command{ffmpeg}:
14673 @example
14674 ffmpeg -i input.mkv -vf palettegen palette.png
14675 @end example
14676 @end itemize
14677
14678 @section paletteuse
14679
14680 Use a palette to downsample an input video stream.
14681
14682 The filter takes two inputs: one video stream and a palette. The palette must
14683 be a 256 pixels image.
14684
14685 It accepts the following options:
14686
14687 @table @option
14688 @item dither
14689 Select dithering mode. Available algorithms are:
14690 @table @samp
14691 @item bayer
14692 Ordered 8x8 bayer dithering (deterministic)
14693 @item heckbert
14694 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
14695 Note: this dithering is sometimes considered "wrong" and is included as a
14696 reference.
14697 @item floyd_steinberg
14698 Floyd and Steingberg dithering (error diffusion)
14699 @item sierra2
14700 Frankie Sierra dithering v2 (error diffusion)
14701 @item sierra2_4a
14702 Frankie Sierra dithering v2 "Lite" (error diffusion)
14703 @end table
14704
14705 Default is @var{sierra2_4a}.
14706
14707 @item bayer_scale
14708 When @var{bayer} dithering is selected, this option defines the scale of the
14709 pattern (how much the crosshatch pattern is visible). A low value means more
14710 visible pattern for less banding, and higher value means less visible pattern
14711 at the cost of more banding.
14712
14713 The option must be an integer value in the range [0,5]. Default is @var{2}.
14714
14715 @item diff_mode
14716 If set, define the zone to process
14717
14718 @table @samp
14719 @item rectangle
14720 Only the changing rectangle will be reprocessed. This is similar to GIF
14721 cropping/offsetting compression mechanism. This option can be useful for speed
14722 if only a part of the image is changing, and has use cases such as limiting the
14723 scope of the error diffusal @option{dither} to the rectangle that bounds the
14724 moving scene (it leads to more deterministic output if the scene doesn't change
14725 much, and as a result less moving noise and better GIF compression).
14726 @end table
14727
14728 Default is @var{none}.
14729
14730 @item new
14731 Take new palette for each output frame.
14732
14733 @item alpha_threshold
14734 Sets the alpha threshold for transparency. Alpha values above this threshold
14735 will be treated as completely opaque, and values below this threshold will be
14736 treated as completely transparent.
14737
14738 The option must be an integer value in the range [0,255]. Default is @var{128}.
14739 @end table
14740
14741 @subsection Examples
14742
14743 @itemize
14744 @item
14745 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
14746 using @command{ffmpeg}:
14747 @example
14748 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
14749 @end example
14750 @end itemize
14751
14752 @section perspective
14753
14754 Correct perspective of video not recorded perpendicular to the screen.
14755
14756 A description of the accepted parameters follows.
14757
14758 @table @option
14759 @item x0
14760 @item y0
14761 @item x1
14762 @item y1
14763 @item x2
14764 @item y2
14765 @item x3
14766 @item y3
14767 Set coordinates expression for top left, top right, bottom left and bottom right corners.
14768 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
14769 If the @code{sense} option is set to @code{source}, then the specified points will be sent
14770 to the corners of the destination. If the @code{sense} option is set to @code{destination},
14771 then the corners of the source will be sent to the specified coordinates.
14772
14773 The expressions can use the following variables:
14774
14775 @table @option
14776 @item W
14777 @item H
14778 the width and height of video frame.
14779 @item in
14780 Input frame count.
14781 @item on
14782 Output frame count.
14783 @end table
14784
14785 @item interpolation
14786 Set interpolation for perspective correction.
14787
14788 It accepts the following values:
14789 @table @samp
14790 @item linear
14791 @item cubic
14792 @end table
14793
14794 Default value is @samp{linear}.
14795
14796 @item sense
14797 Set interpretation of coordinate options.
14798
14799 It accepts the following values:
14800 @table @samp
14801 @item 0, source
14802
14803 Send point in the source specified by the given coordinates to
14804 the corners of the destination.
14805
14806 @item 1, destination
14807
14808 Send the corners of the source to the point in the destination specified
14809 by the given coordinates.
14810
14811 Default value is @samp{source}.
14812 @end table
14813
14814 @item eval
14815 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
14816
14817 It accepts the following values:
14818 @table @samp
14819 @item init
14820 only evaluate expressions once during the filter initialization or
14821 when a command is processed
14822
14823 @item frame
14824 evaluate expressions for each incoming frame
14825 @end table
14826
14827 Default value is @samp{init}.
14828 @end table
14829
14830 @section phase
14831
14832 Delay interlaced video by one field time so that the field order changes.
14833
14834 The intended use is to fix PAL movies that have been captured with the
14835 opposite field order to the film-to-video transfer.
14836
14837 A description of the accepted parameters follows.
14838
14839 @table @option
14840 @item mode
14841 Set phase mode.
14842
14843 It accepts the following values:
14844 @table @samp
14845 @item t
14846 Capture field order top-first, transfer bottom-first.
14847 Filter will delay the bottom field.
14848
14849 @item b
14850 Capture field order bottom-first, transfer top-first.
14851 Filter will delay the top field.
14852
14853 @item p
14854 Capture and transfer with the same field order. This mode only exists
14855 for the documentation of the other options to refer to, but if you
14856 actually select it, the filter will faithfully do nothing.
14857
14858 @item a
14859 Capture field order determined automatically by field flags, transfer
14860 opposite.
14861 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
14862 basis using field flags. If no field information is available,
14863 then this works just like @samp{u}.
14864
14865 @item u
14866 Capture unknown or varying, transfer opposite.
14867 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
14868 analyzing the images and selecting the alternative that produces best
14869 match between the fields.
14870
14871 @item T
14872 Capture top-first, transfer unknown or varying.
14873 Filter selects among @samp{t} and @samp{p} using image analysis.
14874
14875 @item B
14876 Capture bottom-first, transfer unknown or varying.
14877 Filter selects among @samp{b} and @samp{p} using image analysis.
14878
14879 @item A
14880 Capture determined by field flags, transfer unknown or varying.
14881 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14882 image analysis. If no field information is available, then this works just
14883 like @samp{U}. This is the default mode.
14884
14885 @item U
14886 Both capture and transfer unknown or varying.
14887 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14888 @end table
14889 @end table
14890
14891 @section photosensitivity
14892 Reduce various flashes in video, so to help users with epilepsy.
14893
14894 It accepts the following options:
14895 @table @option
14896 @item frames, f
14897 Set how many frames to use when filtering. Default is 30.
14898
14899 @item threshold, t
14900 Set detection threshold factor. Default is 1.
14901 Lower is stricter.
14902
14903 @item skip
14904 Set how many pixels to skip when sampling frames. Default is 1.
14905 Allowed range is from 1 to 1024.
14906
14907 @item bypass
14908 Leave frames unchanged. Default is disabled.
14909 @end table
14910
14911 @section pixdesctest
14912
14913 Pixel format descriptor test filter, mainly useful for internal
14914 testing. The output video should be equal to the input video.
14915
14916 For example:
14917 @example
14918 format=monow, pixdesctest
14919 @end example
14920
14921 can be used to test the monowhite pixel format descriptor definition.
14922
14923 @section pixscope
14924
14925 Display sample values of color channels. Mainly useful for checking color
14926 and levels. Minimum supported resolution is 640x480.
14927
14928 The filters accept the following options:
14929
14930 @table @option
14931 @item x
14932 Set scope X position, relative offset on X axis.
14933
14934 @item y
14935 Set scope Y position, relative offset on Y axis.
14936
14937 @item w
14938 Set scope width.
14939
14940 @item h
14941 Set scope height.
14942
14943 @item o
14944 Set window opacity. This window also holds statistics about pixel area.
14945
14946 @item wx
14947 Set window X position, relative offset on X axis.
14948
14949 @item wy
14950 Set window Y position, relative offset on Y axis.
14951 @end table
14952
14953 @section pp
14954
14955 Enable the specified chain of postprocessing subfilters using libpostproc. This
14956 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14957 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14958 Each subfilter and some options have a short and a long name that can be used
14959 interchangeably, i.e. dr/dering are the same.
14960
14961 The filters accept the following options:
14962
14963 @table @option
14964 @item subfilters
14965 Set postprocessing subfilters string.
14966 @end table
14967
14968 All subfilters share common options to determine their scope:
14969
14970 @table @option
14971 @item a/autoq
14972 Honor the quality commands for this subfilter.
14973
14974 @item c/chrom
14975 Do chrominance filtering, too (default).
14976
14977 @item y/nochrom
14978 Do luminance filtering only (no chrominance).
14979
14980 @item n/noluma
14981 Do chrominance filtering only (no luminance).
14982 @end table
14983
14984 These options can be appended after the subfilter name, separated by a '|'.
14985
14986 Available subfilters are:
14987
14988 @table @option
14989 @item hb/hdeblock[|difference[|flatness]]
14990 Horizontal deblocking filter
14991 @table @option
14992 @item difference
14993 Difference factor where higher values mean more deblocking (default: @code{32}).
14994 @item flatness
14995 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14996 @end table
14997
14998 @item vb/vdeblock[|difference[|flatness]]
14999 Vertical deblocking filter
15000 @table @option
15001 @item difference
15002 Difference factor where higher values mean more deblocking (default: @code{32}).
15003 @item flatness
15004 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15005 @end table
15006
15007 @item ha/hadeblock[|difference[|flatness]]
15008 Accurate horizontal deblocking filter
15009 @table @option
15010 @item difference
15011 Difference factor where higher values mean more deblocking (default: @code{32}).
15012 @item flatness
15013 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15014 @end table
15015
15016 @item va/vadeblock[|difference[|flatness]]
15017 Accurate vertical deblocking filter
15018 @table @option
15019 @item difference
15020 Difference factor where higher values mean more deblocking (default: @code{32}).
15021 @item flatness
15022 Flatness threshold where lower values mean more deblocking (default: @code{39}).
15023 @end table
15024 @end table
15025
15026 The horizontal and vertical deblocking filters share the difference and
15027 flatness values so you cannot set different horizontal and vertical
15028 thresholds.
15029
15030 @table @option
15031 @item h1/x1hdeblock
15032 Experimental horizontal deblocking filter
15033
15034 @item v1/x1vdeblock
15035 Experimental vertical deblocking filter
15036
15037 @item dr/dering
15038 Deringing filter
15039
15040 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
15041 @table @option
15042 @item threshold1
15043 larger -> stronger filtering
15044 @item threshold2
15045 larger -> stronger filtering
15046 @item threshold3
15047 larger -> stronger filtering
15048 @end table
15049
15050 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
15051 @table @option
15052 @item f/fullyrange
15053 Stretch luminance to @code{0-255}.
15054 @end table
15055
15056 @item lb/linblenddeint
15057 Linear blend deinterlacing filter that deinterlaces the given block by
15058 filtering all lines with a @code{(1 2 1)} filter.
15059
15060 @item li/linipoldeint
15061 Linear interpolating deinterlacing filter that deinterlaces the given block by
15062 linearly interpolating every second line.
15063
15064 @item ci/cubicipoldeint
15065 Cubic interpolating deinterlacing filter deinterlaces the given block by
15066 cubically interpolating every second line.
15067
15068 @item md/mediandeint
15069 Median deinterlacing filter that deinterlaces the given block by applying a
15070 median filter to every second line.
15071
15072 @item fd/ffmpegdeint
15073 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
15074 second line with a @code{(-1 4 2 4 -1)} filter.
15075
15076 @item l5/lowpass5
15077 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
15078 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
15079
15080 @item fq/forceQuant[|quantizer]
15081 Overrides the quantizer table from the input with the constant quantizer you
15082 specify.
15083 @table @option
15084 @item quantizer
15085 Quantizer to use
15086 @end table
15087
15088 @item de/default
15089 Default pp filter combination (@code{hb|a,vb|a,dr|a})
15090
15091 @item fa/fast
15092 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
15093
15094 @item ac
15095 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
15096 @end table
15097
15098 @subsection Examples
15099
15100 @itemize
15101 @item
15102 Apply horizontal and vertical deblocking, deringing and automatic
15103 brightness/contrast:
15104 @example
15105 pp=hb/vb/dr/al
15106 @end example
15107
15108 @item
15109 Apply default filters without brightness/contrast correction:
15110 @example
15111 pp=de/-al
15112 @end example
15113
15114 @item
15115 Apply default filters and temporal denoiser:
15116 @example
15117 pp=default/tmpnoise|1|2|3
15118 @end example
15119
15120 @item
15121 Apply deblocking on luminance only, and switch vertical deblocking on or off
15122 automatically depending on available CPU time:
15123 @example
15124 pp=hb|y/vb|a
15125 @end example
15126 @end itemize
15127
15128 @section pp7
15129 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
15130 similar to spp = 6 with 7 point DCT, where only the center sample is
15131 used after IDCT.
15132
15133 The filter accepts the following options:
15134
15135 @table @option
15136 @item qp
15137 Force a constant quantization parameter. It accepts an integer in range
15138 0 to 63. If not set, the filter will use the QP from the video stream
15139 (if available).
15140
15141 @item mode
15142 Set thresholding mode. Available modes are:
15143
15144 @table @samp
15145 @item hard
15146 Set hard thresholding.
15147 @item soft
15148 Set soft thresholding (better de-ringing effect, but likely blurrier).
15149 @item medium
15150 Set medium thresholding (good results, default).
15151 @end table
15152 @end table
15153
15154 @section premultiply
15155 Apply alpha premultiply effect to input video stream using first plane
15156 of second stream as alpha.
15157
15158 Both streams must have same dimensions and same pixel format.
15159
15160 The filter accepts the following option:
15161
15162 @table @option
15163 @item planes
15164 Set which planes will be processed, unprocessed planes will be copied.
15165 By default value 0xf, all planes will be processed.
15166
15167 @item inplace
15168 Do not require 2nd input for processing, instead use alpha plane from input stream.
15169 @end table
15170
15171 @section prewitt
15172 Apply prewitt operator to input video stream.
15173
15174 The filter accepts the following option:
15175
15176 @table @option
15177 @item planes
15178 Set which planes will be processed, unprocessed planes will be copied.
15179 By default value 0xf, all planes will be processed.
15180
15181 @item scale
15182 Set value which will be multiplied with filtered result.
15183
15184 @item delta
15185 Set value which will be added to filtered result.
15186 @end table
15187
15188 @section pseudocolor
15189
15190 Alter frame colors in video with pseudocolors.
15191
15192 This filter accepts the following options:
15193
15194 @table @option
15195 @item c0
15196 set pixel first component expression
15197
15198 @item c1
15199 set pixel second component expression
15200
15201 @item c2
15202 set pixel third component expression
15203
15204 @item c3
15205 set pixel fourth component expression, corresponds to the alpha component
15206
15207 @item i
15208 set component to use as base for altering colors
15209 @end table
15210
15211 Each of them specifies the expression to use for computing the lookup table for
15212 the corresponding pixel component values.
15213
15214 The expressions can contain the following constants and functions:
15215
15216 @table @option
15217 @item w
15218 @item h
15219 The input width and height.
15220
15221 @item val
15222 The input value for the pixel component.
15223
15224 @item ymin, umin, vmin, amin
15225 The minimum allowed component value.
15226
15227 @item ymax, umax, vmax, amax
15228 The maximum allowed component value.
15229 @end table
15230
15231 All expressions default to "val".
15232
15233 @subsection Examples
15234
15235 @itemize
15236 @item
15237 Change too high luma values to gradient:
15238 @example
15239 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'"
15240 @end example
15241 @end itemize
15242
15243 @section psnr
15244
15245 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
15246 Ratio) between two input videos.
15247
15248 This filter takes in input two input videos, the first input is
15249 considered the "main" source and is passed unchanged to the
15250 output. The second input is used as a "reference" video for computing
15251 the PSNR.
15252
15253 Both video inputs must have the same resolution and pixel format for
15254 this filter to work correctly. Also it assumes that both inputs
15255 have the same number of frames, which are compared one by one.
15256
15257 The obtained average PSNR is printed through the logging system.
15258
15259 The filter stores the accumulated MSE (mean squared error) of each
15260 frame, and at the end of the processing it is averaged across all frames
15261 equally, and the following formula is applied to obtain the PSNR:
15262
15263 @example
15264 PSNR = 10*log10(MAX^2/MSE)
15265 @end example
15266
15267 Where MAX is the average of the maximum values of each component of the
15268 image.
15269
15270 The description of the accepted parameters follows.
15271
15272 @table @option
15273 @item stats_file, f
15274 If specified the filter will use the named file to save the PSNR of
15275 each individual frame. When filename equals "-" the data is sent to
15276 standard output.
15277
15278 @item stats_version
15279 Specifies which version of the stats file format to use. Details of
15280 each format are written below.
15281 Default value is 1.
15282
15283 @item stats_add_max
15284 Determines whether the max value is output to the stats log.
15285 Default value is 0.
15286 Requires stats_version >= 2. If this is set and stats_version < 2,
15287 the filter will return an error.
15288 @end table
15289
15290 This filter also supports the @ref{framesync} options.
15291
15292 The file printed if @var{stats_file} is selected, contains a sequence of
15293 key/value pairs of the form @var{key}:@var{value} for each compared
15294 couple of frames.
15295
15296 If a @var{stats_version} greater than 1 is specified, a header line precedes
15297 the list of per-frame-pair stats, with key value pairs following the frame
15298 format with the following parameters:
15299
15300 @table @option
15301 @item psnr_log_version
15302 The version of the log file format. Will match @var{stats_version}.
15303
15304 @item fields
15305 A comma separated list of the per-frame-pair parameters included in
15306 the log.
15307 @end table
15308
15309 A description of each shown per-frame-pair parameter follows:
15310
15311 @table @option
15312 @item n
15313 sequential number of the input frame, starting from 1
15314
15315 @item mse_avg
15316 Mean Square Error pixel-by-pixel average difference of the compared
15317 frames, averaged over all the image components.
15318
15319 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
15320 Mean Square Error pixel-by-pixel average difference of the compared
15321 frames for the component specified by the suffix.
15322
15323 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
15324 Peak Signal to Noise ratio of the compared frames for the component
15325 specified by the suffix.
15326
15327 @item max_avg, max_y, max_u, max_v
15328 Maximum allowed value for each channel, and average over all
15329 channels.
15330 @end table
15331
15332 @subsection Examples
15333 @itemize
15334 @item
15335 For example:
15336 @example
15337 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
15338 [main][ref] psnr="stats_file=stats.log" [out]
15339 @end example
15340
15341 On this example the input file being processed is compared with the
15342 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
15343 is stored in @file{stats.log}.
15344
15345 @item
15346 Another example with different containers:
15347 @example
15348 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 -
15349 @end example
15350 @end itemize
15351
15352 @anchor{pullup}
15353 @section pullup
15354
15355 Pulldown reversal (inverse telecine) filter, capable of handling mixed
15356 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
15357 content.
15358
15359 The pullup filter is designed to take advantage of future context in making
15360 its decisions. This filter is stateless in the sense that it does not lock
15361 onto a pattern to follow, but it instead looks forward to the following
15362 fields in order to identify matches and rebuild progressive frames.
15363
15364 To produce content with an even framerate, insert the fps filter after
15365 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
15366 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
15367
15368 The filter accepts the following options:
15369
15370 @table @option
15371 @item jl
15372 @item jr
15373 @item jt
15374 @item jb
15375 These options set the amount of "junk" to ignore at the left, right, top, and
15376 bottom of the image, respectively. Left and right are in units of 8 pixels,
15377 while top and bottom are in units of 2 lines.
15378 The default is 8 pixels on each side.
15379
15380 @item sb
15381 Set the strict breaks. Setting this option to 1 will reduce the chances of
15382 filter generating an occasional mismatched frame, but it may also cause an
15383 excessive number of frames to be dropped during high motion sequences.
15384 Conversely, setting it to -1 will make filter match fields more easily.
15385 This may help processing of video where there is slight blurring between
15386 the fields, but may also cause there to be interlaced frames in the output.
15387 Default value is @code{0}.
15388
15389 @item mp
15390 Set the metric plane to use. It accepts the following values:
15391 @table @samp
15392 @item l
15393 Use luma plane.
15394
15395 @item u
15396 Use chroma blue plane.
15397
15398 @item v
15399 Use chroma red plane.
15400 @end table
15401
15402 This option may be set to use chroma plane instead of the default luma plane
15403 for doing filter's computations. This may improve accuracy on very clean
15404 source material, but more likely will decrease accuracy, especially if there
15405 is chroma noise (rainbow effect) or any grayscale video.
15406 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
15407 load and make pullup usable in realtime on slow machines.
15408 @end table
15409
15410 For best results (without duplicated frames in the output file) it is
15411 necessary to change the output frame rate. For example, to inverse
15412 telecine NTSC input:
15413 @example
15414 ffmpeg -i input -vf pullup -r 24000/1001 ...
15415 @end example
15416
15417 @section qp
15418
15419 Change video quantization parameters (QP).
15420
15421 The filter accepts the following option:
15422
15423 @table @option
15424 @item qp
15425 Set expression for quantization parameter.
15426 @end table
15427
15428 The expression is evaluated through the eval API and can contain, among others,
15429 the following constants:
15430
15431 @table @var
15432 @item known
15433 1 if index is not 129, 0 otherwise.
15434
15435 @item qp
15436 Sequential index starting from -129 to 128.
15437 @end table
15438
15439 @subsection Examples
15440
15441 @itemize
15442 @item
15443 Some equation like:
15444 @example
15445 qp=2+2*sin(PI*qp)
15446 @end example
15447 @end itemize
15448
15449 @section random
15450
15451 Flush video frames from internal cache of frames into a random order.
15452 No frame is discarded.
15453 Inspired by @ref{frei0r} nervous filter.
15454
15455 @table @option
15456 @item frames
15457 Set size in number of frames of internal cache, in range from @code{2} to
15458 @code{512}. Default is @code{30}.
15459
15460 @item seed
15461 Set seed for random number generator, must be an integer included between
15462 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
15463 less than @code{0}, the filter will try to use a good random seed on a
15464 best effort basis.
15465 @end table
15466
15467 @section readeia608
15468
15469 Read closed captioning (EIA-608) information from the top lines of a video frame.
15470
15471 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
15472 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
15473 with EIA-608 data (starting from 0). A description of each metadata value follows:
15474
15475 @table @option
15476 @item lavfi.readeia608.X.cc
15477 The two bytes stored as EIA-608 data (printed in hexadecimal).
15478
15479 @item lavfi.readeia608.X.line
15480 The number of the line on which the EIA-608 data was identified and read.
15481 @end table
15482
15483 This filter accepts the following options:
15484
15485 @table @option
15486 @item scan_min
15487 Set the line to start scanning for EIA-608 data. Default is @code{0}.
15488
15489 @item scan_max
15490 Set the line to end scanning for EIA-608 data. Default is @code{29}.
15491
15492 @item spw
15493 Set the ratio of width reserved for sync code detection.
15494 Default is @code{0.27}. Allowed range is @code{[0.1 - 0.7]}.
15495
15496 @item chp
15497 Enable checking the parity bit. In the event of a parity error, the filter will output
15498 @code{0x00} for that character. Default is false.
15499
15500 @item lp
15501 Lowpass lines prior to further processing. Default is enabled.
15502 @end table
15503
15504 @subsection Examples
15505
15506 @itemize
15507 @item
15508 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
15509 @example
15510 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
15511 @end example
15512 @end itemize
15513
15514 @section readvitc
15515
15516 Read vertical interval timecode (VITC) information from the top lines of a
15517 video frame.
15518
15519 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
15520 timecode value, if a valid timecode has been detected. Further metadata key
15521 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
15522 timecode data has been found or not.
15523
15524 This filter accepts the following options:
15525
15526 @table @option
15527 @item scan_max
15528 Set the maximum number of lines to scan for VITC data. If the value is set to
15529 @code{-1} the full video frame is scanned. Default is @code{45}.
15530
15531 @item thr_b
15532 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
15533 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
15534
15535 @item thr_w
15536 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
15537 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
15538 @end table
15539
15540 @subsection Examples
15541
15542 @itemize
15543 @item
15544 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
15545 draw @code{--:--:--:--} as a placeholder:
15546 @example
15547 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
15548 @end example
15549 @end itemize
15550
15551 @section remap
15552
15553 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
15554
15555 Destination pixel at position (X, Y) will be picked from source (x, y) position
15556 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
15557 value for pixel will be used for destination pixel.
15558
15559 Xmap and Ymap input video streams must be of same dimensions. Output video stream
15560 will have Xmap/Ymap video stream dimensions.
15561 Xmap and Ymap input video streams are 16bit depth, single channel.
15562
15563 @table @option
15564 @item format
15565 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
15566 Default is @code{color}.
15567
15568 @item fill
15569 Specify the color of the unmapped pixels. For the syntax of this option,
15570 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
15571 manual,ffmpeg-utils}. Default color is @code{black}.
15572 @end table
15573
15574 @section removegrain
15575
15576 The removegrain filter is a spatial denoiser for progressive video.
15577
15578 @table @option
15579 @item m0
15580 Set mode for the first plane.
15581
15582 @item m1
15583 Set mode for the second plane.
15584
15585 @item m2
15586 Set mode for the third plane.
15587
15588 @item m3
15589 Set mode for the fourth plane.
15590 @end table
15591
15592 Range of mode is from 0 to 24. Description of each mode follows:
15593
15594 @table @var
15595 @item 0
15596 Leave input plane unchanged. Default.
15597
15598 @item 1
15599 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
15600
15601 @item 2
15602 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
15603
15604 @item 3
15605 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
15606
15607 @item 4
15608 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
15609 This is equivalent to a median filter.
15610
15611 @item 5
15612 Line-sensitive clipping giving the minimal change.
15613
15614 @item 6
15615 Line-sensitive clipping, intermediate.
15616
15617 @item 7
15618 Line-sensitive clipping, intermediate.
15619
15620 @item 8
15621 Line-sensitive clipping, intermediate.
15622
15623 @item 9
15624 Line-sensitive clipping on a line where the neighbours pixels are the closest.
15625
15626 @item 10
15627 Replaces the target pixel with the closest neighbour.
15628
15629 @item 11
15630 [1 2 1] horizontal and vertical kernel blur.
15631
15632 @item 12
15633 Same as mode 11.
15634
15635 @item 13
15636 Bob mode, interpolates top field from the line where the neighbours
15637 pixels are the closest.
15638
15639 @item 14
15640 Bob mode, interpolates bottom field from the line where the neighbours
15641 pixels are the closest.
15642
15643 @item 15
15644 Bob mode, interpolates top field. Same as 13 but with a more complicated
15645 interpolation formula.
15646
15647 @item 16
15648 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
15649 interpolation formula.
15650
15651 @item 17
15652 Clips the pixel with the minimum and maximum of respectively the maximum and
15653 minimum of each pair of opposite neighbour pixels.
15654
15655 @item 18
15656 Line-sensitive clipping using opposite neighbours whose greatest distance from
15657 the current pixel is minimal.
15658
15659 @item 19
15660 Replaces the pixel with the average of its 8 neighbours.
15661
15662 @item 20
15663 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
15664
15665 @item 21
15666 Clips pixels using the averages of opposite neighbour.
15667
15668 @item 22
15669 Same as mode 21 but simpler and faster.
15670
15671 @item 23
15672 Small edge and halo removal, but reputed useless.
15673
15674 @item 24
15675 Similar as 23.
15676 @end table
15677
15678 @section removelogo
15679
15680 Suppress a TV station logo, using an image file to determine which
15681 pixels comprise the logo. It works by filling in the pixels that
15682 comprise the logo with neighboring pixels.
15683
15684 The filter accepts the following options:
15685
15686 @table @option
15687 @item filename, f
15688 Set the filter bitmap file, which can be any image format supported by
15689 libavformat. The width and height of the image file must match those of the
15690 video stream being processed.
15691 @end table
15692
15693 Pixels in the provided bitmap image with a value of zero are not
15694 considered part of the logo, non-zero pixels are considered part of
15695 the logo. If you use white (255) for the logo and black (0) for the
15696 rest, you will be safe. For making the filter bitmap, it is
15697 recommended to take a screen capture of a black frame with the logo
15698 visible, and then using a threshold filter followed by the erode
15699 filter once or twice.
15700
15701 If needed, little splotches can be fixed manually. Remember that if
15702 logo pixels are not covered, the filter quality will be much
15703 reduced. Marking too many pixels as part of the logo does not hurt as
15704 much, but it will increase the amount of blurring needed to cover over
15705 the image and will destroy more information than necessary, and extra
15706 pixels will slow things down on a large logo.
15707
15708 @section repeatfields
15709
15710 This filter uses the repeat_field flag from the Video ES headers and hard repeats
15711 fields based on its value.
15712
15713 @section reverse
15714
15715 Reverse a video clip.
15716
15717 Warning: This filter requires memory to buffer the entire clip, so trimming
15718 is suggested.
15719
15720 @subsection Examples
15721
15722 @itemize
15723 @item
15724 Take the first 5 seconds of a clip, and reverse it.
15725 @example
15726 trim=end=5,reverse
15727 @end example
15728 @end itemize
15729
15730 @section rgbashift
15731 Shift R/G/B/A pixels horizontally and/or vertically.
15732
15733 The filter accepts the following options:
15734 @table @option
15735 @item rh
15736 Set amount to shift red horizontally.
15737 @item rv
15738 Set amount to shift red vertically.
15739 @item gh
15740 Set amount to shift green horizontally.
15741 @item gv
15742 Set amount to shift green vertically.
15743 @item bh
15744 Set amount to shift blue horizontally.
15745 @item bv
15746 Set amount to shift blue vertically.
15747 @item ah
15748 Set amount to shift alpha horizontally.
15749 @item av
15750 Set amount to shift alpha vertically.
15751 @item edge
15752 Set edge mode, can be @var{smear}, default, or @var{warp}.
15753 @end table
15754
15755 @subsection Commands
15756
15757 This filter supports the all above options as @ref{commands}.
15758
15759 @section roberts
15760 Apply roberts cross operator to input video stream.
15761
15762 The filter accepts the following option:
15763
15764 @table @option
15765 @item planes
15766 Set which planes will be processed, unprocessed planes will be copied.
15767 By default value 0xf, all planes will be processed.
15768
15769 @item scale
15770 Set value which will be multiplied with filtered result.
15771
15772 @item delta
15773 Set value which will be added to filtered result.
15774 @end table
15775
15776 @section rotate
15777
15778 Rotate video by an arbitrary angle expressed in radians.
15779
15780 The filter accepts the following options:
15781
15782 A description of the optional parameters follows.
15783 @table @option
15784 @item angle, a
15785 Set an expression for the angle by which to rotate the input video
15786 clockwise, expressed as a number of radians. A negative value will
15787 result in a counter-clockwise rotation. By default it is set to "0".
15788
15789 This expression is evaluated for each frame.
15790
15791 @item out_w, ow
15792 Set the output width expression, default value is "iw".
15793 This expression is evaluated just once during configuration.
15794
15795 @item out_h, oh
15796 Set the output height expression, default value is "ih".
15797 This expression is evaluated just once during configuration.
15798
15799 @item bilinear
15800 Enable bilinear interpolation if set to 1, a value of 0 disables
15801 it. Default value is 1.
15802
15803 @item fillcolor, c
15804 Set the color used to fill the output area not covered by the rotated
15805 image. For the general syntax of this option, check the
15806 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15807 If the special value "none" is selected then no
15808 background is printed (useful for example if the background is never shown).
15809
15810 Default value is "black".
15811 @end table
15812
15813 The expressions for the angle and the output size can contain the
15814 following constants and functions:
15815
15816 @table @option
15817 @item n
15818 sequential number of the input frame, starting from 0. It is always NAN
15819 before the first frame is filtered.
15820
15821 @item t
15822 time in seconds of the input frame, it is set to 0 when the filter is
15823 configured. It is always NAN before the first frame is filtered.
15824
15825 @item hsub
15826 @item vsub
15827 horizontal and vertical chroma subsample values. For example for the
15828 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15829
15830 @item in_w, iw
15831 @item in_h, ih
15832 the input video width and height
15833
15834 @item out_w, ow
15835 @item out_h, oh
15836 the output width and height, that is the size of the padded area as
15837 specified by the @var{width} and @var{height} expressions
15838
15839 @item rotw(a)
15840 @item roth(a)
15841 the minimal width/height required for completely containing the input
15842 video rotated by @var{a} radians.
15843
15844 These are only available when computing the @option{out_w} and
15845 @option{out_h} expressions.
15846 @end table
15847
15848 @subsection Examples
15849
15850 @itemize
15851 @item
15852 Rotate the input by PI/6 radians clockwise:
15853 @example
15854 rotate=PI/6
15855 @end example
15856
15857 @item
15858 Rotate the input by PI/6 radians counter-clockwise:
15859 @example
15860 rotate=-PI/6
15861 @end example
15862
15863 @item
15864 Rotate the input by 45 degrees clockwise:
15865 @example
15866 rotate=45*PI/180
15867 @end example
15868
15869 @item
15870 Apply a constant rotation with period T, starting from an angle of PI/3:
15871 @example
15872 rotate=PI/3+2*PI*t/T
15873 @end example
15874
15875 @item
15876 Make the input video rotation oscillating with a period of T
15877 seconds and an amplitude of A radians:
15878 @example
15879 rotate=A*sin(2*PI/T*t)
15880 @end example
15881
15882 @item
15883 Rotate the video, output size is chosen so that the whole rotating
15884 input video is always completely contained in the output:
15885 @example
15886 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15887 @end example
15888
15889 @item
15890 Rotate the video, reduce the output size so that no background is ever
15891 shown:
15892 @example
15893 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15894 @end example
15895 @end itemize
15896
15897 @subsection Commands
15898
15899 The filter supports the following commands:
15900
15901 @table @option
15902 @item a, angle
15903 Set the angle expression.
15904 The command accepts the same syntax of the corresponding option.
15905
15906 If the specified expression is not valid, it is kept at its current
15907 value.
15908 @end table
15909
15910 @section sab
15911
15912 Apply Shape Adaptive Blur.
15913
15914 The filter accepts the following options:
15915
15916 @table @option
15917 @item luma_radius, lr
15918 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15919 value is 1.0. A greater value will result in a more blurred image, and
15920 in slower processing.
15921
15922 @item luma_pre_filter_radius, lpfr
15923 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15924 value is 1.0.
15925
15926 @item luma_strength, ls
15927 Set luma maximum difference between pixels to still be considered, must
15928 be a value in the 0.1-100.0 range, default value is 1.0.
15929
15930 @item chroma_radius, cr
15931 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15932 greater value will result in a more blurred image, and in slower
15933 processing.
15934
15935 @item chroma_pre_filter_radius, cpfr
15936 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15937
15938 @item chroma_strength, cs
15939 Set chroma maximum difference between pixels to still be considered,
15940 must be a value in the -0.9-100.0 range.
15941 @end table
15942
15943 Each chroma option value, if not explicitly specified, is set to the
15944 corresponding luma option value.
15945
15946 @anchor{scale}
15947 @section scale
15948
15949 Scale (resize) the input video, using the libswscale library.
15950
15951 The scale filter forces the output display aspect ratio to be the same
15952 of the input, by changing the output sample aspect ratio.
15953
15954 If the input image format is different from the format requested by
15955 the next filter, the scale filter will convert the input to the
15956 requested format.
15957
15958 @subsection Options
15959 The filter accepts the following options, or any of the options
15960 supported by the libswscale scaler.
15961
15962 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15963 the complete list of scaler options.
15964
15965 @table @option
15966 @item width, w
15967 @item height, h
15968 Set the output video dimension expression. Default value is the input
15969 dimension.
15970
15971 If the @var{width} or @var{w} value is 0, the input width is used for
15972 the output. If the @var{height} or @var{h} value is 0, the input height
15973 is used for the output.
15974
15975 If one and only one of the values is -n with n >= 1, the scale filter
15976 will use a value that maintains the aspect ratio of the input image,
15977 calculated from the other specified dimension. After that it will,
15978 however, make sure that the calculated dimension is divisible by n and
15979 adjust the value if necessary.
15980
15981 If both values are -n with n >= 1, the behavior will be identical to
15982 both values being set to 0 as previously detailed.
15983
15984 See below for the list of accepted constants for use in the dimension
15985 expression.
15986
15987 @item eval
15988 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15989
15990 @table @samp
15991 @item init
15992 Only evaluate expressions once during the filter initialization or when a command is processed.
15993
15994 @item frame
15995 Evaluate expressions for each incoming frame.
15996
15997 @end table
15998
15999 Default value is @samp{init}.
16000
16001
16002 @item interl
16003 Set the interlacing mode. It accepts the following values:
16004
16005 @table @samp
16006 @item 1
16007 Force interlaced aware scaling.
16008
16009 @item 0
16010 Do not apply interlaced scaling.
16011
16012 @item -1
16013 Select interlaced aware scaling depending on whether the source frames
16014 are flagged as interlaced or not.
16015 @end table
16016
16017 Default value is @samp{0}.
16018
16019 @item flags
16020 Set libswscale scaling flags. See
16021 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16022 complete list of values. If not explicitly specified the filter applies
16023 the default flags.
16024
16025
16026 @item param0, param1
16027 Set libswscale input parameters for scaling algorithms that need them. See
16028 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
16029 complete documentation. If not explicitly specified the filter applies
16030 empty parameters.
16031
16032
16033
16034 @item size, s
16035 Set the video size. For the syntax of this option, check the
16036 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16037
16038 @item in_color_matrix
16039 @item out_color_matrix
16040 Set in/output YCbCr color space type.
16041
16042 This allows the autodetected value to be overridden as well as allows forcing
16043 a specific value used for the output and encoder.
16044
16045 If not specified, the color space type depends on the pixel format.
16046
16047 Possible values:
16048
16049 @table @samp
16050 @item auto
16051 Choose automatically.
16052
16053 @item bt709
16054 Format conforming to International Telecommunication Union (ITU)
16055 Recommendation BT.709.
16056
16057 @item fcc
16058 Set color space conforming to the United States Federal Communications
16059 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
16060
16061 @item bt601
16062 @item bt470
16063 @item smpte170m
16064 Set color space conforming to:
16065
16066 @itemize
16067 @item
16068 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
16069
16070 @item
16071 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
16072
16073 @item
16074 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
16075
16076 @end itemize
16077
16078 @item smpte240m
16079 Set color space conforming to SMPTE ST 240:1999.
16080
16081 @item bt2020
16082 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
16083 @end table
16084
16085 @item in_range
16086 @item out_range
16087 Set in/output YCbCr sample range.
16088
16089 This allows the autodetected value to be overridden as well as allows forcing
16090 a specific value used for the output and encoder. If not specified, the
16091 range depends on the pixel format. Possible values:
16092
16093 @table @samp
16094 @item auto/unknown
16095 Choose automatically.
16096
16097 @item jpeg/full/pc
16098 Set full range (0-255 in case of 8-bit luma).
16099
16100 @item mpeg/limited/tv
16101 Set "MPEG" range (16-235 in case of 8-bit luma).
16102 @end table
16103
16104 @item force_original_aspect_ratio
16105 Enable decreasing or increasing output video width or height if necessary to
16106 keep the original aspect ratio. Possible values:
16107
16108 @table @samp
16109 @item disable
16110 Scale the video as specified and disable this feature.
16111
16112 @item decrease
16113 The output video dimensions will automatically be decreased if needed.
16114
16115 @item increase
16116 The output video dimensions will automatically be increased if needed.
16117
16118 @end table
16119
16120 One useful instance of this option is that when you know a specific device's
16121 maximum allowed resolution, you can use this to limit the output video to
16122 that, while retaining the aspect ratio. For example, device A allows
16123 1280x720 playback, and your video is 1920x800. Using this option (set it to
16124 decrease) and specifying 1280x720 to the command line makes the output
16125 1280x533.
16126
16127 Please note that this is a different thing than specifying -1 for @option{w}
16128 or @option{h}, you still need to specify the output resolution for this option
16129 to work.
16130
16131 @item force_divisible_by
16132 Ensures that both the output dimensions, width and height, are divisible by the
16133 given integer when used together with @option{force_original_aspect_ratio}. This
16134 works similar to using @code{-n} in the @option{w} and @option{h} options.
16135
16136 This option respects the value set for @option{force_original_aspect_ratio},
16137 increasing or decreasing the resolution accordingly. The video's aspect ratio
16138 may be slightly modified.
16139
16140 This option can be handy if you need to have a video fit within or exceed
16141 a defined resolution using @option{force_original_aspect_ratio} but also have
16142 encoder restrictions on width or height divisibility.
16143
16144 @end table
16145
16146 The values of the @option{w} and @option{h} options are expressions
16147 containing the following constants:
16148
16149 @table @var
16150 @item in_w
16151 @item in_h
16152 The input width and height
16153
16154 @item iw
16155 @item ih
16156 These are the same as @var{in_w} and @var{in_h}.
16157
16158 @item out_w
16159 @item out_h
16160 The output (scaled) width and height
16161
16162 @item ow
16163 @item oh
16164 These are the same as @var{out_w} and @var{out_h}
16165
16166 @item a
16167 The same as @var{iw} / @var{ih}
16168
16169 @item sar
16170 input sample aspect ratio
16171
16172 @item dar
16173 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16174
16175 @item hsub
16176 @item vsub
16177 horizontal and vertical input chroma subsample values. For example for the
16178 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16179
16180 @item ohsub
16181 @item ovsub
16182 horizontal and vertical output chroma subsample values. For example for the
16183 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16184
16185 @item n
16186 The (sequential) number of the input frame, starting from 0.
16187 Only available with @code{eval=frame}.
16188
16189 @item t
16190 The presentation timestamp of the input frame, expressed as a number of
16191 seconds. Only available with @code{eval=frame}.
16192
16193 @item pos
16194 The position (byte offset) of the frame in the input stream, or NaN if
16195 this information is unavailable and/or meaningless (for example in case of synthetic video).
16196 Only available with @code{eval=frame}.
16197 @end table
16198
16199 @subsection Examples
16200
16201 @itemize
16202 @item
16203 Scale the input video to a size of 200x100
16204 @example
16205 scale=w=200:h=100
16206 @end example
16207
16208 This is equivalent to:
16209 @example
16210 scale=200:100
16211 @end example
16212
16213 or:
16214 @example
16215 scale=200x100
16216 @end example
16217
16218 @item
16219 Specify a size abbreviation for the output size:
16220 @example
16221 scale=qcif
16222 @end example
16223
16224 which can also be written as:
16225 @example
16226 scale=size=qcif
16227 @end example
16228
16229 @item
16230 Scale the input to 2x:
16231 @example
16232 scale=w=2*iw:h=2*ih
16233 @end example
16234
16235 @item
16236 The above is the same as:
16237 @example
16238 scale=2*in_w:2*in_h
16239 @end example
16240
16241 @item
16242 Scale the input to 2x with forced interlaced scaling:
16243 @example
16244 scale=2*iw:2*ih:interl=1
16245 @end example
16246
16247 @item
16248 Scale the input to half size:
16249 @example
16250 scale=w=iw/2:h=ih/2
16251 @end example
16252
16253 @item
16254 Increase the width, and set the height to the same size:
16255 @example
16256 scale=3/2*iw:ow
16257 @end example
16258
16259 @item
16260 Seek Greek harmony:
16261 @example
16262 scale=iw:1/PHI*iw
16263 scale=ih*PHI:ih
16264 @end example
16265
16266 @item
16267 Increase the height, and set the width to 3/2 of the height:
16268 @example
16269 scale=w=3/2*oh:h=3/5*ih
16270 @end example
16271
16272 @item
16273 Increase the size, making the size a multiple of the chroma
16274 subsample values:
16275 @example
16276 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
16277 @end example
16278
16279 @item
16280 Increase the width to a maximum of 500 pixels,
16281 keeping the same aspect ratio as the input:
16282 @example
16283 scale=w='min(500\, iw*3/2):h=-1'
16284 @end example
16285
16286 @item
16287 Make pixels square by combining scale and setsar:
16288 @example
16289 scale='trunc(ih*dar):ih',setsar=1/1
16290 @end example
16291
16292 @item
16293 Make pixels square by combining scale and setsar,
16294 making sure the resulting resolution is even (required by some codecs):
16295 @example
16296 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
16297 @end example
16298 @end itemize
16299
16300 @subsection Commands
16301
16302 This filter supports the following commands:
16303 @table @option
16304 @item width, w
16305 @item height, h
16306 Set the output video dimension expression.
16307 The command accepts the same syntax of the corresponding option.
16308
16309 If the specified expression is not valid, it is kept at its current
16310 value.
16311 @end table
16312
16313 @section scale_npp
16314
16315 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
16316 format conversion on CUDA video frames. Setting the output width and height
16317 works in the same way as for the @var{scale} filter.
16318
16319 The following additional options are accepted:
16320 @table @option
16321 @item format
16322 The pixel format of the output CUDA frames. If set to the string "same" (the
16323 default), the input format will be kept. Note that automatic format negotiation
16324 and conversion is not yet supported for hardware frames
16325
16326 @item interp_algo
16327 The interpolation algorithm used for resizing. One of the following:
16328 @table @option
16329 @item nn
16330 Nearest neighbour.
16331
16332 @item linear
16333 @item cubic
16334 @item cubic2p_bspline
16335 2-parameter cubic (B=1, C=0)
16336
16337 @item cubic2p_catmullrom
16338 2-parameter cubic (B=0, C=1/2)
16339
16340 @item cubic2p_b05c03
16341 2-parameter cubic (B=1/2, C=3/10)
16342
16343 @item super
16344 Supersampling
16345
16346 @item lanczos
16347 @end table
16348
16349 @item force_original_aspect_ratio
16350 Enable decreasing or increasing output video width or height if necessary to
16351 keep the original aspect ratio. Possible values:
16352
16353 @table @samp
16354 @item disable
16355 Scale the video as specified and disable this feature.
16356
16357 @item decrease
16358 The output video dimensions will automatically be decreased if needed.
16359
16360 @item increase
16361 The output video dimensions will automatically be increased if needed.
16362
16363 @end table
16364
16365 One useful instance of this option is that when you know a specific device's
16366 maximum allowed resolution, you can use this to limit the output video to
16367 that, while retaining the aspect ratio. For example, device A allows
16368 1280x720 playback, and your video is 1920x800. Using this option (set it to
16369 decrease) and specifying 1280x720 to the command line makes the output
16370 1280x533.
16371
16372 Please note that this is a different thing than specifying -1 for @option{w}
16373 or @option{h}, you still need to specify the output resolution for this option
16374 to work.
16375
16376 @item force_divisible_by
16377 Ensures that both the output dimensions, width and height, are divisible by the
16378 given integer when used together with @option{force_original_aspect_ratio}. This
16379 works similar to using @code{-n} in the @option{w} and @option{h} options.
16380
16381 This option respects the value set for @option{force_original_aspect_ratio},
16382 increasing or decreasing the resolution accordingly. The video's aspect ratio
16383 may be slightly modified.
16384
16385 This option can be handy if you need to have a video fit within or exceed
16386 a defined resolution using @option{force_original_aspect_ratio} but also have
16387 encoder restrictions on width or height divisibility.
16388
16389 @end table
16390
16391 @section scale2ref
16392
16393 Scale (resize) the input video, based on a reference video.
16394
16395 See the scale filter for available options, scale2ref supports the same but
16396 uses the reference video instead of the main input as basis. scale2ref also
16397 supports the following additional constants for the @option{w} and
16398 @option{h} options:
16399
16400 @table @var
16401 @item main_w
16402 @item main_h
16403 The main input video's width and height
16404
16405 @item main_a
16406 The same as @var{main_w} / @var{main_h}
16407
16408 @item main_sar
16409 The main input video's sample aspect ratio
16410
16411 @item main_dar, mdar
16412 The main input video's display aspect ratio. Calculated from
16413 @code{(main_w / main_h) * main_sar}.
16414
16415 @item main_hsub
16416 @item main_vsub
16417 The main input video's horizontal and vertical chroma subsample values.
16418 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
16419 is 1.
16420
16421 @item main_n
16422 The (sequential) number of the main input frame, starting from 0.
16423 Only available with @code{eval=frame}.
16424
16425 @item main_t
16426 The presentation timestamp of the main input frame, expressed as a number of
16427 seconds. Only available with @code{eval=frame}.
16428
16429 @item main_pos
16430 The position (byte offset) of the frame in the main input stream, or NaN if
16431 this information is unavailable and/or meaningless (for example in case of synthetic video).
16432 Only available with @code{eval=frame}.
16433 @end table
16434
16435 @subsection Examples
16436
16437 @itemize
16438 @item
16439 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
16440 @example
16441 'scale2ref[b][a];[a][b]overlay'
16442 @end example
16443
16444 @item
16445 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
16446 @example
16447 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
16448 @end example
16449 @end itemize
16450
16451 @subsection Commands
16452
16453 This filter supports the following commands:
16454 @table @option
16455 @item width, w
16456 @item height, h
16457 Set the output video dimension expression.
16458 The command accepts the same syntax of the corresponding option.
16459
16460 If the specified expression is not valid, it is kept at its current
16461 value.
16462 @end table
16463
16464 @section scroll
16465 Scroll input video horizontally and/or vertically by constant speed.
16466
16467 The filter accepts the following options:
16468 @table @option
16469 @item horizontal, h
16470 Set the horizontal scrolling speed. Default is 0. Allowed range is from -1 to 1.
16471 Negative values changes scrolling direction.
16472
16473 @item vertical, v
16474 Set the vertical scrolling speed. Default is 0. Allowed range is from -1 to 1.
16475 Negative values changes scrolling direction.
16476
16477 @item hpos
16478 Set the initial horizontal scrolling position. Default is 0. Allowed range is from 0 to 1.
16479
16480 @item vpos
16481 Set the initial vertical scrolling position. Default is 0. Allowed range is from 0 to 1.
16482 @end table
16483
16484 @subsection Commands
16485
16486 This filter supports the following @ref{commands}:
16487 @table @option
16488 @item horizontal, h
16489 Set the horizontal scrolling speed.
16490 @item vertical, v
16491 Set the vertical scrolling speed.
16492 @end table
16493
16494 @anchor{selectivecolor}
16495 @section selectivecolor
16496
16497 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
16498 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
16499 by the "purity" of the color (that is, how saturated it already is).
16500
16501 This filter is similar to the Adobe Photoshop Selective Color tool.
16502
16503 The filter accepts the following options:
16504
16505 @table @option
16506 @item correction_method
16507 Select color correction method.
16508
16509 Available values are:
16510 @table @samp
16511 @item absolute
16512 Specified adjustments are applied "as-is" (added/subtracted to original pixel
16513 component value).
16514 @item relative
16515 Specified adjustments are relative to the original component value.
16516 @end table
16517 Default is @code{absolute}.
16518 @item reds
16519 Adjustments for red pixels (pixels where the red component is the maximum)
16520 @item yellows
16521 Adjustments for yellow pixels (pixels where the blue component is the minimum)
16522 @item greens
16523 Adjustments for green pixels (pixels where the green component is the maximum)
16524 @item cyans
16525 Adjustments for cyan pixels (pixels where the red component is the minimum)
16526 @item blues
16527 Adjustments for blue pixels (pixels where the blue component is the maximum)
16528 @item magentas
16529 Adjustments for magenta pixels (pixels where the green component is the minimum)
16530 @item whites
16531 Adjustments for white pixels (pixels where all components are greater than 128)
16532 @item neutrals
16533 Adjustments for all pixels except pure black and pure white
16534 @item blacks
16535 Adjustments for black pixels (pixels where all components are lesser than 128)
16536 @item psfile
16537 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
16538 @end table
16539
16540 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
16541 4 space separated floating point adjustment values in the [-1,1] range,
16542 respectively to adjust the amount of cyan, magenta, yellow and black for the
16543 pixels of its range.
16544
16545 @subsection Examples
16546
16547 @itemize
16548 @item
16549 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
16550 increase magenta by 27% in blue areas:
16551 @example
16552 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
16553 @end example
16554
16555 @item
16556 Use a Photoshop selective color preset:
16557 @example
16558 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
16559 @end example
16560 @end itemize
16561
16562 @anchor{separatefields}
16563 @section separatefields
16564
16565 The @code{separatefields} takes a frame-based video input and splits
16566 each frame into its components fields, producing a new half height clip
16567 with twice the frame rate and twice the frame count.
16568
16569 This filter use field-dominance information in frame to decide which
16570 of each pair of fields to place first in the output.
16571 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
16572
16573 @section setdar, setsar
16574
16575 The @code{setdar} filter sets the Display Aspect Ratio for the filter
16576 output video.
16577
16578 This is done by changing the specified Sample (aka Pixel) Aspect
16579 Ratio, according to the following equation:
16580 @example
16581 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
16582 @end example
16583
16584 Keep in mind that the @code{setdar} filter does not modify the pixel
16585 dimensions of the video frame. Also, the display aspect ratio set by
16586 this filter may be changed by later filters in the filterchain,
16587 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
16588 applied.
16589
16590 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
16591 the filter output video.
16592
16593 Note that as a consequence of the application of this filter, the
16594 output display aspect ratio will change according to the equation
16595 above.
16596
16597 Keep in mind that the sample aspect ratio set by the @code{setsar}
16598 filter may be changed by later filters in the filterchain, e.g. if
16599 another "setsar" or a "setdar" filter is applied.
16600
16601 It accepts the following parameters:
16602
16603 @table @option
16604 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
16605 Set the aspect ratio used by the filter.
16606
16607 The parameter can be a floating point number string, an expression, or
16608 a string of the form @var{num}:@var{den}, where @var{num} and
16609 @var{den} are the numerator and denominator of the aspect ratio. If
16610 the parameter is not specified, it is assumed the value "0".
16611 In case the form "@var{num}:@var{den}" is used, the @code{:} character
16612 should be escaped.
16613
16614 @item max
16615 Set the maximum integer value to use for expressing numerator and
16616 denominator when reducing the expressed aspect ratio to a rational.
16617 Default value is @code{100}.
16618
16619 @end table
16620
16621 The parameter @var{sar} is an expression containing
16622 the following constants:
16623
16624 @table @option
16625 @item E, PI, PHI
16626 These are approximated values for the mathematical constants e
16627 (Euler's number), pi (Greek pi), and phi (the golden ratio).
16628
16629 @item w, h
16630 The input width and height.
16631
16632 @item a
16633 These are the same as @var{w} / @var{h}.
16634
16635 @item sar
16636 The input sample aspect ratio.
16637
16638 @item dar
16639 The input display aspect ratio. It is the same as
16640 (@var{w} / @var{h}) * @var{sar}.
16641
16642 @item hsub, vsub
16643 Horizontal and vertical chroma subsample values. For example, for the
16644 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16645 @end table
16646
16647 @subsection Examples
16648
16649 @itemize
16650
16651 @item
16652 To change the display aspect ratio to 16:9, specify one of the following:
16653 @example
16654 setdar=dar=1.77777
16655 setdar=dar=16/9
16656 @end example
16657
16658 @item
16659 To change the sample aspect ratio to 10:11, specify:
16660 @example
16661 setsar=sar=10/11
16662 @end example
16663
16664 @item
16665 To set a display aspect ratio of 16:9, and specify a maximum integer value of
16666 1000 in the aspect ratio reduction, use the command:
16667 @example
16668 setdar=ratio=16/9:max=1000
16669 @end example
16670
16671 @end itemize
16672
16673 @anchor{setfield}
16674 @section setfield
16675
16676 Force field for the output video frame.
16677
16678 The @code{setfield} filter marks the interlace type field for the
16679 output frames. It does not change the input frame, but only sets the
16680 corresponding property, which affects how the frame is treated by
16681 following filters (e.g. @code{fieldorder} or @code{yadif}).
16682
16683 The filter accepts the following options:
16684
16685 @table @option
16686
16687 @item mode
16688 Available values are:
16689
16690 @table @samp
16691 @item auto
16692 Keep the same field property.
16693
16694 @item bff
16695 Mark the frame as bottom-field-first.
16696
16697 @item tff
16698 Mark the frame as top-field-first.
16699
16700 @item prog
16701 Mark the frame as progressive.
16702 @end table
16703 @end table
16704
16705 @anchor{setparams}
16706 @section setparams
16707
16708 Force frame parameter for the output video frame.
16709
16710 The @code{setparams} filter marks interlace and color range 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 filters/encoders.
16714
16715 @table @option
16716 @item field_mode
16717 Available values are:
16718
16719 @table @samp
16720 @item auto
16721 Keep the same field property (default).
16722
16723 @item bff
16724 Mark the frame as bottom-field-first.
16725
16726 @item tff
16727 Mark the frame as top-field-first.
16728
16729 @item prog
16730 Mark the frame as progressive.
16731 @end table
16732
16733 @item range
16734 Available values are:
16735
16736 @table @samp
16737 @item auto
16738 Keep the same color range property (default).
16739
16740 @item unspecified, unknown
16741 Mark the frame as unspecified color range.
16742
16743 @item limited, tv, mpeg
16744 Mark the frame as limited range.
16745
16746 @item full, pc, jpeg
16747 Mark the frame as full range.
16748 @end table
16749
16750 @item color_primaries
16751 Set the color primaries.
16752 Available values are:
16753
16754 @table @samp
16755 @item auto
16756 Keep the same color primaries property (default).
16757
16758 @item bt709
16759 @item unknown
16760 @item bt470m
16761 @item bt470bg
16762 @item smpte170m
16763 @item smpte240m
16764 @item film
16765 @item bt2020
16766 @item smpte428
16767 @item smpte431
16768 @item smpte432
16769 @item jedec-p22
16770 @end table
16771
16772 @item color_trc
16773 Set the color transfer.
16774 Available values are:
16775
16776 @table @samp
16777 @item auto
16778 Keep the same color trc property (default).
16779
16780 @item bt709
16781 @item unknown
16782 @item bt470m
16783 @item bt470bg
16784 @item smpte170m
16785 @item smpte240m
16786 @item linear
16787 @item log100
16788 @item log316
16789 @item iec61966-2-4
16790 @item bt1361e
16791 @item iec61966-2-1
16792 @item bt2020-10
16793 @item bt2020-12
16794 @item smpte2084
16795 @item smpte428
16796 @item arib-std-b67
16797 @end table
16798
16799 @item colorspace
16800 Set the colorspace.
16801 Available values are:
16802
16803 @table @samp
16804 @item auto
16805 Keep the same colorspace property (default).
16806
16807 @item gbr
16808 @item bt709
16809 @item unknown
16810 @item fcc
16811 @item bt470bg
16812 @item smpte170m
16813 @item smpte240m
16814 @item ycgco
16815 @item bt2020nc
16816 @item bt2020c
16817 @item smpte2085
16818 @item chroma-derived-nc
16819 @item chroma-derived-c
16820 @item ictcp
16821 @end table
16822 @end table
16823
16824 @section showinfo
16825
16826 Show a line containing various information for each input video frame.
16827 The input video is not modified.
16828
16829 This filter supports the following options:
16830
16831 @table @option
16832 @item checksum
16833 Calculate checksums of each plane. By default enabled.
16834 @end table
16835
16836 The shown line contains a sequence of key/value pairs of the form
16837 @var{key}:@var{value}.
16838
16839 The following values are shown in the output:
16840
16841 @table @option
16842 @item n
16843 The (sequential) number of the input frame, starting from 0.
16844
16845 @item pts
16846 The Presentation TimeStamp of the input frame, expressed as a number of
16847 time base units. The time base unit depends on the filter input pad.
16848
16849 @item pts_time
16850 The Presentation TimeStamp of the input frame, expressed as a number of
16851 seconds.
16852
16853 @item pos
16854 The position of the frame in the input stream, or -1 if this information is
16855 unavailable and/or meaningless (for example in case of synthetic video).
16856
16857 @item fmt
16858 The pixel format name.
16859
16860 @item sar
16861 The sample aspect ratio of the input frame, expressed in the form
16862 @var{num}/@var{den}.
16863
16864 @item s
16865 The size of the input frame. For the syntax of this option, check the
16866 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16867
16868 @item i
16869 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
16870 for bottom field first).
16871
16872 @item iskey
16873 This is 1 if the frame is a key frame, 0 otherwise.
16874
16875 @item type
16876 The picture type of the input frame ("I" for an I-frame, "P" for a
16877 P-frame, "B" for a B-frame, or "?" for an unknown type).
16878 Also refer to the documentation of the @code{AVPictureType} enum and of
16879 the @code{av_get_picture_type_char} function defined in
16880 @file{libavutil/avutil.h}.
16881
16882 @item checksum
16883 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16884
16885 @item plane_checksum
16886 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16887 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16888
16889 @item mean
16890 The mean value of pixels in each plane of the input frame, expressed in the form
16891 "[@var{mean0} @var{mean1} @var{mean2} @var{mean3}]".
16892
16893 @item stdev
16894 The standard deviation of pixel values in each plane of the input frame, expressed
16895 in the form "[@var{stdev0} @var{stdev1} @var{stdev2} @var{stdev3}]".
16896
16897 @end table
16898
16899 @section showpalette
16900
16901 Displays the 256 colors palette of each frame. This filter is only relevant for
16902 @var{pal8} pixel format frames.
16903
16904 It accepts the following option:
16905
16906 @table @option
16907 @item s
16908 Set the size of the box used to represent one palette color entry. Default is
16909 @code{30} (for a @code{30x30} pixel box).
16910 @end table
16911
16912 @section shuffleframes
16913
16914 Reorder and/or duplicate and/or drop video frames.
16915
16916 It accepts the following parameters:
16917
16918 @table @option
16919 @item mapping
16920 Set the destination indexes of input frames.
16921 This is space or '|' separated list of indexes that maps input frames to output
16922 frames. Number of indexes also sets maximal value that each index may have.
16923 '-1' index have special meaning and that is to drop frame.
16924 @end table
16925
16926 The first frame has the index 0. The default is to keep the input unchanged.
16927
16928 @subsection Examples
16929
16930 @itemize
16931 @item
16932 Swap second and third frame of every three frames of the input:
16933 @example
16934 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16935 @end example
16936
16937 @item
16938 Swap 10th and 1st frame of every ten frames of the input:
16939 @example
16940 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16941 @end example
16942 @end itemize
16943
16944 @section shuffleplanes
16945
16946 Reorder and/or duplicate video planes.
16947
16948 It accepts the following parameters:
16949
16950 @table @option
16951
16952 @item map0
16953 The index of the input plane to be used as the first output plane.
16954
16955 @item map1
16956 The index of the input plane to be used as the second output plane.
16957
16958 @item map2
16959 The index of the input plane to be used as the third output plane.
16960
16961 @item map3
16962 The index of the input plane to be used as the fourth output plane.
16963
16964 @end table
16965
16966 The first plane has the index 0. The default is to keep the input unchanged.
16967
16968 @subsection Examples
16969
16970 @itemize
16971 @item
16972 Swap the second and third planes of the input:
16973 @example
16974 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16975 @end example
16976 @end itemize
16977
16978 @anchor{signalstats}
16979 @section signalstats
16980 Evaluate various visual metrics that assist in determining issues associated
16981 with the digitization of analog video media.
16982
16983 By default the filter will log these metadata values:
16984
16985 @table @option
16986 @item YMIN
16987 Display the minimal Y value contained within the input frame. Expressed in
16988 range of [0-255].
16989
16990 @item YLOW
16991 Display the Y value at the 10% percentile within the input frame. Expressed in
16992 range of [0-255].
16993
16994 @item YAVG
16995 Display the average Y value within the input frame. Expressed in range of
16996 [0-255].
16997
16998 @item YHIGH
16999 Display the Y value at the 90% percentile within the input frame. Expressed in
17000 range of [0-255].
17001
17002 @item YMAX
17003 Display the maximum Y value contained within the input frame. Expressed in
17004 range of [0-255].
17005
17006 @item UMIN
17007 Display the minimal U value contained within the input frame. Expressed in
17008 range of [0-255].
17009
17010 @item ULOW
17011 Display the U value at the 10% percentile within the input frame. Expressed in
17012 range of [0-255].
17013
17014 @item UAVG
17015 Display the average U value within the input frame. Expressed in range of
17016 [0-255].
17017
17018 @item UHIGH
17019 Display the U value at the 90% percentile within the input frame. Expressed in
17020 range of [0-255].
17021
17022 @item UMAX
17023 Display the maximum U value contained within the input frame. Expressed in
17024 range of [0-255].
17025
17026 @item VMIN
17027 Display the minimal V value contained within the input frame. Expressed in
17028 range of [0-255].
17029
17030 @item VLOW
17031 Display the V value at the 10% percentile within the input frame. Expressed in
17032 range of [0-255].
17033
17034 @item VAVG
17035 Display the average V value within the input frame. Expressed in range of
17036 [0-255].
17037
17038 @item VHIGH
17039 Display the V value at the 90% percentile within the input frame. Expressed in
17040 range of [0-255].
17041
17042 @item VMAX
17043 Display the maximum V value contained within the input frame. Expressed in
17044 range of [0-255].
17045
17046 @item SATMIN
17047 Display the minimal saturation value contained within the input frame.
17048 Expressed in range of [0-~181.02].
17049
17050 @item SATLOW
17051 Display the saturation value at the 10% percentile within the input frame.
17052 Expressed in range of [0-~181.02].
17053
17054 @item SATAVG
17055 Display the average saturation value within the input frame. Expressed in range
17056 of [0-~181.02].
17057
17058 @item SATHIGH
17059 Display the saturation value at the 90% percentile within the input frame.
17060 Expressed in range of [0-~181.02].
17061
17062 @item SATMAX
17063 Display the maximum saturation value contained within the input frame.
17064 Expressed in range of [0-~181.02].
17065
17066 @item HUEMED
17067 Display the median value for hue within the input frame. Expressed in range of
17068 [0-360].
17069
17070 @item HUEAVG
17071 Display the average value for hue within the input frame. Expressed in range of
17072 [0-360].
17073
17074 @item YDIF
17075 Display the average of sample value difference between all values of the Y
17076 plane in the current frame and corresponding values of the previous input frame.
17077 Expressed in range of [0-255].
17078
17079 @item UDIF
17080 Display the average of sample value difference between all values of the U
17081 plane in the current frame and corresponding values of the previous input frame.
17082 Expressed in range of [0-255].
17083
17084 @item VDIF
17085 Display the average of sample value difference between all values of the V
17086 plane in the current frame and corresponding values of the previous input frame.
17087 Expressed in range of [0-255].
17088
17089 @item YBITDEPTH
17090 Display bit depth of Y plane in current frame.
17091 Expressed in range of [0-16].
17092
17093 @item UBITDEPTH
17094 Display bit depth of U plane in current frame.
17095 Expressed in range of [0-16].
17096
17097 @item VBITDEPTH
17098 Display bit depth of V plane in current frame.
17099 Expressed in range of [0-16].
17100 @end table
17101
17102 The filter accepts the following options:
17103
17104 @table @option
17105 @item stat
17106 @item out
17107
17108 @option{stat} specify an additional form of image analysis.
17109 @option{out} output video with the specified type of pixel highlighted.
17110
17111 Both options accept the following values:
17112
17113 @table @samp
17114 @item tout
17115 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
17116 unlike the neighboring pixels of the same field. Examples of temporal outliers
17117 include the results of video dropouts, head clogs, or tape tracking issues.
17118
17119 @item vrep
17120 Identify @var{vertical line repetition}. Vertical line repetition includes
17121 similar rows of pixels within a frame. In born-digital video vertical line
17122 repetition is common, but this pattern is uncommon in video digitized from an
17123 analog source. When it occurs in video that results from the digitization of an
17124 analog source it can indicate concealment from a dropout compensator.
17125
17126 @item brng
17127 Identify pixels that fall outside of legal broadcast range.
17128 @end table
17129
17130 @item color, c
17131 Set the highlight color for the @option{out} option. The default color is
17132 yellow.
17133 @end table
17134
17135 @subsection Examples
17136
17137 @itemize
17138 @item
17139 Output data of various video metrics:
17140 @example
17141 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
17142 @end example
17143
17144 @item
17145 Output specific data about the minimum and maximum values of the Y plane per frame:
17146 @example
17147 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
17148 @end example
17149
17150 @item
17151 Playback video while highlighting pixels that are outside of broadcast range in red.
17152 @example
17153 ffplay example.mov -vf signalstats="out=brng:color=red"
17154 @end example
17155
17156 @item
17157 Playback video with signalstats metadata drawn over the frame.
17158 @example
17159 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
17160 @end example
17161
17162 The contents of signalstat_drawtext.txt used in the command are:
17163 @example
17164 time %@{pts:hms@}
17165 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
17166 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
17167 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
17168 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
17169
17170 @end example
17171 @end itemize
17172
17173 @anchor{signature}
17174 @section signature
17175
17176 Calculates the MPEG-7 Video Signature. The filter can handle more than one
17177 input. In this case the matching between the inputs can be calculated additionally.
17178 The filter always passes through the first input. The signature of each stream can
17179 be written into a file.
17180
17181 It accepts the following options:
17182
17183 @table @option
17184 @item detectmode
17185 Enable or disable the matching process.
17186
17187 Available values are:
17188
17189 @table @samp
17190 @item off
17191 Disable the calculation of a matching (default).
17192 @item full
17193 Calculate the matching for the whole video and output whether the whole video
17194 matches or only parts.
17195 @item fast
17196 Calculate only until a matching is found or the video ends. Should be faster in
17197 some cases.
17198 @end table
17199
17200 @item nb_inputs
17201 Set the number of inputs. The option value must be a non negative integer.
17202 Default value is 1.
17203
17204 @item filename
17205 Set the path to which the output is written. If there is more than one input,
17206 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
17207 integer), that will be replaced with the input number. If no filename is
17208 specified, no output will be written. This is the default.
17209
17210 @item format
17211 Choose the output format.
17212
17213 Available values are:
17214
17215 @table @samp
17216 @item binary
17217 Use the specified binary representation (default).
17218 @item xml
17219 Use the specified xml representation.
17220 @end table
17221
17222 @item th_d
17223 Set threshold to detect one word as similar. The option value must be an integer
17224 greater than zero. The default value is 9000.
17225
17226 @item th_dc
17227 Set threshold to detect all words as similar. The option value must be an integer
17228 greater than zero. The default value is 60000.
17229
17230 @item th_xh
17231 Set threshold to detect frames as similar. The option value must be an integer
17232 greater than zero. The default value is 116.
17233
17234 @item th_di
17235 Set the minimum length of a sequence in frames to recognize it as matching
17236 sequence. The option value must be a non negative integer value.
17237 The default value is 0.
17238
17239 @item th_it
17240 Set the minimum relation, that matching frames to all frames must have.
17241 The option value must be a double value between 0 and 1. The default value is 0.5.
17242 @end table
17243
17244 @subsection Examples
17245
17246 @itemize
17247 @item
17248 To calculate the signature of an input video and store it in signature.bin:
17249 @example
17250 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
17251 @end example
17252
17253 @item
17254 To detect whether two videos match and store the signatures in XML format in
17255 signature0.xml and signature1.xml:
17256 @example
17257 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 -
17258 @end example
17259
17260 @end itemize
17261
17262 @anchor{smartblur}
17263 @section smartblur
17264
17265 Blur the input video without impacting the outlines.
17266
17267 It accepts the following options:
17268
17269 @table @option
17270 @item luma_radius, lr
17271 Set the luma radius. The option value must be a float number in
17272 the range [0.1,5.0] that specifies the variance of the gaussian filter
17273 used to blur the image (slower if larger). Default value is 1.0.
17274
17275 @item luma_strength, ls
17276 Set the luma strength. The option value must be a float number
17277 in the range [-1.0,1.0] that configures the blurring. A value included
17278 in [0.0,1.0] will blur the image whereas a value included in
17279 [-1.0,0.0] will sharpen the image. Default value is 1.0.
17280
17281 @item luma_threshold, lt
17282 Set the luma threshold used as a coefficient to determine
17283 whether a pixel should be blurred or not. The option value must be an
17284 integer in the range [-30,30]. A value of 0 will filter all the image,
17285 a value included in [0,30] will filter flat areas and a value included
17286 in [-30,0] will filter edges. Default value is 0.
17287
17288 @item chroma_radius, cr
17289 Set the chroma radius. The option value must be a float number in
17290 the range [0.1,5.0] that specifies the variance of the gaussian filter
17291 used to blur the image (slower if larger). Default value is @option{luma_radius}.
17292
17293 @item chroma_strength, cs
17294 Set the chroma strength. The option value must be a float number
17295 in the range [-1.0,1.0] that configures the blurring. A value included
17296 in [0.0,1.0] will blur the image whereas a value included in
17297 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
17298
17299 @item chroma_threshold, ct
17300 Set the chroma threshold used as a coefficient to determine
17301 whether a pixel should be blurred or not. The option value must be an
17302 integer in the range [-30,30]. A value of 0 will filter all the image,
17303 a value included in [0,30] will filter flat areas and a value included
17304 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
17305 @end table
17306
17307 If a chroma option is not explicitly set, the corresponding luma value
17308 is set.
17309
17310 @section sobel
17311 Apply sobel operator to input video stream.
17312
17313 The filter accepts the following option:
17314
17315 @table @option
17316 @item planes
17317 Set which planes will be processed, unprocessed planes will be copied.
17318 By default value 0xf, all planes will be processed.
17319
17320 @item scale
17321 Set value which will be multiplied with filtered result.
17322
17323 @item delta
17324 Set value which will be added to filtered result.
17325 @end table
17326
17327 @anchor{spp}
17328 @section spp
17329
17330 Apply a simple postprocessing filter that compresses and decompresses the image
17331 at several (or - in the case of @option{quality} level @code{6} - all) shifts
17332 and average the results.
17333
17334 The filter accepts the following options:
17335
17336 @table @option
17337 @item quality
17338 Set quality. This option defines the number of levels for averaging. It accepts
17339 an integer in the range 0-6. If set to @code{0}, the filter will have no
17340 effect. A value of @code{6} means the higher quality. For each increment of
17341 that value the speed drops by a factor of approximately 2.  Default value is
17342 @code{3}.
17343
17344 @item qp
17345 Force a constant quantization parameter. If not set, the filter will use the QP
17346 from the video stream (if available).
17347
17348 @item mode
17349 Set thresholding mode. Available modes are:
17350
17351 @table @samp
17352 @item hard
17353 Set hard thresholding (default).
17354 @item soft
17355 Set soft thresholding (better de-ringing effect, but likely blurrier).
17356 @end table
17357
17358 @item use_bframe_qp
17359 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
17360 option may cause flicker since the B-Frames have often larger QP. Default is
17361 @code{0} (not enabled).
17362 @end table
17363
17364 @subsection Commands
17365
17366 This filter supports the following commands:
17367 @table @option
17368 @item quality, level
17369 Set quality level. The value @code{max} can be used to set the maximum level,
17370 currently @code{6}.
17371 @end table
17372
17373 @anchor{sr}
17374 @section sr
17375
17376 Scale the input by applying one of the super-resolution methods based on
17377 convolutional neural networks. Supported models:
17378
17379 @itemize
17380 @item
17381 Super-Resolution Convolutional Neural Network model (SRCNN).
17382 See @url{https://arxiv.org/abs/1501.00092}.
17383
17384 @item
17385 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
17386 See @url{https://arxiv.org/abs/1609.05158}.
17387 @end itemize
17388
17389 Training scripts as well as scripts for model file (.pb) saving can be found at
17390 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
17391 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
17392
17393 Native model files (.model) can be generated from TensorFlow model
17394 files (.pb) by using tools/python/convert.py
17395
17396 The filter accepts the following options:
17397
17398 @table @option
17399 @item dnn_backend
17400 Specify which DNN backend to use for model loading and execution. This option accepts
17401 the following values:
17402
17403 @table @samp
17404 @item native
17405 Native implementation of DNN loading and execution.
17406
17407 @item tensorflow
17408 TensorFlow backend. To enable this backend you
17409 need to install the TensorFlow for C library (see
17410 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
17411 @code{--enable-libtensorflow}
17412 @end table
17413
17414 Default value is @samp{native}.
17415
17416 @item model
17417 Set path to model file specifying network architecture and its parameters.
17418 Note that different backends use different file formats. TensorFlow backend
17419 can load files for both formats, while native backend can load files for only
17420 its format.
17421
17422 @item scale_factor
17423 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
17424 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
17425 input upscaled using bicubic upscaling with proper scale factor.
17426 @end table
17427
17428 This feature can also be finished with @ref{dnn_processing} filter.
17429
17430 @section ssim
17431
17432 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
17433
17434 This filter takes in input two input videos, the first input is
17435 considered the "main" source and is passed unchanged to the
17436 output. The second input is used as a "reference" video for computing
17437 the SSIM.
17438
17439 Both video inputs must have the same resolution and pixel format for
17440 this filter to work correctly. Also it assumes that both inputs
17441 have the same number of frames, which are compared one by one.
17442
17443 The filter stores the calculated SSIM of each frame.
17444
17445 The description of the accepted parameters follows.
17446
17447 @table @option
17448 @item stats_file, f
17449 If specified the filter will use the named file to save the SSIM of
17450 each individual frame. When filename equals "-" the data is sent to
17451 standard output.
17452 @end table
17453
17454 The file printed if @var{stats_file} is selected, contains a sequence of
17455 key/value pairs of the form @var{key}:@var{value} for each compared
17456 couple of frames.
17457
17458 A description of each shown parameter follows:
17459
17460 @table @option
17461 @item n
17462 sequential number of the input frame, starting from 1
17463
17464 @item Y, U, V, R, G, B
17465 SSIM of the compared frames for the component specified by the suffix.
17466
17467 @item All
17468 SSIM of the compared frames for the whole frame.
17469
17470 @item dB
17471 Same as above but in dB representation.
17472 @end table
17473
17474 This filter also supports the @ref{framesync} options.
17475
17476 @subsection Examples
17477 @itemize
17478 @item
17479 For example:
17480 @example
17481 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
17482 [main][ref] ssim="stats_file=stats.log" [out]
17483 @end example
17484
17485 On this example the input file being processed is compared with the
17486 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
17487 is stored in @file{stats.log}.
17488
17489 @item
17490 Another example with both psnr and ssim at same time:
17491 @example
17492 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
17493 @end example
17494
17495 @item
17496 Another example with different containers:
17497 @example
17498 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 -
17499 @end example
17500 @end itemize
17501
17502 @section stereo3d
17503
17504 Convert between different stereoscopic image formats.
17505
17506 The filters accept the following options:
17507
17508 @table @option
17509 @item in
17510 Set stereoscopic image format of input.
17511
17512 Available values for input image formats are:
17513 @table @samp
17514 @item sbsl
17515 side by side parallel (left eye left, right eye right)
17516
17517 @item sbsr
17518 side by side crosseye (right eye left, left eye right)
17519
17520 @item sbs2l
17521 side by side parallel with half width resolution
17522 (left eye left, right eye right)
17523
17524 @item sbs2r
17525 side by side crosseye with half width resolution
17526 (right eye left, left eye right)
17527
17528 @item abl
17529 @item tbl
17530 above-below (left eye above, right eye below)
17531
17532 @item abr
17533 @item tbr
17534 above-below (right eye above, left eye below)
17535
17536 @item ab2l
17537 @item tb2l
17538 above-below with half height resolution
17539 (left eye above, right eye below)
17540
17541 @item ab2r
17542 @item tb2r
17543 above-below with half height resolution
17544 (right eye above, left eye below)
17545
17546 @item al
17547 alternating frames (left eye first, right eye second)
17548
17549 @item ar
17550 alternating frames (right eye first, left eye second)
17551
17552 @item irl
17553 interleaved rows (left eye has top row, right eye starts on next row)
17554
17555 @item irr
17556 interleaved rows (right eye has top row, left eye starts on next row)
17557
17558 @item icl
17559 interleaved columns, left eye first
17560
17561 @item icr
17562 interleaved columns, right eye first
17563
17564 Default value is @samp{sbsl}.
17565 @end table
17566
17567 @item out
17568 Set stereoscopic image format of output.
17569
17570 @table @samp
17571 @item sbsl
17572 side by side parallel (left eye left, right eye right)
17573
17574 @item sbsr
17575 side by side crosseye (right eye left, left eye right)
17576
17577 @item sbs2l
17578 side by side parallel with half width resolution
17579 (left eye left, right eye right)
17580
17581 @item sbs2r
17582 side by side crosseye with half width resolution
17583 (right eye left, left eye right)
17584
17585 @item abl
17586 @item tbl
17587 above-below (left eye above, right eye below)
17588
17589 @item abr
17590 @item tbr
17591 above-below (right eye above, left eye below)
17592
17593 @item ab2l
17594 @item tb2l
17595 above-below with half height resolution
17596 (left eye above, right eye below)
17597
17598 @item ab2r
17599 @item tb2r
17600 above-below with half height resolution
17601 (right eye above, left eye below)
17602
17603 @item al
17604 alternating frames (left eye first, right eye second)
17605
17606 @item ar
17607 alternating frames (right eye first, left eye second)
17608
17609 @item irl
17610 interleaved rows (left eye has top row, right eye starts on next row)
17611
17612 @item irr
17613 interleaved rows (right eye has top row, left eye starts on next row)
17614
17615 @item arbg
17616 anaglyph red/blue gray
17617 (red filter on left eye, blue filter on right eye)
17618
17619 @item argg
17620 anaglyph red/green gray
17621 (red filter on left eye, green filter on right eye)
17622
17623 @item arcg
17624 anaglyph red/cyan gray
17625 (red filter on left eye, cyan filter on right eye)
17626
17627 @item arch
17628 anaglyph red/cyan half colored
17629 (red filter on left eye, cyan filter on right eye)
17630
17631 @item arcc
17632 anaglyph red/cyan color
17633 (red filter on left eye, cyan filter on right eye)
17634
17635 @item arcd
17636 anaglyph red/cyan color optimized with the least squares projection of dubois
17637 (red filter on left eye, cyan filter on right eye)
17638
17639 @item agmg
17640 anaglyph green/magenta gray
17641 (green filter on left eye, magenta filter on right eye)
17642
17643 @item agmh
17644 anaglyph green/magenta half colored
17645 (green filter on left eye, magenta filter on right eye)
17646
17647 @item agmc
17648 anaglyph green/magenta colored
17649 (green filter on left eye, magenta filter on right eye)
17650
17651 @item agmd
17652 anaglyph green/magenta color optimized with the least squares projection of dubois
17653 (green filter on left eye, magenta filter on right eye)
17654
17655 @item aybg
17656 anaglyph yellow/blue gray
17657 (yellow filter on left eye, blue filter on right eye)
17658
17659 @item aybh
17660 anaglyph yellow/blue half colored
17661 (yellow filter on left eye, blue filter on right eye)
17662
17663 @item aybc
17664 anaglyph yellow/blue colored
17665 (yellow filter on left eye, blue filter on right eye)
17666
17667 @item aybd
17668 anaglyph yellow/blue color optimized with the least squares projection of dubois
17669 (yellow filter on left eye, blue filter on right eye)
17670
17671 @item ml
17672 mono output (left eye only)
17673
17674 @item mr
17675 mono output (right eye only)
17676
17677 @item chl
17678 checkerboard, left eye first
17679
17680 @item chr
17681 checkerboard, right eye first
17682
17683 @item icl
17684 interleaved columns, left eye first
17685
17686 @item icr
17687 interleaved columns, right eye first
17688
17689 @item hdmi
17690 HDMI frame pack
17691 @end table
17692
17693 Default value is @samp{arcd}.
17694 @end table
17695
17696 @subsection Examples
17697
17698 @itemize
17699 @item
17700 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
17701 @example
17702 stereo3d=sbsl:aybd
17703 @end example
17704
17705 @item
17706 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
17707 @example
17708 stereo3d=abl:sbsr
17709 @end example
17710 @end itemize
17711
17712 @section streamselect, astreamselect
17713 Select video or audio streams.
17714
17715 The filter accepts the following options:
17716
17717 @table @option
17718 @item inputs
17719 Set number of inputs. Default is 2.
17720
17721 @item map
17722 Set input indexes to remap to outputs.
17723 @end table
17724
17725 @subsection Commands
17726
17727 The @code{streamselect} and @code{astreamselect} filter supports the following
17728 commands:
17729
17730 @table @option
17731 @item map
17732 Set input indexes to remap to outputs.
17733 @end table
17734
17735 @subsection Examples
17736
17737 @itemize
17738 @item
17739 Select first 5 seconds 1st stream and rest of time 2nd stream:
17740 @example
17741 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
17742 @end example
17743
17744 @item
17745 Same as above, but for audio:
17746 @example
17747 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
17748 @end example
17749 @end itemize
17750
17751 @anchor{subtitles}
17752 @section subtitles
17753
17754 Draw subtitles on top of input video using the libass library.
17755
17756 To enable compilation of this filter you need to configure FFmpeg with
17757 @code{--enable-libass}. This filter also requires a build with libavcodec and
17758 libavformat to convert the passed subtitles file to ASS (Advanced Substation
17759 Alpha) subtitles format.
17760
17761 The filter accepts the following options:
17762
17763 @table @option
17764 @item filename, f
17765 Set the filename of the subtitle file to read. It must be specified.
17766
17767 @item original_size
17768 Specify the size of the original video, the video for which the ASS file
17769 was composed. For the syntax of this option, check the
17770 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17771 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
17772 correctly scale the fonts if the aspect ratio has been changed.
17773
17774 @item fontsdir
17775 Set a directory path containing fonts that can be used by the filter.
17776 These fonts will be used in addition to whatever the font provider uses.
17777
17778 @item alpha
17779 Process alpha channel, by default alpha channel is untouched.
17780
17781 @item charenc
17782 Set subtitles input character encoding. @code{subtitles} filter only. Only
17783 useful if not UTF-8.
17784
17785 @item stream_index, si
17786 Set subtitles stream index. @code{subtitles} filter only.
17787
17788 @item force_style
17789 Override default style or script info parameters of the subtitles. It accepts a
17790 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
17791 @end table
17792
17793 If the first key is not specified, it is assumed that the first value
17794 specifies the @option{filename}.
17795
17796 For example, to render the file @file{sub.srt} on top of the input
17797 video, use the command:
17798 @example
17799 subtitles=sub.srt
17800 @end example
17801
17802 which is equivalent to:
17803 @example
17804 subtitles=filename=sub.srt
17805 @end example
17806
17807 To render the default subtitles stream from file @file{video.mkv}, use:
17808 @example
17809 subtitles=video.mkv
17810 @end example
17811
17812 To render the second subtitles stream from that file, use:
17813 @example
17814 subtitles=video.mkv:si=1
17815 @end example
17816
17817 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
17818 @code{DejaVu Serif}, use:
17819 @example
17820 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
17821 @end example
17822
17823 @section super2xsai
17824
17825 Scale the input by 2x and smooth using the Super2xSaI (Scale and
17826 Interpolate) pixel art scaling algorithm.
17827
17828 Useful for enlarging pixel art images without reducing sharpness.
17829
17830 @section swaprect
17831
17832 Swap two rectangular objects in video.
17833
17834 This filter accepts the following options:
17835
17836 @table @option
17837 @item w
17838 Set object width.
17839
17840 @item h
17841 Set object height.
17842
17843 @item x1
17844 Set 1st rect x coordinate.
17845
17846 @item y1
17847 Set 1st rect y coordinate.
17848
17849 @item x2
17850 Set 2nd rect x coordinate.
17851
17852 @item y2
17853 Set 2nd rect y coordinate.
17854
17855 All expressions are evaluated once for each frame.
17856 @end table
17857
17858 The all options are expressions containing the following constants:
17859
17860 @table @option
17861 @item w
17862 @item h
17863 The input width and height.
17864
17865 @item a
17866 same as @var{w} / @var{h}
17867
17868 @item sar
17869 input sample aspect ratio
17870
17871 @item dar
17872 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
17873
17874 @item n
17875 The number of the input frame, starting from 0.
17876
17877 @item t
17878 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
17879
17880 @item pos
17881 the position in the file of the input frame, NAN if unknown
17882 @end table
17883
17884 @section swapuv
17885 Swap U & V plane.
17886
17887 @section tblend
17888 Blend successive video frames.
17889
17890 See @ref{blend}
17891
17892 @section telecine
17893
17894 Apply telecine process to the video.
17895
17896 This filter accepts the following options:
17897
17898 @table @option
17899 @item first_field
17900 @table @samp
17901 @item top, t
17902 top field first
17903 @item bottom, b
17904 bottom field first
17905 The default value is @code{top}.
17906 @end table
17907
17908 @item pattern
17909 A string of numbers representing the pulldown pattern you wish to apply.
17910 The default value is @code{23}.
17911 @end table
17912
17913 @example
17914 Some typical patterns:
17915
17916 NTSC output (30i):
17917 27.5p: 32222
17918 24p: 23 (classic)
17919 24p: 2332 (preferred)
17920 20p: 33
17921 18p: 334
17922 16p: 3444
17923
17924 PAL output (25i):
17925 27.5p: 12222
17926 24p: 222222222223 ("Euro pulldown")
17927 16.67p: 33
17928 16p: 33333334
17929 @end example
17930
17931 @section thistogram
17932
17933 Compute and draw a color distribution histogram for the input video across time.
17934
17935 Unlike @ref{histogram} video filter which only shows histogram of single input frame
17936 at certain time, this filter shows also past histograms of number of frames defined
17937 by @code{width} option.
17938
17939 The computed histogram is a representation of the color component
17940 distribution in an image.
17941
17942 The filter accepts the following options:
17943
17944 @table @option
17945 @item width, w
17946 Set width of single color component output. Default value is @code{0}.
17947 Value of @code{0} means width will be picked from input video.
17948 This also set number of passed histograms to keep.
17949 Allowed range is [0, 8192].
17950
17951 @item display_mode, d
17952 Set display mode.
17953 It accepts the following values:
17954 @table @samp
17955 @item stack
17956 Per color component graphs are placed below each other.
17957
17958 @item parade
17959 Per color component graphs are placed side by side.
17960
17961 @item overlay
17962 Presents information identical to that in the @code{parade}, except
17963 that the graphs representing color components are superimposed directly
17964 over one another.
17965 @end table
17966 Default is @code{stack}.
17967
17968 @item levels_mode, m
17969 Set mode. Can be either @code{linear}, or @code{logarithmic}.
17970 Default is @code{linear}.
17971
17972 @item components, c
17973 Set what color components to display.
17974 Default is @code{7}.
17975
17976 @item bgopacity, b
17977 Set background opacity. Default is @code{0.9}.
17978
17979 @item envelope, e
17980 Show envelope. Default is disabled.
17981
17982 @item ecolor, ec
17983 Set envelope color. Default is @code{gold}.
17984 @end table
17985
17986 @section threshold
17987
17988 Apply threshold effect to video stream.
17989
17990 This filter needs four video streams to perform thresholding.
17991 First stream is stream we are filtering.
17992 Second stream is holding threshold values, third stream is holding min values,
17993 and last, fourth stream is holding max values.
17994
17995 The filter accepts the following option:
17996
17997 @table @option
17998 @item planes
17999 Set which planes will be processed, unprocessed planes will be copied.
18000 By default value 0xf, all planes will be processed.
18001 @end table
18002
18003 For example if first stream pixel's component value is less then threshold value
18004 of pixel component from 2nd threshold stream, third stream value will picked,
18005 otherwise fourth stream pixel component value will be picked.
18006
18007 Using color source filter one can perform various types of thresholding:
18008
18009 @subsection Examples
18010
18011 @itemize
18012 @item
18013 Binary threshold, using gray color as threshold:
18014 @example
18015 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
18016 @end example
18017
18018 @item
18019 Inverted binary threshold, using gray color as threshold:
18020 @example
18021 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
18022 @end example
18023
18024 @item
18025 Truncate binary threshold, using gray color as threshold:
18026 @example
18027 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
18028 @end example
18029
18030 @item
18031 Threshold to zero, using gray color as threshold:
18032 @example
18033 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
18034 @end example
18035
18036 @item
18037 Inverted threshold to zero, using gray color as threshold:
18038 @example
18039 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
18040 @end example
18041 @end itemize
18042
18043 @section thumbnail
18044 Select the most representative frame in a given sequence of consecutive frames.
18045
18046 The filter accepts the following options:
18047
18048 @table @option
18049 @item n
18050 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
18051 will pick one of them, and then handle the next batch of @var{n} frames until
18052 the end. Default is @code{100}.
18053 @end table
18054
18055 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
18056 value will result in a higher memory usage, so a high value is not recommended.
18057
18058 @subsection Examples
18059
18060 @itemize
18061 @item
18062 Extract one picture each 50 frames:
18063 @example
18064 thumbnail=50
18065 @end example
18066
18067 @item
18068 Complete example of a thumbnail creation with @command{ffmpeg}:
18069 @example
18070 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
18071 @end example
18072 @end itemize
18073
18074 @section tile
18075
18076 Tile several successive frames together.
18077
18078 The filter accepts the following options:
18079
18080 @table @option
18081
18082 @item layout
18083 Set the grid size (i.e. the number of lines and columns). For the syntax of
18084 this option, check the
18085 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18086
18087 @item nb_frames
18088 Set the maximum number of frames to render in the given area. It must be less
18089 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
18090 the area will be used.
18091
18092 @item margin
18093 Set the outer border margin in pixels.
18094
18095 @item padding
18096 Set the inner border thickness (i.e. the number of pixels between frames). For
18097 more advanced padding options (such as having different values for the edges),
18098 refer to the pad video filter.
18099
18100 @item color
18101 Specify the color of the unused area. For the syntax of this option, check the
18102 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
18103 The default value of @var{color} is "black".
18104
18105 @item overlap
18106 Set the number of frames to overlap when tiling several successive frames together.
18107 The value must be between @code{0} and @var{nb_frames - 1}.
18108
18109 @item init_padding
18110 Set the number of frames to initially be empty before displaying first output frame.
18111 This controls how soon will one get first output frame.
18112 The value must be between @code{0} and @var{nb_frames - 1}.
18113 @end table
18114
18115 @subsection Examples
18116
18117 @itemize
18118 @item
18119 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
18120 @example
18121 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
18122 @end example
18123 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
18124 duplicating each output frame to accommodate the originally detected frame
18125 rate.
18126
18127 @item
18128 Display @code{5} pictures in an area of @code{3x2} frames,
18129 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
18130 mixed flat and named options:
18131 @example
18132 tile=3x2:nb_frames=5:padding=7:margin=2
18133 @end example
18134 @end itemize
18135
18136 @section tinterlace
18137
18138 Perform various types of temporal field interlacing.
18139
18140 Frames are counted starting from 1, so the first input frame is
18141 considered odd.
18142
18143 The filter accepts the following options:
18144
18145 @table @option
18146
18147 @item mode
18148 Specify the mode of the interlacing. This option can also be specified
18149 as a value alone. See below for a list of values for this option.
18150
18151 Available values are:
18152
18153 @table @samp
18154 @item merge, 0
18155 Move odd frames into the upper field, even into the lower field,
18156 generating a double height frame at half frame rate.
18157 @example
18158  ------> time
18159 Input:
18160 Frame 1         Frame 2         Frame 3         Frame 4
18161
18162 11111           22222           33333           44444
18163 11111           22222           33333           44444
18164 11111           22222           33333           44444
18165 11111           22222           33333           44444
18166
18167 Output:
18168 11111                           33333
18169 22222                           44444
18170 11111                           33333
18171 22222                           44444
18172 11111                           33333
18173 22222                           44444
18174 11111                           33333
18175 22222                           44444
18176 @end example
18177
18178 @item drop_even, 1
18179 Only output odd frames, even frames are dropped, generating a frame with
18180 unchanged height at half frame rate.
18181
18182 @example
18183  ------> time
18184 Input:
18185 Frame 1         Frame 2         Frame 3         Frame 4
18186
18187 11111           22222           33333           44444
18188 11111           22222           33333           44444
18189 11111           22222           33333           44444
18190 11111           22222           33333           44444
18191
18192 Output:
18193 11111                           33333
18194 11111                           33333
18195 11111                           33333
18196 11111                           33333
18197 @end example
18198
18199 @item drop_odd, 2
18200 Only output even frames, odd frames are dropped, generating a frame with
18201 unchanged height at half frame rate.
18202
18203 @example
18204  ------> time
18205 Input:
18206 Frame 1         Frame 2         Frame 3         Frame 4
18207
18208 11111           22222           33333           44444
18209 11111           22222           33333           44444
18210 11111           22222           33333           44444
18211 11111           22222           33333           44444
18212
18213 Output:
18214                 22222                           44444
18215                 22222                           44444
18216                 22222                           44444
18217                 22222                           44444
18218 @end example
18219
18220 @item pad, 3
18221 Expand each frame to full height, but pad alternate lines with black,
18222 generating a frame with double height at the same input frame rate.
18223
18224 @example
18225  ------> time
18226 Input:
18227 Frame 1         Frame 2         Frame 3         Frame 4
18228
18229 11111           22222           33333           44444
18230 11111           22222           33333           44444
18231 11111           22222           33333           44444
18232 11111           22222           33333           44444
18233
18234 Output:
18235 11111           .....           33333           .....
18236 .....           22222           .....           44444
18237 11111           .....           33333           .....
18238 .....           22222           .....           44444
18239 11111           .....           33333           .....
18240 .....           22222           .....           44444
18241 11111           .....           33333           .....
18242 .....           22222           .....           44444
18243 @end example
18244
18245
18246 @item interleave_top, 4
18247 Interleave the upper field from odd frames with the lower field from
18248 even frames, generating a frame with unchanged height at half frame rate.
18249
18250 @example
18251  ------> time
18252 Input:
18253 Frame 1         Frame 2         Frame 3         Frame 4
18254
18255 11111<-         22222           33333<-         44444
18256 11111           22222<-         33333           44444<-
18257 11111<-         22222           33333<-         44444
18258 11111           22222<-         33333           44444<-
18259
18260 Output:
18261 11111                           33333
18262 22222                           44444
18263 11111                           33333
18264 22222                           44444
18265 @end example
18266
18267
18268 @item interleave_bottom, 5
18269 Interleave the lower field from odd frames with the upper field from
18270 even frames, generating a frame with unchanged height at half frame rate.
18271
18272 @example
18273  ------> time
18274 Input:
18275 Frame 1         Frame 2         Frame 3         Frame 4
18276
18277 11111           22222<-         33333           44444<-
18278 11111<-         22222           33333<-         44444
18279 11111           22222<-         33333           44444<-
18280 11111<-         22222           33333<-         44444
18281
18282 Output:
18283 22222                           44444
18284 11111                           33333
18285 22222                           44444
18286 11111                           33333
18287 @end example
18288
18289
18290 @item interlacex2, 6
18291 Double frame rate with unchanged height. Frames are inserted each
18292 containing the second temporal field from the previous input frame and
18293 the first temporal field from the next input frame. This mode relies on
18294 the top_field_first flag. Useful for interlaced video displays with no
18295 field synchronisation.
18296
18297 @example
18298  ------> time
18299 Input:
18300 Frame 1         Frame 2         Frame 3         Frame 4
18301
18302 11111           22222           33333           44444
18303  11111           22222           33333           44444
18304 11111           22222           33333           44444
18305  11111           22222           33333           44444
18306
18307 Output:
18308 11111   22222   22222   33333   33333   44444   44444
18309  11111   11111   22222   22222   33333   33333   44444
18310 11111   22222   22222   33333   33333   44444   44444
18311  11111   11111   22222   22222   33333   33333   44444
18312 @end example
18313
18314
18315 @item mergex2, 7
18316 Move odd frames into the upper field, even into the lower field,
18317 generating a double height frame at same frame rate.
18318
18319 @example
18320  ------> time
18321 Input:
18322 Frame 1         Frame 2         Frame 3         Frame 4
18323
18324 11111           22222           33333           44444
18325 11111           22222           33333           44444
18326 11111           22222           33333           44444
18327 11111           22222           33333           44444
18328
18329 Output:
18330 11111           33333           33333           55555
18331 22222           22222           44444           44444
18332 11111           33333           33333           55555
18333 22222           22222           44444           44444
18334 11111           33333           33333           55555
18335 22222           22222           44444           44444
18336 11111           33333           33333           55555
18337 22222           22222           44444           44444
18338 @end example
18339
18340 @end table
18341
18342 Numeric values are deprecated but are accepted for backward
18343 compatibility reasons.
18344
18345 Default mode is @code{merge}.
18346
18347 @item flags
18348 Specify flags influencing the filter process.
18349
18350 Available value for @var{flags} is:
18351
18352 @table @option
18353 @item low_pass_filter, vlpf
18354 Enable linear vertical low-pass filtering in the filter.
18355 Vertical low-pass filtering is required when creating an interlaced
18356 destination from a progressive source which contains high-frequency
18357 vertical detail. Filtering will reduce interlace 'twitter' and Moire
18358 patterning.
18359
18360 @item complex_filter, cvlpf
18361 Enable complex vertical low-pass filtering.
18362 This will slightly less reduce interlace 'twitter' and Moire
18363 patterning but better retain detail and subjective sharpness impression.
18364
18365 @item bypass_il
18366 Bypass already interlaced frames, only adjust the frame rate.
18367 @end table
18368
18369 Vertical low-pass filtering and bypassing already interlaced frames can only be
18370 enabled for @option{mode} @var{interleave_top} and @var{interleave_bottom}.
18371
18372 @end table
18373
18374 @section tmix
18375
18376 Mix successive video frames.
18377
18378 A description of the accepted options follows.
18379
18380 @table @option
18381 @item frames
18382 The number of successive frames to mix. If unspecified, it defaults to 3.
18383
18384 @item weights
18385 Specify weight of each input video frame.
18386 Each weight is separated by space. If number of weights is smaller than
18387 number of @var{frames} last specified weight will be used for all remaining
18388 unset weights.
18389
18390 @item scale
18391 Specify scale, if it is set it will be multiplied with sum
18392 of each weight multiplied with pixel values to give final destination
18393 pixel value. By default @var{scale} is auto scaled to sum of weights.
18394 @end table
18395
18396 @subsection Examples
18397
18398 @itemize
18399 @item
18400 Average 7 successive frames:
18401 @example
18402 tmix=frames=7:weights="1 1 1 1 1 1 1"
18403 @end example
18404
18405 @item
18406 Apply simple temporal convolution:
18407 @example
18408 tmix=frames=3:weights="-1 3 -1"
18409 @end example
18410
18411 @item
18412 Similar as above but only showing temporal differences:
18413 @example
18414 tmix=frames=3:weights="-1 2 -1":scale=1
18415 @end example
18416 @end itemize
18417
18418 @anchor{tonemap}
18419 @section tonemap
18420 Tone map colors from different dynamic ranges.
18421
18422 This filter expects data in single precision floating point, as it needs to
18423 operate on (and can output) out-of-range values. Another filter, such as
18424 @ref{zscale}, is needed to convert the resulting frame to a usable format.
18425
18426 The tonemapping algorithms implemented only work on linear light, so input
18427 data should be linearized beforehand (and possibly correctly tagged).
18428
18429 @example
18430 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
18431 @end example
18432
18433 @subsection Options
18434 The filter accepts the following options.
18435
18436 @table @option
18437 @item tonemap
18438 Set the tone map algorithm to use.
18439
18440 Possible values are:
18441 @table @var
18442 @item none
18443 Do not apply any tone map, only desaturate overbright pixels.
18444
18445 @item clip
18446 Hard-clip any out-of-range values. Use it for perfect color accuracy for
18447 in-range values, while distorting out-of-range values.
18448
18449 @item linear
18450 Stretch the entire reference gamut to a linear multiple of the display.
18451
18452 @item gamma
18453 Fit a logarithmic transfer between the tone curves.
18454
18455 @item reinhard
18456 Preserve overall image brightness with a simple curve, using nonlinear
18457 contrast, which results in flattening details and degrading color accuracy.
18458
18459 @item hable
18460 Preserve both dark and bright details better than @var{reinhard}, at the cost
18461 of slightly darkening everything. Use it when detail preservation is more
18462 important than color and brightness accuracy.
18463
18464 @item mobius
18465 Smoothly map out-of-range values, while retaining contrast and colors for
18466 in-range material as much as possible. Use it when color accuracy is more
18467 important than detail preservation.
18468 @end table
18469
18470 Default is none.
18471
18472 @item param
18473 Tune the tone mapping algorithm.
18474
18475 This affects the following algorithms:
18476 @table @var
18477 @item none
18478 Ignored.
18479
18480 @item linear
18481 Specifies the scale factor to use while stretching.
18482 Default to 1.0.
18483
18484 @item gamma
18485 Specifies the exponent of the function.
18486 Default to 1.8.
18487
18488 @item clip
18489 Specify an extra linear coefficient to multiply into the signal before clipping.
18490 Default to 1.0.
18491
18492 @item reinhard
18493 Specify the local contrast coefficient at the display peak.
18494 Default to 0.5, which means that in-gamut values will be about half as bright
18495 as when clipping.
18496
18497 @item hable
18498 Ignored.
18499
18500 @item mobius
18501 Specify the transition point from linear to mobius transform. Every value
18502 below this point is guaranteed to be mapped 1:1. The higher the value, the
18503 more accurate the result will be, at the cost of losing bright details.
18504 Default to 0.3, which due to the steep initial slope still preserves in-range
18505 colors fairly accurately.
18506 @end table
18507
18508 @item desat
18509 Apply desaturation for highlights that exceed this level of brightness. The
18510 higher the parameter, the more color information will be preserved. This
18511 setting helps prevent unnaturally blown-out colors for super-highlights, by
18512 (smoothly) turning into white instead. This makes images feel more natural,
18513 at the cost of reducing information about out-of-range colors.
18514
18515 The default of 2.0 is somewhat conservative and will mostly just apply to
18516 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
18517
18518 This option works only if the input frame has a supported color tag.
18519
18520 @item peak
18521 Override signal/nominal/reference peak with this value. Useful when the
18522 embedded peak information in display metadata is not reliable or when tone
18523 mapping from a lower range to a higher range.
18524 @end table
18525
18526 @section tpad
18527
18528 Temporarily pad video frames.
18529
18530 The filter accepts the following options:
18531
18532 @table @option
18533 @item start
18534 Specify number of delay frames before input video stream. Default is 0.
18535
18536 @item stop
18537 Specify number of padding frames after input video stream.
18538 Set to -1 to pad indefinitely. Default is 0.
18539
18540 @item start_mode
18541 Set kind of frames added to beginning of stream.
18542 Can be either @var{add} or @var{clone}.
18543 With @var{add} frames of solid-color are added.
18544 With @var{clone} frames are clones of first frame.
18545 Default is @var{add}.
18546
18547 @item stop_mode
18548 Set kind of frames added to end of stream.
18549 Can be either @var{add} or @var{clone}.
18550 With @var{add} frames of solid-color are added.
18551 With @var{clone} frames are clones of last frame.
18552 Default is @var{add}.
18553
18554 @item start_duration, stop_duration
18555 Specify the duration of the start/stop delay. See
18556 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18557 for the accepted syntax.
18558 These options override @var{start} and @var{stop}. Default is 0.
18559
18560 @item color
18561 Specify the color of the padded area. For the syntax of this option,
18562 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
18563 manual,ffmpeg-utils}.
18564
18565 The default value of @var{color} is "black".
18566 @end table
18567
18568 @anchor{transpose}
18569 @section transpose
18570
18571 Transpose rows with columns in the input video and optionally flip it.
18572
18573 It accepts the following parameters:
18574
18575 @table @option
18576
18577 @item dir
18578 Specify the transposition direction.
18579
18580 Can assume the following values:
18581 @table @samp
18582 @item 0, 4, cclock_flip
18583 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
18584 @example
18585 L.R     L.l
18586 . . ->  . .
18587 l.r     R.r
18588 @end example
18589
18590 @item 1, 5, clock
18591 Rotate by 90 degrees clockwise, that is:
18592 @example
18593 L.R     l.L
18594 . . ->  . .
18595 l.r     r.R
18596 @end example
18597
18598 @item 2, 6, cclock
18599 Rotate by 90 degrees counterclockwise, that is:
18600 @example
18601 L.R     R.r
18602 . . ->  . .
18603 l.r     L.l
18604 @end example
18605
18606 @item 3, 7, clock_flip
18607 Rotate by 90 degrees clockwise and vertically flip, that is:
18608 @example
18609 L.R     r.R
18610 . . ->  . .
18611 l.r     l.L
18612 @end example
18613 @end table
18614
18615 For values between 4-7, the transposition is only done if the input
18616 video geometry is portrait and not landscape. These values are
18617 deprecated, the @code{passthrough} option should be used instead.
18618
18619 Numerical values are deprecated, and should be dropped in favor of
18620 symbolic constants.
18621
18622 @item passthrough
18623 Do not apply the transposition if the input geometry matches the one
18624 specified by the specified value. It accepts the following values:
18625 @table @samp
18626 @item none
18627 Always apply transposition.
18628 @item portrait
18629 Preserve portrait geometry (when @var{height} >= @var{width}).
18630 @item landscape
18631 Preserve landscape geometry (when @var{width} >= @var{height}).
18632 @end table
18633
18634 Default value is @code{none}.
18635 @end table
18636
18637 For example to rotate by 90 degrees clockwise and preserve portrait
18638 layout:
18639 @example
18640 transpose=dir=1:passthrough=portrait
18641 @end example
18642
18643 The command above can also be specified as:
18644 @example
18645 transpose=1:portrait
18646 @end example
18647
18648 @section transpose_npp
18649
18650 Transpose rows with columns in the input video and optionally flip it.
18651 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
18652
18653 It accepts the following parameters:
18654
18655 @table @option
18656
18657 @item dir
18658 Specify the transposition direction.
18659
18660 Can assume the following values:
18661 @table @samp
18662 @item cclock_flip
18663 Rotate by 90 degrees counterclockwise and vertically flip. (default)
18664
18665 @item clock
18666 Rotate by 90 degrees clockwise.
18667
18668 @item cclock
18669 Rotate by 90 degrees counterclockwise.
18670
18671 @item clock_flip
18672 Rotate by 90 degrees clockwise and vertically flip.
18673 @end table
18674
18675 @item passthrough
18676 Do not apply the transposition if the input geometry matches the one
18677 specified by the specified value. It accepts the following values:
18678 @table @samp
18679 @item none
18680 Always apply transposition. (default)
18681 @item portrait
18682 Preserve portrait geometry (when @var{height} >= @var{width}).
18683 @item landscape
18684 Preserve landscape geometry (when @var{width} >= @var{height}).
18685 @end table
18686
18687 @end table
18688
18689 @section trim
18690 Trim the input so that the output contains one continuous subpart of the input.
18691
18692 It accepts the following parameters:
18693 @table @option
18694 @item start
18695 Specify the time of the start of the kept section, i.e. the frame with the
18696 timestamp @var{start} will be the first frame in the output.
18697
18698 @item end
18699 Specify the time of the first frame that will be dropped, i.e. the frame
18700 immediately preceding the one with the timestamp @var{end} will be the last
18701 frame in the output.
18702
18703 @item start_pts
18704 This is the same as @var{start}, except this option sets the start timestamp
18705 in timebase units instead of seconds.
18706
18707 @item end_pts
18708 This is the same as @var{end}, except this option sets the end timestamp
18709 in timebase units instead of seconds.
18710
18711 @item duration
18712 The maximum duration of the output in seconds.
18713
18714 @item start_frame
18715 The number of the first frame that should be passed to the output.
18716
18717 @item end_frame
18718 The number of the first frame that should be dropped.
18719 @end table
18720
18721 @option{start}, @option{end}, and @option{duration} are expressed as time
18722 duration specifications; see
18723 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
18724 for the accepted syntax.
18725
18726 Note that the first two sets of the start/end options and the @option{duration}
18727 option look at the frame timestamp, while the _frame variants simply count the
18728 frames that pass through the filter. Also note that this filter does not modify
18729 the timestamps. If you wish for the output timestamps to start at zero, insert a
18730 setpts filter after the trim filter.
18731
18732 If multiple start or end options are set, this filter tries to be greedy and
18733 keep all the frames that match at least one of the specified constraints. To keep
18734 only the part that matches all the constraints at once, chain multiple trim
18735 filters.
18736
18737 The defaults are such that all the input is kept. So it is possible to set e.g.
18738 just the end values to keep everything before the specified time.
18739
18740 Examples:
18741 @itemize
18742 @item
18743 Drop everything except the second minute of input:
18744 @example
18745 ffmpeg -i INPUT -vf trim=60:120
18746 @end example
18747
18748 @item
18749 Keep only the first second:
18750 @example
18751 ffmpeg -i INPUT -vf trim=duration=1
18752 @end example
18753
18754 @end itemize
18755
18756 @section unpremultiply
18757 Apply alpha unpremultiply effect to input video stream using first plane
18758 of second stream as alpha.
18759
18760 Both streams must have same dimensions and same pixel format.
18761
18762 The filter accepts the following option:
18763
18764 @table @option
18765 @item planes
18766 Set which planes will be processed, unprocessed planes will be copied.
18767 By default value 0xf, all planes will be processed.
18768
18769 If the format has 1 or 2 components, then luma is bit 0.
18770 If the format has 3 or 4 components:
18771 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
18772 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
18773 If present, the alpha channel is always the last bit.
18774
18775 @item inplace
18776 Do not require 2nd input for processing, instead use alpha plane from input stream.
18777 @end table
18778
18779 @anchor{unsharp}
18780 @section unsharp
18781
18782 Sharpen or blur the input video.
18783
18784 It accepts the following parameters:
18785
18786 @table @option
18787 @item luma_msize_x, lx
18788 Set the luma matrix horizontal size. It must be an odd integer between
18789 3 and 23. The default value is 5.
18790
18791 @item luma_msize_y, ly
18792 Set the luma matrix vertical size. It must be an odd integer between 3
18793 and 23. The default value is 5.
18794
18795 @item luma_amount, la
18796 Set the luma effect strength. It must be a floating point number, reasonable
18797 values lay between -1.5 and 1.5.
18798
18799 Negative values will blur the input video, while positive values will
18800 sharpen it, a value of zero will disable the effect.
18801
18802 Default value is 1.0.
18803
18804 @item chroma_msize_x, cx
18805 Set the chroma matrix horizontal size. It must be an odd integer
18806 between 3 and 23. The default value is 5.
18807
18808 @item chroma_msize_y, cy
18809 Set the chroma matrix vertical size. It must be an odd integer
18810 between 3 and 23. The default value is 5.
18811
18812 @item chroma_amount, ca
18813 Set the chroma effect strength. It must be a floating point number, reasonable
18814 values lay between -1.5 and 1.5.
18815
18816 Negative values will blur the input video, while positive values will
18817 sharpen it, a value of zero will disable the effect.
18818
18819 Default value is 0.0.
18820
18821 @end table
18822
18823 All parameters are optional and default to the equivalent of the
18824 string '5:5:1.0:5:5:0.0'.
18825
18826 @subsection Examples
18827
18828 @itemize
18829 @item
18830 Apply strong luma sharpen effect:
18831 @example
18832 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
18833 @end example
18834
18835 @item
18836 Apply a strong blur of both luma and chroma parameters:
18837 @example
18838 unsharp=7:7:-2:7:7:-2
18839 @end example
18840 @end itemize
18841
18842 @section uspp
18843
18844 Apply ultra slow/simple postprocessing filter that compresses and decompresses
18845 the image at several (or - in the case of @option{quality} level @code{8} - all)
18846 shifts and average the results.
18847
18848 The way this differs from the behavior of spp is that uspp actually encodes &
18849 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
18850 DCT similar to MJPEG.
18851
18852 The filter accepts the following options:
18853
18854 @table @option
18855 @item quality
18856 Set quality. This option defines the number of levels for averaging. It accepts
18857 an integer in the range 0-8. If set to @code{0}, the filter will have no
18858 effect. A value of @code{8} means the higher quality. For each increment of
18859 that value the speed drops by a factor of approximately 2.  Default value is
18860 @code{3}.
18861
18862 @item qp
18863 Force a constant quantization parameter. If not set, the filter will use the QP
18864 from the video stream (if available).
18865 @end table
18866
18867 @section v360
18868
18869 Convert 360 videos between various formats.
18870
18871 The filter accepts the following options:
18872
18873 @table @option
18874
18875 @item input
18876 @item output
18877 Set format of the input/output video.
18878
18879 Available formats:
18880
18881 @table @samp
18882
18883 @item e
18884 @item equirect
18885 Equirectangular projection.
18886
18887 @item c3x2
18888 @item c6x1
18889 @item c1x6
18890 Cubemap with 3x2/6x1/1x6 layout.
18891
18892 Format specific options:
18893
18894 @table @option
18895 @item in_pad
18896 @item out_pad
18897 Set padding proportion for the input/output cubemap. Values in decimals.
18898
18899 Example values:
18900 @table @samp
18901 @item 0
18902 No padding.
18903 @item 0.01
18904 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)
18905 @end table
18906
18907 Default value is @b{@samp{0}}.
18908
18909 @item fin_pad
18910 @item fout_pad
18911 Set fixed padding for the input/output cubemap. Values in pixels.
18912
18913 Default value is @b{@samp{0}}. If greater than zero it overrides other padding options.
18914
18915 @item in_forder
18916 @item out_forder
18917 Set order of faces for the input/output cubemap. Choose one direction for each position.
18918
18919 Designation of directions:
18920 @table @samp
18921 @item r
18922 right
18923 @item l
18924 left
18925 @item u
18926 up
18927 @item d
18928 down
18929 @item f
18930 forward
18931 @item b
18932 back
18933 @end table
18934
18935 Default value is @b{@samp{rludfb}}.
18936
18937 @item in_frot
18938 @item out_frot
18939 Set rotation of faces for the input/output cubemap. Choose one angle for each position.
18940
18941 Designation of angles:
18942 @table @samp
18943 @item 0
18944 0 degrees clockwise
18945 @item 1
18946 90 degrees clockwise
18947 @item 2
18948 180 degrees clockwise
18949 @item 3
18950 270 degrees clockwise
18951 @end table
18952
18953 Default value is @b{@samp{000000}}.
18954 @end table
18955
18956 @item eac
18957 Equi-Angular Cubemap.
18958
18959 @item flat
18960 @item gnomonic
18961 @item rectilinear
18962 Regular video.
18963
18964 Format specific options:
18965 @table @option
18966 @item h_fov
18967 @item v_fov
18968 @item d_fov
18969 Set output horizontal/vertical/diagonal field of view. Values in degrees.
18970
18971 If diagonal field of view is set it overrides horizontal and vertical field of view.
18972
18973 @item ih_fov
18974 @item iv_fov
18975 @item id_fov
18976 Set input horizontal/vertical/diagonal field of view. Values in degrees.
18977
18978 If diagonal field of view is set it overrides horizontal and vertical field of view.
18979 @end table
18980
18981 @item dfisheye
18982 Dual fisheye.
18983
18984 Format specific options:
18985 @table @option
18986 @item in_pad
18987 @item out_pad
18988 Set padding proportion. Values in decimals.
18989
18990 Example values:
18991 @table @samp
18992 @item 0
18993 No padding.
18994 @item 0.01
18995 1% padding.
18996 @end table
18997
18998 Default value is @b{@samp{0}}.
18999 @end table
19000
19001 @item barrel
19002 @item fb
19003 @item barrelsplit
19004 Facebook's 360 formats.
19005
19006 @item sg
19007 Stereographic format.
19008
19009 Format specific options:
19010 @table @option
19011 @item h_fov
19012 @item v_fov
19013 @item d_fov
19014 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19015
19016 If diagonal field of view is set it overrides horizontal and vertical field of view.
19017
19018 @item ih_fov
19019 @item iv_fov
19020 @item id_fov
19021 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19022
19023 If diagonal field of view is set it overrides horizontal and vertical field of view.
19024 @end table
19025
19026 @item mercator
19027 Mercator format.
19028
19029 @item ball
19030 Ball format, gives significant distortion toward the back.
19031
19032 @item hammer
19033 Hammer-Aitoff map projection format.
19034
19035 @item sinusoidal
19036 Sinusoidal map projection format.
19037
19038 @item fisheye
19039 Fisheye projection.
19040
19041 Format specific options:
19042 @table @option
19043 @item h_fov
19044 @item v_fov
19045 @item d_fov
19046 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19047
19048 If diagonal field of view is set it overrides horizontal and vertical field of view.
19049
19050 @item ih_fov
19051 @item iv_fov
19052 @item id_fov
19053 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19054
19055 If diagonal field of view is set it overrides horizontal and vertical field of view.
19056 @end table
19057
19058 @item pannini
19059 Pannini projection.
19060
19061 Format specific options:
19062 @table @option
19063 @item h_fov
19064 Set output pannini parameter.
19065
19066 @item ih_fov
19067 Set input pannini parameter.
19068 @end table
19069
19070 @item cylindrical
19071 Cylindrical projection.
19072
19073 Format specific options:
19074 @table @option
19075 @item h_fov
19076 @item v_fov
19077 @item d_fov
19078 Set output horizontal/vertical/diagonal field of view. Values in degrees.
19079
19080 If diagonal field of view is set it overrides horizontal and vertical field of view.
19081
19082 @item ih_fov
19083 @item iv_fov
19084 @item id_fov
19085 Set input horizontal/vertical/diagonal field of view. Values in degrees.
19086
19087 If diagonal field of view is set it overrides horizontal and vertical field of view.
19088 @end table
19089
19090 @item perspective
19091 Perspective projection. @i{(output only)}
19092
19093 Format specific options:
19094 @table @option
19095 @item v_fov
19096 Set perspective parameter.
19097 @end table
19098
19099 @item tetrahedron
19100 Tetrahedron projection.
19101
19102 @item tsp
19103 Truncated square pyramid projection.
19104
19105 @item he
19106 @item hequirect
19107 Half equirectangular projection.
19108 @end table
19109
19110 @item interp
19111 Set interpolation method.@*
19112 @i{Note: more complex interpolation methods require much more memory to run.}
19113
19114 Available methods:
19115
19116 @table @samp
19117 @item near
19118 @item nearest
19119 Nearest neighbour.
19120 @item line
19121 @item linear
19122 Bilinear interpolation.
19123 @item lagrange9
19124 Lagrange9 interpolation.
19125 @item cube
19126 @item cubic
19127 Bicubic interpolation.
19128 @item lanc
19129 @item lanczos
19130 Lanczos interpolation.
19131 @item sp16
19132 @item spline16
19133 Spline16 interpolation.
19134 @item gauss
19135 @item gaussian
19136 Gaussian interpolation.
19137 @end table
19138
19139 Default value is @b{@samp{line}}.
19140
19141 @item w
19142 @item h
19143 Set the output video resolution.
19144
19145 Default resolution depends on formats.
19146
19147 @item in_stereo
19148 @item out_stereo
19149 Set the input/output stereo format.
19150
19151 @table @samp
19152 @item 2d
19153 2D mono
19154 @item sbs
19155 Side by side
19156 @item tb
19157 Top bottom
19158 @end table
19159
19160 Default value is @b{@samp{2d}} for input and output format.
19161
19162 @item yaw
19163 @item pitch
19164 @item roll
19165 Set rotation for the output video. Values in degrees.
19166
19167 @item rorder
19168 Set rotation order for the output video. Choose one item for each position.
19169
19170 @table @samp
19171 @item y, Y
19172 yaw
19173 @item p, P
19174 pitch
19175 @item r, R
19176 roll
19177 @end table
19178
19179 Default value is @b{@samp{ypr}}.
19180
19181 @item h_flip
19182 @item v_flip
19183 @item d_flip
19184 Flip the output video horizontally(swaps left-right)/vertically(swaps up-down)/in-depth(swaps back-forward). Boolean values.
19185
19186 @item ih_flip
19187 @item iv_flip
19188 Set if input video is flipped horizontally/vertically. Boolean values.
19189
19190 @item in_trans
19191 Set if input video is transposed. Boolean value, by default disabled.
19192
19193 @item out_trans
19194 Set if output video needs to be transposed. Boolean value, by default disabled.
19195
19196 @item alpha_mask
19197 Build mask in alpha plane for all unmapped pixels by marking them fully transparent. Boolean value, by default disabled.
19198 @end table
19199
19200 @subsection Examples
19201
19202 @itemize
19203 @item
19204 Convert equirectangular video to cubemap with 3x2 layout and 1% padding using bicubic interpolation:
19205 @example
19206 ffmpeg -i input.mkv -vf v360=e:c3x2:cubic:out_pad=0.01 output.mkv
19207 @end example
19208 @item
19209 Extract back view of Equi-Angular Cubemap:
19210 @example
19211 ffmpeg -i input.mkv -vf v360=eac:flat:yaw=180 output.mkv
19212 @end example
19213 @item
19214 Convert transposed and horizontally flipped Equi-Angular Cubemap in side-by-side stereo format to equirectangular top-bottom stereo format:
19215 @example
19216 v360=eac:equirect:in_stereo=sbs:in_trans=1:ih_flip=1:out_stereo=tb
19217 @end example
19218 @end itemize
19219
19220 @subsection Commands
19221
19222 This filter supports subset of above options as @ref{commands}.
19223
19224 @section vaguedenoiser
19225
19226 Apply a wavelet based denoiser.
19227
19228 It transforms each frame from the video input into the wavelet domain,
19229 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
19230 the obtained coefficients. It does an inverse wavelet transform after.
19231 Due to wavelet properties, it should give a nice smoothed result, and
19232 reduced noise, without blurring picture features.
19233
19234 This filter accepts the following options:
19235
19236 @table @option
19237 @item threshold
19238 The filtering strength. The higher, the more filtered the video will be.
19239 Hard thresholding can use a higher threshold than soft thresholding
19240 before the video looks overfiltered. Default value is 2.
19241
19242 @item method
19243 The filtering method the filter will use.
19244
19245 It accepts the following values:
19246 @table @samp
19247 @item hard
19248 All values under the threshold will be zeroed.
19249
19250 @item soft
19251 All values under the threshold will be zeroed. All values above will be
19252 reduced by the threshold.
19253
19254 @item garrote
19255 Scales or nullifies coefficients - intermediary between (more) soft and
19256 (less) hard thresholding.
19257 @end table
19258
19259 Default is garrote.
19260
19261 @item nsteps
19262 Number of times, the wavelet will decompose the picture. Picture can't
19263 be decomposed beyond a particular point (typically, 8 for a 640x480
19264 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
19265
19266 @item percent
19267 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
19268
19269 @item planes
19270 A list of the planes to process. By default all planes are processed.
19271 @end table
19272
19273 @section vectorscope
19274
19275 Display 2 color component values in the two dimensional graph (which is called
19276 a vectorscope).
19277
19278 This filter accepts the following options:
19279
19280 @table @option
19281 @item mode, m
19282 Set vectorscope mode.
19283
19284 It accepts the following values:
19285 @table @samp
19286 @item gray
19287 @item tint
19288 Gray values are displayed on graph, higher brightness means more pixels have
19289 same component color value on location in graph. This is the default mode.
19290
19291 @item color
19292 Gray values are displayed on graph. Surrounding pixels values which are not
19293 present in video frame are drawn in gradient of 2 color components which are
19294 set by option @code{x} and @code{y}. The 3rd color component is static.
19295
19296 @item color2
19297 Actual color components values present in video frame are displayed on graph.
19298
19299 @item color3
19300 Similar as color2 but higher frequency of same values @code{x} and @code{y}
19301 on graph increases value of another color component, which is luminance by
19302 default values of @code{x} and @code{y}.
19303
19304 @item color4
19305 Actual colors present in video frame are displayed on graph. If two different
19306 colors map to same position on graph then color with higher value of component
19307 not present in graph is picked.
19308
19309 @item color5
19310 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
19311 component picked from radial gradient.
19312 @end table
19313
19314 @item x
19315 Set which color component will be represented on X-axis. Default is @code{1}.
19316
19317 @item y
19318 Set which color component will be represented on Y-axis. Default is @code{2}.
19319
19320 @item intensity, i
19321 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
19322 of color component which represents frequency of (X, Y) location in graph.
19323
19324 @item envelope, e
19325 @table @samp
19326 @item none
19327 No envelope, this is default.
19328
19329 @item instant
19330 Instant envelope, even darkest single pixel will be clearly highlighted.
19331
19332 @item peak
19333 Hold maximum and minimum values presented in graph over time. This way you
19334 can still spot out of range values without constantly looking at vectorscope.
19335
19336 @item peak+instant
19337 Peak and instant envelope combined together.
19338 @end table
19339
19340 @item graticule, g
19341 Set what kind of graticule to draw.
19342 @table @samp
19343 @item none
19344 @item green
19345 @item color
19346 @item invert
19347 @end table
19348
19349 @item opacity, o
19350 Set graticule opacity.
19351
19352 @item flags, f
19353 Set graticule flags.
19354
19355 @table @samp
19356 @item white
19357 Draw graticule for white point.
19358
19359 @item black
19360 Draw graticule for black point.
19361
19362 @item name
19363 Draw color points short names.
19364 @end table
19365
19366 @item bgopacity, b
19367 Set background opacity.
19368
19369 @item lthreshold, l
19370 Set low threshold for color component not represented on X or Y axis.
19371 Values lower than this value will be ignored. Default is 0.
19372 Note this value is multiplied with actual max possible value one pixel component
19373 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
19374 is 0.1 * 255 = 25.
19375
19376 @item hthreshold, h
19377 Set high threshold for color component not represented on X or Y axis.
19378 Values higher than this value will be ignored. Default is 1.
19379 Note this value is multiplied with actual max possible value one pixel component
19380 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
19381 is 0.9 * 255 = 230.
19382
19383 @item colorspace, c
19384 Set what kind of colorspace to use when drawing graticule.
19385 @table @samp
19386 @item auto
19387 @item 601
19388 @item 709
19389 @end table
19390 Default is auto.
19391
19392 @item tint0, t0
19393 @item tint1, t1
19394 Set color tint for gray/tint vectorscope mode. By default both options are zero.
19395 This means no tint, and output will remain gray.
19396 @end table
19397
19398 @anchor{vidstabdetect}
19399 @section vidstabdetect
19400
19401 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
19402 @ref{vidstabtransform} for pass 2.
19403
19404 This filter generates a file with relative translation and rotation
19405 transform information about subsequent frames, which is then used by
19406 the @ref{vidstabtransform} filter.
19407
19408 To enable compilation of this filter you need to configure FFmpeg with
19409 @code{--enable-libvidstab}.
19410
19411 This filter accepts the following options:
19412
19413 @table @option
19414 @item result
19415 Set the path to the file used to write the transforms information.
19416 Default value is @file{transforms.trf}.
19417
19418 @item shakiness
19419 Set how shaky the video is and how quick the camera is. It accepts an
19420 integer in the range 1-10, a value of 1 means little shakiness, a
19421 value of 10 means strong shakiness. Default value is 5.
19422
19423 @item accuracy
19424 Set the accuracy of the detection process. It must be a value in the
19425 range 1-15. A value of 1 means low accuracy, a value of 15 means high
19426 accuracy. Default value is 15.
19427
19428 @item stepsize
19429 Set stepsize of the search process. The region around minimum is
19430 scanned with 1 pixel resolution. Default value is 6.
19431
19432 @item mincontrast
19433 Set minimum contrast. Below this value a local measurement field is
19434 discarded. Must be a floating point value in the range 0-1. Default
19435 value is 0.3.
19436
19437 @item tripod
19438 Set reference frame number for tripod mode.
19439
19440 If enabled, the motion of the frames is compared to a reference frame
19441 in the filtered stream, identified by the specified number. The idea
19442 is to compensate all movements in a more-or-less static scene and keep
19443 the camera view absolutely still.
19444
19445 If set to 0, it is disabled. The frames are counted starting from 1.
19446
19447 @item show
19448 Show fields and transforms in the resulting frames. It accepts an
19449 integer in the range 0-2. Default value is 0, which disables any
19450 visualization.
19451 @end table
19452
19453 @subsection Examples
19454
19455 @itemize
19456 @item
19457 Use default values:
19458 @example
19459 vidstabdetect
19460 @end example
19461
19462 @item
19463 Analyze strongly shaky movie and put the results in file
19464 @file{mytransforms.trf}:
19465 @example
19466 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
19467 @end example
19468
19469 @item
19470 Visualize the result of internal transformations in the resulting
19471 video:
19472 @example
19473 vidstabdetect=show=1
19474 @end example
19475
19476 @item
19477 Analyze a video with medium shakiness using @command{ffmpeg}:
19478 @example
19479 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
19480 @end example
19481 @end itemize
19482
19483 @anchor{vidstabtransform}
19484 @section vidstabtransform
19485
19486 Video stabilization/deshaking: pass 2 of 2,
19487 see @ref{vidstabdetect} for pass 1.
19488
19489 Read a file with transform information for each frame and
19490 apply/compensate them. Together with the @ref{vidstabdetect}
19491 filter this can be used to deshake videos. See also
19492 @url{http://public.hronopik.de/vid.stab}. It is important to also use
19493 the @ref{unsharp} filter, see below.
19494
19495 To enable compilation of this filter you need to configure FFmpeg with
19496 @code{--enable-libvidstab}.
19497
19498 @subsection Options
19499
19500 @table @option
19501 @item input
19502 Set path to the file used to read the transforms. Default value is
19503 @file{transforms.trf}.
19504
19505 @item smoothing
19506 Set the number of frames (value*2 + 1) used for lowpass filtering the
19507 camera movements. Default value is 10.
19508
19509 For example a number of 10 means that 21 frames are used (10 in the
19510 past and 10 in the future) to smoothen the motion in the video. A
19511 larger value leads to a smoother video, but limits the acceleration of
19512 the camera (pan/tilt movements). 0 is a special case where a static
19513 camera is simulated.
19514
19515 @item optalgo
19516 Set the camera path optimization algorithm.
19517
19518 Accepted values are:
19519 @table @samp
19520 @item gauss
19521 gaussian kernel low-pass filter on camera motion (default)
19522 @item avg
19523 averaging on transformations
19524 @end table
19525
19526 @item maxshift
19527 Set maximal number of pixels to translate frames. Default value is -1,
19528 meaning no limit.
19529
19530 @item maxangle
19531 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
19532 value is -1, meaning no limit.
19533
19534 @item crop
19535 Specify how to deal with borders that may be visible due to movement
19536 compensation.
19537
19538 Available values are:
19539 @table @samp
19540 @item keep
19541 keep image information from previous frame (default)
19542 @item black
19543 fill the border black
19544 @end table
19545
19546 @item invert
19547 Invert transforms if set to 1. Default value is 0.
19548
19549 @item relative
19550 Consider transforms as relative to previous frame if set to 1,
19551 absolute if set to 0. Default value is 0.
19552
19553 @item zoom
19554 Set percentage to zoom. A positive value will result in a zoom-in
19555 effect, a negative value in a zoom-out effect. Default value is 0 (no
19556 zoom).
19557
19558 @item optzoom
19559 Set optimal zooming to avoid borders.
19560
19561 Accepted values are:
19562 @table @samp
19563 @item 0
19564 disabled
19565 @item 1
19566 optimal static zoom value is determined (only very strong movements
19567 will lead to visible borders) (default)
19568 @item 2
19569 optimal adaptive zoom value is determined (no borders will be
19570 visible), see @option{zoomspeed}
19571 @end table
19572
19573 Note that the value given at zoom is added to the one calculated here.
19574
19575 @item zoomspeed
19576 Set percent to zoom maximally each frame (enabled when
19577 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
19578 0.25.
19579
19580 @item interpol
19581 Specify type of interpolation.
19582
19583 Available values are:
19584 @table @samp
19585 @item no
19586 no interpolation
19587 @item linear
19588 linear only horizontal
19589 @item bilinear
19590 linear in both directions (default)
19591 @item bicubic
19592 cubic in both directions (slow)
19593 @end table
19594
19595 @item tripod
19596 Enable virtual tripod mode if set to 1, which is equivalent to
19597 @code{relative=0:smoothing=0}. Default value is 0.
19598
19599 Use also @code{tripod} option of @ref{vidstabdetect}.
19600
19601 @item debug
19602 Increase log verbosity if set to 1. Also the detected global motions
19603 are written to the temporary file @file{global_motions.trf}. Default
19604 value is 0.
19605 @end table
19606
19607 @subsection Examples
19608
19609 @itemize
19610 @item
19611 Use @command{ffmpeg} for a typical stabilization with default values:
19612 @example
19613 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
19614 @end example
19615
19616 Note the use of the @ref{unsharp} filter which is always recommended.
19617
19618 @item
19619 Zoom in a bit more and load transform data from a given file:
19620 @example
19621 vidstabtransform=zoom=5:input="mytransforms.trf"
19622 @end example
19623
19624 @item
19625 Smoothen the video even more:
19626 @example
19627 vidstabtransform=smoothing=30
19628 @end example
19629 @end itemize
19630
19631 @section vflip
19632
19633 Flip the input video vertically.
19634
19635 For example, to vertically flip a video with @command{ffmpeg}:
19636 @example
19637 ffmpeg -i in.avi -vf "vflip" out.avi
19638 @end example
19639
19640 @section vfrdet
19641
19642 Detect variable frame rate video.
19643
19644 This filter tries to detect if the input is variable or constant frame rate.
19645
19646 At end it will output number of frames detected as having variable delta pts,
19647 and ones with constant delta pts.
19648 If there was frames with variable delta, than it will also show min, max and
19649 average delta encountered.
19650
19651 @section vibrance
19652
19653 Boost or alter saturation.
19654
19655 The filter accepts the following options:
19656 @table @option
19657 @item intensity
19658 Set strength of boost if positive value or strength of alter if negative value.
19659 Default is 0. Allowed range is from -2 to 2.
19660
19661 @item rbal
19662 Set the red balance. Default is 1. Allowed range is from -10 to 10.
19663
19664 @item gbal
19665 Set the green balance. Default is 1. Allowed range is from -10 to 10.
19666
19667 @item bbal
19668 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
19669
19670 @item rlum
19671 Set the red luma coefficient.
19672
19673 @item glum
19674 Set the green luma coefficient.
19675
19676 @item blum
19677 Set the blue luma coefficient.
19678
19679 @item alternate
19680 If @code{intensity} is negative and this is set to 1, colors will change,
19681 otherwise colors will be less saturated, more towards gray.
19682 @end table
19683
19684 @subsection Commands
19685
19686 This filter supports the all above options as @ref{commands}.
19687
19688 @anchor{vignette}
19689 @section vignette
19690
19691 Make or reverse a natural vignetting effect.
19692
19693 The filter accepts the following options:
19694
19695 @table @option
19696 @item angle, a
19697 Set lens angle expression as a number of radians.
19698
19699 The value is clipped in the @code{[0,PI/2]} range.
19700
19701 Default value: @code{"PI/5"}
19702
19703 @item x0
19704 @item y0
19705 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
19706 by default.
19707
19708 @item mode
19709 Set forward/backward mode.
19710
19711 Available modes are:
19712 @table @samp
19713 @item forward
19714 The larger the distance from the central point, the darker the image becomes.
19715
19716 @item backward
19717 The larger the distance from the central point, the brighter the image becomes.
19718 This can be used to reverse a vignette effect, though there is no automatic
19719 detection to extract the lens @option{angle} and other settings (yet). It can
19720 also be used to create a burning effect.
19721 @end table
19722
19723 Default value is @samp{forward}.
19724
19725 @item eval
19726 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
19727
19728 It accepts the following values:
19729 @table @samp
19730 @item init
19731 Evaluate expressions only once during the filter initialization.
19732
19733 @item frame
19734 Evaluate expressions for each incoming frame. This is way slower than the
19735 @samp{init} mode since it requires all the scalers to be re-computed, but it
19736 allows advanced dynamic expressions.
19737 @end table
19738
19739 Default value is @samp{init}.
19740
19741 @item dither
19742 Set dithering to reduce the circular banding effects. Default is @code{1}
19743 (enabled).
19744
19745 @item aspect
19746 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
19747 Setting this value to the SAR of the input will make a rectangular vignetting
19748 following the dimensions of the video.
19749
19750 Default is @code{1/1}.
19751 @end table
19752
19753 @subsection Expressions
19754
19755 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
19756 following parameters.
19757
19758 @table @option
19759 @item w
19760 @item h
19761 input width and height
19762
19763 @item n
19764 the number of input frame, starting from 0
19765
19766 @item pts
19767 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
19768 @var{TB} units, NAN if undefined
19769
19770 @item r
19771 frame rate of the input video, NAN if the input frame rate is unknown
19772
19773 @item t
19774 the PTS (Presentation TimeStamp) of the filtered video frame,
19775 expressed in seconds, NAN if undefined
19776
19777 @item tb
19778 time base of the input video
19779 @end table
19780
19781
19782 @subsection Examples
19783
19784 @itemize
19785 @item
19786 Apply simple strong vignetting effect:
19787 @example
19788 vignette=PI/4
19789 @end example
19790
19791 @item
19792 Make a flickering vignetting:
19793 @example
19794 vignette='PI/4+random(1)*PI/50':eval=frame
19795 @end example
19796
19797 @end itemize
19798
19799 @section vmafmotion
19800
19801 Obtain the average VMAF motion score of a video.
19802 It is one of the component metrics of VMAF.
19803
19804 The obtained average motion score is printed through the logging system.
19805
19806 The filter accepts the following options:
19807
19808 @table @option
19809 @item stats_file
19810 If specified, the filter will use the named file to save the motion score of
19811 each frame with respect to the previous frame.
19812 When filename equals "-" the data is sent to standard output.
19813 @end table
19814
19815 Example:
19816 @example
19817 ffmpeg -i ref.mpg -vf vmafmotion -f null -
19818 @end example
19819
19820 @section vstack
19821 Stack input videos vertically.
19822
19823 All streams must be of same pixel format and of same width.
19824
19825 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
19826 to create same output.
19827
19828 The filter accepts the following options:
19829
19830 @table @option
19831 @item inputs
19832 Set number of input streams. Default is 2.
19833
19834 @item shortest
19835 If set to 1, force the output to terminate when the shortest input
19836 terminates. Default value is 0.
19837 @end table
19838
19839 @section w3fdif
19840
19841 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
19842 Deinterlacing Filter").
19843
19844 Based on the process described by Martin Weston for BBC R&D, and
19845 implemented based on the de-interlace algorithm written by Jim
19846 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
19847 uses filter coefficients calculated by BBC R&D.
19848
19849 This filter uses field-dominance information in frame to decide which
19850 of each pair of fields to place first in the output.
19851 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
19852
19853 There are two sets of filter coefficients, so called "simple"
19854 and "complex". Which set of filter coefficients is used can
19855 be set by passing an optional parameter:
19856
19857 @table @option
19858 @item filter
19859 Set the interlacing filter coefficients. Accepts one of the following values:
19860
19861 @table @samp
19862 @item simple
19863 Simple filter coefficient set.
19864 @item complex
19865 More-complex filter coefficient set.
19866 @end table
19867 Default value is @samp{complex}.
19868
19869 @item deint
19870 Specify which frames to deinterlace. Accepts one of the following values:
19871
19872 @table @samp
19873 @item all
19874 Deinterlace all frames,
19875 @item interlaced
19876 Only deinterlace frames marked as interlaced.
19877 @end table
19878
19879 Default value is @samp{all}.
19880 @end table
19881
19882 @section waveform
19883 Video waveform monitor.
19884
19885 The waveform monitor plots color component intensity. By default luminance
19886 only. Each column of the waveform corresponds to a column of pixels in the
19887 source video.
19888
19889 It accepts the following options:
19890
19891 @table @option
19892 @item mode, m
19893 Can be either @code{row}, or @code{column}. Default is @code{column}.
19894 In row mode, the graph on the left side represents color component value 0 and
19895 the right side represents value = 255. In column mode, the top side represents
19896 color component value = 0 and bottom side represents value = 255.
19897
19898 @item intensity, i
19899 Set intensity. Smaller values are useful to find out how many values of the same
19900 luminance are distributed across input rows/columns.
19901 Default value is @code{0.04}. Allowed range is [0, 1].
19902
19903 @item mirror, r
19904 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
19905 In mirrored mode, higher values will be represented on the left
19906 side for @code{row} mode and at the top for @code{column} mode. Default is
19907 @code{1} (mirrored).
19908
19909 @item display, d
19910 Set display mode.
19911 It accepts the following values:
19912 @table @samp
19913 @item overlay
19914 Presents information identical to that in the @code{parade}, except
19915 that the graphs representing color components are superimposed directly
19916 over one another.
19917
19918 This display mode makes it easier to spot relative differences or similarities
19919 in overlapping areas of the color components that are supposed to be identical,
19920 such as neutral whites, grays, or blacks.
19921
19922 @item stack
19923 Display separate graph for the color components side by side in
19924 @code{row} mode or one below the other in @code{column} mode.
19925
19926 @item parade
19927 Display separate graph for the color components side by side in
19928 @code{column} mode or one below the other in @code{row} mode.
19929
19930 Using this display mode makes it easy to spot color casts in the highlights
19931 and shadows of an image, by comparing the contours of the top and the bottom
19932 graphs of each waveform. Since whites, grays, and blacks are characterized
19933 by exactly equal amounts of red, green, and blue, neutral areas of the picture
19934 should display three waveforms of roughly equal width/height. If not, the
19935 correction is easy to perform by making level adjustments the three waveforms.
19936 @end table
19937 Default is @code{stack}.
19938
19939 @item components, c
19940 Set which color components to display. Default is 1, which means only luminance
19941 or red color component if input is in RGB colorspace. If is set for example to
19942 7 it will display all 3 (if) available color components.
19943
19944 @item envelope, e
19945 @table @samp
19946 @item none
19947 No envelope, this is default.
19948
19949 @item instant
19950 Instant envelope, minimum and maximum values presented in graph will be easily
19951 visible even with small @code{step} value.
19952
19953 @item peak
19954 Hold minimum and maximum values presented in graph across time. This way you
19955 can still spot out of range values without constantly looking at waveforms.
19956
19957 @item peak+instant
19958 Peak and instant envelope combined together.
19959 @end table
19960
19961 @item filter, f
19962 @table @samp
19963 @item lowpass
19964 No filtering, this is default.
19965
19966 @item flat
19967 Luma and chroma combined together.
19968
19969 @item aflat
19970 Similar as above, but shows difference between blue and red chroma.
19971
19972 @item xflat
19973 Similar as above, but use different colors.
19974
19975 @item yflat
19976 Similar as above, but again with different colors.
19977
19978 @item chroma
19979 Displays only chroma.
19980
19981 @item color
19982 Displays actual color value on waveform.
19983
19984 @item acolor
19985 Similar as above, but with luma showing frequency of chroma values.
19986 @end table
19987
19988 @item graticule, g
19989 Set which graticule to display.
19990
19991 @table @samp
19992 @item none
19993 Do not display graticule.
19994
19995 @item green
19996 Display green graticule showing legal broadcast ranges.
19997
19998 @item orange
19999 Display orange graticule showing legal broadcast ranges.
20000
20001 @item invert
20002 Display invert graticule showing legal broadcast ranges.
20003 @end table
20004
20005 @item opacity, o
20006 Set graticule opacity.
20007
20008 @item flags, fl
20009 Set graticule flags.
20010
20011 @table @samp
20012 @item numbers
20013 Draw numbers above lines. By default enabled.
20014
20015 @item dots
20016 Draw dots instead of lines.
20017 @end table
20018
20019 @item scale, s
20020 Set scale used for displaying graticule.
20021
20022 @table @samp
20023 @item digital
20024 @item millivolts
20025 @item ire
20026 @end table
20027 Default is digital.
20028
20029 @item bgopacity, b
20030 Set background opacity.
20031
20032 @item tint0, t0
20033 @item tint1, t1
20034 Set tint for output.
20035 Only used with lowpass filter and when display is not overlay and input
20036 pixel formats are not RGB.
20037 @end table
20038
20039 @section weave, doubleweave
20040
20041 The @code{weave} takes a field-based video input and join
20042 each two sequential fields into single frame, producing a new double
20043 height clip with half the frame rate and half the frame count.
20044
20045 The @code{doubleweave} works same as @code{weave} but without
20046 halving frame rate and frame count.
20047
20048 It accepts the following option:
20049
20050 @table @option
20051 @item first_field
20052 Set first field. Available values are:
20053
20054 @table @samp
20055 @item top, t
20056 Set the frame as top-field-first.
20057
20058 @item bottom, b
20059 Set the frame as bottom-field-first.
20060 @end table
20061 @end table
20062
20063 @subsection Examples
20064
20065 @itemize
20066 @item
20067 Interlace video using @ref{select} and @ref{separatefields} filter:
20068 @example
20069 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
20070 @end example
20071 @end itemize
20072
20073 @section xbr
20074 Apply the xBR high-quality magnification filter which is designed for pixel
20075 art. It follows a set of edge-detection rules, see
20076 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
20077
20078 It accepts the following option:
20079
20080 @table @option
20081 @item n
20082 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
20083 @code{3xBR} and @code{4} for @code{4xBR}.
20084 Default is @code{3}.
20085 @end table
20086
20087 @section xfade
20088
20089 Apply cross fade from one input video stream to another input video stream.
20090 The cross fade is applied for specified duration.
20091
20092 The filter accepts the following options:
20093
20094 @table @option
20095 @item transition
20096 Set one of available transition effects:
20097
20098 @table @samp
20099 @item custom
20100 @item fade
20101 @item wipeleft
20102 @item wiperight
20103 @item wipeup
20104 @item wipedown
20105 @item slideleft
20106 @item slideright
20107 @item slideup
20108 @item slidedown
20109 @item circlecrop
20110 @item rectcrop
20111 @item distance
20112 @item fadeblack
20113 @item fadewhite
20114 @item radial
20115 @item smoothleft
20116 @item smoothright
20117 @item smoothup
20118 @item smoothdown
20119 @item circleopen
20120 @item circleclose
20121 @item vertopen
20122 @item vertclose
20123 @item horzopen
20124 @item horzclose
20125 @item dissolve
20126 @item pixelize
20127 @item diagtl
20128 @item diagtr
20129 @item diagbl
20130 @item diagbr
20131 @item hlslice
20132 @item hrslice
20133 @item vuslice
20134 @item vdslice
20135 @end table
20136 Default transition effect is fade.
20137
20138 @item duration
20139 Set cross fade duration in seconds.
20140 Default duration is 1 second.
20141
20142 @item offset
20143 Set cross fade start relative to first input stream in seconds.
20144 Default offset is 0.
20145
20146 @item expr
20147 Set expression for custom transition effect.
20148
20149 The expressions can use the following variables and functions:
20150
20151 @table @option
20152 @item X
20153 @item Y
20154 The coordinates of the current sample.
20155
20156 @item W
20157 @item H
20158 The width and height of the image.
20159
20160 @item P
20161 Progress of transition effect.
20162
20163 @item PLANE
20164 Currently processed plane.
20165
20166 @item A
20167 Return value of first input at current location and plane.
20168
20169 @item B
20170 Return value of second input at current location and plane.
20171
20172 @item a0(x, y)
20173 @item a1(x, y)
20174 @item a2(x, y)
20175 @item a3(x, y)
20176 Return the value of the pixel at location (@var{x},@var{y}) of the
20177 first/second/third/fourth component of first input.
20178
20179 @item b0(x, y)
20180 @item b1(x, y)
20181 @item b2(x, y)
20182 @item b3(x, y)
20183 Return the value of the pixel at location (@var{x},@var{y}) of the
20184 first/second/third/fourth component of second input.
20185 @end table
20186 @end table
20187
20188 @subsection Examples
20189
20190 @itemize
20191 @item
20192 Cross fade from one input video to another input video, with fade transition and duration of transition
20193 of 2 seconds starting at offset of 5 seconds:
20194 @example
20195 ffmpeg -i first.mp4 -i second.mp4 -filter_complex xfade=transition=fade:duration=2:offset=5 output.mp4
20196 @end example
20197 @end itemize
20198
20199 @section xmedian
20200 Pick median pixels from several input videos.
20201
20202 The filter accepts the following options:
20203
20204 @table @option
20205 @item inputs
20206 Set number of inputs.
20207 Default is 3. Allowed range is from 3 to 255.
20208 If number of inputs is even number, than result will be mean value between two median values.
20209
20210 @item planes
20211 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
20212
20213 @item percentile
20214 Set median percentile. Default value is @code{0.5}.
20215 Default value of @code{0.5} will pick always median values, while @code{0} will pick
20216 minimum values, and @code{1} maximum values.
20217 @end table
20218
20219 @section xstack
20220 Stack video inputs into custom layout.
20221
20222 All streams must be of same pixel format.
20223
20224 The filter accepts the following options:
20225
20226 @table @option
20227 @item inputs
20228 Set number of input streams. Default is 2.
20229
20230 @item layout
20231 Specify layout of inputs.
20232 This option requires the desired layout configuration to be explicitly set by the user.
20233 This sets position of each video input in output. Each input
20234 is separated by '|'.
20235 The first number represents the column, and the second number represents the row.
20236 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
20237 where X is video input from which to take width or height.
20238 Multiple values can be used when separated by '+'. In such
20239 case values are summed together.
20240
20241 Note that if inputs are of different sizes gaps may appear, as not all of
20242 the output video frame will be filled. Similarly, videos can overlap each
20243 other if their position doesn't leave enough space for the full frame of
20244 adjoining videos.
20245
20246 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
20247 a layout must be set by the user.
20248
20249 @item shortest
20250 If set to 1, force the output to terminate when the shortest input
20251 terminates. Default value is 0.
20252
20253 @item fill
20254 If set to valid color, all unused pixels will be filled with that color.
20255 By default fill is set to none, so it is disabled.
20256 @end table
20257
20258 @subsection Examples
20259
20260 @itemize
20261 @item
20262 Display 4 inputs into 2x2 grid.
20263
20264 Layout:
20265 @example
20266 input1(0, 0)  | input3(w0, 0)
20267 input2(0, h0) | input4(w0, h0)
20268 @end example
20269
20270 @example
20271 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
20272 @end example
20273
20274 Note that if inputs are of different sizes, gaps or overlaps may occur.
20275
20276 @item
20277 Display 4 inputs into 1x4 grid.
20278
20279 Layout:
20280 @example
20281 input1(0, 0)
20282 input2(0, h0)
20283 input3(0, h0+h1)
20284 input4(0, h0+h1+h2)
20285 @end example
20286
20287 @example
20288 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
20289 @end example
20290
20291 Note that if inputs are of different widths, unused space will appear.
20292
20293 @item
20294 Display 9 inputs into 3x3 grid.
20295
20296 Layout:
20297 @example
20298 input1(0, 0)       | input4(w0, 0)      | input7(w0+w3, 0)
20299 input2(0, h0)      | input5(w0, h0)     | input8(w0+w3, h0)
20300 input3(0, h0+h1)   | input6(w0, h0+h1)  | input9(w0+w3, h0+h1)
20301 @end example
20302
20303 @example
20304 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
20305 @end example
20306
20307 Note that if inputs are of different sizes, gaps or overlaps may occur.
20308
20309 @item
20310 Display 16 inputs into 4x4 grid.
20311
20312 Layout:
20313 @example
20314 input1(0, 0)       | input5(w0, 0)       | input9 (w0+w4, 0)       | input13(w0+w4+w8, 0)
20315 input2(0, h0)      | input6(w0, h0)      | input10(w0+w4, h0)      | input14(w0+w4+w8, h0)
20316 input3(0, h0+h1)   | input7(w0, h0+h1)   | input11(w0+w4, h0+h1)   | input15(w0+w4+w8, h0+h1)
20317 input4(0, h0+h1+h2)| input8(w0, h0+h1+h2)| input12(w0+w4, h0+h1+h2)| input16(w0+w4+w8, h0+h1+h2)
20318 @end example
20319
20320 @example
20321 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|
20322 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
20323 @end example
20324
20325 Note that if inputs are of different sizes, gaps or overlaps may occur.
20326
20327 @end itemize
20328
20329 @anchor{yadif}
20330 @section yadif
20331
20332 Deinterlace the input video ("yadif" means "yet another deinterlacing
20333 filter").
20334
20335 It accepts the following parameters:
20336
20337
20338 @table @option
20339
20340 @item mode
20341 The interlacing mode to adopt. It accepts one of the following values:
20342
20343 @table @option
20344 @item 0, send_frame
20345 Output one frame for each frame.
20346 @item 1, send_field
20347 Output one frame for each field.
20348 @item 2, send_frame_nospatial
20349 Like @code{send_frame}, but it skips the spatial interlacing check.
20350 @item 3, send_field_nospatial
20351 Like @code{send_field}, but it skips the spatial interlacing check.
20352 @end table
20353
20354 The default value is @code{send_frame}.
20355
20356 @item parity
20357 The picture field parity assumed for the input interlaced video. It accepts one
20358 of the following values:
20359
20360 @table @option
20361 @item 0, tff
20362 Assume the top field is first.
20363 @item 1, bff
20364 Assume the bottom field is first.
20365 @item -1, auto
20366 Enable automatic detection of field parity.
20367 @end table
20368
20369 The default value is @code{auto}.
20370 If the interlacing is unknown or the decoder does not export this information,
20371 top field first will be assumed.
20372
20373 @item deint
20374 Specify which frames to deinterlace. Accepts one of the following
20375 values:
20376
20377 @table @option
20378 @item 0, all
20379 Deinterlace all frames.
20380 @item 1, interlaced
20381 Only deinterlace frames marked as interlaced.
20382 @end table
20383
20384 The default value is @code{all}.
20385 @end table
20386
20387 @section yadif_cuda
20388
20389 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
20390 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
20391 and/or nvenc.
20392
20393 It accepts the following parameters:
20394
20395
20396 @table @option
20397
20398 @item mode
20399 The interlacing mode to adopt. It accepts one of the following values:
20400
20401 @table @option
20402 @item 0, send_frame
20403 Output one frame for each frame.
20404 @item 1, send_field
20405 Output one frame for each field.
20406 @item 2, send_frame_nospatial
20407 Like @code{send_frame}, but it skips the spatial interlacing check.
20408 @item 3, send_field_nospatial
20409 Like @code{send_field}, but it skips the spatial interlacing check.
20410 @end table
20411
20412 The default value is @code{send_frame}.
20413
20414 @item parity
20415 The picture field parity assumed for the input interlaced video. It accepts one
20416 of the following values:
20417
20418 @table @option
20419 @item 0, tff
20420 Assume the top field is first.
20421 @item 1, bff
20422 Assume the bottom field is first.
20423 @item -1, auto
20424 Enable automatic detection of field parity.
20425 @end table
20426
20427 The default value is @code{auto}.
20428 If the interlacing is unknown or the decoder does not export this information,
20429 top field first will be assumed.
20430
20431 @item deint
20432 Specify which frames to deinterlace. Accepts one of the following
20433 values:
20434
20435 @table @option
20436 @item 0, all
20437 Deinterlace all frames.
20438 @item 1, interlaced
20439 Only deinterlace frames marked as interlaced.
20440 @end table
20441
20442 The default value is @code{all}.
20443 @end table
20444
20445 @section yaepblur
20446
20447 Apply blur filter while preserving edges ("yaepblur" means "yet another edge preserving blur filter").
20448 The algorithm is described in
20449 "J. S. Lee, Digital image enhancement and noise filtering by use of local statistics, IEEE Trans. Pattern Anal. Mach. Intell. PAMI-2, 1980."
20450
20451 It accepts the following parameters:
20452
20453 @table @option
20454 @item radius, r
20455 Set the window radius. Default value is 3.
20456
20457 @item planes, p
20458 Set which planes to filter. Default is only the first plane.
20459
20460 @item sigma, s
20461 Set blur strength. Default value is 128.
20462 @end table
20463
20464 @subsection Commands
20465 This filter supports same @ref{commands} as options.
20466
20467 @section zoompan
20468
20469 Apply Zoom & Pan effect.
20470
20471 This filter accepts the following options:
20472
20473 @table @option
20474 @item zoom, z
20475 Set the zoom expression. Range is 1-10. Default is 1.
20476
20477 @item x
20478 @item y
20479 Set the x and y expression. Default is 0.
20480
20481 @item d
20482 Set the duration expression in number of frames.
20483 This sets for how many number of frames effect will last for
20484 single input image.
20485
20486 @item s
20487 Set the output image size, default is 'hd720'.
20488
20489 @item fps
20490 Set the output frame rate, default is '25'.
20491 @end table
20492
20493 Each expression can contain the following constants:
20494
20495 @table @option
20496 @item in_w, iw
20497 Input width.
20498
20499 @item in_h, ih
20500 Input height.
20501
20502 @item out_w, ow
20503 Output width.
20504
20505 @item out_h, oh
20506 Output height.
20507
20508 @item in
20509 Input frame count.
20510
20511 @item on
20512 Output frame count.
20513
20514 @item x
20515 @item y
20516 Last calculated 'x' and 'y' position from 'x' and 'y' expression
20517 for current input frame.
20518
20519 @item px
20520 @item py
20521 'x' and 'y' of last output frame of previous input frame or 0 when there was
20522 not yet such frame (first input frame).
20523
20524 @item zoom
20525 Last calculated zoom from 'z' expression for current input frame.
20526
20527 @item pzoom
20528 Last calculated zoom of last output frame of previous input frame.
20529
20530 @item duration
20531 Number of output frames for current input frame. Calculated from 'd' expression
20532 for each input frame.
20533
20534 @item pduration
20535 number of output frames created for previous input frame
20536
20537 @item a
20538 Rational number: input width / input height
20539
20540 @item sar
20541 sample aspect ratio
20542
20543 @item dar
20544 display aspect ratio
20545
20546 @end table
20547
20548 @subsection Examples
20549
20550 @itemize
20551 @item
20552 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
20553 @example
20554 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
20555 @end example
20556
20557 @item
20558 Zoom-in up to 1.5 and pan always at center of picture:
20559 @example
20560 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20561 @end example
20562
20563 @item
20564 Same as above but without pausing:
20565 @example
20566 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
20567 @end example
20568 @end itemize
20569
20570 @anchor{zscale}
20571 @section zscale
20572 Scale (resize) the input video, using the z.lib library:
20573 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
20574 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
20575
20576 The zscale filter forces the output display aspect ratio to be the same
20577 as the input, by changing the output sample aspect ratio.
20578
20579 If the input image format is different from the format requested by
20580 the next filter, the zscale filter will convert the input to the
20581 requested format.
20582
20583 @subsection Options
20584 The filter accepts the following options.
20585
20586 @table @option
20587 @item width, w
20588 @item height, h
20589 Set the output video dimension expression. Default value is the input
20590 dimension.
20591
20592 If the @var{width} or @var{w} value is 0, the input width is used for
20593 the output. If the @var{height} or @var{h} value is 0, the input height
20594 is used for the output.
20595
20596 If one and only one of the values is -n with n >= 1, the zscale filter
20597 will use a value that maintains the aspect ratio of the input image,
20598 calculated from the other specified dimension. After that it will,
20599 however, make sure that the calculated dimension is divisible by n and
20600 adjust the value if necessary.
20601
20602 If both values are -n with n >= 1, the behavior will be identical to
20603 both values being set to 0 as previously detailed.
20604
20605 See below for the list of accepted constants for use in the dimension
20606 expression.
20607
20608 @item size, s
20609 Set the video size. For the syntax of this option, check the
20610 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20611
20612 @item dither, d
20613 Set the dither type.
20614
20615 Possible values are:
20616 @table @var
20617 @item none
20618 @item ordered
20619 @item random
20620 @item error_diffusion
20621 @end table
20622
20623 Default is none.
20624
20625 @item filter, f
20626 Set the resize filter type.
20627
20628 Possible values are:
20629 @table @var
20630 @item point
20631 @item bilinear
20632 @item bicubic
20633 @item spline16
20634 @item spline36
20635 @item lanczos
20636 @end table
20637
20638 Default is bilinear.
20639
20640 @item range, r
20641 Set the color range.
20642
20643 Possible values are:
20644 @table @var
20645 @item input
20646 @item limited
20647 @item full
20648 @end table
20649
20650 Default is same as input.
20651
20652 @item primaries, p
20653 Set the color primaries.
20654
20655 Possible values are:
20656 @table @var
20657 @item input
20658 @item 709
20659 @item unspecified
20660 @item 170m
20661 @item 240m
20662 @item 2020
20663 @end table
20664
20665 Default is same as input.
20666
20667 @item transfer, t
20668 Set the transfer characteristics.
20669
20670 Possible values are:
20671 @table @var
20672 @item input
20673 @item 709
20674 @item unspecified
20675 @item 601
20676 @item linear
20677 @item 2020_10
20678 @item 2020_12
20679 @item smpte2084
20680 @item iec61966-2-1
20681 @item arib-std-b67
20682 @end table
20683
20684 Default is same as input.
20685
20686 @item matrix, m
20687 Set the colorspace matrix.
20688
20689 Possible value are:
20690 @table @var
20691 @item input
20692 @item 709
20693 @item unspecified
20694 @item 470bg
20695 @item 170m
20696 @item 2020_ncl
20697 @item 2020_cl
20698 @end table
20699
20700 Default is same as input.
20701
20702 @item rangein, rin
20703 Set the input color range.
20704
20705 Possible values are:
20706 @table @var
20707 @item input
20708 @item limited
20709 @item full
20710 @end table
20711
20712 Default is same as input.
20713
20714 @item primariesin, pin
20715 Set the input color primaries.
20716
20717 Possible values are:
20718 @table @var
20719 @item input
20720 @item 709
20721 @item unspecified
20722 @item 170m
20723 @item 240m
20724 @item 2020
20725 @end table
20726
20727 Default is same as input.
20728
20729 @item transferin, tin
20730 Set the input transfer characteristics.
20731
20732 Possible values are:
20733 @table @var
20734 @item input
20735 @item 709
20736 @item unspecified
20737 @item 601
20738 @item linear
20739 @item 2020_10
20740 @item 2020_12
20741 @end table
20742
20743 Default is same as input.
20744
20745 @item matrixin, min
20746 Set the input colorspace matrix.
20747
20748 Possible value are:
20749 @table @var
20750 @item input
20751 @item 709
20752 @item unspecified
20753 @item 470bg
20754 @item 170m
20755 @item 2020_ncl
20756 @item 2020_cl
20757 @end table
20758
20759 @item chromal, c
20760 Set the output chroma location.
20761
20762 Possible values are:
20763 @table @var
20764 @item input
20765 @item left
20766 @item center
20767 @item topleft
20768 @item top
20769 @item bottomleft
20770 @item bottom
20771 @end table
20772
20773 @item chromalin, cin
20774 Set the input chroma location.
20775
20776 Possible values are:
20777 @table @var
20778 @item input
20779 @item left
20780 @item center
20781 @item topleft
20782 @item top
20783 @item bottomleft
20784 @item bottom
20785 @end table
20786
20787 @item npl
20788 Set the nominal peak luminance.
20789 @end table
20790
20791 The values of the @option{w} and @option{h} options are expressions
20792 containing the following constants:
20793
20794 @table @var
20795 @item in_w
20796 @item in_h
20797 The input width and height
20798
20799 @item iw
20800 @item ih
20801 These are the same as @var{in_w} and @var{in_h}.
20802
20803 @item out_w
20804 @item out_h
20805 The output (scaled) width and height
20806
20807 @item ow
20808 @item oh
20809 These are the same as @var{out_w} and @var{out_h}
20810
20811 @item a
20812 The same as @var{iw} / @var{ih}
20813
20814 @item sar
20815 input sample aspect ratio
20816
20817 @item dar
20818 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
20819
20820 @item hsub
20821 @item vsub
20822 horizontal and vertical input chroma subsample values. For example for the
20823 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20824
20825 @item ohsub
20826 @item ovsub
20827 horizontal and vertical output chroma subsample values. For example for the
20828 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
20829 @end table
20830
20831 @subsection Commands
20832
20833 This filter supports the following commands:
20834 @table @option
20835 @item width, w
20836 @item height, h
20837 Set the output video dimension expression.
20838 The command accepts the same syntax of the corresponding option.
20839
20840 If the specified expression is not valid, it is kept at its current
20841 value.
20842 @end table
20843
20844 @c man end VIDEO FILTERS
20845
20846 @chapter OpenCL Video Filters
20847 @c man begin OPENCL VIDEO FILTERS
20848
20849 Below is a description of the currently available OpenCL video filters.
20850
20851 To enable compilation of these filters you need to configure FFmpeg with
20852 @code{--enable-opencl}.
20853
20854 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
20855 @table @option
20856
20857 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
20858 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
20859 given device parameters.
20860
20861 @item -filter_hw_device @var{name}
20862 Pass the hardware device called @var{name} to all filters in any filter graph.
20863
20864 @end table
20865
20866 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
20867
20868 @itemize
20869 @item
20870 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
20871 @example
20872 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
20873 @end example
20874 @end itemize
20875
20876 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.
20877
20878 @section avgblur_opencl
20879
20880 Apply average blur filter.
20881
20882 The filter accepts the following options:
20883
20884 @table @option
20885 @item sizeX
20886 Set horizontal radius size.
20887 Range is @code{[1, 1024]} and default value is @code{1}.
20888
20889 @item planes
20890 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
20891
20892 @item sizeY
20893 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
20894 @end table
20895
20896 @subsection Example
20897
20898 @itemize
20899 @item
20900 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.
20901 @example
20902 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
20903 @end example
20904 @end itemize
20905
20906 @section boxblur_opencl
20907
20908 Apply a boxblur algorithm to the input video.
20909
20910 It accepts the following parameters:
20911
20912 @table @option
20913
20914 @item luma_radius, lr
20915 @item luma_power, lp
20916 @item chroma_radius, cr
20917 @item chroma_power, cp
20918 @item alpha_radius, ar
20919 @item alpha_power, ap
20920
20921 @end table
20922
20923 A description of the accepted options follows.
20924
20925 @table @option
20926 @item luma_radius, lr
20927 @item chroma_radius, cr
20928 @item alpha_radius, ar
20929 Set an expression for the box radius in pixels used for blurring the
20930 corresponding input plane.
20931
20932 The radius value must be a non-negative number, and must not be
20933 greater than the value of the expression @code{min(w,h)/2} for the
20934 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
20935 planes.
20936
20937 Default value for @option{luma_radius} is "2". If not specified,
20938 @option{chroma_radius} and @option{alpha_radius} default to the
20939 corresponding value set for @option{luma_radius}.
20940
20941 The expressions can contain the following constants:
20942 @table @option
20943 @item w
20944 @item h
20945 The input width and height in pixels.
20946
20947 @item cw
20948 @item ch
20949 The input chroma image width and height in pixels.
20950
20951 @item hsub
20952 @item vsub
20953 The horizontal and vertical chroma subsample values. For example, for the
20954 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
20955 @end table
20956
20957 @item luma_power, lp
20958 @item chroma_power, cp
20959 @item alpha_power, ap
20960 Specify how many times the boxblur filter is applied to the
20961 corresponding plane.
20962
20963 Default value for @option{luma_power} is 2. If not specified,
20964 @option{chroma_power} and @option{alpha_power} default to the
20965 corresponding value set for @option{luma_power}.
20966
20967 A value of 0 will disable the effect.
20968 @end table
20969
20970 @subsection Examples
20971
20972 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.
20973
20974 @itemize
20975 @item
20976 Apply a boxblur filter with the luma, chroma, and alpha radius
20977 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.
20978 @example
20979 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
20980 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
20981 @end example
20982
20983 @item
20984 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.
20985
20986 For the luma plane, a 2x2 box radius will be run once.
20987
20988 For the chroma plane, a 4x4 box radius will be run 5 times.
20989
20990 For the alpha plane, a 3x3 box radius will be run 7 times.
20991 @example
20992 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
20993 @end example
20994 @end itemize
20995
20996 @section colorkey_opencl
20997 RGB colorspace color keying.
20998
20999 The filter accepts the following options:
21000
21001 @table @option
21002 @item color
21003 The color which will be replaced with transparency.
21004
21005 @item similarity
21006 Similarity percentage with the key color.
21007
21008 0.01 matches only the exact key color, while 1.0 matches everything.
21009
21010 @item blend
21011 Blend percentage.
21012
21013 0.0 makes pixels either fully transparent, or not transparent at all.
21014
21015 Higher values result in semi-transparent pixels, with a higher transparency
21016 the more similar the pixels color is to the key color.
21017 @end table
21018
21019 @subsection Examples
21020
21021 @itemize
21022 @item
21023 Make every semi-green pixel in the input transparent with some slight blending:
21024 @example
21025 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
21026 @end example
21027 @end itemize
21028
21029 @section convolution_opencl
21030
21031 Apply convolution of 3x3, 5x5, 7x7 matrix.
21032
21033 The filter accepts the following options:
21034
21035 @table @option
21036 @item 0m
21037 @item 1m
21038 @item 2m
21039 @item 3m
21040 Set matrix for each plane.
21041 Matrix is sequence of 9, 25 or 49 signed numbers.
21042 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
21043
21044 @item 0rdiv
21045 @item 1rdiv
21046 @item 2rdiv
21047 @item 3rdiv
21048 Set multiplier for calculated value for each plane.
21049 If unset or 0, it will be sum of all matrix elements.
21050 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
21051
21052 @item 0bias
21053 @item 1bias
21054 @item 2bias
21055 @item 3bias
21056 Set bias for each plane. This value is added to the result of the multiplication.
21057 Useful for making the overall image brighter or darker.
21058 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
21059
21060 @end table
21061
21062 @subsection Examples
21063
21064 @itemize
21065 @item
21066 Apply sharpen:
21067 @example
21068 -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
21069 @end example
21070
21071 @item
21072 Apply blur:
21073 @example
21074 -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
21075 @end example
21076
21077 @item
21078 Apply edge enhance:
21079 @example
21080 -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
21081 @end example
21082
21083 @item
21084 Apply edge detect:
21085 @example
21086 -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
21087 @end example
21088
21089 @item
21090 Apply laplacian edge detector which includes diagonals:
21091 @example
21092 -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
21093 @end example
21094
21095 @item
21096 Apply emboss:
21097 @example
21098 -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
21099 @end example
21100 @end itemize
21101
21102 @section erosion_opencl
21103
21104 Apply erosion effect to the video.
21105
21106 This filter replaces the pixel by the local(3x3) minimum.
21107
21108 It accepts the following options:
21109
21110 @table @option
21111 @item threshold0
21112 @item threshold1
21113 @item threshold2
21114 @item threshold3
21115 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21116 If @code{0}, plane will remain unchanged.
21117
21118 @item coordinates
21119 Flag which specifies the pixel to refer to.
21120 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21121
21122 Flags to local 3x3 coordinates region centered on @code{x}:
21123
21124     1 2 3
21125
21126     4 x 5
21127
21128     6 7 8
21129 @end table
21130
21131 @subsection Example
21132
21133 @itemize
21134 @item
21135 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.
21136 @example
21137 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21138 @end example
21139 @end itemize
21140
21141 @section deshake_opencl
21142 Feature-point based video stabilization filter.
21143
21144 The filter accepts the following options:
21145
21146 @table @option
21147 @item tripod
21148 Simulates a tripod by preventing any camera movement whatsoever from the original frame. Defaults to @code{0}.
21149
21150 @item debug
21151 Whether or not additional debug info should be displayed, both in the processed output and in the console.
21152
21153 Note that in order to see console debug output you will also need to pass @code{-v verbose} to ffmpeg.
21154
21155 Viewing point matches in the output video is only supported for RGB input.
21156
21157 Defaults to @code{0}.
21158
21159 @item adaptive_crop
21160 Whether or not to do a tiny bit of cropping at the borders to cut down on the amount of mirrored pixels.
21161
21162 Defaults to @code{1}.
21163
21164 @item refine_features
21165 Whether or not feature points should be refined at a sub-pixel level.
21166
21167 This can be turned off for a slight performance gain at the cost of precision.
21168
21169 Defaults to @code{1}.
21170
21171 @item smooth_strength
21172 The strength of the smoothing applied to the camera path from @code{0.0} to @code{1.0}.
21173
21174 @code{1.0} is the maximum smoothing strength while values less than that result in less smoothing.
21175
21176 @code{0.0} causes the filter to adaptively choose a smoothing strength on a per-frame basis.
21177
21178 Defaults to @code{0.0}.
21179
21180 @item smooth_window_multiplier
21181 Controls the size of the smoothing window (the number of frames buffered to determine motion information from).
21182
21183 The size of the smoothing window is determined by multiplying the framerate of the video by this number.
21184
21185 Acceptable values range from @code{0.1} to @code{10.0}.
21186
21187 Larger values increase the amount of motion data available for determining how to smooth the camera path,
21188 potentially improving smoothness, but also increase latency and memory usage.
21189
21190 Defaults to @code{2.0}.
21191
21192 @end table
21193
21194 @subsection Examples
21195
21196 @itemize
21197 @item
21198 Stabilize a video with a fixed, medium smoothing strength:
21199 @example
21200 -i INPUT -vf "hwupload, deshake_opencl=smooth_strength=0.5, hwdownload" OUTPUT
21201 @end example
21202
21203 @item
21204 Stabilize a video with debugging (both in console and in rendered video):
21205 @example
21206 -i INPUT -filter_complex "[0:v]format=rgba, hwupload, deshake_opencl=debug=1, hwdownload, format=rgba, format=yuv420p" -v verbose OUTPUT
21207 @end example
21208 @end itemize
21209
21210 @section dilation_opencl
21211
21212 Apply dilation effect to the video.
21213
21214 This filter replaces the pixel by the local(3x3) maximum.
21215
21216 It accepts the following options:
21217
21218 @table @option
21219 @item threshold0
21220 @item threshold1
21221 @item threshold2
21222 @item threshold3
21223 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
21224 If @code{0}, plane will remain unchanged.
21225
21226 @item coordinates
21227 Flag which specifies the pixel to refer to.
21228 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
21229
21230 Flags to local 3x3 coordinates region centered on @code{x}:
21231
21232     1 2 3
21233
21234     4 x 5
21235
21236     6 7 8
21237 @end table
21238
21239 @subsection Example
21240
21241 @itemize
21242 @item
21243 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.
21244 @example
21245 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
21246 @end example
21247 @end itemize
21248
21249 @section nlmeans_opencl
21250
21251 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
21252
21253 @section overlay_opencl
21254
21255 Overlay one video on top of another.
21256
21257 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
21258 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
21259
21260 The filter accepts the following options:
21261
21262 @table @option
21263
21264 @item x
21265 Set the x coordinate of the overlaid video on the main video.
21266 Default value is @code{0}.
21267
21268 @item y
21269 Set the y coordinate of the overlaid video on the main video.
21270 Default value is @code{0}.
21271
21272 @end table
21273
21274 @subsection Examples
21275
21276 @itemize
21277 @item
21278 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
21279 @example
21280 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21281 @end example
21282 @item
21283 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
21284 @example
21285 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
21286 @end example
21287
21288 @end itemize
21289
21290 @section pad_opencl
21291
21292 Add paddings to the input image, and place the original input at the
21293 provided @var{x}, @var{y} coordinates.
21294
21295 It accepts the following options:
21296
21297 @table @option
21298 @item width, w
21299 @item height, h
21300 Specify an expression for the size of the output image with the
21301 paddings added. If the value for @var{width} or @var{height} is 0, the
21302 corresponding input size is used for the output.
21303
21304 The @var{width} expression can reference the value set by the
21305 @var{height} expression, and vice versa.
21306
21307 The default value of @var{width} and @var{height} is 0.
21308
21309 @item x
21310 @item y
21311 Specify the offsets to place the input image at within the padded area,
21312 with respect to the top/left border of the output image.
21313
21314 The @var{x} expression can reference the value set by the @var{y}
21315 expression, and vice versa.
21316
21317 The default value of @var{x} and @var{y} is 0.
21318
21319 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
21320 so the input image is centered on the padded area.
21321
21322 @item color
21323 Specify the color of the padded area. For the syntax of this option,
21324 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
21325 manual,ffmpeg-utils}.
21326
21327 @item aspect
21328 Pad to an aspect instead to a resolution.
21329 @end table
21330
21331 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
21332 options are expressions containing the following constants:
21333
21334 @table @option
21335 @item in_w
21336 @item in_h
21337 The input video width and height.
21338
21339 @item iw
21340 @item ih
21341 These are the same as @var{in_w} and @var{in_h}.
21342
21343 @item out_w
21344 @item out_h
21345 The output width and height (the size of the padded area), as
21346 specified by the @var{width} and @var{height} expressions.
21347
21348 @item ow
21349 @item oh
21350 These are the same as @var{out_w} and @var{out_h}.
21351
21352 @item x
21353 @item y
21354 The x and y offsets as specified by the @var{x} and @var{y}
21355 expressions, or NAN if not yet specified.
21356
21357 @item a
21358 same as @var{iw} / @var{ih}
21359
21360 @item sar
21361 input sample aspect ratio
21362
21363 @item dar
21364 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
21365 @end table
21366
21367 @section prewitt_opencl
21368
21369 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
21370
21371 The filter accepts the following option:
21372
21373 @table @option
21374 @item planes
21375 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21376
21377 @item scale
21378 Set value which will be multiplied with filtered result.
21379 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21380
21381 @item delta
21382 Set value which will be added to filtered result.
21383 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21384 @end table
21385
21386 @subsection Example
21387
21388 @itemize
21389 @item
21390 Apply the Prewitt operator with scale set to 2 and delta set to 10.
21391 @example
21392 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
21393 @end example
21394 @end itemize
21395
21396 @anchor{program_opencl}
21397 @section program_opencl
21398
21399 Filter video using an OpenCL program.
21400
21401 @table @option
21402
21403 @item source
21404 OpenCL program source file.
21405
21406 @item kernel
21407 Kernel name in program.
21408
21409 @item inputs
21410 Number of inputs to the filter.  Defaults to 1.
21411
21412 @item size, s
21413 Size of output frames.  Defaults to the same as the first input.
21414
21415 @end table
21416
21417 The @code{program_opencl} filter also supports the @ref{framesync} options.
21418
21419 The program source file must contain a kernel function with the given name,
21420 which will be run once for each plane of the output.  Each run on a plane
21421 gets enqueued as a separate 2D global NDRange with one work-item for each
21422 pixel to be generated.  The global ID offset for each work-item is therefore
21423 the coordinates of a pixel in the destination image.
21424
21425 The kernel function needs to take the following arguments:
21426 @itemize
21427 @item
21428 Destination image, @var{__write_only image2d_t}.
21429
21430 This image will become the output; the kernel should write all of it.
21431 @item
21432 Frame index, @var{unsigned int}.
21433
21434 This is a counter starting from zero and increasing by one for each frame.
21435 @item
21436 Source images, @var{__read_only image2d_t}.
21437
21438 These are the most recent images on each input.  The kernel may read from
21439 them to generate the output, but they can't be written to.
21440 @end itemize
21441
21442 Example programs:
21443
21444 @itemize
21445 @item
21446 Copy the input to the output (output must be the same size as the input).
21447 @verbatim
21448 __kernel void copy(__write_only image2d_t destination,
21449                    unsigned int index,
21450                    __read_only  image2d_t source)
21451 {
21452     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
21453
21454     int2 location = (int2)(get_global_id(0), get_global_id(1));
21455
21456     float4 value = read_imagef(source, sampler, location);
21457
21458     write_imagef(destination, location, value);
21459 }
21460 @end verbatim
21461
21462 @item
21463 Apply a simple transformation, rotating the input by an amount increasing
21464 with the index counter.  Pixel values are linearly interpolated by the
21465 sampler, and the output need not have the same dimensions as the input.
21466 @verbatim
21467 __kernel void rotate_image(__write_only image2d_t dst,
21468                            unsigned int index,
21469                            __read_only  image2d_t src)
21470 {
21471     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21472                                CLK_FILTER_LINEAR);
21473
21474     float angle = (float)index / 100.0f;
21475
21476     float2 dst_dim = convert_float2(get_image_dim(dst));
21477     float2 src_dim = convert_float2(get_image_dim(src));
21478
21479     float2 dst_cen = dst_dim / 2.0f;
21480     float2 src_cen = src_dim / 2.0f;
21481
21482     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
21483
21484     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
21485     float2 src_pos = {
21486         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
21487         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
21488     };
21489     src_pos = src_pos * src_dim / dst_dim;
21490
21491     float2 src_loc = src_pos + src_cen;
21492
21493     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
21494         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
21495         write_imagef(dst, dst_loc, 0.5f);
21496     else
21497         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
21498 }
21499 @end verbatim
21500
21501 @item
21502 Blend two inputs together, with the amount of each input used varying
21503 with the index counter.
21504 @verbatim
21505 __kernel void blend_images(__write_only image2d_t dst,
21506                            unsigned int index,
21507                            __read_only  image2d_t src1,
21508                            __read_only  image2d_t src2)
21509 {
21510     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21511                                CLK_FILTER_LINEAR);
21512
21513     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
21514
21515     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
21516     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
21517     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
21518
21519     float4 val1 = read_imagef(src1, sampler, src1_loc);
21520     float4 val2 = read_imagef(src2, sampler, src2_loc);
21521
21522     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
21523 }
21524 @end verbatim
21525
21526 @end itemize
21527
21528 @section roberts_opencl
21529 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
21530
21531 The filter accepts the following option:
21532
21533 @table @option
21534 @item planes
21535 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21536
21537 @item scale
21538 Set value which will be multiplied with filtered result.
21539 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21540
21541 @item delta
21542 Set value which will be added to filtered result.
21543 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21544 @end table
21545
21546 @subsection Example
21547
21548 @itemize
21549 @item
21550 Apply the Roberts cross operator with scale set to 2 and delta set to 10
21551 @example
21552 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
21553 @end example
21554 @end itemize
21555
21556 @section sobel_opencl
21557
21558 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
21559
21560 The filter accepts the following option:
21561
21562 @table @option
21563 @item planes
21564 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
21565
21566 @item scale
21567 Set value which will be multiplied with filtered result.
21568 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
21569
21570 @item delta
21571 Set value which will be added to filtered result.
21572 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
21573 @end table
21574
21575 @subsection Example
21576
21577 @itemize
21578 @item
21579 Apply sobel operator with scale set to 2 and delta set to 10
21580 @example
21581 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
21582 @end example
21583 @end itemize
21584
21585 @section tonemap_opencl
21586
21587 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
21588
21589 It accepts the following parameters:
21590
21591 @table @option
21592 @item tonemap
21593 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
21594
21595 @item param
21596 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
21597
21598 @item desat
21599 Apply desaturation for highlights that exceed this level of brightness. The
21600 higher the parameter, the more color information will be preserved. This
21601 setting helps prevent unnaturally blown-out colors for super-highlights, by
21602 (smoothly) turning into white instead. This makes images feel more natural,
21603 at the cost of reducing information about out-of-range colors.
21604
21605 The default value is 0.5, and the algorithm here is a little different from
21606 the cpu version tonemap currently. A setting of 0.0 disables this option.
21607
21608 @item threshold
21609 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
21610 is used to detect whether the scene has changed or not. If the distance between
21611 the current frame average brightness and the current running average exceeds
21612 a threshold value, we would re-calculate scene average and peak brightness.
21613 The default value is 0.2.
21614
21615 @item format
21616 Specify the output pixel format.
21617
21618 Currently supported formats are:
21619 @table @var
21620 @item p010
21621 @item nv12
21622 @end table
21623
21624 @item range, r
21625 Set the output color range.
21626
21627 Possible values are:
21628 @table @var
21629 @item tv/mpeg
21630 @item pc/jpeg
21631 @end table
21632
21633 Default is same as input.
21634
21635 @item primaries, p
21636 Set the output color primaries.
21637
21638 Possible values are:
21639 @table @var
21640 @item bt709
21641 @item bt2020
21642 @end table
21643
21644 Default is same as input.
21645
21646 @item transfer, t
21647 Set the output transfer characteristics.
21648
21649 Possible values are:
21650 @table @var
21651 @item bt709
21652 @item bt2020
21653 @end table
21654
21655 Default is bt709.
21656
21657 @item matrix, m
21658 Set the output colorspace matrix.
21659
21660 Possible value are:
21661 @table @var
21662 @item bt709
21663 @item bt2020
21664 @end table
21665
21666 Default is same as input.
21667
21668 @end table
21669
21670 @subsection Example
21671
21672 @itemize
21673 @item
21674 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
21675 @example
21676 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
21677 @end example
21678 @end itemize
21679
21680 @section unsharp_opencl
21681
21682 Sharpen or blur the input video.
21683
21684 It accepts the following parameters:
21685
21686 @table @option
21687 @item luma_msize_x, lx
21688 Set the luma matrix horizontal size.
21689 Range is @code{[1, 23]} and default value is @code{5}.
21690
21691 @item luma_msize_y, ly
21692 Set the luma matrix vertical size.
21693 Range is @code{[1, 23]} and default value is @code{5}.
21694
21695 @item luma_amount, la
21696 Set the luma effect strength.
21697 Range is @code{[-10, 10]} and default value is @code{1.0}.
21698
21699 Negative values will blur the input video, while positive values will
21700 sharpen it, a value of zero will disable the effect.
21701
21702 @item chroma_msize_x, cx
21703 Set the chroma matrix horizontal size.
21704 Range is @code{[1, 23]} and default value is @code{5}.
21705
21706 @item chroma_msize_y, cy
21707 Set the chroma matrix vertical size.
21708 Range is @code{[1, 23]} and default value is @code{5}.
21709
21710 @item chroma_amount, ca
21711 Set the chroma effect strength.
21712 Range is @code{[-10, 10]} and default value is @code{0.0}.
21713
21714 Negative values will blur the input video, while positive values will
21715 sharpen it, a value of zero will disable the effect.
21716
21717 @end table
21718
21719 All parameters are optional and default to the equivalent of the
21720 string '5:5:1.0:5:5:0.0'.
21721
21722 @subsection Examples
21723
21724 @itemize
21725 @item
21726 Apply strong luma sharpen effect:
21727 @example
21728 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
21729 @end example
21730
21731 @item
21732 Apply a strong blur of both luma and chroma parameters:
21733 @example
21734 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
21735 @end example
21736 @end itemize
21737
21738 @section xfade_opencl
21739
21740 Cross fade two videos with custom transition effect by using OpenCL.
21741
21742 It accepts the following options:
21743
21744 @table @option
21745 @item transition
21746 Set one of possible transition effects.
21747
21748 @table @option
21749 @item custom
21750 Select custom transition effect, the actual transition description
21751 will be picked from source and kernel options.
21752
21753 @item fade
21754 @item wipeleft
21755 @item wiperight
21756 @item wipeup
21757 @item wipedown
21758 @item slideleft
21759 @item slideright
21760 @item slideup
21761 @item slidedown
21762
21763 Default transition is fade.
21764 @end table
21765
21766 @item source
21767 OpenCL program source file for custom transition.
21768
21769 @item kernel
21770 Set name of kernel to use for custom transition from program source file.
21771
21772 @item duration
21773 Set duration of video transition.
21774
21775 @item offset
21776 Set time of start of transition relative to first video.
21777 @end table
21778
21779 The program source file must contain a kernel function with the given name,
21780 which will be run once for each plane of the output.  Each run on a plane
21781 gets enqueued as a separate 2D global NDRange with one work-item for each
21782 pixel to be generated.  The global ID offset for each work-item is therefore
21783 the coordinates of a pixel in the destination image.
21784
21785 The kernel function needs to take the following arguments:
21786 @itemize
21787 @item
21788 Destination image, @var{__write_only image2d_t}.
21789
21790 This image will become the output; the kernel should write all of it.
21791
21792 @item
21793 First Source image, @var{__read_only image2d_t}.
21794 Second Source image, @var{__read_only image2d_t}.
21795
21796 These are the most recent images on each input.  The kernel may read from
21797 them to generate the output, but they can't be written to.
21798
21799 @item
21800 Transition progress, @var{float}. This value is always between 0 and 1 inclusive.
21801 @end itemize
21802
21803 Example programs:
21804
21805 @itemize
21806 @item
21807 Apply dots curtain transition effect:
21808 @verbatim
21809 __kernel void blend_images(__write_only image2d_t dst,
21810                            __read_only  image2d_t src1,
21811                            __read_only  image2d_t src2,
21812                            float progress)
21813 {
21814     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
21815                                CLK_FILTER_LINEAR);
21816     int2  p = (int2)(get_global_id(0), get_global_id(1));
21817     float2 rp = (float2)(get_global_id(0), get_global_id(1));
21818     float2 dim = (float2)(get_image_dim(src1).x, get_image_dim(src1).y);
21819     rp = rp / dim;
21820
21821     float2 dots = (float2)(20.0, 20.0);
21822     float2 center = (float2)(0,0);
21823     float2 unused;
21824
21825     float4 val1 = read_imagef(src1, sampler, p);
21826     float4 val2 = read_imagef(src2, sampler, p);
21827     bool next = distance(fract(rp * dots, &unused), (float2)(0.5, 0.5)) < (progress / distance(rp, center));
21828
21829     write_imagef(dst, p, next ? val1 : val2);
21830 }
21831 @end verbatim
21832
21833 @end itemize
21834
21835 @c man end OPENCL VIDEO FILTERS
21836
21837 @chapter VAAPI Video Filters
21838 @c man begin VAAPI VIDEO FILTERS
21839
21840 VAAPI Video filters are usually used with VAAPI decoder and VAAPI encoder. Below is a description of VAAPI video filters.
21841
21842 To enable compilation of these filters you need to configure FFmpeg with
21843 @code{--enable-vaapi}.
21844
21845 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}
21846
21847 @section tonemap_vaapi
21848
21849 Perform HDR(High Dynamic Range) to SDR(Standard Dynamic Range) conversion with tone-mapping.
21850 It maps the dynamic range of HDR10 content to the SDR content.
21851 It currently only accepts HDR10 as input.
21852
21853 It accepts the following parameters:
21854
21855 @table @option
21856 @item format
21857 Specify the output pixel format.
21858
21859 Currently supported formats are:
21860 @table @var
21861 @item p010
21862 @item nv12
21863 @end table
21864
21865 Default is nv12.
21866
21867 @item primaries, p
21868 Set the output color primaries.
21869
21870 Default is same as input.
21871
21872 @item transfer, t
21873 Set the output transfer characteristics.
21874
21875 Default is bt709.
21876
21877 @item matrix, m
21878 Set the output colorspace matrix.
21879
21880 Default is same as input.
21881
21882 @end table
21883
21884 @subsection Example
21885
21886 @itemize
21887 @item
21888 Convert HDR(HDR10) video to bt2020-transfer-characteristic p010 format
21889 @example
21890 tonemap_vaapi=format=p010:t=bt2020-10
21891 @end example
21892 @end itemize
21893
21894 @c man end VAAPI VIDEO FILTERS
21895
21896 @chapter Video Sources
21897 @c man begin VIDEO SOURCES
21898
21899 Below is a description of the currently available video sources.
21900
21901 @section buffer
21902
21903 Buffer video frames, and make them available to the filter chain.
21904
21905 This source is mainly intended for a programmatic use, in particular
21906 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
21907
21908 It accepts the following parameters:
21909
21910 @table @option
21911
21912 @item video_size
21913 Specify the size (width and height) of the buffered video frames. For the
21914 syntax of this option, check the
21915 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21916
21917 @item width
21918 The input video width.
21919
21920 @item height
21921 The input video height.
21922
21923 @item pix_fmt
21924 A string representing the pixel format of the buffered video frames.
21925 It may be a number corresponding to a pixel format, or a pixel format
21926 name.
21927
21928 @item time_base
21929 Specify the timebase assumed by the timestamps of the buffered frames.
21930
21931 @item frame_rate
21932 Specify the frame rate expected for the video stream.
21933
21934 @item pixel_aspect, sar
21935 The sample (pixel) aspect ratio of the input video.
21936
21937 @item sws_param
21938 This option is deprecated and ignored. Prepend @code{sws_flags=@var{flags};}
21939 to the filtergraph description to specify swscale flags for automatically
21940 inserted scalers. See @ref{Filtergraph syntax}.
21941
21942 @item hw_frames_ctx
21943 When using a hardware pixel format, this should be a reference to an
21944 AVHWFramesContext describing input frames.
21945 @end table
21946
21947 For example:
21948 @example
21949 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
21950 @end example
21951
21952 will instruct the source to accept video frames with size 320x240 and
21953 with format "yuv410p", assuming 1/24 as the timestamps timebase and
21954 square pixels (1:1 sample aspect ratio).
21955 Since the pixel format with name "yuv410p" corresponds to the number 6
21956 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
21957 this example corresponds to:
21958 @example
21959 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
21960 @end example
21961
21962 Alternatively, the options can be specified as a flat string, but this
21963 syntax is deprecated:
21964
21965 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}
21966
21967 @section cellauto
21968
21969 Create a pattern generated by an elementary cellular automaton.
21970
21971 The initial state of the cellular automaton can be defined through the
21972 @option{filename} and @option{pattern} options. If such options are
21973 not specified an initial state is created randomly.
21974
21975 At each new frame a new row in the video is filled with the result of
21976 the cellular automaton next generation. The behavior when the whole
21977 frame is filled is defined by the @option{scroll} option.
21978
21979 This source accepts the following options:
21980
21981 @table @option
21982 @item filename, f
21983 Read the initial cellular automaton state, i.e. the starting row, from
21984 the specified file.
21985 In the file, each non-whitespace character is considered an alive
21986 cell, a newline will terminate the row, and further characters in the
21987 file will be ignored.
21988
21989 @item pattern, p
21990 Read the initial cellular automaton state, i.e. the starting row, from
21991 the specified string.
21992
21993 Each non-whitespace character in the string is considered an alive
21994 cell, a newline will terminate the row, and further characters in the
21995 string will be ignored.
21996
21997 @item rate, r
21998 Set the video rate, that is the number of frames generated per second.
21999 Default is 25.
22000
22001 @item random_fill_ratio, ratio
22002 Set the random fill ratio for the initial cellular automaton row. It
22003 is a floating point number value ranging from 0 to 1, defaults to
22004 1/PHI.
22005
22006 This option is ignored when a file or a pattern is specified.
22007
22008 @item random_seed, seed
22009 Set the seed for filling randomly the initial row, must be an integer
22010 included between 0 and UINT32_MAX. If not specified, or if explicitly
22011 set to -1, the filter will try to use a good random seed on a best
22012 effort basis.
22013
22014 @item rule
22015 Set the cellular automaton rule, it is a number ranging from 0 to 255.
22016 Default value is 110.
22017
22018 @item size, s
22019 Set the size of the output video. For the syntax of this option, check the
22020 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22021
22022 If @option{filename} or @option{pattern} is specified, the size is set
22023 by default to the width of the specified initial state row, and the
22024 height is set to @var{width} * PHI.
22025
22026 If @option{size} is set, it must contain the width of the specified
22027 pattern string, and the specified pattern will be centered in the
22028 larger row.
22029
22030 If a filename or a pattern string is not specified, the size value
22031 defaults to "320x518" (used for a randomly generated initial state).
22032
22033 @item scroll
22034 If set to 1, scroll the output upward when all the rows in the output
22035 have been already filled. If set to 0, the new generated row will be
22036 written over the top row just after the bottom row is filled.
22037 Defaults to 1.
22038
22039 @item start_full, full
22040 If set to 1, completely fill the output with generated rows before
22041 outputting the first frame.
22042 This is the default behavior, for disabling set the value to 0.
22043
22044 @item stitch
22045 If set to 1, stitch the left and right row edges together.
22046 This is the default behavior, for disabling set the value to 0.
22047 @end table
22048
22049 @subsection Examples
22050
22051 @itemize
22052 @item
22053 Read the initial state from @file{pattern}, and specify an output of
22054 size 200x400.
22055 @example
22056 cellauto=f=pattern:s=200x400
22057 @end example
22058
22059 @item
22060 Generate a random initial row with a width of 200 cells, with a fill
22061 ratio of 2/3:
22062 @example
22063 cellauto=ratio=2/3:s=200x200
22064 @end example
22065
22066 @item
22067 Create a pattern generated by rule 18 starting by a single alive cell
22068 centered on an initial row with width 100:
22069 @example
22070 cellauto=p=@@:s=100x400:full=0:rule=18
22071 @end example
22072
22073 @item
22074 Specify a more elaborated initial pattern:
22075 @example
22076 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
22077 @end example
22078
22079 @end itemize
22080
22081 @anchor{coreimagesrc}
22082 @section coreimagesrc
22083 Video source generated on GPU using Apple's CoreImage API on OSX.
22084
22085 This video source is a specialized version of the @ref{coreimage} video filter.
22086 Use a core image generator at the beginning of the applied filterchain to
22087 generate the content.
22088
22089 The coreimagesrc video source accepts the following options:
22090 @table @option
22091 @item list_generators
22092 List all available generators along with all their respective options as well as
22093 possible minimum and maximum values along with the default values.
22094 @example
22095 list_generators=true
22096 @end example
22097
22098 @item size, s
22099 Specify the size of the sourced video. For the syntax of this option, check the
22100 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22101 The default value is @code{320x240}.
22102
22103 @item rate, r
22104 Specify the frame rate of the sourced video, as the number of frames
22105 generated per second. It has to be a string in the format
22106 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22107 number or a valid video frame rate abbreviation. The default value is
22108 "25".
22109
22110 @item sar
22111 Set the sample aspect ratio of the sourced video.
22112
22113 @item duration, d
22114 Set the duration of the sourced video. See
22115 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22116 for the accepted syntax.
22117
22118 If not specified, or the expressed duration is negative, the video is
22119 supposed to be generated forever.
22120 @end table
22121
22122 Additionally, all options of the @ref{coreimage} video filter are accepted.
22123 A complete filterchain can be used for further processing of the
22124 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
22125 and examples for details.
22126
22127 @subsection Examples
22128
22129 @itemize
22130
22131 @item
22132 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
22133 given as complete and escaped command-line for Apple's standard bash shell:
22134 @example
22135 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
22136 @end example
22137 This example is equivalent to the QRCode example of @ref{coreimage} without the
22138 need for a nullsrc video source.
22139 @end itemize
22140
22141
22142 @section mandelbrot
22143
22144 Generate a Mandelbrot set fractal, and progressively zoom towards the
22145 point specified with @var{start_x} and @var{start_y}.
22146
22147 This source accepts the following options:
22148
22149 @table @option
22150
22151 @item end_pts
22152 Set the terminal pts value. Default value is 400.
22153
22154 @item end_scale
22155 Set the terminal scale value.
22156 Must be a floating point value. Default value is 0.3.
22157
22158 @item inner
22159 Set the inner coloring mode, that is the algorithm used to draw the
22160 Mandelbrot fractal internal region.
22161
22162 It shall assume one of the following values:
22163 @table @option
22164 @item black
22165 Set black mode.
22166 @item convergence
22167 Show time until convergence.
22168 @item mincol
22169 Set color based on point closest to the origin of the iterations.
22170 @item period
22171 Set period mode.
22172 @end table
22173
22174 Default value is @var{mincol}.
22175
22176 @item bailout
22177 Set the bailout value. Default value is 10.0.
22178
22179 @item maxiter
22180 Set the maximum of iterations performed by the rendering
22181 algorithm. Default value is 7189.
22182
22183 @item outer
22184 Set outer coloring mode.
22185 It shall assume one of following values:
22186 @table @option
22187 @item iteration_count
22188 Set iteration count mode.
22189 @item normalized_iteration_count
22190 set normalized iteration count mode.
22191 @end table
22192 Default value is @var{normalized_iteration_count}.
22193
22194 @item rate, r
22195 Set frame rate, expressed as number of frames per second. Default
22196 value is "25".
22197
22198 @item size, s
22199 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22200 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22201
22202 @item start_scale
22203 Set the initial scale value. Default value is 3.0.
22204
22205 @item start_x
22206 Set the initial x position. Must be a floating point value between
22207 -100 and 100. Default value is -0.743643887037158704752191506114774.
22208
22209 @item start_y
22210 Set the initial y position. Must be a floating point value between
22211 -100 and 100. Default value is -0.131825904205311970493132056385139.
22212 @end table
22213
22214 @section mptestsrc
22215
22216 Generate various test patterns, as generated by the MPlayer test filter.
22217
22218 The size of the generated video is fixed, and is 256x256.
22219 This source is useful in particular for testing encoding features.
22220
22221 This source accepts the following options:
22222
22223 @table @option
22224
22225 @item rate, r
22226 Specify the frame rate of the sourced video, as the number of frames
22227 generated per second. It has to be a string in the format
22228 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22229 number or a valid video frame rate abbreviation. The default value is
22230 "25".
22231
22232 @item duration, d
22233 Set the duration of the sourced video. See
22234 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22235 for the accepted syntax.
22236
22237 If not specified, or the expressed duration is negative, the video is
22238 supposed to be generated forever.
22239
22240 @item test, t
22241
22242 Set the number or the name of the test to perform. Supported tests are:
22243 @table @option
22244 @item dc_luma
22245 @item dc_chroma
22246 @item freq_luma
22247 @item freq_chroma
22248 @item amp_luma
22249 @item amp_chroma
22250 @item cbp
22251 @item mv
22252 @item ring1
22253 @item ring2
22254 @item all
22255
22256 @item max_frames, m
22257 Set the maximum number of frames generated for each test, default value is 30.
22258
22259 @end table
22260
22261 Default value is "all", which will cycle through the list of all tests.
22262 @end table
22263
22264 Some examples:
22265 @example
22266 mptestsrc=t=dc_luma
22267 @end example
22268
22269 will generate a "dc_luma" test pattern.
22270
22271 @section frei0r_src
22272
22273 Provide a frei0r source.
22274
22275 To enable compilation of this filter you need to install the frei0r
22276 header and configure FFmpeg with @code{--enable-frei0r}.
22277
22278 This source accepts the following parameters:
22279
22280 @table @option
22281
22282 @item size
22283 The size of the video to generate. For the syntax of this option, check the
22284 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22285
22286 @item framerate
22287 The framerate of the generated video. It may be a string of the form
22288 @var{num}/@var{den} or a frame rate abbreviation.
22289
22290 @item filter_name
22291 The name to the frei0r source to load. For more information regarding frei0r and
22292 how to set the parameters, read the @ref{frei0r} section in the video filters
22293 documentation.
22294
22295 @item filter_params
22296 A '|'-separated list of parameters to pass to the frei0r source.
22297
22298 @end table
22299
22300 For example, to generate a frei0r partik0l source with size 200x200
22301 and frame rate 10 which is overlaid on the overlay filter main input:
22302 @example
22303 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
22304 @end example
22305
22306 @section life
22307
22308 Generate a life pattern.
22309
22310 This source is based on a generalization of John Conway's life game.
22311
22312 The sourced input represents a life grid, each pixel represents a cell
22313 which can be in one of two possible states, alive or dead. Every cell
22314 interacts with its eight neighbours, which are the cells that are
22315 horizontally, vertically, or diagonally adjacent.
22316
22317 At each interaction the grid evolves according to the adopted rule,
22318 which specifies the number of neighbor alive cells which will make a
22319 cell stay alive or born. The @option{rule} option allows one to specify
22320 the rule to adopt.
22321
22322 This source accepts the following options:
22323
22324 @table @option
22325 @item filename, f
22326 Set the file from which to read the initial grid state. In the file,
22327 each non-whitespace character is considered an alive cell, and newline
22328 is used to delimit the end of each row.
22329
22330 If this option is not specified, the initial grid is generated
22331 randomly.
22332
22333 @item rate, r
22334 Set the video rate, that is the number of frames generated per second.
22335 Default is 25.
22336
22337 @item random_fill_ratio, ratio
22338 Set the random fill ratio for the initial random grid. It is a
22339 floating point number value ranging from 0 to 1, defaults to 1/PHI.
22340 It is ignored when a file is specified.
22341
22342 @item random_seed, seed
22343 Set the seed for filling the initial random grid, must be an integer
22344 included between 0 and UINT32_MAX. If not specified, or if explicitly
22345 set to -1, the filter will try to use a good random seed on a best
22346 effort basis.
22347
22348 @item rule
22349 Set the life rule.
22350
22351 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
22352 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
22353 @var{NS} specifies the number of alive neighbor cells which make a
22354 live cell stay alive, and @var{NB} the number of alive neighbor cells
22355 which make a dead cell to become alive (i.e. to "born").
22356 "s" and "b" can be used in place of "S" and "B", respectively.
22357
22358 Alternatively a rule can be specified by an 18-bits integer. The 9
22359 high order bits are used to encode the next cell state if it is alive
22360 for each number of neighbor alive cells, the low order bits specify
22361 the rule for "borning" new cells. Higher order bits encode for an
22362 higher number of neighbor cells.
22363 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
22364 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
22365
22366 Default value is "S23/B3", which is the original Conway's game of life
22367 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
22368 cells, and will born a new cell if there are three alive cells around
22369 a dead cell.
22370
22371 @item size, s
22372 Set the size of the output video. For the syntax of this option, check the
22373 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22374
22375 If @option{filename} is specified, the size is set by default to the
22376 same size of the input file. If @option{size} is set, it must contain
22377 the size specified in the input file, and the initial grid defined in
22378 that file is centered in the larger resulting area.
22379
22380 If a filename is not specified, the size value defaults to "320x240"
22381 (used for a randomly generated initial grid).
22382
22383 @item stitch
22384 If set to 1, stitch the left and right grid edges together, and the
22385 top and bottom edges also. Defaults to 1.
22386
22387 @item mold
22388 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
22389 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
22390 value from 0 to 255.
22391
22392 @item life_color
22393 Set the color of living (or new born) cells.
22394
22395 @item death_color
22396 Set the color of dead cells. If @option{mold} is set, this is the first color
22397 used to represent a dead cell.
22398
22399 @item mold_color
22400 Set mold color, for definitely dead and moldy cells.
22401
22402 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
22403 ffmpeg-utils manual,ffmpeg-utils}.
22404 @end table
22405
22406 @subsection Examples
22407
22408 @itemize
22409 @item
22410 Read a grid from @file{pattern}, and center it on a grid of size
22411 300x300 pixels:
22412 @example
22413 life=f=pattern:s=300x300
22414 @end example
22415
22416 @item
22417 Generate a random grid of size 200x200, with a fill ratio of 2/3:
22418 @example
22419 life=ratio=2/3:s=200x200
22420 @end example
22421
22422 @item
22423 Specify a custom rule for evolving a randomly generated grid:
22424 @example
22425 life=rule=S14/B34
22426 @end example
22427
22428 @item
22429 Full example with slow death effect (mold) using @command{ffplay}:
22430 @example
22431 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
22432 @end example
22433 @end itemize
22434
22435 @anchor{allrgb}
22436 @anchor{allyuv}
22437 @anchor{color}
22438 @anchor{haldclutsrc}
22439 @anchor{nullsrc}
22440 @anchor{pal75bars}
22441 @anchor{pal100bars}
22442 @anchor{rgbtestsrc}
22443 @anchor{smptebars}
22444 @anchor{smptehdbars}
22445 @anchor{testsrc}
22446 @anchor{testsrc2}
22447 @anchor{yuvtestsrc}
22448 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
22449
22450 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
22451
22452 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
22453
22454 The @code{color} source provides an uniformly colored input.
22455
22456 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
22457 @ref{haldclut} filter.
22458
22459 The @code{nullsrc} source returns unprocessed video frames. It is
22460 mainly useful to be employed in analysis / debugging tools, or as the
22461 source for filters which ignore the input data.
22462
22463 The @code{pal75bars} source generates a color bars pattern, based on
22464 EBU PAL recommendations with 75% color levels.
22465
22466 The @code{pal100bars} source generates a color bars pattern, based on
22467 EBU PAL recommendations with 100% color levels.
22468
22469 The @code{rgbtestsrc} source generates an RGB test pattern useful for
22470 detecting RGB vs BGR issues. You should see a red, green and blue
22471 stripe from top to bottom.
22472
22473 The @code{smptebars} source generates a color bars pattern, based on
22474 the SMPTE Engineering Guideline EG 1-1990.
22475
22476 The @code{smptehdbars} source generates a color bars pattern, based on
22477 the SMPTE RP 219-2002.
22478
22479 The @code{testsrc} source generates a test video pattern, showing a
22480 color pattern, a scrolling gradient and a timestamp. This is mainly
22481 intended for testing purposes.
22482
22483 The @code{testsrc2} source is similar to testsrc, but supports more
22484 pixel formats instead of just @code{rgb24}. This allows using it as an
22485 input for other tests without requiring a format conversion.
22486
22487 The @code{yuvtestsrc} source generates an YUV test pattern. You should
22488 see a y, cb and cr stripe from top to bottom.
22489
22490 The sources accept the following parameters:
22491
22492 @table @option
22493
22494 @item level
22495 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
22496 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
22497 pixels to be used as identity matrix for 3D lookup tables. Each component is
22498 coded on a @code{1/(N*N)} scale.
22499
22500 @item color, c
22501 Specify the color of the source, only available in the @code{color}
22502 source. For the syntax of this option, check the
22503 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
22504
22505 @item size, s
22506 Specify the size of the sourced video. For the syntax of this option, check the
22507 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22508 The default value is @code{320x240}.
22509
22510 This option is not available with the @code{allrgb}, @code{allyuv}, and
22511 @code{haldclutsrc} filters.
22512
22513 @item rate, r
22514 Specify the frame rate of the sourced video, as the number of frames
22515 generated per second. It has to be a string in the format
22516 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
22517 number or a valid video frame rate abbreviation. The default value is
22518 "25".
22519
22520 @item duration, d
22521 Set the duration of the sourced video. See
22522 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
22523 for the accepted syntax.
22524
22525 If not specified, or the expressed duration is negative, the video is
22526 supposed to be generated forever.
22527
22528 @item sar
22529 Set the sample aspect ratio of the sourced video.
22530
22531 @item alpha
22532 Specify the alpha (opacity) of the background, only available in the
22533 @code{testsrc2} source. The value must be between 0 (fully transparent) and
22534 255 (fully opaque, the default).
22535
22536 @item decimals, n
22537 Set the number of decimals to show in the timestamp, only available in the
22538 @code{testsrc} source.
22539
22540 The displayed timestamp value will correspond to the original
22541 timestamp value multiplied by the power of 10 of the specified
22542 value. Default value is 0.
22543 @end table
22544
22545 @subsection Examples
22546
22547 @itemize
22548 @item
22549 Generate a video with a duration of 5.3 seconds, with size
22550 176x144 and a frame rate of 10 frames per second:
22551 @example
22552 testsrc=duration=5.3:size=qcif:rate=10
22553 @end example
22554
22555 @item
22556 The following graph description will generate a red source
22557 with an opacity of 0.2, with size "qcif" and a frame rate of 10
22558 frames per second:
22559 @example
22560 color=c=red@@0.2:s=qcif:r=10
22561 @end example
22562
22563 @item
22564 If the input content is to be ignored, @code{nullsrc} can be used. The
22565 following command generates noise in the luminance plane by employing
22566 the @code{geq} filter:
22567 @example
22568 nullsrc=s=256x256, geq=random(1)*255:128:128
22569 @end example
22570 @end itemize
22571
22572 @subsection Commands
22573
22574 The @code{color} source supports the following commands:
22575
22576 @table @option
22577 @item c, color
22578 Set the color of the created image. Accepts the same syntax of the
22579 corresponding @option{color} option.
22580 @end table
22581
22582 @section openclsrc
22583
22584 Generate video using an OpenCL program.
22585
22586 @table @option
22587
22588 @item source
22589 OpenCL program source file.
22590
22591 @item kernel
22592 Kernel name in program.
22593
22594 @item size, s
22595 Size of frames to generate.  This must be set.
22596
22597 @item format
22598 Pixel format to use for the generated frames.  This must be set.
22599
22600 @item rate, r
22601 Number of frames generated every second.  Default value is '25'.
22602
22603 @end table
22604
22605 For details of how the program loading works, see the @ref{program_opencl}
22606 filter.
22607
22608 Example programs:
22609
22610 @itemize
22611 @item
22612 Generate a colour ramp by setting pixel values from the position of the pixel
22613 in the output image.  (Note that this will work with all pixel formats, but
22614 the generated output will not be the same.)
22615 @verbatim
22616 __kernel void ramp(__write_only image2d_t dst,
22617                    unsigned int index)
22618 {
22619     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22620
22621     float4 val;
22622     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
22623
22624     write_imagef(dst, loc, val);
22625 }
22626 @end verbatim
22627
22628 @item
22629 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
22630 @verbatim
22631 __kernel void sierpinski_carpet(__write_only image2d_t dst,
22632                                 unsigned int index)
22633 {
22634     int2 loc = (int2)(get_global_id(0), get_global_id(1));
22635
22636     float4 value = 0.0f;
22637     int x = loc.x + index;
22638     int y = loc.y + index;
22639     while (x > 0 || y > 0) {
22640         if (x % 3 == 1 && y % 3 == 1) {
22641             value = 1.0f;
22642             break;
22643         }
22644         x /= 3;
22645         y /= 3;
22646     }
22647
22648     write_imagef(dst, loc, value);
22649 }
22650 @end verbatim
22651
22652 @end itemize
22653
22654 @section sierpinski
22655
22656 Generate a Sierpinski carpet/triangle fractal, and randomly pan around.
22657
22658 This source accepts the following options:
22659
22660 @table @option
22661 @item size, s
22662 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
22663 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
22664
22665 @item rate, r
22666 Set frame rate, expressed as number of frames per second. Default
22667 value is "25".
22668
22669 @item seed
22670 Set seed which is used for random panning.
22671
22672 @item jump
22673 Set max jump for single pan destination. Allowed range is from 1 to 10000.
22674
22675 @item type
22676 Set fractal type, can be default @code{carpet} or @code{triangle}.
22677 @end table
22678
22679 @c man end VIDEO SOURCES
22680
22681 @chapter Video Sinks
22682 @c man begin VIDEO SINKS
22683
22684 Below is a description of the currently available video sinks.
22685
22686 @section buffersink
22687
22688 Buffer video frames, and make them available to the end of the filter
22689 graph.
22690
22691 This sink is mainly intended for programmatic use, in particular
22692 through the interface defined in @file{libavfilter/buffersink.h}
22693 or the options system.
22694
22695 It accepts a pointer to an AVBufferSinkContext structure, which
22696 defines the incoming buffers' formats, to be passed as the opaque
22697 parameter to @code{avfilter_init_filter} for initialization.
22698
22699 @section nullsink
22700
22701 Null video sink: do absolutely nothing with the input video. It is
22702 mainly useful as a template and for use in analysis / debugging
22703 tools.
22704
22705 @c man end VIDEO SINKS
22706
22707 @chapter Multimedia Filters
22708 @c man begin MULTIMEDIA FILTERS
22709
22710 Below is a description of the currently available multimedia filters.
22711
22712 @section abitscope
22713
22714 Convert input audio to a video output, displaying the audio bit scope.
22715
22716 The filter accepts the following options:
22717
22718 @table @option
22719 @item rate, r
22720 Set frame rate, expressed as number of frames per second. Default
22721 value is "25".
22722
22723 @item size, s
22724 Specify the video size for the output. For the syntax of this option, check the
22725 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22726 Default value is @code{1024x256}.
22727
22728 @item colors
22729 Specify list of colors separated by space or by '|' which will be used to
22730 draw channels. Unrecognized or missing colors will be replaced
22731 by white color.
22732 @end table
22733
22734 @section adrawgraph
22735 Draw a graph using input audio metadata.
22736
22737 See @ref{drawgraph}
22738
22739 @section agraphmonitor
22740
22741 See @ref{graphmonitor}.
22742
22743 @section ahistogram
22744
22745 Convert input audio to a video output, displaying the volume histogram.
22746
22747 The filter accepts the following options:
22748
22749 @table @option
22750 @item dmode
22751 Specify how histogram is calculated.
22752
22753 It accepts the following values:
22754 @table @samp
22755 @item single
22756 Use single histogram for all channels.
22757 @item separate
22758 Use separate histogram for each channel.
22759 @end table
22760 Default is @code{single}.
22761
22762 @item rate, r
22763 Set frame rate, expressed as number of frames per second. Default
22764 value is "25".
22765
22766 @item size, s
22767 Specify the video size for the output. For the syntax of this option, check the
22768 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22769 Default value is @code{hd720}.
22770
22771 @item scale
22772 Set display scale.
22773
22774 It accepts the following values:
22775 @table @samp
22776 @item log
22777 logarithmic
22778 @item sqrt
22779 square root
22780 @item cbrt
22781 cubic root
22782 @item lin
22783 linear
22784 @item rlog
22785 reverse logarithmic
22786 @end table
22787 Default is @code{log}.
22788
22789 @item ascale
22790 Set amplitude scale.
22791
22792 It accepts the following values:
22793 @table @samp
22794 @item log
22795 logarithmic
22796 @item lin
22797 linear
22798 @end table
22799 Default is @code{log}.
22800
22801 @item acount
22802 Set how much frames to accumulate in histogram.
22803 Default is 1. Setting this to -1 accumulates all frames.
22804
22805 @item rheight
22806 Set histogram ratio of window height.
22807
22808 @item slide
22809 Set sonogram sliding.
22810
22811 It accepts the following values:
22812 @table @samp
22813 @item replace
22814 replace old rows with new ones.
22815 @item scroll
22816 scroll from top to bottom.
22817 @end table
22818 Default is @code{replace}.
22819 @end table
22820
22821 @section aphasemeter
22822
22823 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
22824 representing mean phase of current audio frame. A video output can also be produced and is
22825 enabled by default. The audio is passed through as first output.
22826
22827 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
22828 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
22829 and @code{1} means channels are in phase.
22830
22831 The filter accepts the following options, all related to its video output:
22832
22833 @table @option
22834 @item rate, r
22835 Set the output frame rate. Default value is @code{25}.
22836
22837 @item size, s
22838 Set the video size for the output. For the syntax of this option, check the
22839 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22840 Default value is @code{800x400}.
22841
22842 @item rc
22843 @item gc
22844 @item bc
22845 Specify the red, green, blue contrast. Default values are @code{2},
22846 @code{7} and @code{1}.
22847 Allowed range is @code{[0, 255]}.
22848
22849 @item mpc
22850 Set color which will be used for drawing median phase. If color is
22851 @code{none} which is default, no median phase value will be drawn.
22852
22853 @item video
22854 Enable video output. Default is enabled.
22855 @end table
22856
22857 @section avectorscope
22858
22859 Convert input audio to a video output, representing the audio vector
22860 scope.
22861
22862 The filter is used to measure the difference between channels of stereo
22863 audio stream. A monaural signal, consisting of identical left and right
22864 signal, results in straight vertical line. Any stereo separation is visible
22865 as a deviation from this line, creating a Lissajous figure.
22866 If the straight (or deviation from it) but horizontal line appears this
22867 indicates that the left and right channels are out of phase.
22868
22869 The filter accepts the following options:
22870
22871 @table @option
22872 @item mode, m
22873 Set the vectorscope mode.
22874
22875 Available values are:
22876 @table @samp
22877 @item lissajous
22878 Lissajous rotated by 45 degrees.
22879
22880 @item lissajous_xy
22881 Same as above but not rotated.
22882
22883 @item polar
22884 Shape resembling half of circle.
22885 @end table
22886
22887 Default value is @samp{lissajous}.
22888
22889 @item size, s
22890 Set the video size for the output. For the syntax of this option, check the
22891 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22892 Default value is @code{400x400}.
22893
22894 @item rate, r
22895 Set the output frame rate. Default value is @code{25}.
22896
22897 @item rc
22898 @item gc
22899 @item bc
22900 @item ac
22901 Specify the red, green, blue and alpha contrast. Default values are @code{40},
22902 @code{160}, @code{80} and @code{255}.
22903 Allowed range is @code{[0, 255]}.
22904
22905 @item rf
22906 @item gf
22907 @item bf
22908 @item af
22909 Specify the red, green, blue and alpha fade. Default values are @code{15},
22910 @code{10}, @code{5} and @code{5}.
22911 Allowed range is @code{[0, 255]}.
22912
22913 @item zoom
22914 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
22915 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
22916
22917 @item draw
22918 Set the vectorscope drawing mode.
22919
22920 Available values are:
22921 @table @samp
22922 @item dot
22923 Draw dot for each sample.
22924
22925 @item line
22926 Draw line between previous and current sample.
22927 @end table
22928
22929 Default value is @samp{dot}.
22930
22931 @item scale
22932 Specify amplitude scale of audio samples.
22933
22934 Available values are:
22935 @table @samp
22936 @item lin
22937 Linear.
22938
22939 @item sqrt
22940 Square root.
22941
22942 @item cbrt
22943 Cubic root.
22944
22945 @item log
22946 Logarithmic.
22947 @end table
22948
22949 @item swap
22950 Swap left channel axis with right channel axis.
22951
22952 @item mirror
22953 Mirror axis.
22954
22955 @table @samp
22956 @item none
22957 No mirror.
22958
22959 @item x
22960 Mirror only x axis.
22961
22962 @item y
22963 Mirror only y axis.
22964
22965 @item xy
22966 Mirror both axis.
22967 @end table
22968
22969 @end table
22970
22971 @subsection Examples
22972
22973 @itemize
22974 @item
22975 Complete example using @command{ffplay}:
22976 @example
22977 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22978              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
22979 @end example
22980 @end itemize
22981
22982 @section bench, abench
22983
22984 Benchmark part of a filtergraph.
22985
22986 The filter accepts the following options:
22987
22988 @table @option
22989 @item action
22990 Start or stop a timer.
22991
22992 Available values are:
22993 @table @samp
22994 @item start
22995 Get the current time, set it as frame metadata (using the key
22996 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
22997
22998 @item stop
22999 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
23000 the input frame metadata to get the time difference. Time difference, average,
23001 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
23002 @code{min}) are then printed. The timestamps are expressed in seconds.
23003 @end table
23004 @end table
23005
23006 @subsection Examples
23007
23008 @itemize
23009 @item
23010 Benchmark @ref{selectivecolor} filter:
23011 @example
23012 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
23013 @end example
23014 @end itemize
23015
23016 @section concat
23017
23018 Concatenate audio and video streams, joining them together one after the
23019 other.
23020
23021 The filter works on segments of synchronized video and audio streams. All
23022 segments must have the same number of streams of each type, and that will
23023 also be the number of streams at output.
23024
23025 The filter accepts the following options:
23026
23027 @table @option
23028
23029 @item n
23030 Set the number of segments. Default is 2.
23031
23032 @item v
23033 Set the number of output video streams, that is also the number of video
23034 streams in each segment. Default is 1.
23035
23036 @item a
23037 Set the number of output audio streams, that is also the number of audio
23038 streams in each segment. Default is 0.
23039
23040 @item unsafe
23041 Activate unsafe mode: do not fail if segments have a different format.
23042
23043 @end table
23044
23045 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
23046 @var{a} audio outputs.
23047
23048 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
23049 segment, in the same order as the outputs, then the inputs for the second
23050 segment, etc.
23051
23052 Related streams do not always have exactly the same duration, for various
23053 reasons including codec frame size or sloppy authoring. For that reason,
23054 related synchronized streams (e.g. a video and its audio track) should be
23055 concatenated at once. The concat filter will use the duration of the longest
23056 stream in each segment (except the last one), and if necessary pad shorter
23057 audio streams with silence.
23058
23059 For this filter to work correctly, all segments must start at timestamp 0.
23060
23061 All corresponding streams must have the same parameters in all segments; the
23062 filtering system will automatically select a common pixel format for video
23063 streams, and a common sample format, sample rate and channel layout for
23064 audio streams, but other settings, such as resolution, must be converted
23065 explicitly by the user.
23066
23067 Different frame rates are acceptable but will result in variable frame rate
23068 at output; be sure to configure the output file to handle it.
23069
23070 @subsection Examples
23071
23072 @itemize
23073 @item
23074 Concatenate an opening, an episode and an ending, all in bilingual version
23075 (video in stream 0, audio in streams 1 and 2):
23076 @example
23077 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
23078   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
23079    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
23080   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
23081 @end example
23082
23083 @item
23084 Concatenate two parts, handling audio and video separately, using the
23085 (a)movie sources, and adjusting the resolution:
23086 @example
23087 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
23088 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
23089 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
23090 @end example
23091 Note that a desync will happen at the stitch if the audio and video streams
23092 do not have exactly the same duration in the first file.
23093
23094 @end itemize
23095
23096 @subsection Commands
23097
23098 This filter supports the following commands:
23099 @table @option
23100 @item next
23101 Close the current segment and step to the next one
23102 @end table
23103
23104 @anchor{ebur128}
23105 @section ebur128
23106
23107 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
23108 level. By default, it logs a message at a frequency of 10Hz with the
23109 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
23110 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
23111
23112 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
23113 sample format is double-precision floating point. The input stream will be converted to
23114 this specification, if needed. Users may need to insert aformat and/or aresample filters
23115 after this filter to obtain the original parameters.
23116
23117 The filter also has a video output (see the @var{video} option) with a real
23118 time graph to observe the loudness evolution. The graphic contains the logged
23119 message mentioned above, so it is not printed anymore when this option is set,
23120 unless the verbose logging is set. The main graphing area contains the
23121 short-term loudness (3 seconds of analysis), and the gauge on the right is for
23122 the momentary loudness (400 milliseconds), but can optionally be configured
23123 to instead display short-term loudness (see @var{gauge}).
23124
23125 The green area marks a  +/- 1LU target range around the target loudness
23126 (-23LUFS by default, unless modified through @var{target}).
23127
23128 More information about the Loudness Recommendation EBU R128 on
23129 @url{http://tech.ebu.ch/loudness}.
23130
23131 The filter accepts the following options:
23132
23133 @table @option
23134
23135 @item video
23136 Activate the video output. The audio stream is passed unchanged whether this
23137 option is set or no. The video stream will be the first output stream if
23138 activated. Default is @code{0}.
23139
23140 @item size
23141 Set the video size. This option is for video only. For the syntax of this
23142 option, check the
23143 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23144 Default and minimum resolution is @code{640x480}.
23145
23146 @item meter
23147 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
23148 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
23149 other integer value between this range is allowed.
23150
23151 @item metadata
23152 Set metadata injection. If set to @code{1}, the audio input will be segmented
23153 into 100ms output frames, each of them containing various loudness information
23154 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
23155
23156 Default is @code{0}.
23157
23158 @item framelog
23159 Force the frame logging level.
23160
23161 Available values are:
23162 @table @samp
23163 @item info
23164 information logging level
23165 @item verbose
23166 verbose logging level
23167 @end table
23168
23169 By default, the logging level is set to @var{info}. If the @option{video} or
23170 the @option{metadata} options are set, it switches to @var{verbose}.
23171
23172 @item peak
23173 Set peak mode(s).
23174
23175 Available modes can be cumulated (the option is a @code{flag} type). Possible
23176 values are:
23177 @table @samp
23178 @item none
23179 Disable any peak mode (default).
23180 @item sample
23181 Enable sample-peak mode.
23182
23183 Simple peak mode looking for the higher sample value. It logs a message
23184 for sample-peak (identified by @code{SPK}).
23185 @item true
23186 Enable true-peak mode.
23187
23188 If enabled, the peak lookup is done on an over-sampled version of the input
23189 stream for better peak accuracy. It logs a message for true-peak.
23190 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
23191 This mode requires a build with @code{libswresample}.
23192 @end table
23193
23194 @item dualmono
23195 Treat mono input files as "dual mono". If a mono file is intended for playback
23196 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
23197 If set to @code{true}, this option will compensate for this effect.
23198 Multi-channel input files are not affected by this option.
23199
23200 @item panlaw
23201 Set a specific pan law to be used for the measurement of dual mono files.
23202 This parameter is optional, and has a default value of -3.01dB.
23203
23204 @item target
23205 Set a specific target level (in LUFS) used as relative zero in the visualization.
23206 This parameter is optional and has a default value of -23LUFS as specified
23207 by EBU R128. However, material published online may prefer a level of -16LUFS
23208 (e.g. for use with podcasts or video platforms).
23209
23210 @item gauge
23211 Set the value displayed by the gauge. Valid values are @code{momentary} and s
23212 @code{shortterm}. By default the momentary value will be used, but in certain
23213 scenarios it may be more useful to observe the short term value instead (e.g.
23214 live mixing).
23215
23216 @item scale
23217 Sets the display scale for the loudness. Valid parameters are @code{absolute}
23218 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
23219 video output, not the summary or continuous log output.
23220 @end table
23221
23222 @subsection Examples
23223
23224 @itemize
23225 @item
23226 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
23227 @example
23228 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
23229 @end example
23230
23231 @item
23232 Run an analysis with @command{ffmpeg}:
23233 @example
23234 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
23235 @end example
23236 @end itemize
23237
23238 @section interleave, ainterleave
23239
23240 Temporally interleave frames from several inputs.
23241
23242 @code{interleave} works with video inputs, @code{ainterleave} with audio.
23243
23244 These filters read frames from several inputs and send the oldest
23245 queued frame to the output.
23246
23247 Input streams must have well defined, monotonically increasing frame
23248 timestamp values.
23249
23250 In order to submit one frame to output, these filters need to enqueue
23251 at least one frame for each input, so they cannot work in case one
23252 input is not yet terminated and will not receive incoming frames.
23253
23254 For example consider the case when one input is a @code{select} filter
23255 which always drops input frames. The @code{interleave} filter will keep
23256 reading from that input, but it will never be able to send new frames
23257 to output until the input sends an end-of-stream signal.
23258
23259 Also, depending on inputs synchronization, the filters will drop
23260 frames in case one input receives more frames than the other ones, and
23261 the queue is already filled.
23262
23263 These filters accept the following options:
23264
23265 @table @option
23266 @item nb_inputs, n
23267 Set the number of different inputs, it is 2 by default.
23268 @end table
23269
23270 @subsection Examples
23271
23272 @itemize
23273 @item
23274 Interleave frames belonging to different streams using @command{ffmpeg}:
23275 @example
23276 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
23277 @end example
23278
23279 @item
23280 Add flickering blur effect:
23281 @example
23282 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
23283 @end example
23284 @end itemize
23285
23286 @section metadata, ametadata
23287
23288 Manipulate frame metadata.
23289
23290 This filter accepts the following options:
23291
23292 @table @option
23293 @item mode
23294 Set mode of operation of the filter.
23295
23296 Can be one of the following:
23297
23298 @table @samp
23299 @item select
23300 If both @code{value} and @code{key} is set, select frames
23301 which have such metadata. If only @code{key} is set, select
23302 every frame that has such key in metadata.
23303
23304 @item add
23305 Add new metadata @code{key} and @code{value}. If key is already available
23306 do nothing.
23307
23308 @item modify
23309 Modify value of already present key.
23310
23311 @item delete
23312 If @code{value} is set, delete only keys that have such value.
23313 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
23314 the frame.
23315
23316 @item print
23317 Print key and its value if metadata was found. If @code{key} is not set print all
23318 metadata values available in frame.
23319 @end table
23320
23321 @item key
23322 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
23323
23324 @item value
23325 Set metadata value which will be used. This option is mandatory for
23326 @code{modify} and @code{add} mode.
23327
23328 @item function
23329 Which function to use when comparing metadata value and @code{value}.
23330
23331 Can be one of following:
23332
23333 @table @samp
23334 @item same_str
23335 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
23336
23337 @item starts_with
23338 Values are interpreted as strings, returns true if metadata value starts with
23339 the @code{value} option string.
23340
23341 @item less
23342 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
23343
23344 @item equal
23345 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
23346
23347 @item greater
23348 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
23349
23350 @item expr
23351 Values are interpreted as floats, returns true if expression from option @code{expr}
23352 evaluates to true.
23353
23354 @item ends_with
23355 Values are interpreted as strings, returns true if metadata value ends with
23356 the @code{value} option string.
23357 @end table
23358
23359 @item expr
23360 Set expression which is used when @code{function} is set to @code{expr}.
23361 The expression is evaluated through the eval API and can contain the following
23362 constants:
23363
23364 @table @option
23365 @item VALUE1
23366 Float representation of @code{value} from metadata key.
23367
23368 @item VALUE2
23369 Float representation of @code{value} as supplied by user in @code{value} option.
23370 @end table
23371
23372 @item file
23373 If specified in @code{print} mode, output is written to the named file. Instead of
23374 plain filename any writable url can be specified. Filename ``-'' is a shorthand
23375 for standard output. If @code{file} option is not set, output is written to the log
23376 with AV_LOG_INFO loglevel.
23377
23378 @item direct
23379 Reduces buffering in print mode when output is written to a URL set using @var{file}.
23380
23381 @end table
23382
23383 @subsection Examples
23384
23385 @itemize
23386 @item
23387 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
23388 between 0 and 1.
23389 @example
23390 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
23391 @end example
23392 @item
23393 Print silencedetect output to file @file{metadata.txt}.
23394 @example
23395 silencedetect,ametadata=mode=print:file=metadata.txt
23396 @end example
23397 @item
23398 Direct all metadata to a pipe with file descriptor 4.
23399 @example
23400 metadata=mode=print:file='pipe\:4'
23401 @end example
23402 @end itemize
23403
23404 @section perms, aperms
23405
23406 Set read/write permissions for the output frames.
23407
23408 These filters are mainly aimed at developers to test direct path in the
23409 following filter in the filtergraph.
23410
23411 The filters accept the following options:
23412
23413 @table @option
23414 @item mode
23415 Select the permissions mode.
23416
23417 It accepts the following values:
23418 @table @samp
23419 @item none
23420 Do nothing. This is the default.
23421 @item ro
23422 Set all the output frames read-only.
23423 @item rw
23424 Set all the output frames directly writable.
23425 @item toggle
23426 Make the frame read-only if writable, and writable if read-only.
23427 @item random
23428 Set each output frame read-only or writable randomly.
23429 @end table
23430
23431 @item seed
23432 Set the seed for the @var{random} mode, must be an integer included between
23433 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
23434 @code{-1}, the filter will try to use a good random seed on a best effort
23435 basis.
23436 @end table
23437
23438 Note: in case of auto-inserted filter between the permission filter and the
23439 following one, the permission might not be received as expected in that
23440 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
23441 perms/aperms filter can avoid this problem.
23442
23443 @section realtime, arealtime
23444
23445 Slow down filtering to match real time approximately.
23446
23447 These filters will pause the filtering for a variable amount of time to
23448 match the output rate with the input timestamps.
23449 They are similar to the @option{re} option to @code{ffmpeg}.
23450
23451 They accept the following options:
23452
23453 @table @option
23454 @item limit
23455 Time limit for the pauses. Any pause longer than that will be considered
23456 a timestamp discontinuity and reset the timer. Default is 2 seconds.
23457 @item speed
23458 Speed factor for processing. The value must be a float larger than zero.
23459 Values larger than 1.0 will result in faster than realtime processing,
23460 smaller will slow processing down. The @var{limit} is automatically adapted
23461 accordingly. Default is 1.0.
23462
23463 A processing speed faster than what is possible without these filters cannot
23464 be achieved.
23465 @end table
23466
23467 @anchor{select}
23468 @section select, aselect
23469
23470 Select frames to pass in output.
23471
23472 This filter accepts the following options:
23473
23474 @table @option
23475
23476 @item expr, e
23477 Set expression, which is evaluated for each input frame.
23478
23479 If the expression is evaluated to zero, the frame is discarded.
23480
23481 If the evaluation result is negative or NaN, the frame is sent to the
23482 first output; otherwise it is sent to the output with index
23483 @code{ceil(val)-1}, assuming that the input index starts from 0.
23484
23485 For example a value of @code{1.2} corresponds to the output with index
23486 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
23487
23488 @item outputs, n
23489 Set the number of outputs. The output to which to send the selected
23490 frame is based on the result of the evaluation. Default value is 1.
23491 @end table
23492
23493 The expression can contain the following constants:
23494
23495 @table @option
23496 @item n
23497 The (sequential) number of the filtered frame, starting from 0.
23498
23499 @item selected_n
23500 The (sequential) number of the selected frame, starting from 0.
23501
23502 @item prev_selected_n
23503 The sequential number of the last selected frame. It's NAN if undefined.
23504
23505 @item TB
23506 The timebase of the input timestamps.
23507
23508 @item pts
23509 The PTS (Presentation TimeStamp) of the filtered video frame,
23510 expressed in @var{TB} units. It's NAN if undefined.
23511
23512 @item t
23513 The PTS of the filtered video frame,
23514 expressed in seconds. It's NAN if undefined.
23515
23516 @item prev_pts
23517 The PTS of the previously filtered video frame. It's NAN if undefined.
23518
23519 @item prev_selected_pts
23520 The PTS of the last previously filtered video frame. It's NAN if undefined.
23521
23522 @item prev_selected_t
23523 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
23524
23525 @item start_pts
23526 The PTS of the first video frame in the video. It's NAN if undefined.
23527
23528 @item start_t
23529 The time of the first video frame in the video. It's NAN if undefined.
23530
23531 @item pict_type @emph{(video only)}
23532 The type of the filtered frame. It can assume one of the following
23533 values:
23534 @table @option
23535 @item I
23536 @item P
23537 @item B
23538 @item S
23539 @item SI
23540 @item SP
23541 @item BI
23542 @end table
23543
23544 @item interlace_type @emph{(video only)}
23545 The frame interlace type. It can assume one of the following values:
23546 @table @option
23547 @item PROGRESSIVE
23548 The frame is progressive (not interlaced).
23549 @item TOPFIRST
23550 The frame is top-field-first.
23551 @item BOTTOMFIRST
23552 The frame is bottom-field-first.
23553 @end table
23554
23555 @item consumed_sample_n @emph{(audio only)}
23556 the number of selected samples before the current frame
23557
23558 @item samples_n @emph{(audio only)}
23559 the number of samples in the current frame
23560
23561 @item sample_rate @emph{(audio only)}
23562 the input sample rate
23563
23564 @item key
23565 This is 1 if the filtered frame is a key-frame, 0 otherwise.
23566
23567 @item pos
23568 the position in the file of the filtered frame, -1 if the information
23569 is not available (e.g. for synthetic video)
23570
23571 @item scene @emph{(video only)}
23572 value between 0 and 1 to indicate a new scene; a low value reflects a low
23573 probability for the current frame to introduce a new scene, while a higher
23574 value means the current frame is more likely to be one (see the example below)
23575
23576 @item concatdec_select
23577 The concat demuxer can select only part of a concat input file by setting an
23578 inpoint and an outpoint, but the output packets may not be entirely contained
23579 in the selected interval. By using this variable, it is possible to skip frames
23580 generated by the concat demuxer which are not exactly contained in the selected
23581 interval.
23582
23583 This works by comparing the frame pts against the @var{lavf.concat.start_time}
23584 and the @var{lavf.concat.duration} packet metadata values which are also
23585 present in the decoded frames.
23586
23587 The @var{concatdec_select} variable is -1 if the frame pts is at least
23588 start_time and either the duration metadata is missing or the frame pts is less
23589 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
23590 missing.
23591
23592 That basically means that an input frame is selected if its pts is within the
23593 interval set by the concat demuxer.
23594
23595 @end table
23596
23597 The default value of the select expression is "1".
23598
23599 @subsection Examples
23600
23601 @itemize
23602 @item
23603 Select all frames in input:
23604 @example
23605 select
23606 @end example
23607
23608 The example above is the same as:
23609 @example
23610 select=1
23611 @end example
23612
23613 @item
23614 Skip all frames:
23615 @example
23616 select=0
23617 @end example
23618
23619 @item
23620 Select only I-frames:
23621 @example
23622 select='eq(pict_type\,I)'
23623 @end example
23624
23625 @item
23626 Select one frame every 100:
23627 @example
23628 select='not(mod(n\,100))'
23629 @end example
23630
23631 @item
23632 Select only frames contained in the 10-20 time interval:
23633 @example
23634 select=between(t\,10\,20)
23635 @end example
23636
23637 @item
23638 Select only I-frames contained in the 10-20 time interval:
23639 @example
23640 select=between(t\,10\,20)*eq(pict_type\,I)
23641 @end example
23642
23643 @item
23644 Select frames with a minimum distance of 10 seconds:
23645 @example
23646 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
23647 @end example
23648
23649 @item
23650 Use aselect to select only audio frames with samples number > 100:
23651 @example
23652 aselect='gt(samples_n\,100)'
23653 @end example
23654
23655 @item
23656 Create a mosaic of the first scenes:
23657 @example
23658 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
23659 @end example
23660
23661 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
23662 choice.
23663
23664 @item
23665 Send even and odd frames to separate outputs, and compose them:
23666 @example
23667 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
23668 @end example
23669
23670 @item
23671 Select useful frames from an ffconcat file which is using inpoints and
23672 outpoints but where the source files are not intra frame only.
23673 @example
23674 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
23675 @end example
23676 @end itemize
23677
23678 @section sendcmd, asendcmd
23679
23680 Send commands to filters in the filtergraph.
23681
23682 These filters read commands to be sent to other filters in the
23683 filtergraph.
23684
23685 @code{sendcmd} must be inserted between two video filters,
23686 @code{asendcmd} must be inserted between two audio filters, but apart
23687 from that they act the same way.
23688
23689 The specification of commands can be provided in the filter arguments
23690 with the @var{commands} option, or in a file specified by the
23691 @var{filename} option.
23692
23693 These filters accept the following options:
23694 @table @option
23695 @item commands, c
23696 Set the commands to be read and sent to the other filters.
23697 @item filename, f
23698 Set the filename of the commands to be read and sent to the other
23699 filters.
23700 @end table
23701
23702 @subsection Commands syntax
23703
23704 A commands description consists of a sequence of interval
23705 specifications, comprising a list of commands to be executed when a
23706 particular event related to that interval occurs. The occurring event
23707 is typically the current frame time entering or leaving a given time
23708 interval.
23709
23710 An interval is specified by the following syntax:
23711 @example
23712 @var{START}[-@var{END}] @var{COMMANDS};
23713 @end example
23714
23715 The time interval is specified by the @var{START} and @var{END} times.
23716 @var{END} is optional and defaults to the maximum time.
23717
23718 The current frame time is considered within the specified interval if
23719 it is included in the interval [@var{START}, @var{END}), that is when
23720 the time is greater or equal to @var{START} and is lesser than
23721 @var{END}.
23722
23723 @var{COMMANDS} consists of a sequence of one or more command
23724 specifications, separated by ",", relating to that interval.  The
23725 syntax of a command specification is given by:
23726 @example
23727 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
23728 @end example
23729
23730 @var{FLAGS} is optional and specifies the type of events relating to
23731 the time interval which enable sending the specified command, and must
23732 be a non-null sequence of identifier flags separated by "+" or "|" and
23733 enclosed between "[" and "]".
23734
23735 The following flags are recognized:
23736 @table @option
23737 @item enter
23738 The command is sent when the current frame timestamp enters the
23739 specified interval. In other words, the command is sent when the
23740 previous frame timestamp was not in the given interval, and the
23741 current is.
23742
23743 @item leave
23744 The command is sent when the current frame timestamp leaves the
23745 specified interval. In other words, the command is sent when the
23746 previous frame timestamp was in the given interval, and the
23747 current is not.
23748
23749 @item expr
23750 The command @var{ARG} is interpreted as expression and result of
23751 expression is passed as @var{ARG}.
23752
23753 The expression is evaluated through the eval API and can contain the following
23754 constants:
23755
23756 @table @option
23757 @item POS
23758 Original position in the file of the frame, or undefined if undefined
23759 for the current frame.
23760
23761 @item PTS
23762 The presentation timestamp in input.
23763
23764 @item N
23765 The count of the input frame for video or audio, starting from 0.
23766
23767 @item T
23768 The time in seconds of the current frame.
23769
23770 @item TS
23771 The start time in seconds of the current command interval.
23772
23773 @item TE
23774 The end time in seconds of the current command interval.
23775
23776 @item TI
23777 The interpolated time of the current command interval, TI = (T - TS) / (TE - TS).
23778 @end table
23779
23780 @end table
23781
23782 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
23783 assumed.
23784
23785 @var{TARGET} specifies the target of the command, usually the name of
23786 the filter class or a specific filter instance name.
23787
23788 @var{COMMAND} specifies the name of the command for the target filter.
23789
23790 @var{ARG} is optional and specifies the optional list of argument for
23791 the given @var{COMMAND}.
23792
23793 Between one interval specification and another, whitespaces, or
23794 sequences of characters starting with @code{#} until the end of line,
23795 are ignored and can be used to annotate comments.
23796
23797 A simplified BNF description of the commands specification syntax
23798 follows:
23799 @example
23800 @var{COMMAND_FLAG}  ::= "enter" | "leave"
23801 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
23802 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
23803 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
23804 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
23805 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
23806 @end example
23807
23808 @subsection Examples
23809
23810 @itemize
23811 @item
23812 Specify audio tempo change at second 4:
23813 @example
23814 asendcmd=c='4.0 atempo tempo 1.5',atempo
23815 @end example
23816
23817 @item
23818 Target a specific filter instance:
23819 @example
23820 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
23821 @end example
23822
23823 @item
23824 Specify a list of drawtext and hue commands in a file.
23825 @example
23826 # show text in the interval 5-10
23827 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
23828          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
23829
23830 # desaturate the image in the interval 15-20
23831 15.0-20.0 [enter] hue s 0,
23832           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
23833           [leave] hue s 1,
23834           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
23835
23836 # apply an exponential saturation fade-out effect, starting from time 25
23837 25 [enter] hue s exp(25-t)
23838 @end example
23839
23840 A filtergraph allowing to read and process the above command list
23841 stored in a file @file{test.cmd}, can be specified with:
23842 @example
23843 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
23844 @end example
23845 @end itemize
23846
23847 @anchor{setpts}
23848 @section setpts, asetpts
23849
23850 Change the PTS (presentation timestamp) of the input frames.
23851
23852 @code{setpts} works on video frames, @code{asetpts} on audio frames.
23853
23854 This filter accepts the following options:
23855
23856 @table @option
23857
23858 @item expr
23859 The expression which is evaluated for each frame to construct its timestamp.
23860
23861 @end table
23862
23863 The expression is evaluated through the eval API and can contain the following
23864 constants:
23865
23866 @table @option
23867 @item FRAME_RATE, FR
23868 frame rate, only defined for constant frame-rate video
23869
23870 @item PTS
23871 The presentation timestamp in input
23872
23873 @item N
23874 The count of the input frame for video or the number of consumed samples,
23875 not including the current frame for audio, starting from 0.
23876
23877 @item NB_CONSUMED_SAMPLES
23878 The number of consumed samples, not including the current frame (only
23879 audio)
23880
23881 @item NB_SAMPLES, S
23882 The number of samples in the current frame (only audio)
23883
23884 @item SAMPLE_RATE, SR
23885 The audio sample rate.
23886
23887 @item STARTPTS
23888 The PTS of the first frame.
23889
23890 @item STARTT
23891 the time in seconds of the first frame
23892
23893 @item INTERLACED
23894 State whether the current frame is interlaced.
23895
23896 @item T
23897 the time in seconds of the current frame
23898
23899 @item POS
23900 original position in the file of the frame, or undefined if undefined
23901 for the current frame
23902
23903 @item PREV_INPTS
23904 The previous input PTS.
23905
23906 @item PREV_INT
23907 previous input time in seconds
23908
23909 @item PREV_OUTPTS
23910 The previous output PTS.
23911
23912 @item PREV_OUTT
23913 previous output time in seconds
23914
23915 @item RTCTIME
23916 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
23917 instead.
23918
23919 @item RTCSTART
23920 The wallclock (RTC) time at the start of the movie in microseconds.
23921
23922 @item TB
23923 The timebase of the input timestamps.
23924
23925 @end table
23926
23927 @subsection Examples
23928
23929 @itemize
23930 @item
23931 Start counting PTS from zero
23932 @example
23933 setpts=PTS-STARTPTS
23934 @end example
23935
23936 @item
23937 Apply fast motion effect:
23938 @example
23939 setpts=0.5*PTS
23940 @end example
23941
23942 @item
23943 Apply slow motion effect:
23944 @example
23945 setpts=2.0*PTS
23946 @end example
23947
23948 @item
23949 Set fixed rate of 25 frames per second:
23950 @example
23951 setpts=N/(25*TB)
23952 @end example
23953
23954 @item
23955 Set fixed rate 25 fps with some jitter:
23956 @example
23957 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
23958 @end example
23959
23960 @item
23961 Apply an offset of 10 seconds to the input PTS:
23962 @example
23963 setpts=PTS+10/TB
23964 @end example
23965
23966 @item
23967 Generate timestamps from a "live source" and rebase onto the current timebase:
23968 @example
23969 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
23970 @end example
23971
23972 @item
23973 Generate timestamps by counting samples:
23974 @example
23975 asetpts=N/SR/TB
23976 @end example
23977
23978 @end itemize
23979
23980 @section setrange
23981
23982 Force color range for the output video frame.
23983
23984 The @code{setrange} filter marks the color range property for the
23985 output frames. It does not change the input frame, but only sets the
23986 corresponding property, which affects how the frame is treated by
23987 following filters.
23988
23989 The filter accepts the following options:
23990
23991 @table @option
23992
23993 @item range
23994 Available values are:
23995
23996 @table @samp
23997 @item auto
23998 Keep the same color range property.
23999
24000 @item unspecified, unknown
24001 Set the color range as unspecified.
24002
24003 @item limited, tv, mpeg
24004 Set the color range as limited.
24005
24006 @item full, pc, jpeg
24007 Set the color range as full.
24008 @end table
24009 @end table
24010
24011 @section settb, asettb
24012
24013 Set the timebase to use for the output frames timestamps.
24014 It is mainly useful for testing timebase configuration.
24015
24016 It accepts the following parameters:
24017
24018 @table @option
24019
24020 @item expr, tb
24021 The expression which is evaluated into the output timebase.
24022
24023 @end table
24024
24025 The value for @option{tb} is an arithmetic expression representing a
24026 rational. The expression can contain the constants "AVTB" (the default
24027 timebase), "intb" (the input timebase) and "sr" (the sample rate,
24028 audio only). Default value is "intb".
24029
24030 @subsection Examples
24031
24032 @itemize
24033 @item
24034 Set the timebase to 1/25:
24035 @example
24036 settb=expr=1/25
24037 @end example
24038
24039 @item
24040 Set the timebase to 1/10:
24041 @example
24042 settb=expr=0.1
24043 @end example
24044
24045 @item
24046 Set the timebase to 1001/1000:
24047 @example
24048 settb=1+0.001
24049 @end example
24050
24051 @item
24052 Set the timebase to 2*intb:
24053 @example
24054 settb=2*intb
24055 @end example
24056
24057 @item
24058 Set the default timebase value:
24059 @example
24060 settb=AVTB
24061 @end example
24062 @end itemize
24063
24064 @section showcqt
24065 Convert input audio to a video output representing frequency spectrum
24066 logarithmically using Brown-Puckette constant Q transform algorithm with
24067 direct frequency domain coefficient calculation (but the transform itself
24068 is not really constant Q, instead the Q factor is actually variable/clamped),
24069 with musical tone scale, from E0 to D#10.
24070
24071 The filter accepts the following options:
24072
24073 @table @option
24074 @item size, s
24075 Specify the video size for the output. It must be even. For the syntax of this option,
24076 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24077 Default value is @code{1920x1080}.
24078
24079 @item fps, rate, r
24080 Set the output frame rate. Default value is @code{25}.
24081
24082 @item bar_h
24083 Set the bargraph height. It must be even. Default value is @code{-1} which
24084 computes the bargraph height automatically.
24085
24086 @item axis_h
24087 Set the axis height. It must be even. Default value is @code{-1} which computes
24088 the axis height automatically.
24089
24090 @item sono_h
24091 Set the sonogram height. It must be even. Default value is @code{-1} which
24092 computes the sonogram height automatically.
24093
24094 @item fullhd
24095 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
24096 instead. Default value is @code{1}.
24097
24098 @item sono_v, volume
24099 Specify the sonogram volume expression. It can contain variables:
24100 @table @option
24101 @item bar_v
24102 the @var{bar_v} evaluated expression
24103 @item frequency, freq, f
24104 the frequency where it is evaluated
24105 @item timeclamp, tc
24106 the value of @var{timeclamp} option
24107 @end table
24108 and functions:
24109 @table @option
24110 @item a_weighting(f)
24111 A-weighting of equal loudness
24112 @item b_weighting(f)
24113 B-weighting of equal loudness
24114 @item c_weighting(f)
24115 C-weighting of equal loudness.
24116 @end table
24117 Default value is @code{16}.
24118
24119 @item bar_v, volume2
24120 Specify the bargraph volume expression. It can contain variables:
24121 @table @option
24122 @item sono_v
24123 the @var{sono_v} evaluated expression
24124 @item frequency, freq, f
24125 the frequency where it is evaluated
24126 @item timeclamp, tc
24127 the value of @var{timeclamp} option
24128 @end table
24129 and functions:
24130 @table @option
24131 @item a_weighting(f)
24132 A-weighting of equal loudness
24133 @item b_weighting(f)
24134 B-weighting of equal loudness
24135 @item c_weighting(f)
24136 C-weighting of equal loudness.
24137 @end table
24138 Default value is @code{sono_v}.
24139
24140 @item sono_g, gamma
24141 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
24142 higher gamma makes the spectrum having more range. Default value is @code{3}.
24143 Acceptable range is @code{[1, 7]}.
24144
24145 @item bar_g, gamma2
24146 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
24147 @code{[1, 7]}.
24148
24149 @item bar_t
24150 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
24151 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
24152
24153 @item timeclamp, tc
24154 Specify the transform timeclamp. At low frequency, there is trade-off between
24155 accuracy in time domain and frequency domain. If timeclamp is lower,
24156 event in time domain is represented more accurately (such as fast bass drum),
24157 otherwise event in frequency domain is represented more accurately
24158 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
24159
24160 @item attack
24161 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
24162 limits future samples by applying asymmetric windowing in time domain, useful
24163 when low latency is required. Accepted range is @code{[0, 1]}.
24164
24165 @item basefreq
24166 Specify the transform base frequency. Default value is @code{20.01523126408007475},
24167 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
24168
24169 @item endfreq
24170 Specify the transform end frequency. Default value is @code{20495.59681441799654},
24171 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
24172
24173 @item coeffclamp
24174 This option is deprecated and ignored.
24175
24176 @item tlength
24177 Specify the transform length in time domain. Use this option to control accuracy
24178 trade-off between time domain and frequency domain at every frequency sample.
24179 It can contain variables:
24180 @table @option
24181 @item frequency, freq, f
24182 the frequency where it is evaluated
24183 @item timeclamp, tc
24184 the value of @var{timeclamp} option.
24185 @end table
24186 Default value is @code{384*tc/(384+tc*f)}.
24187
24188 @item count
24189 Specify the transform count for every video frame. Default value is @code{6}.
24190 Acceptable range is @code{[1, 30]}.
24191
24192 @item fcount
24193 Specify the transform count for every single pixel. Default value is @code{0},
24194 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
24195
24196 @item fontfile
24197 Specify font file for use with freetype to draw the axis. If not specified,
24198 use embedded font. Note that drawing with font file or embedded font is not
24199 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
24200 option instead.
24201
24202 @item font
24203 Specify fontconfig pattern. This has lower priority than @var{fontfile}. The
24204 @code{:} in the pattern may be replaced by @code{|} to avoid unnecessary
24205 escaping.
24206
24207 @item fontcolor
24208 Specify font color expression. This is arithmetic expression that should return
24209 integer value 0xRRGGBB. It can contain variables:
24210 @table @option
24211 @item frequency, freq, f
24212 the frequency where it is evaluated
24213 @item timeclamp, tc
24214 the value of @var{timeclamp} option
24215 @end table
24216 and functions:
24217 @table @option
24218 @item midi(f)
24219 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
24220 @item r(x), g(x), b(x)
24221 red, green, and blue value of intensity x.
24222 @end table
24223 Default value is @code{st(0, (midi(f)-59.5)/12);
24224 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
24225 r(1-ld(1)) + b(ld(1))}.
24226
24227 @item axisfile
24228 Specify image file to draw the axis. This option override @var{fontfile} and
24229 @var{fontcolor} option.
24230
24231 @item axis, text
24232 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
24233 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
24234 Default value is @code{1}.
24235
24236 @item csp
24237 Set colorspace. The accepted values are:
24238 @table @samp
24239 @item unspecified
24240 Unspecified (default)
24241
24242 @item bt709
24243 BT.709
24244
24245 @item fcc
24246 FCC
24247
24248 @item bt470bg
24249 BT.470BG or BT.601-6 625
24250
24251 @item smpte170m
24252 SMPTE-170M or BT.601-6 525
24253
24254 @item smpte240m
24255 SMPTE-240M
24256
24257 @item bt2020ncl
24258 BT.2020 with non-constant luminance
24259
24260 @end table
24261
24262 @item cscheme
24263 Set spectrogram color scheme. This is list of floating point values with format
24264 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
24265 The default is @code{1|0.5|0|0|0.5|1}.
24266
24267 @end table
24268
24269 @subsection Examples
24270
24271 @itemize
24272 @item
24273 Playing audio while showing the spectrum:
24274 @example
24275 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
24276 @end example
24277
24278 @item
24279 Same as above, but with frame rate 30 fps:
24280 @example
24281 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
24282 @end example
24283
24284 @item
24285 Playing at 1280x720:
24286 @example
24287 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
24288 @end example
24289
24290 @item
24291 Disable sonogram display:
24292 @example
24293 sono_h=0
24294 @end example
24295
24296 @item
24297 A1 and its harmonics: A1, A2, (near)E3, A3:
24298 @example
24299 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),
24300                  asplit[a][out1]; [a] showcqt [out0]'
24301 @end example
24302
24303 @item
24304 Same as above, but with more accuracy in frequency domain:
24305 @example
24306 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),
24307                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
24308 @end example
24309
24310 @item
24311 Custom volume:
24312 @example
24313 bar_v=10:sono_v=bar_v*a_weighting(f)
24314 @end example
24315
24316 @item
24317 Custom gamma, now spectrum is linear to the amplitude.
24318 @example
24319 bar_g=2:sono_g=2
24320 @end example
24321
24322 @item
24323 Custom tlength equation:
24324 @example
24325 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)))'
24326 @end example
24327
24328 @item
24329 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
24330 @example
24331 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
24332 @end example
24333
24334 @item
24335 Custom font using fontconfig:
24336 @example
24337 font='Courier New,Monospace,mono|bold'
24338 @end example
24339
24340 @item
24341 Custom frequency range with custom axis using image file:
24342 @example
24343 axisfile=myaxis.png:basefreq=40:endfreq=10000
24344 @end example
24345 @end itemize
24346
24347 @section showfreqs
24348
24349 Convert input audio to video output representing the audio power spectrum.
24350 Audio amplitude is on Y-axis while frequency is on X-axis.
24351
24352 The filter accepts the following options:
24353
24354 @table @option
24355 @item size, s
24356 Specify size of video. For the syntax of this option, check the
24357 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24358 Default is @code{1024x512}.
24359
24360 @item mode
24361 Set display mode.
24362 This set how each frequency bin will be represented.
24363
24364 It accepts the following values:
24365 @table @samp
24366 @item line
24367 @item bar
24368 @item dot
24369 @end table
24370 Default is @code{bar}.
24371
24372 @item ascale
24373 Set amplitude scale.
24374
24375 It accepts the following values:
24376 @table @samp
24377 @item lin
24378 Linear scale.
24379
24380 @item sqrt
24381 Square root scale.
24382
24383 @item cbrt
24384 Cubic root scale.
24385
24386 @item log
24387 Logarithmic scale.
24388 @end table
24389 Default is @code{log}.
24390
24391 @item fscale
24392 Set frequency scale.
24393
24394 It accepts the following values:
24395 @table @samp
24396 @item lin
24397 Linear scale.
24398
24399 @item log
24400 Logarithmic scale.
24401
24402 @item rlog
24403 Reverse logarithmic scale.
24404 @end table
24405 Default is @code{lin}.
24406
24407 @item win_size
24408 Set window size. Allowed range is from 16 to 65536.
24409
24410 Default is @code{2048}
24411
24412 @item win_func
24413 Set windowing function.
24414
24415 It accepts the following values:
24416 @table @samp
24417 @item rect
24418 @item bartlett
24419 @item hanning
24420 @item hamming
24421 @item blackman
24422 @item welch
24423 @item flattop
24424 @item bharris
24425 @item bnuttall
24426 @item bhann
24427 @item sine
24428 @item nuttall
24429 @item lanczos
24430 @item gauss
24431 @item tukey
24432 @item dolph
24433 @item cauchy
24434 @item parzen
24435 @item poisson
24436 @item bohman
24437 @end table
24438 Default is @code{hanning}.
24439
24440 @item overlap
24441 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
24442 which means optimal overlap for selected window function will be picked.
24443
24444 @item averaging
24445 Set time averaging. Setting this to 0 will display current maximal peaks.
24446 Default is @code{1}, which means time averaging is disabled.
24447
24448 @item colors
24449 Specify list of colors separated by space or by '|' which will be used to
24450 draw channel frequencies. Unrecognized or missing colors will be replaced
24451 by white color.
24452
24453 @item cmode
24454 Set channel display mode.
24455
24456 It accepts the following values:
24457 @table @samp
24458 @item combined
24459 @item separate
24460 @end table
24461 Default is @code{combined}.
24462
24463 @item minamp
24464 Set minimum amplitude used in @code{log} amplitude scaler.
24465
24466 @end table
24467
24468 @section showspatial
24469
24470 Convert stereo input audio to a video output, representing the spatial relationship
24471 between two channels.
24472
24473 The filter accepts the following options:
24474
24475 @table @option
24476 @item size, s
24477 Specify the video size for the output. For the syntax of this option, check the
24478 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24479 Default value is @code{512x512}.
24480
24481 @item win_size
24482 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
24483
24484 @item win_func
24485 Set window function.
24486
24487 It accepts the following values:
24488 @table @samp
24489 @item rect
24490 @item bartlett
24491 @item hann
24492 @item hanning
24493 @item hamming
24494 @item blackman
24495 @item welch
24496 @item flattop
24497 @item bharris
24498 @item bnuttall
24499 @item bhann
24500 @item sine
24501 @item nuttall
24502 @item lanczos
24503 @item gauss
24504 @item tukey
24505 @item dolph
24506 @item cauchy
24507 @item parzen
24508 @item poisson
24509 @item bohman
24510 @end table
24511
24512 Default value is @code{hann}.
24513
24514 @item overlap
24515 Set ratio of overlap window. Default value is @code{0.5}.
24516 When value is @code{1} overlap is set to recommended size for specific
24517 window function currently used.
24518 @end table
24519
24520 @anchor{showspectrum}
24521 @section showspectrum
24522
24523 Convert input audio to a video output, representing the audio frequency
24524 spectrum.
24525
24526 The filter accepts the following options:
24527
24528 @table @option
24529 @item size, s
24530 Specify the video size for the output. For the syntax of this option, check the
24531 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24532 Default value is @code{640x512}.
24533
24534 @item slide
24535 Specify how the spectrum should slide along the window.
24536
24537 It accepts the following values:
24538 @table @samp
24539 @item replace
24540 the samples start again on the left when they reach the right
24541 @item scroll
24542 the samples scroll from right to left
24543 @item fullframe
24544 frames are only produced when the samples reach the right
24545 @item rscroll
24546 the samples scroll from left to right
24547 @end table
24548
24549 Default value is @code{replace}.
24550
24551 @item mode
24552 Specify display mode.
24553
24554 It accepts the following values:
24555 @table @samp
24556 @item combined
24557 all channels are displayed in the same row
24558 @item separate
24559 all channels are displayed in separate rows
24560 @end table
24561
24562 Default value is @samp{combined}.
24563
24564 @item color
24565 Specify display color mode.
24566
24567 It accepts the following values:
24568 @table @samp
24569 @item channel
24570 each channel is displayed in a separate color
24571 @item intensity
24572 each channel is displayed using the same color scheme
24573 @item rainbow
24574 each channel is displayed using the rainbow color scheme
24575 @item moreland
24576 each channel is displayed using the moreland color scheme
24577 @item nebulae
24578 each channel is displayed using the nebulae color scheme
24579 @item fire
24580 each channel is displayed using the fire color scheme
24581 @item fiery
24582 each channel is displayed using the fiery color scheme
24583 @item fruit
24584 each channel is displayed using the fruit color scheme
24585 @item cool
24586 each channel is displayed using the cool color scheme
24587 @item magma
24588 each channel is displayed using the magma color scheme
24589 @item green
24590 each channel is displayed using the green color scheme
24591 @item viridis
24592 each channel is displayed using the viridis color scheme
24593 @item plasma
24594 each channel is displayed using the plasma color scheme
24595 @item cividis
24596 each channel is displayed using the cividis color scheme
24597 @item terrain
24598 each channel is displayed using the terrain color scheme
24599 @end table
24600
24601 Default value is @samp{channel}.
24602
24603 @item scale
24604 Specify scale used for calculating intensity color values.
24605
24606 It accepts the following values:
24607 @table @samp
24608 @item lin
24609 linear
24610 @item sqrt
24611 square root, default
24612 @item cbrt
24613 cubic root
24614 @item log
24615 logarithmic
24616 @item 4thrt
24617 4th root
24618 @item 5thrt
24619 5th root
24620 @end table
24621
24622 Default value is @samp{sqrt}.
24623
24624 @item fscale
24625 Specify frequency scale.
24626
24627 It accepts the following values:
24628 @table @samp
24629 @item lin
24630 linear
24631 @item log
24632 logarithmic
24633 @end table
24634
24635 Default value is @samp{lin}.
24636
24637 @item saturation
24638 Set saturation modifier for displayed colors. Negative values provide
24639 alternative color scheme. @code{0} is no saturation at all.
24640 Saturation must be in [-10.0, 10.0] range.
24641 Default value is @code{1}.
24642
24643 @item win_func
24644 Set window function.
24645
24646 It accepts the following values:
24647 @table @samp
24648 @item rect
24649 @item bartlett
24650 @item hann
24651 @item hanning
24652 @item hamming
24653 @item blackman
24654 @item welch
24655 @item flattop
24656 @item bharris
24657 @item bnuttall
24658 @item bhann
24659 @item sine
24660 @item nuttall
24661 @item lanczos
24662 @item gauss
24663 @item tukey
24664 @item dolph
24665 @item cauchy
24666 @item parzen
24667 @item poisson
24668 @item bohman
24669 @end table
24670
24671 Default value is @code{hann}.
24672
24673 @item orientation
24674 Set orientation of time vs frequency axis. Can be @code{vertical} or
24675 @code{horizontal}. Default is @code{vertical}.
24676
24677 @item overlap
24678 Set ratio of overlap window. Default value is @code{0}.
24679 When value is @code{1} overlap is set to recommended size for specific
24680 window function currently used.
24681
24682 @item gain
24683 Set scale gain for calculating intensity color values.
24684 Default value is @code{1}.
24685
24686 @item data
24687 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
24688
24689 @item rotation
24690 Set color rotation, must be in [-1.0, 1.0] range.
24691 Default value is @code{0}.
24692
24693 @item start
24694 Set start frequency from which to display spectrogram. Default is @code{0}.
24695
24696 @item stop
24697 Set stop frequency to which to display spectrogram. Default is @code{0}.
24698
24699 @item fps
24700 Set upper frame rate limit. Default is @code{auto}, unlimited.
24701
24702 @item legend
24703 Draw time and frequency axes and legends. Default is disabled.
24704 @end table
24705
24706 The usage is very similar to the showwaves filter; see the examples in that
24707 section.
24708
24709 @subsection Examples
24710
24711 @itemize
24712 @item
24713 Large window with logarithmic color scaling:
24714 @example
24715 showspectrum=s=1280x480:scale=log
24716 @end example
24717
24718 @item
24719 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
24720 @example
24721 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
24722              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
24723 @end example
24724 @end itemize
24725
24726 @section showspectrumpic
24727
24728 Convert input audio to a single video frame, representing the audio frequency
24729 spectrum.
24730
24731 The filter accepts the following options:
24732
24733 @table @option
24734 @item size, s
24735 Specify the video size for the output. For the syntax of this option, check the
24736 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24737 Default value is @code{4096x2048}.
24738
24739 @item mode
24740 Specify display mode.
24741
24742 It accepts the following values:
24743 @table @samp
24744 @item combined
24745 all channels are displayed in the same row
24746 @item separate
24747 all channels are displayed in separate rows
24748 @end table
24749 Default value is @samp{combined}.
24750
24751 @item color
24752 Specify display color mode.
24753
24754 It accepts the following values:
24755 @table @samp
24756 @item channel
24757 each channel is displayed in a separate color
24758 @item intensity
24759 each channel is displayed using the same color scheme
24760 @item rainbow
24761 each channel is displayed using the rainbow color scheme
24762 @item moreland
24763 each channel is displayed using the moreland color scheme
24764 @item nebulae
24765 each channel is displayed using the nebulae color scheme
24766 @item fire
24767 each channel is displayed using the fire color scheme
24768 @item fiery
24769 each channel is displayed using the fiery color scheme
24770 @item fruit
24771 each channel is displayed using the fruit color scheme
24772 @item cool
24773 each channel is displayed using the cool color scheme
24774 @item magma
24775 each channel is displayed using the magma color scheme
24776 @item green
24777 each channel is displayed using the green color scheme
24778 @item viridis
24779 each channel is displayed using the viridis color scheme
24780 @item plasma
24781 each channel is displayed using the plasma color scheme
24782 @item cividis
24783 each channel is displayed using the cividis color scheme
24784 @item terrain
24785 each channel is displayed using the terrain color scheme
24786 @end table
24787 Default value is @samp{intensity}.
24788
24789 @item scale
24790 Specify scale used for calculating intensity color values.
24791
24792 It accepts the following values:
24793 @table @samp
24794 @item lin
24795 linear
24796 @item sqrt
24797 square root, default
24798 @item cbrt
24799 cubic root
24800 @item log
24801 logarithmic
24802 @item 4thrt
24803 4th root
24804 @item 5thrt
24805 5th root
24806 @end table
24807 Default value is @samp{log}.
24808
24809 @item fscale
24810 Specify frequency scale.
24811
24812 It accepts the following values:
24813 @table @samp
24814 @item lin
24815 linear
24816 @item log
24817 logarithmic
24818 @end table
24819
24820 Default value is @samp{lin}.
24821
24822 @item saturation
24823 Set saturation modifier for displayed colors. Negative values provide
24824 alternative color scheme. @code{0} is no saturation at all.
24825 Saturation must be in [-10.0, 10.0] range.
24826 Default value is @code{1}.
24827
24828 @item win_func
24829 Set window function.
24830
24831 It accepts the following values:
24832 @table @samp
24833 @item rect
24834 @item bartlett
24835 @item hann
24836 @item hanning
24837 @item hamming
24838 @item blackman
24839 @item welch
24840 @item flattop
24841 @item bharris
24842 @item bnuttall
24843 @item bhann
24844 @item sine
24845 @item nuttall
24846 @item lanczos
24847 @item gauss
24848 @item tukey
24849 @item dolph
24850 @item cauchy
24851 @item parzen
24852 @item poisson
24853 @item bohman
24854 @end table
24855 Default value is @code{hann}.
24856
24857 @item orientation
24858 Set orientation of time vs frequency axis. Can be @code{vertical} or
24859 @code{horizontal}. Default is @code{vertical}.
24860
24861 @item gain
24862 Set scale gain for calculating intensity color values.
24863 Default value is @code{1}.
24864
24865 @item legend
24866 Draw time and frequency axes and legends. Default is enabled.
24867
24868 @item rotation
24869 Set color rotation, must be in [-1.0, 1.0] range.
24870 Default value is @code{0}.
24871
24872 @item start
24873 Set start frequency from which to display spectrogram. Default is @code{0}.
24874
24875 @item stop
24876 Set stop frequency to which to display spectrogram. Default is @code{0}.
24877 @end table
24878
24879 @subsection Examples
24880
24881 @itemize
24882 @item
24883 Extract an audio spectrogram of a whole audio track
24884 in a 1024x1024 picture using @command{ffmpeg}:
24885 @example
24886 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
24887 @end example
24888 @end itemize
24889
24890 @section showvolume
24891
24892 Convert input audio volume to a video output.
24893
24894 The filter accepts the following options:
24895
24896 @table @option
24897 @item rate, r
24898 Set video rate.
24899
24900 @item b
24901 Set border width, allowed range is [0, 5]. Default is 1.
24902
24903 @item w
24904 Set channel width, allowed range is [80, 8192]. Default is 400.
24905
24906 @item h
24907 Set channel height, allowed range is [1, 900]. Default is 20.
24908
24909 @item f
24910 Set fade, allowed range is [0, 1]. Default is 0.95.
24911
24912 @item c
24913 Set volume color expression.
24914
24915 The expression can use the following variables:
24916
24917 @table @option
24918 @item VOLUME
24919 Current max volume of channel in dB.
24920
24921 @item PEAK
24922 Current peak.
24923
24924 @item CHANNEL
24925 Current channel number, starting from 0.
24926 @end table
24927
24928 @item t
24929 If set, displays channel names. Default is enabled.
24930
24931 @item v
24932 If set, displays volume values. Default is enabled.
24933
24934 @item o
24935 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
24936 default is @code{h}.
24937
24938 @item s
24939 Set step size, allowed range is [0, 5]. Default is 0, which means
24940 step is disabled.
24941
24942 @item p
24943 Set background opacity, allowed range is [0, 1]. Default is 0.
24944
24945 @item m
24946 Set metering mode, can be peak: @code{p} or rms: @code{r},
24947 default is @code{p}.
24948
24949 @item ds
24950 Set display scale, can be linear: @code{lin} or log: @code{log},
24951 default is @code{lin}.
24952
24953 @item dm
24954 In second.
24955 If set to > 0., display a line for the max level
24956 in the previous seconds.
24957 default is disabled: @code{0.}
24958
24959 @item dmc
24960 The color of the max line. Use when @code{dm} option is set to > 0.
24961 default is: @code{orange}
24962 @end table
24963
24964 @section showwaves
24965
24966 Convert input audio to a video output, representing the samples waves.
24967
24968 The filter accepts the following options:
24969
24970 @table @option
24971 @item size, s
24972 Specify the video size for the output. For the syntax of this option, check the
24973 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
24974 Default value is @code{600x240}.
24975
24976 @item mode
24977 Set display mode.
24978
24979 Available values are:
24980 @table @samp
24981 @item point
24982 Draw a point for each sample.
24983
24984 @item line
24985 Draw a vertical line for each sample.
24986
24987 @item p2p
24988 Draw a point for each sample and a line between them.
24989
24990 @item cline
24991 Draw a centered vertical line for each sample.
24992 @end table
24993
24994 Default value is @code{point}.
24995
24996 @item n
24997 Set the number of samples which are printed on the same column. A
24998 larger value will decrease the frame rate. Must be a positive
24999 integer. This option can be set only if the value for @var{rate}
25000 is not explicitly specified.
25001
25002 @item rate, r
25003 Set the (approximate) output frame rate. This is done by setting the
25004 option @var{n}. Default value is "25".
25005
25006 @item split_channels
25007 Set if channels should be drawn separately or overlap. Default value is 0.
25008
25009 @item colors
25010 Set colors separated by '|' which are going to be used for drawing of each channel.
25011
25012 @item scale
25013 Set amplitude scale.
25014
25015 Available values are:
25016 @table @samp
25017 @item lin
25018 Linear.
25019
25020 @item log
25021 Logarithmic.
25022
25023 @item sqrt
25024 Square root.
25025
25026 @item cbrt
25027 Cubic root.
25028 @end table
25029
25030 Default is linear.
25031
25032 @item draw
25033 Set the draw mode. This is mostly useful to set for high @var{n}.
25034
25035 Available values are:
25036 @table @samp
25037 @item scale
25038 Scale pixel values for each drawn sample.
25039
25040 @item full
25041 Draw every sample directly.
25042 @end table
25043
25044 Default value is @code{scale}.
25045 @end table
25046
25047 @subsection Examples
25048
25049 @itemize
25050 @item
25051 Output the input file audio and the corresponding video representation
25052 at the same time:
25053 @example
25054 amovie=a.mp3,asplit[out0],showwaves[out1]
25055 @end example
25056
25057 @item
25058 Create a synthetic signal and show it with showwaves, forcing a
25059 frame rate of 30 frames per second:
25060 @example
25061 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
25062 @end example
25063 @end itemize
25064
25065 @section showwavespic
25066
25067 Convert input audio to a single video frame, representing the samples waves.
25068
25069 The filter accepts the following options:
25070
25071 @table @option
25072 @item size, s
25073 Specify the video size for the output. For the syntax of this option, check the
25074 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
25075 Default value is @code{600x240}.
25076
25077 @item split_channels
25078 Set if channels should be drawn separately or overlap. Default value is 0.
25079
25080 @item colors
25081 Set colors separated by '|' which are going to be used for drawing of each channel.
25082
25083 @item scale
25084 Set amplitude scale.
25085
25086 Available values are:
25087 @table @samp
25088 @item lin
25089 Linear.
25090
25091 @item log
25092 Logarithmic.
25093
25094 @item sqrt
25095 Square root.
25096
25097 @item cbrt
25098 Cubic root.
25099 @end table
25100
25101 Default is linear.
25102
25103 @item draw
25104 Set the draw mode.
25105
25106 Available values are:
25107 @table @samp
25108 @item scale
25109 Scale pixel values for each drawn sample.
25110
25111 @item full
25112 Draw every sample directly.
25113 @end table
25114
25115 Default value is @code{scale}.
25116 @end table
25117
25118 @subsection Examples
25119
25120 @itemize
25121 @item
25122 Extract a channel split representation of the wave form of a whole audio track
25123 in a 1024x800 picture using @command{ffmpeg}:
25124 @example
25125 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
25126 @end example
25127 @end itemize
25128
25129 @section sidedata, asidedata
25130
25131 Delete frame side data, or select frames based on it.
25132
25133 This filter accepts the following options:
25134
25135 @table @option
25136 @item mode
25137 Set mode of operation of the filter.
25138
25139 Can be one of the following:
25140
25141 @table @samp
25142 @item select
25143 Select every frame with side data of @code{type}.
25144
25145 @item delete
25146 Delete side data of @code{type}. If @code{type} is not set, delete all side
25147 data in the frame.
25148
25149 @end table
25150
25151 @item type
25152 Set side data type used with all modes. Must be set for @code{select} mode. For
25153 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
25154 in @file{libavutil/frame.h}. For example, to choose
25155 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
25156
25157 @end table
25158
25159 @section spectrumsynth
25160
25161 Synthesize audio from 2 input video spectrums, first input stream represents
25162 magnitude across time and second represents phase across time.
25163 The filter will transform from frequency domain as displayed in videos back
25164 to time domain as presented in audio output.
25165
25166 This filter is primarily created for reversing processed @ref{showspectrum}
25167 filter outputs, but can synthesize sound from other spectrograms too.
25168 But in such case results are going to be poor if the phase data is not
25169 available, because in such cases phase data need to be recreated, usually
25170 it's just recreated from random noise.
25171 For best results use gray only output (@code{channel} color mode in
25172 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
25173 @code{lin} scale for phase video. To produce phase, for 2nd video, use
25174 @code{data} option. Inputs videos should generally use @code{fullframe}
25175 slide mode as that saves resources needed for decoding video.
25176
25177 The filter accepts the following options:
25178
25179 @table @option
25180 @item sample_rate
25181 Specify sample rate of output audio, the sample rate of audio from which
25182 spectrum was generated may differ.
25183
25184 @item channels
25185 Set number of channels represented in input video spectrums.
25186
25187 @item scale
25188 Set scale which was used when generating magnitude input spectrum.
25189 Can be @code{lin} or @code{log}. Default is @code{log}.
25190
25191 @item slide
25192 Set slide which was used when generating inputs spectrums.
25193 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
25194 Default is @code{fullframe}.
25195
25196 @item win_func
25197 Set window function used for resynthesis.
25198
25199 @item overlap
25200 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
25201 which means optimal overlap for selected window function will be picked.
25202
25203 @item orientation
25204 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
25205 Default is @code{vertical}.
25206 @end table
25207
25208 @subsection Examples
25209
25210 @itemize
25211 @item
25212 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
25213 then resynthesize videos back to audio with spectrumsynth:
25214 @example
25215 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
25216 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
25217 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
25218 @end example
25219 @end itemize
25220
25221 @section split, asplit
25222
25223 Split input into several identical outputs.
25224
25225 @code{asplit} works with audio input, @code{split} with video.
25226
25227 The filter accepts a single parameter which specifies the number of outputs. If
25228 unspecified, it defaults to 2.
25229
25230 @subsection Examples
25231
25232 @itemize
25233 @item
25234 Create two separate outputs from the same input:
25235 @example
25236 [in] split [out0][out1]
25237 @end example
25238
25239 @item
25240 To create 3 or more outputs, you need to specify the number of
25241 outputs, like in:
25242 @example
25243 [in] asplit=3 [out0][out1][out2]
25244 @end example
25245
25246 @item
25247 Create two separate outputs from the same input, one cropped and
25248 one padded:
25249 @example
25250 [in] split [splitout1][splitout2];
25251 [splitout1] crop=100:100:0:0    [cropout];
25252 [splitout2] pad=200:200:100:100 [padout];
25253 @end example
25254
25255 @item
25256 Create 5 copies of the input audio with @command{ffmpeg}:
25257 @example
25258 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
25259 @end example
25260 @end itemize
25261
25262 @section zmq, azmq
25263
25264 Receive commands sent through a libzmq client, and forward them to
25265 filters in the filtergraph.
25266
25267 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
25268 must be inserted between two video filters, @code{azmq} between two
25269 audio filters. Both are capable to send messages to any filter type.
25270
25271 To enable these filters you need to install the libzmq library and
25272 headers and configure FFmpeg with @code{--enable-libzmq}.
25273
25274 For more information about libzmq see:
25275 @url{http://www.zeromq.org/}
25276
25277 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
25278 receives messages sent through a network interface defined by the
25279 @option{bind_address} (or the abbreviation "@option{b}") option.
25280 Default value of this option is @file{tcp://localhost:5555}. You may
25281 want to alter this value to your needs, but do not forget to escape any
25282 ':' signs (see @ref{filtergraph escaping}).
25283
25284 The received message must be in the form:
25285 @example
25286 @var{TARGET} @var{COMMAND} [@var{ARG}]
25287 @end example
25288
25289 @var{TARGET} specifies the target of the command, usually the name of
25290 the filter class or a specific filter instance name. The default
25291 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
25292 but you can override this by using the @samp{filter_name@@id} syntax
25293 (see @ref{Filtergraph syntax}).
25294
25295 @var{COMMAND} specifies the name of the command for the target filter.
25296
25297 @var{ARG} is optional and specifies the optional argument list for the
25298 given @var{COMMAND}.
25299
25300 Upon reception, the message is processed and the corresponding command
25301 is injected into the filtergraph. Depending on the result, the filter
25302 will send a reply to the client, adopting the format:
25303 @example
25304 @var{ERROR_CODE} @var{ERROR_REASON}
25305 @var{MESSAGE}
25306 @end example
25307
25308 @var{MESSAGE} is optional.
25309
25310 @subsection Examples
25311
25312 Look at @file{tools/zmqsend} for an example of a zmq client which can
25313 be used to send commands processed by these filters.
25314
25315 Consider the following filtergraph generated by @command{ffplay}.
25316 In this example the last overlay filter has an instance name. All other
25317 filters will have default instance names.
25318
25319 @example
25320 ffplay -dumpgraph 1 -f lavfi "
25321 color=s=100x100:c=red  [l];
25322 color=s=100x100:c=blue [r];
25323 nullsrc=s=200x100, zmq [bg];
25324 [bg][l]   overlay     [bg+l];
25325 [bg+l][r] overlay@@my=x=100 "
25326 @end example
25327
25328 To change the color of the left side of the video, the following
25329 command can be used:
25330 @example
25331 echo Parsed_color_0 c yellow | tools/zmqsend
25332 @end example
25333
25334 To change the right side:
25335 @example
25336 echo Parsed_color_1 c pink | tools/zmqsend
25337 @end example
25338
25339 To change the position of the right side:
25340 @example
25341 echo overlay@@my x 150 | tools/zmqsend
25342 @end example
25343
25344
25345 @c man end MULTIMEDIA FILTERS
25346
25347 @chapter Multimedia Sources
25348 @c man begin MULTIMEDIA SOURCES
25349
25350 Below is a description of the currently available multimedia sources.
25351
25352 @section amovie
25353
25354 This is the same as @ref{movie} source, except it selects an audio
25355 stream by default.
25356
25357 @anchor{movie}
25358 @section movie
25359
25360 Read audio and/or video stream(s) from a movie container.
25361
25362 It accepts the following parameters:
25363
25364 @table @option
25365 @item filename
25366 The name of the resource to read (not necessarily a file; it can also be a
25367 device or a stream accessed through some protocol).
25368
25369 @item format_name, f
25370 Specifies the format assumed for the movie to read, and can be either
25371 the name of a container or an input device. If not specified, the
25372 format is guessed from @var{movie_name} or by probing.
25373
25374 @item seek_point, sp
25375 Specifies the seek point in seconds. The frames will be output
25376 starting from this seek point. The parameter is evaluated with
25377 @code{av_strtod}, so the numerical value may be suffixed by an IS
25378 postfix. The default value is "0".
25379
25380 @item streams, s
25381 Specifies the streams to read. Several streams can be specified,
25382 separated by "+". The source will then have as many outputs, in the
25383 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
25384 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
25385 respectively the default (best suited) video and audio stream. Default
25386 is "dv", or "da" if the filter is called as "amovie".
25387
25388 @item stream_index, si
25389 Specifies the index of the video stream to read. If the value is -1,
25390 the most suitable video stream will be automatically selected. The default
25391 value is "-1". Deprecated. If the filter is called "amovie", it will select
25392 audio instead of video.
25393
25394 @item loop
25395 Specifies how many times to read the stream in sequence.
25396 If the value is 0, the stream will be looped infinitely.
25397 Default value is "1".
25398
25399 Note that when the movie is looped the source timestamps are not
25400 changed, so it will generate non monotonically increasing timestamps.
25401
25402 @item discontinuity
25403 Specifies the time difference between frames above which the point is
25404 considered a timestamp discontinuity which is removed by adjusting the later
25405 timestamps.
25406 @end table
25407
25408 It allows overlaying a second video on top of the main input of
25409 a filtergraph, as shown in this graph:
25410 @example
25411 input -----------> deltapts0 --> overlay --> output
25412                                     ^
25413                                     |
25414 movie --> scale--> deltapts1 -------+
25415 @end example
25416 @subsection Examples
25417
25418 @itemize
25419 @item
25420 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
25421 on top of the input labelled "in":
25422 @example
25423 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
25424 [in] setpts=PTS-STARTPTS [main];
25425 [main][over] overlay=16:16 [out]
25426 @end example
25427
25428 @item
25429 Read from a video4linux2 device, and overlay it on top of the input
25430 labelled "in":
25431 @example
25432 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
25433 [in] setpts=PTS-STARTPTS [main];
25434 [main][over] overlay=16:16 [out]
25435 @end example
25436
25437 @item
25438 Read the first video stream and the audio stream with id 0x81 from
25439 dvd.vob; the video is connected to the pad named "video" and the audio is
25440 connected to the pad named "audio":
25441 @example
25442 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
25443 @end example
25444 @end itemize
25445
25446 @subsection Commands
25447
25448 Both movie and amovie support the following commands:
25449 @table @option
25450 @item seek
25451 Perform seek using "av_seek_frame".
25452 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
25453 @itemize
25454 @item
25455 @var{stream_index}: If stream_index is -1, a default
25456 stream is selected, and @var{timestamp} is automatically converted
25457 from AV_TIME_BASE units to the stream specific time_base.
25458 @item
25459 @var{timestamp}: Timestamp in AVStream.time_base units
25460 or, if no stream is specified, in AV_TIME_BASE units.
25461 @item
25462 @var{flags}: Flags which select direction and seeking mode.
25463 @end itemize
25464
25465 @item get_duration
25466 Get movie duration in AV_TIME_BASE units.
25467
25468 @end table
25469
25470 @c man end MULTIMEDIA SOURCES