]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avcodec/h263dec: enable nvdec hwaccel
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{framesync}
316 @chapter Options for filters with several inputs (framesync)
317 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
318
319 Some filters with several inputs support a common set of options.
320 These options can only be set by name, not with the short notation.
321
322 @table @option
323 @item eof_action
324 The action to take when EOF is encountered on the secondary input; it accepts
325 one of the following values:
326
327 @table @option
328 @item repeat
329 Repeat the last frame (the default).
330 @item endall
331 End both streams.
332 @item pass
333 Pass the main input through.
334 @end table
335
336 @item shortest
337 If set to 1, force the output to terminate when the shortest input
338 terminates. Default value is 0.
339
340 @item repeatlast
341 If set to 1, force the filter to extend the last frame of secondary streams
342 until the end of the primary stream. A value of 0 disables this behavior.
343 Default value is 1.
344 @end table
345
346 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
347
348 @chapter Audio Filters
349 @c man begin AUDIO FILTERS
350
351 When you configure your FFmpeg build, you can disable any of the
352 existing filters using @code{--disable-filters}.
353 The configure output will show the audio filters included in your
354 build.
355
356 Below is a description of the currently available audio filters.
357
358 @section acompressor
359
360 A compressor is mainly used to reduce the dynamic range of a signal.
361 Especially modern music is mostly compressed at a high ratio to
362 improve the overall loudness. It's done to get the highest attention
363 of a listener, "fatten" the sound and bring more "power" to the track.
364 If a signal is compressed too much it may sound dull or "dead"
365 afterwards or it may start to "pump" (which could be a powerful effect
366 but can also destroy a track completely).
367 The right compression is the key to reach a professional sound and is
368 the high art of mixing and mastering. Because of its complex settings
369 it may take a long time to get the right feeling for this kind of effect.
370
371 Compression is done by detecting the volume above a chosen level
372 @code{threshold} and dividing it by the factor set with @code{ratio}.
373 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
374 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
375 the signal would cause distortion of the waveform the reduction can be
376 levelled over the time. This is done by setting "Attack" and "Release".
377 @code{attack} determines how long the signal has to rise above the threshold
378 before any reduction will occur and @code{release} sets the time the signal
379 has to fall below the threshold to reduce the reduction again. Shorter signals
380 than the chosen attack time will be left untouched.
381 The overall reduction of the signal can be made up afterwards with the
382 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
383 raising the makeup to this level results in a signal twice as loud than the
384 source. To gain a softer entry in the compression the @code{knee} flattens the
385 hard edge at the threshold in the range of the chosen decibels.
386
387 The filter accepts the following options:
388
389 @table @option
390 @item level_in
391 Set input gain. Default is 1. Range is between 0.015625 and 64.
392
393 @item mode
394 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
395 Default is @code{downward}.
396
397 @item threshold
398 If a signal of stream rises above this level it will affect the gain
399 reduction.
400 By default it is 0.125. Range is between 0.00097563 and 1.
401
402 @item ratio
403 Set a ratio by which the signal is reduced. 1:2 means that if the level
404 rose 4dB above the threshold, it will be only 2dB above after the reduction.
405 Default is 2. Range is between 1 and 20.
406
407 @item attack
408 Amount of milliseconds the signal has to rise above the threshold before gain
409 reduction starts. Default is 20. Range is between 0.01 and 2000.
410
411 @item release
412 Amount of milliseconds the signal has to fall below the threshold before
413 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
414
415 @item makeup
416 Set the amount by how much signal will be amplified after processing.
417 Default is 1. Range is from 1 to 64.
418
419 @item knee
420 Curve the sharp knee around the threshold to enter gain reduction more softly.
421 Default is 2.82843. Range is between 1 and 8.
422
423 @item link
424 Choose if the @code{average} level between all channels of input stream
425 or the louder(@code{maximum}) channel of input stream affects the
426 reduction. Default is @code{average}.
427
428 @item detection
429 Should the exact signal be taken in case of @code{peak} or an RMS one in case
430 of @code{rms}. Default is @code{rms} which is mostly smoother.
431
432 @item mix
433 How much to use compressed signal in output. Default is 1.
434 Range is between 0 and 1.
435 @end table
436
437 @section acontrast
438 Simple audio dynamic range compression/expansion filter.
439
440 The filter accepts the following options:
441
442 @table @option
443 @item contrast
444 Set contrast. Default is 33. Allowed range is between 0 and 100.
445 @end table
446
447 @section acopy
448
449 Copy the input audio source unchanged to the output. This is mainly useful for
450 testing purposes.
451
452 @section acrossfade
453
454 Apply cross fade from one input audio stream to another input audio stream.
455 The cross fade is applied for specified duration near the end of first stream.
456
457 The filter accepts the following options:
458
459 @table @option
460 @item nb_samples, ns
461 Specify the number of samples for which the cross fade effect has to last.
462 At the end of the cross fade effect the first input audio will be completely
463 silent. Default is 44100.
464
465 @item duration, d
466 Specify the duration of the cross fade effect. See
467 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
468 for the accepted syntax.
469 By default the duration is determined by @var{nb_samples}.
470 If set this option is used instead of @var{nb_samples}.
471
472 @item overlap, o
473 Should first stream end overlap with second stream start. Default is enabled.
474
475 @item curve1
476 Set curve for cross fade transition for first stream.
477
478 @item curve2
479 Set curve for cross fade transition for second stream.
480
481 For description of available curve types see @ref{afade} filter description.
482 @end table
483
484 @subsection Examples
485
486 @itemize
487 @item
488 Cross fade from one input to another:
489 @example
490 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
491 @end example
492
493 @item
494 Cross fade from one input to another but without overlapping:
495 @example
496 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
497 @end example
498 @end itemize
499
500 @section acrossover
501 Split audio stream into several bands.
502
503 This filter splits audio stream into two or more frequency ranges.
504 Summing all streams back will give flat output.
505
506 The filter accepts the following options:
507
508 @table @option
509 @item split
510 Set split frequencies. Those must be positive and increasing.
511
512 @item order
513 Set filter order, can be @var{2nd}, @var{4th} or @var{8th}.
514 Default is @var{4th}.
515 @end table
516
517 @section acrusher
518
519 Reduce audio bit resolution.
520
521 This filter is bit crusher with enhanced functionality. A bit crusher
522 is used to audibly reduce number of bits an audio signal is sampled
523 with. This doesn't change the bit depth at all, it just produces the
524 effect. Material reduced in bit depth sounds more harsh and "digital".
525 This filter is able to even round to continuous values instead of discrete
526 bit depths.
527 Additionally it has a D/C offset which results in different crushing of
528 the lower and the upper half of the signal.
529 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
530
531 Another feature of this filter is the logarithmic mode.
532 This setting switches from linear distances between bits to logarithmic ones.
533 The result is a much more "natural" sounding crusher which doesn't gate low
534 signals for example. The human ear has a logarithmic perception,
535 so this kind of crushing is much more pleasant.
536 Logarithmic crushing is also able to get anti-aliased.
537
538 The filter accepts the following options:
539
540 @table @option
541 @item level_in
542 Set level in.
543
544 @item level_out
545 Set level out.
546
547 @item bits
548 Set bit reduction.
549
550 @item mix
551 Set mixing amount.
552
553 @item mode
554 Can be linear: @code{lin} or logarithmic: @code{log}.
555
556 @item dc
557 Set DC.
558
559 @item aa
560 Set anti-aliasing.
561
562 @item samples
563 Set sample reduction.
564
565 @item lfo
566 Enable LFO. By default disabled.
567
568 @item lforange
569 Set LFO range.
570
571 @item lforate
572 Set LFO rate.
573 @end table
574
575 @section acue
576
577 Delay audio filtering until a given wallclock timestamp. See the @ref{cue}
578 filter.
579
580 @section adeclick
581 Remove impulsive noise from input audio.
582
583 Samples detected as impulsive noise are replaced by interpolated samples using
584 autoregressive modelling.
585
586 @table @option
587 @item w
588 Set window size, in milliseconds. Allowed range is from @code{10} to
589 @code{100}. Default value is @code{55} milliseconds.
590 This sets size of window which will be processed at once.
591
592 @item o
593 Set window overlap, in percentage of window size. Allowed range is from
594 @code{50} to @code{95}. Default value is @code{75} percent.
595 Setting this to a very high value increases impulsive noise removal but makes
596 whole process much slower.
597
598 @item a
599 Set autoregression order, in percentage of window size. Allowed range is from
600 @code{0} to @code{25}. Default value is @code{2} percent. This option also
601 controls quality of interpolated samples using neighbour good samples.
602
603 @item t
604 Set threshold value. Allowed range is from @code{1} to @code{100}.
605 Default value is @code{2}.
606 This controls the strength of impulsive noise which is going to be removed.
607 The lower value, the more samples will be detected as impulsive noise.
608
609 @item b
610 Set burst fusion, in percentage of window size. Allowed range is @code{0} to
611 @code{10}. Default value is @code{2}.
612 If any two samples detected as noise are spaced less than this value then any
613 sample between those two samples will be also detected as noise.
614
615 @item m
616 Set overlap method.
617
618 It accepts the following values:
619 @table @option
620 @item a
621 Select overlap-add method. Even not interpolated samples are slightly
622 changed with this method.
623
624 @item s
625 Select overlap-save method. Not interpolated samples remain unchanged.
626 @end table
627
628 Default value is @code{a}.
629 @end table
630
631 @section adeclip
632 Remove clipped samples from input audio.
633
634 Samples detected as clipped are replaced by interpolated samples using
635 autoregressive modelling.
636
637 @table @option
638 @item w
639 Set window size, in milliseconds. Allowed range is from @code{10} to @code{100}.
640 Default value is @code{55} milliseconds.
641 This sets size of window which will be processed at once.
642
643 @item o
644 Set window overlap, in percentage of window size. Allowed range is from @code{50}
645 to @code{95}. Default value is @code{75} percent.
646
647 @item a
648 Set autoregression order, in percentage of window size. Allowed range is from
649 @code{0} to @code{25}. Default value is @code{8} percent. This option also controls
650 quality of interpolated samples using neighbour good samples.
651
652 @item t
653 Set threshold value. Allowed range is from @code{1} to @code{100}.
654 Default value is @code{10}. Higher values make clip detection less aggressive.
655
656 @item n
657 Set size of histogram used to detect clips. Allowed range is from @code{100} to @code{9999}.
658 Default value is @code{1000}. Higher values make clip detection less aggressive.
659
660 @item m
661 Set overlap method.
662
663 It accepts the following values:
664 @table @option
665 @item a
666 Select overlap-add method. Even not interpolated samples are slightly changed
667 with this method.
668
669 @item s
670 Select overlap-save method. Not interpolated samples remain unchanged.
671 @end table
672
673 Default value is @code{a}.
674 @end table
675
676 @section adelay
677
678 Delay one or more audio channels.
679
680 Samples in delayed channel are filled with silence.
681
682 The filter accepts the following option:
683
684 @table @option
685 @item delays
686 Set list of delays in milliseconds for each channel separated by '|'.
687 Unused delays will be silently ignored. If number of given delays is
688 smaller than number of channels all remaining channels will not be delayed.
689 If you want to delay exact number of samples, append 'S' to number.
690 If you want instead to delay in seconds, append 's' to number.
691 @end table
692
693 @subsection Examples
694
695 @itemize
696 @item
697 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
698 the second channel (and any other channels that may be present) unchanged.
699 @example
700 adelay=1500|0|500
701 @end example
702
703 @item
704 Delay second channel by 500 samples, the third channel by 700 samples and leave
705 the first channel (and any other channels that may be present) unchanged.
706 @example
707 adelay=0|500S|700S
708 @end example
709 @end itemize
710
711 @section aderivative, aintegral
712
713 Compute derivative/integral of audio stream.
714
715 Applying both filters one after another produces original audio.
716
717 @section aecho
718
719 Apply echoing to the input audio.
720
721 Echoes are reflected sound and can occur naturally amongst mountains
722 (and sometimes large buildings) when talking or shouting; digital echo
723 effects emulate this behaviour and are often used to help fill out the
724 sound of a single instrument or vocal. The time difference between the
725 original signal and the reflection is the @code{delay}, and the
726 loudness of the reflected signal is the @code{decay}.
727 Multiple echoes can have different delays and decays.
728
729 A description of the accepted parameters follows.
730
731 @table @option
732 @item in_gain
733 Set input gain of reflected signal. Default is @code{0.6}.
734
735 @item out_gain
736 Set output gain of reflected signal. Default is @code{0.3}.
737
738 @item delays
739 Set list of time intervals in milliseconds between original signal and reflections
740 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
741 Default is @code{1000}.
742
743 @item decays
744 Set list of loudness of reflected signals separated by '|'.
745 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
746 Default is @code{0.5}.
747 @end table
748
749 @subsection Examples
750
751 @itemize
752 @item
753 Make it sound as if there are twice as many instruments as are actually playing:
754 @example
755 aecho=0.8:0.88:60:0.4
756 @end example
757
758 @item
759 If delay is very short, then it sound like a (metallic) robot playing music:
760 @example
761 aecho=0.8:0.88:6:0.4
762 @end example
763
764 @item
765 A longer delay will sound like an open air concert in the mountains:
766 @example
767 aecho=0.8:0.9:1000:0.3
768 @end example
769
770 @item
771 Same as above but with one more mountain:
772 @example
773 aecho=0.8:0.9:1000|1800:0.3|0.25
774 @end example
775 @end itemize
776
777 @section aemphasis
778 Audio emphasis filter creates or restores material directly taken from LPs or
779 emphased CDs with different filter curves. E.g. to store music on vinyl the
780 signal has to be altered by a filter first to even out the disadvantages of
781 this recording medium.
782 Once the material is played back the inverse filter has to be applied to
783 restore the distortion of the frequency response.
784
785 The filter accepts the following options:
786
787 @table @option
788 @item level_in
789 Set input gain.
790
791 @item level_out
792 Set output gain.
793
794 @item mode
795 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
796 use @code{production} mode. Default is @code{reproduction} mode.
797
798 @item type
799 Set filter type. Selects medium. Can be one of the following:
800
801 @table @option
802 @item col
803 select Columbia.
804 @item emi
805 select EMI.
806 @item bsi
807 select BSI (78RPM).
808 @item riaa
809 select RIAA.
810 @item cd
811 select Compact Disc (CD).
812 @item 50fm
813 select 50µs (FM).
814 @item 75fm
815 select 75µs (FM).
816 @item 50kf
817 select 50µs (FM-KF).
818 @item 75kf
819 select 75µs (FM-KF).
820 @end table
821 @end table
822
823 @section aeval
824
825 Modify an audio signal according to the specified expressions.
826
827 This filter accepts one or more expressions (one for each channel),
828 which are evaluated and used to modify a corresponding audio signal.
829
830 It accepts the following parameters:
831
832 @table @option
833 @item exprs
834 Set the '|'-separated expressions list for each separate channel. If
835 the number of input channels is greater than the number of
836 expressions, the last specified expression is used for the remaining
837 output channels.
838
839 @item channel_layout, c
840 Set output channel layout. If not specified, the channel layout is
841 specified by the number of expressions. If set to @samp{same}, it will
842 use by default the same input channel layout.
843 @end table
844
845 Each expression in @var{exprs} can contain the following constants and functions:
846
847 @table @option
848 @item ch
849 channel number of the current expression
850
851 @item n
852 number of the evaluated sample, starting from 0
853
854 @item s
855 sample rate
856
857 @item t
858 time of the evaluated sample expressed in seconds
859
860 @item nb_in_channels
861 @item nb_out_channels
862 input and output number of channels
863
864 @item val(CH)
865 the value of input channel with number @var{CH}
866 @end table
867
868 Note: this filter is slow. For faster processing you should use a
869 dedicated filter.
870
871 @subsection Examples
872
873 @itemize
874 @item
875 Half volume:
876 @example
877 aeval=val(ch)/2:c=same
878 @end example
879
880 @item
881 Invert phase of the second channel:
882 @example
883 aeval=val(0)|-val(1)
884 @end example
885 @end itemize
886
887 @anchor{afade}
888 @section afade
889
890 Apply fade-in/out effect to input audio.
891
892 A description of the accepted parameters follows.
893
894 @table @option
895 @item type, t
896 Specify the effect type, can be either @code{in} for fade-in, or
897 @code{out} for a fade-out effect. Default is @code{in}.
898
899 @item start_sample, ss
900 Specify the number of the start sample for starting to apply the fade
901 effect. Default is 0.
902
903 @item nb_samples, ns
904 Specify the number of samples for which the fade effect has to last. At
905 the end of the fade-in effect the output audio will have the same
906 volume as the input audio, at the end of the fade-out transition
907 the output audio will be silence. Default is 44100.
908
909 @item start_time, st
910 Specify the start time of the fade effect. Default is 0.
911 The value must be specified as a time duration; see
912 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
913 for the accepted syntax.
914 If set this option is used instead of @var{start_sample}.
915
916 @item duration, d
917 Specify the duration of the fade effect. See
918 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
919 for the accepted syntax.
920 At the end of the fade-in effect the output audio will have the same
921 volume as the input audio, at the end of the fade-out transition
922 the output audio will be silence.
923 By default the duration is determined by @var{nb_samples}.
924 If set this option is used instead of @var{nb_samples}.
925
926 @item curve
927 Set curve for fade transition.
928
929 It accepts the following values:
930 @table @option
931 @item tri
932 select triangular, linear slope (default)
933 @item qsin
934 select quarter of sine wave
935 @item hsin
936 select half of sine wave
937 @item esin
938 select exponential sine wave
939 @item log
940 select logarithmic
941 @item ipar
942 select inverted parabola
943 @item qua
944 select quadratic
945 @item cub
946 select cubic
947 @item squ
948 select square root
949 @item cbr
950 select cubic root
951 @item par
952 select parabola
953 @item exp
954 select exponential
955 @item iqsin
956 select inverted quarter of sine wave
957 @item ihsin
958 select inverted half of sine wave
959 @item dese
960 select double-exponential seat
961 @item desi
962 select double-exponential sigmoid
963 @item losi
964 select logistic sigmoid
965 @item nofade
966 no fade applied
967 @end table
968 @end table
969
970 @subsection Examples
971
972 @itemize
973 @item
974 Fade in first 15 seconds of audio:
975 @example
976 afade=t=in:ss=0:d=15
977 @end example
978
979 @item
980 Fade out last 25 seconds of a 900 seconds audio:
981 @example
982 afade=t=out:st=875:d=25
983 @end example
984 @end itemize
985
986 @section afftdn
987 Denoise audio samples with FFT.
988
989 A description of the accepted parameters follows.
990
991 @table @option
992 @item nr
993 Set the noise reduction in dB, allowed range is 0.01 to 97.
994 Default value is 12 dB.
995
996 @item nf
997 Set the noise floor in dB, allowed range is -80 to -20.
998 Default value is -50 dB.
999
1000 @item nt
1001 Set the noise type.
1002
1003 It accepts the following values:
1004 @table @option
1005 @item w
1006 Select white noise.
1007
1008 @item v
1009 Select vinyl noise.
1010
1011 @item s
1012 Select shellac noise.
1013
1014 @item c
1015 Select custom noise, defined in @code{bn} option.
1016
1017 Default value is white noise.
1018 @end table
1019
1020 @item bn
1021 Set custom band noise for every one of 15 bands.
1022 Bands are separated by ' ' or '|'.
1023
1024 @item rf
1025 Set the residual floor in dB, allowed range is -80 to -20.
1026 Default value is -38 dB.
1027
1028 @item tn
1029 Enable noise tracking. By default is disabled.
1030 With this enabled, noise floor is automatically adjusted.
1031
1032 @item tr
1033 Enable residual tracking. By default is disabled.
1034
1035 @item om
1036 Set the output mode.
1037
1038 It accepts the following values:
1039 @table @option
1040 @item i
1041 Pass input unchanged.
1042
1043 @item o
1044 Pass noise filtered out.
1045
1046 @item n
1047 Pass only noise.
1048
1049 Default value is @var{o}.
1050 @end table
1051 @end table
1052
1053 @subsection Commands
1054
1055 This filter supports the following commands:
1056 @table @option
1057 @item sample_noise, sn
1058 Start or stop measuring noise profile.
1059 Syntax for the command is : "start" or "stop" string.
1060 After measuring noise profile is stopped it will be
1061 automatically applied in filtering.
1062
1063 @item noise_reduction, nr
1064 Change noise reduction. Argument is single float number.
1065 Syntax for the command is : "@var{noise_reduction}"
1066
1067 @item noise_floor, nf
1068 Change noise floor. Argument is single float number.
1069 Syntax for the command is : "@var{noise_floor}"
1070
1071 @item output_mode, om
1072 Change output mode operation.
1073 Syntax for the command is : "i", "o" or "n" string.
1074 @end table
1075
1076 @section afftfilt
1077 Apply arbitrary expressions to samples in frequency domain.
1078
1079 @table @option
1080 @item real
1081 Set frequency domain real expression for each separate channel separated
1082 by '|'. Default is "re".
1083 If the number of input channels is greater than the number of
1084 expressions, the last specified expression is used for the remaining
1085 output channels.
1086
1087 @item imag
1088 Set frequency domain imaginary expression for each separate channel
1089 separated by '|'. Default is "im".
1090
1091 Each expression in @var{real} and @var{imag} can contain the following
1092 constants and functions:
1093
1094 @table @option
1095 @item sr
1096 sample rate
1097
1098 @item b
1099 current frequency bin number
1100
1101 @item nb
1102 number of available bins
1103
1104 @item ch
1105 channel number of the current expression
1106
1107 @item chs
1108 number of channels
1109
1110 @item pts
1111 current frame pts
1112
1113 @item re
1114 current real part of frequency bin of current channel
1115
1116 @item im
1117 current imaginary part of frequency bin of current channel
1118
1119 @item real(b, ch)
1120 Return the value of real part of frequency bin at location (@var{bin},@var{channel})
1121
1122 @item imag(b, ch)
1123 Return the value of imaginary part of frequency bin at location (@var{bin},@var{channel})
1124 @end table
1125
1126 @item win_size
1127 Set window size. Allowed range is from 16 to 131072.
1128 Default is @code{4096}
1129
1130 @item win_func
1131 Set window function. Default is @code{hann}.
1132
1133 @item overlap
1134 Set window overlap. If set to 1, the recommended overlap for selected
1135 window function will be picked. Default is @code{0.75}.
1136 @end table
1137
1138 @subsection Examples
1139
1140 @itemize
1141 @item
1142 Leave almost only low frequencies in audio:
1143 @example
1144 afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'"
1145 @end example
1146 @end itemize
1147
1148 @anchor{afir}
1149 @section afir
1150
1151 Apply an arbitrary Frequency Impulse Response filter.
1152
1153 This filter is designed for applying long FIR filters,
1154 up to 60 seconds long.
1155
1156 It can be used as component for digital crossover filters,
1157 room equalization, cross talk cancellation, wavefield synthesis,
1158 auralization, ambiophonics, ambisonics and spatialization.
1159
1160 This filter uses second stream as FIR coefficients.
1161 If second stream holds single channel, it will be used
1162 for all input channels in first stream, otherwise
1163 number of channels in second stream must be same as
1164 number of channels in first stream.
1165
1166 It accepts the following parameters:
1167
1168 @table @option
1169 @item dry
1170 Set dry gain. This sets input gain.
1171
1172 @item wet
1173 Set wet gain. This sets final output gain.
1174
1175 @item length
1176 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
1177
1178 @item gtype
1179 Enable applying gain measured from power of IR.
1180
1181 Set which approach to use for auto gain measurement.
1182
1183 @table @option
1184 @item none
1185 Do not apply any gain.
1186
1187 @item peak
1188 select peak gain, very conservative approach. This is default value.
1189
1190 @item dc
1191 select DC gain, limited application.
1192
1193 @item gn
1194 select gain to noise approach, this is most popular one.
1195 @end table
1196
1197 @item irgain
1198 Set gain to be applied to IR coefficients before filtering.
1199 Allowed range is 0 to 1. This gain is applied after any gain applied with @var{gtype} option.
1200
1201 @item irfmt
1202 Set format of IR stream. Can be @code{mono} or @code{input}.
1203 Default is @code{input}.
1204
1205 @item maxir
1206 Set max allowed Impulse Response filter duration in seconds. Default is 30 seconds.
1207 Allowed range is 0.1 to 60 seconds.
1208
1209 @item response
1210 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1211 By default it is disabled.
1212
1213 @item channel
1214 Set for which IR channel to display frequency response. By default is first channel
1215 displayed. This option is used only when @var{response} is enabled.
1216
1217 @item size
1218 Set video stream size. This option is used only when @var{response} is enabled.
1219
1220 @item rate
1221 Set video stream frame rate. This option is used only when @var{response} is enabled.
1222
1223 @item minp
1224 Set minimal partition size used for convolution. Default is @var{8192}.
1225 Allowed range is from @var{8} to @var{32768}.
1226 Lower values decreases latency at cost of higher CPU usage.
1227
1228 @item maxp
1229 Set maximal partition size used for convolution. Default is @var{8192}.
1230 Allowed range is from @var{8} to @var{32768}.
1231 Lower values may increase CPU usage.
1232 @end table
1233
1234 @subsection Examples
1235
1236 @itemize
1237 @item
1238 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
1239 @example
1240 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
1241 @end example
1242 @end itemize
1243
1244 @anchor{aformat}
1245 @section aformat
1246
1247 Set output format constraints for the input audio. The framework will
1248 negotiate the most appropriate format to minimize conversions.
1249
1250 It accepts the following parameters:
1251 @table @option
1252
1253 @item sample_fmts
1254 A '|'-separated list of requested sample formats.
1255
1256 @item sample_rates
1257 A '|'-separated list of requested sample rates.
1258
1259 @item channel_layouts
1260 A '|'-separated list of requested channel layouts.
1261
1262 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1263 for the required syntax.
1264 @end table
1265
1266 If a parameter is omitted, all values are allowed.
1267
1268 Force the output to either unsigned 8-bit or signed 16-bit stereo
1269 @example
1270 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1271 @end example
1272
1273 @section agate
1274
1275 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1276 processing reduces disturbing noise between useful signals.
1277
1278 Gating is done by detecting the volume below a chosen level @var{threshold}
1279 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1280 floor is set via @var{range}. Because an exact manipulation of the signal
1281 would cause distortion of the waveform the reduction can be levelled over
1282 time. This is done by setting @var{attack} and @var{release}.
1283
1284 @var{attack} determines how long the signal has to fall below the threshold
1285 before any reduction will occur and @var{release} sets the time the signal
1286 has to rise above the threshold to reduce the reduction again.
1287 Shorter signals than the chosen attack time will be left untouched.
1288
1289 @table @option
1290 @item level_in
1291 Set input level before filtering.
1292 Default is 1. Allowed range is from 0.015625 to 64.
1293
1294 @item mode
1295 Set the mode of operation. Can be @code{upward} or @code{downward}.
1296 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
1297 will be amplified, expanding dynamic range in upward direction.
1298 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
1299
1300 @item range
1301 Set the level of gain reduction when the signal is below the threshold.
1302 Default is 0.06125. Allowed range is from 0 to 1.
1303 Setting this to 0 disables reduction and then filter behaves like expander.
1304
1305 @item threshold
1306 If a signal rises above this level the gain reduction is released.
1307 Default is 0.125. Allowed range is from 0 to 1.
1308
1309 @item ratio
1310 Set a ratio by which the signal is reduced.
1311 Default is 2. Allowed range is from 1 to 9000.
1312
1313 @item attack
1314 Amount of milliseconds the signal has to rise above the threshold before gain
1315 reduction stops.
1316 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1317
1318 @item release
1319 Amount of milliseconds the signal has to fall below the threshold before the
1320 reduction is increased again. Default is 250 milliseconds.
1321 Allowed range is from 0.01 to 9000.
1322
1323 @item makeup
1324 Set amount of amplification of signal after processing.
1325 Default is 1. Allowed range is from 1 to 64.
1326
1327 @item knee
1328 Curve the sharp knee around the threshold to enter gain reduction more softly.
1329 Default is 2.828427125. Allowed range is from 1 to 8.
1330
1331 @item detection
1332 Choose if exact signal should be taken for detection or an RMS like one.
1333 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1334
1335 @item link
1336 Choose if the average level between all channels or the louder channel affects
1337 the reduction.
1338 Default is @code{average}. Can be @code{average} or @code{maximum}.
1339 @end table
1340
1341 @section aiir
1342
1343 Apply an arbitrary Infinite Impulse Response filter.
1344
1345 It accepts the following parameters:
1346
1347 @table @option
1348 @item z
1349 Set numerator/zeros coefficients.
1350
1351 @item p
1352 Set denominator/poles coefficients.
1353
1354 @item k
1355 Set channels gains.
1356
1357 @item dry_gain
1358 Set input gain.
1359
1360 @item wet_gain
1361 Set output gain.
1362
1363 @item f
1364 Set coefficients format.
1365
1366 @table @samp
1367 @item tf
1368 transfer function
1369 @item zp
1370 Z-plane zeros/poles, cartesian (default)
1371 @item pr
1372 Z-plane zeros/poles, polar radians
1373 @item pd
1374 Z-plane zeros/poles, polar degrees
1375 @end table
1376
1377 @item r
1378 Set kind of processing.
1379 Can be @code{d} - direct or @code{s} - serial cascading. Default is @code{s}.
1380
1381 @item e
1382 Set filtering precision.
1383
1384 @table @samp
1385 @item dbl
1386 double-precision floating-point (default)
1387 @item flt
1388 single-precision floating-point
1389 @item i32
1390 32-bit integers
1391 @item i16
1392 16-bit integers
1393 @end table
1394
1395 @item mix
1396 How much to use filtered signal in output. Default is 1.
1397 Range is between 0 and 1.
1398
1399 @item response
1400 Show IR frequency response, magnitude(magenta), phase(green) and group delay(yellow) in additional video stream.
1401 By default it is disabled.
1402
1403 @item channel
1404 Set for which IR channel to display frequency response. By default is first channel
1405 displayed. This option is used only when @var{response} is enabled.
1406
1407 @item size
1408 Set video stream size. This option is used only when @var{response} is enabled.
1409 @end table
1410
1411 Coefficients in @code{tf} format are separated by spaces and are in ascending
1412 order.
1413
1414 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1415 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1416 imaginary unit.
1417
1418 Different coefficients and gains can be provided for every channel, in such case
1419 use '|' to separate coefficients or gains. Last provided coefficients will be
1420 used for all remaining channels.
1421
1422 @subsection Examples
1423
1424 @itemize
1425 @item
1426 Apply 2 pole elliptic notch at around 5000Hz for 48000 Hz sample rate:
1427 @example
1428 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1429 @end example
1430
1431 @item
1432 Same as above but in @code{zp} format:
1433 @example
1434 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1435 @end example
1436 @end itemize
1437
1438 @section alimiter
1439
1440 The limiter prevents an input signal from rising over a desired threshold.
1441 This limiter uses lookahead technology to prevent your signal from distorting.
1442 It means that there is a small delay after the signal is processed. Keep in mind
1443 that the delay it produces is the attack time you set.
1444
1445 The filter accepts the following options:
1446
1447 @table @option
1448 @item level_in
1449 Set input gain. Default is 1.
1450
1451 @item level_out
1452 Set output gain. Default is 1.
1453
1454 @item limit
1455 Don't let signals above this level pass the limiter. Default is 1.
1456
1457 @item attack
1458 The limiter will reach its attenuation level in this amount of time in
1459 milliseconds. Default is 5 milliseconds.
1460
1461 @item release
1462 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1463 Default is 50 milliseconds.
1464
1465 @item asc
1466 When gain reduction is always needed ASC takes care of releasing to an
1467 average reduction level rather than reaching a reduction of 0 in the release
1468 time.
1469
1470 @item asc_level
1471 Select how much the release time is affected by ASC, 0 means nearly no changes
1472 in release time while 1 produces higher release times.
1473
1474 @item level
1475 Auto level output signal. Default is enabled.
1476 This normalizes audio back to 0dB if enabled.
1477 @end table
1478
1479 Depending on picked setting it is recommended to upsample input 2x or 4x times
1480 with @ref{aresample} before applying this filter.
1481
1482 @section allpass
1483
1484 Apply a two-pole all-pass filter with central frequency (in Hz)
1485 @var{frequency}, and filter-width @var{width}.
1486 An all-pass filter changes the audio's frequency to phase relationship
1487 without changing its frequency to amplitude relationship.
1488
1489 The filter accepts the following options:
1490
1491 @table @option
1492 @item frequency, f
1493 Set frequency in Hz.
1494
1495 @item width_type, t
1496 Set method to specify band-width of filter.
1497 @table @option
1498 @item h
1499 Hz
1500 @item q
1501 Q-Factor
1502 @item o
1503 octave
1504 @item s
1505 slope
1506 @item k
1507 kHz
1508 @end table
1509
1510 @item width, w
1511 Specify the band-width of a filter in width_type units.
1512
1513 @item mix, m
1514 How much to use filtered signal in output. Default is 1.
1515 Range is between 0 and 1.
1516
1517 @item channels, c
1518 Specify which channels to filter, by default all available are filtered.
1519 @end table
1520
1521 @subsection Commands
1522
1523 This filter supports the following commands:
1524 @table @option
1525 @item frequency, f
1526 Change allpass frequency.
1527 Syntax for the command is : "@var{frequency}"
1528
1529 @item width_type, t
1530 Change allpass width_type.
1531 Syntax for the command is : "@var{width_type}"
1532
1533 @item width, w
1534 Change allpass width.
1535 Syntax for the command is : "@var{width}"
1536
1537 @item mix, m
1538 Change allpass mix.
1539 Syntax for the command is : "@var{mix}"
1540 @end table
1541
1542 @section aloop
1543
1544 Loop audio samples.
1545
1546 The filter accepts the following options:
1547
1548 @table @option
1549 @item loop
1550 Set the number of loops. Setting this value to -1 will result in infinite loops.
1551 Default is 0.
1552
1553 @item size
1554 Set maximal number of samples. Default is 0.
1555
1556 @item start
1557 Set first sample of loop. Default is 0.
1558 @end table
1559
1560 @anchor{amerge}
1561 @section amerge
1562
1563 Merge two or more audio streams into a single multi-channel stream.
1564
1565 The filter accepts the following options:
1566
1567 @table @option
1568
1569 @item inputs
1570 Set the number of inputs. Default is 2.
1571
1572 @end table
1573
1574 If the channel layouts of the inputs are disjoint, and therefore compatible,
1575 the channel layout of the output will be set accordingly and the channels
1576 will be reordered as necessary. If the channel layouts of the inputs are not
1577 disjoint, the output will have all the channels of the first input then all
1578 the channels of the second input, in that order, and the channel layout of
1579 the output will be the default value corresponding to the total number of
1580 channels.
1581
1582 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1583 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1584 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1585 first input, b1 is the first channel of the second input).
1586
1587 On the other hand, if both input are in stereo, the output channels will be
1588 in the default order: a1, a2, b1, b2, and the channel layout will be
1589 arbitrarily set to 4.0, which may or may not be the expected value.
1590
1591 All inputs must have the same sample rate, and format.
1592
1593 If inputs do not have the same duration, the output will stop with the
1594 shortest.
1595
1596 @subsection Examples
1597
1598 @itemize
1599 @item
1600 Merge two mono files into a stereo stream:
1601 @example
1602 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1603 @end example
1604
1605 @item
1606 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1607 @example
1608 ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
1609 @end example
1610 @end itemize
1611
1612 @section amix
1613
1614 Mixes multiple audio inputs into a single output.
1615
1616 Note that this filter only supports float samples (the @var{amerge}
1617 and @var{pan} audio filters support many formats). If the @var{amix}
1618 input has integer samples then @ref{aresample} will be automatically
1619 inserted to perform the conversion to float samples.
1620
1621 For example
1622 @example
1623 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1624 @end example
1625 will mix 3 input audio streams to a single output with the same duration as the
1626 first input and a dropout transition time of 3 seconds.
1627
1628 It accepts the following parameters:
1629 @table @option
1630
1631 @item inputs
1632 The number of inputs. If unspecified, it defaults to 2.
1633
1634 @item duration
1635 How to determine the end-of-stream.
1636 @table @option
1637
1638 @item longest
1639 The duration of the longest input. (default)
1640
1641 @item shortest
1642 The duration of the shortest input.
1643
1644 @item first
1645 The duration of the first input.
1646
1647 @end table
1648
1649 @item dropout_transition
1650 The transition time, in seconds, for volume renormalization when an input
1651 stream ends. The default value is 2 seconds.
1652
1653 @item weights
1654 Specify weight of each input audio stream as sequence.
1655 Each weight is separated by space. By default all inputs have same weight.
1656 @end table
1657
1658 @section amultiply
1659
1660 Multiply first audio stream with second audio stream and store result
1661 in output audio stream. Multiplication is done by multiplying each
1662 sample from first stream with sample at same position from second stream.
1663
1664 With this element-wise multiplication one can create amplitude fades and
1665 amplitude modulations.
1666
1667 @section anequalizer
1668
1669 High-order parametric multiband equalizer for each channel.
1670
1671 It accepts the following parameters:
1672 @table @option
1673 @item params
1674
1675 This option string is in format:
1676 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1677 Each equalizer band is separated by '|'.
1678
1679 @table @option
1680 @item chn
1681 Set channel number to which equalization will be applied.
1682 If input doesn't have that channel the entry is ignored.
1683
1684 @item f
1685 Set central frequency for band.
1686 If input doesn't have that frequency the entry is ignored.
1687
1688 @item w
1689 Set band width in hertz.
1690
1691 @item g
1692 Set band gain in dB.
1693
1694 @item t
1695 Set filter type for band, optional, can be:
1696
1697 @table @samp
1698 @item 0
1699 Butterworth, this is default.
1700
1701 @item 1
1702 Chebyshev type 1.
1703
1704 @item 2
1705 Chebyshev type 2.
1706 @end table
1707 @end table
1708
1709 @item curves
1710 With this option activated frequency response of anequalizer is displayed
1711 in video stream.
1712
1713 @item size
1714 Set video stream size. Only useful if curves option is activated.
1715
1716 @item mgain
1717 Set max gain that will be displayed. Only useful if curves option is activated.
1718 Setting this to a reasonable value makes it possible to display gain which is derived from
1719 neighbour bands which are too close to each other and thus produce higher gain
1720 when both are activated.
1721
1722 @item fscale
1723 Set frequency scale used to draw frequency response in video output.
1724 Can be linear or logarithmic. Default is logarithmic.
1725
1726 @item colors
1727 Set color for each channel curve which is going to be displayed in video stream.
1728 This is list of color names separated by space or by '|'.
1729 Unrecognised or missing colors will be replaced by white color.
1730 @end table
1731
1732 @subsection Examples
1733
1734 @itemize
1735 @item
1736 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1737 for first 2 channels using Chebyshev type 1 filter:
1738 @example
1739 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1740 @end example
1741 @end itemize
1742
1743 @subsection Commands
1744
1745 This filter supports the following commands:
1746 @table @option
1747 @item change
1748 Alter existing filter parameters.
1749 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1750
1751 @var{fN} is existing filter number, starting from 0, if no such filter is available
1752 error is returned.
1753 @var{freq} set new frequency parameter.
1754 @var{width} set new width parameter in herz.
1755 @var{gain} set new gain parameter in dB.
1756
1757 Full filter invocation with asendcmd may look like this:
1758 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1759 @end table
1760
1761 @section anlmdn
1762
1763 Reduce broadband noise in audio samples using Non-Local Means algorithm.
1764
1765 Each sample is adjusted by looking for other samples with similar contexts. This
1766 context similarity is defined by comparing their surrounding patches of size
1767 @option{p}. Patches are searched in an area of @option{r} around the sample.
1768
1769 The filter accepts the following options.
1770
1771 @table @option
1772 @item s
1773 Set denoising strength. Allowed range is from 0.00001 to 10. Default value is 0.00001.
1774
1775 @item p
1776 Set patch radius duration. Allowed range is from 1 to 100 milliseconds.
1777 Default value is 2 milliseconds.
1778
1779 @item r
1780 Set research radius duration. Allowed range is from 2 to 300 milliseconds.
1781 Default value is 6 milliseconds.
1782
1783 @item o
1784 Set the output mode.
1785
1786 It accepts the following values:
1787 @table @option
1788 @item i
1789 Pass input unchanged.
1790
1791 @item o
1792 Pass noise filtered out.
1793
1794 @item n
1795 Pass only noise.
1796
1797 Default value is @var{o}.
1798 @end table
1799
1800 @item m
1801 Set smooth factor. Default value is @var{11}. Allowed range is from @var{1} to @var{15}.
1802 @end table
1803
1804 @subsection Commands
1805
1806 This filter supports the following commands:
1807 @table @option
1808 @item s
1809 Change denoise strength. Argument is single float number.
1810 Syntax for the command is : "@var{s}"
1811
1812 @item o
1813 Change output mode.
1814 Syntax for the command is : "i", "o" or "n" string.
1815 @end table
1816
1817 @section anull
1818
1819 Pass the audio source unchanged to the output.
1820
1821 @section apad
1822
1823 Pad the end of an audio stream with silence.
1824
1825 This can be used together with @command{ffmpeg} @option{-shortest} to
1826 extend audio streams to the same length as the video stream.
1827
1828 A description of the accepted options follows.
1829
1830 @table @option
1831 @item packet_size
1832 Set silence packet size. Default value is 4096.
1833
1834 @item pad_len
1835 Set the number of samples of silence to add to the end. After the
1836 value is reached, the stream is terminated. This option is mutually
1837 exclusive with @option{whole_len}.
1838
1839 @item whole_len
1840 Set the minimum total number of samples in the output audio stream. If
1841 the value is longer than the input audio length, silence is added to
1842 the end, until the value is reached. This option is mutually exclusive
1843 with @option{pad_len}.
1844
1845 @item pad_dur
1846 Specify the duration of samples of silence to add. See
1847 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1848 for the accepted syntax. Used only if set to non-zero value.
1849
1850 @item whole_dur
1851 Specify the minimum total duration in the output audio stream. See
1852 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
1853 for the accepted syntax. Used only if set to non-zero value. If the value is longer than
1854 the input audio length, silence is added to the end, until the value is reached.
1855 This option is mutually exclusive with @option{pad_dur}
1856 @end table
1857
1858 If neither the @option{pad_len} nor the @option{whole_len} nor @option{pad_dur}
1859 nor @option{whole_dur} option is set, the filter will add silence to the end of
1860 the input stream indefinitely.
1861
1862 @subsection Examples
1863
1864 @itemize
1865 @item
1866 Add 1024 samples of silence to the end of the input:
1867 @example
1868 apad=pad_len=1024
1869 @end example
1870
1871 @item
1872 Make sure the audio output will contain at least 10000 samples, pad
1873 the input with silence if required:
1874 @example
1875 apad=whole_len=10000
1876 @end example
1877
1878 @item
1879 Use @command{ffmpeg} to pad the audio input with silence, so that the
1880 video stream will always result the shortest and will be converted
1881 until the end in the output file when using the @option{shortest}
1882 option:
1883 @example
1884 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1885 @end example
1886 @end itemize
1887
1888 @section aphaser
1889 Add a phasing effect to the input audio.
1890
1891 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1892 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1893
1894 A description of the accepted parameters follows.
1895
1896 @table @option
1897 @item in_gain
1898 Set input gain. Default is 0.4.
1899
1900 @item out_gain
1901 Set output gain. Default is 0.74
1902
1903 @item delay
1904 Set delay in milliseconds. Default is 3.0.
1905
1906 @item decay
1907 Set decay. Default is 0.4.
1908
1909 @item speed
1910 Set modulation speed in Hz. Default is 0.5.
1911
1912 @item type
1913 Set modulation type. Default is triangular.
1914
1915 It accepts the following values:
1916 @table @samp
1917 @item triangular, t
1918 @item sinusoidal, s
1919 @end table
1920 @end table
1921
1922 @section apulsator
1923
1924 Audio pulsator is something between an autopanner and a tremolo.
1925 But it can produce funny stereo effects as well. Pulsator changes the volume
1926 of the left and right channel based on a LFO (low frequency oscillator) with
1927 different waveforms and shifted phases.
1928 This filter have the ability to define an offset between left and right
1929 channel. An offset of 0 means that both LFO shapes match each other.
1930 The left and right channel are altered equally - a conventional tremolo.
1931 An offset of 50% means that the shape of the right channel is exactly shifted
1932 in phase (or moved backwards about half of the frequency) - pulsator acts as
1933 an autopanner. At 1 both curves match again. Every setting in between moves the
1934 phase shift gapless between all stages and produces some "bypassing" sounds with
1935 sine and triangle waveforms. The more you set the offset near 1 (starting from
1936 the 0.5) the faster the signal passes from the left to the right speaker.
1937
1938 The filter accepts the following options:
1939
1940 @table @option
1941 @item level_in
1942 Set input gain. By default it is 1. Range is [0.015625 - 64].
1943
1944 @item level_out
1945 Set output gain. By default it is 1. Range is [0.015625 - 64].
1946
1947 @item mode
1948 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1949 sawup or sawdown. Default is sine.
1950
1951 @item amount
1952 Set modulation. Define how much of original signal is affected by the LFO.
1953
1954 @item offset_l
1955 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1956
1957 @item offset_r
1958 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1959
1960 @item width
1961 Set pulse width. Default is 1. Allowed range is [0 - 2].
1962
1963 @item timing
1964 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1965
1966 @item bpm
1967 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1968 is set to bpm.
1969
1970 @item ms
1971 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1972 is set to ms.
1973
1974 @item hz
1975 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1976 if timing is set to hz.
1977 @end table
1978
1979 @anchor{aresample}
1980 @section aresample
1981
1982 Resample the input audio to the specified parameters, using the
1983 libswresample library. If none are specified then the filter will
1984 automatically convert between its input and output.
1985
1986 This filter is also able to stretch/squeeze the audio data to make it match
1987 the timestamps or to inject silence / cut out audio to make it match the
1988 timestamps, do a combination of both or do neither.
1989
1990 The filter accepts the syntax
1991 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1992 expresses a sample rate and @var{resampler_options} is a list of
1993 @var{key}=@var{value} pairs, separated by ":". See the
1994 @ref{Resampler Options,,"Resampler Options" section in the
1995 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1996 for the complete list of supported options.
1997
1998 @subsection Examples
1999
2000 @itemize
2001 @item
2002 Resample the input audio to 44100Hz:
2003 @example
2004 aresample=44100
2005 @end example
2006
2007 @item
2008 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
2009 samples per second compensation:
2010 @example
2011 aresample=async=1000
2012 @end example
2013 @end itemize
2014
2015 @section areverse
2016
2017 Reverse an audio clip.
2018
2019 Warning: This filter requires memory to buffer the entire clip, so trimming
2020 is suggested.
2021
2022 @subsection Examples
2023
2024 @itemize
2025 @item
2026 Take the first 5 seconds of a clip, and reverse it.
2027 @example
2028 atrim=end=5,areverse
2029 @end example
2030 @end itemize
2031
2032 @section asetnsamples
2033
2034 Set the number of samples per each output audio frame.
2035
2036 The last output packet may contain a different number of samples, as
2037 the filter will flush all the remaining samples when the input audio
2038 signals its end.
2039
2040 The filter accepts the following options:
2041
2042 @table @option
2043
2044 @item nb_out_samples, n
2045 Set the number of frames per each output audio frame. The number is
2046 intended as the number of samples @emph{per each channel}.
2047 Default value is 1024.
2048
2049 @item pad, p
2050 If set to 1, the filter will pad the last audio frame with zeroes, so
2051 that the last frame will contain the same number of samples as the
2052 previous ones. Default value is 1.
2053 @end table
2054
2055 For example, to set the number of per-frame samples to 1234 and
2056 disable padding for the last frame, use:
2057 @example
2058 asetnsamples=n=1234:p=0
2059 @end example
2060
2061 @section asetrate
2062
2063 Set the sample rate without altering the PCM data.
2064 This will result in a change of speed and pitch.
2065
2066 The filter accepts the following options:
2067
2068 @table @option
2069 @item sample_rate, r
2070 Set the output sample rate. Default is 44100 Hz.
2071 @end table
2072
2073 @section ashowinfo
2074
2075 Show a line containing various information for each input audio frame.
2076 The input audio is not modified.
2077
2078 The shown line contains a sequence of key/value pairs of the form
2079 @var{key}:@var{value}.
2080
2081 The following values are shown in the output:
2082
2083 @table @option
2084 @item n
2085 The (sequential) number of the input frame, starting from 0.
2086
2087 @item pts
2088 The presentation timestamp of the input frame, in time base units; the time base
2089 depends on the filter input pad, and is usually 1/@var{sample_rate}.
2090
2091 @item pts_time
2092 The presentation timestamp of the input frame in seconds.
2093
2094 @item pos
2095 position of the frame in the input stream, -1 if this information in
2096 unavailable and/or meaningless (for example in case of synthetic audio)
2097
2098 @item fmt
2099 The sample format.
2100
2101 @item chlayout
2102 The channel layout.
2103
2104 @item rate
2105 The sample rate for the audio frame.
2106
2107 @item nb_samples
2108 The number of samples (per channel) in the frame.
2109
2110 @item checksum
2111 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
2112 audio, the data is treated as if all the planes were concatenated.
2113
2114 @item plane_checksums
2115 A list of Adler-32 checksums for each data plane.
2116 @end table
2117
2118 @section asoftclip
2119 Apply audio soft clipping.
2120
2121 Soft clipping is a type of distortion effect where the amplitude of a signal is saturated
2122 along a smooth curve, rather than the abrupt shape of hard-clipping.
2123
2124 This filter accepts the following options:
2125
2126 @table @option
2127 @item type
2128 Set type of soft-clipping.
2129
2130 It accepts the following values:
2131 @table @option
2132 @item tanh
2133 @item atan
2134 @item cubic
2135 @item exp
2136 @item alg
2137 @item quintic
2138 @item sin
2139 @end table
2140
2141 @item param
2142 Set additional parameter which controls sigmoid function.
2143 @end table
2144
2145 @section asr
2146 Automatic Speech Recognition
2147
2148 This filter uses PocketSphinx for speech recognition. To enable
2149 compilation of this filter, you need to configure FFmpeg with
2150 @code{--enable-pocketsphinx}.
2151
2152 It accepts the following options:
2153
2154 @table @option
2155 @item rate
2156 Set sampling rate of input audio. Defaults is @code{16000}.
2157 This need to match speech models, otherwise one will get poor results.
2158
2159 @item hmm
2160 Set dictionary containing acoustic model files.
2161
2162 @item dict
2163 Set pronunciation dictionary.
2164
2165 @item lm
2166 Set language model file.
2167
2168 @item lmctl
2169 Set language model set.
2170
2171 @item lmname
2172 Set which language model to use.
2173
2174 @item logfn
2175 Set output for log messages.
2176 @end table
2177
2178 The filter exports recognized speech as the frame metadata @code{lavfi.asr.text}.
2179
2180 @anchor{astats}
2181 @section astats
2182
2183 Display time domain statistical information about the audio channels.
2184 Statistics are calculated and displayed for each audio channel and,
2185 where applicable, an overall figure is also given.
2186
2187 It accepts the following option:
2188 @table @option
2189 @item length
2190 Short window length in seconds, used for peak and trough RMS measurement.
2191 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
2192
2193 @item metadata
2194
2195 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
2196 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
2197 disabled.
2198
2199 Available keys for each channel are:
2200 DC_offset
2201 Min_level
2202 Max_level
2203 Min_difference
2204 Max_difference
2205 Mean_difference
2206 RMS_difference
2207 Peak_level
2208 RMS_peak
2209 RMS_trough
2210 Crest_factor
2211 Flat_factor
2212 Peak_count
2213 Bit_depth
2214 Dynamic_range
2215 Zero_crossings
2216 Zero_crossings_rate
2217 Number_of_NaNs
2218 Number_of_Infs
2219 Number_of_denormals
2220
2221 and for Overall:
2222 DC_offset
2223 Min_level
2224 Max_level
2225 Min_difference
2226 Max_difference
2227 Mean_difference
2228 RMS_difference
2229 Peak_level
2230 RMS_level
2231 RMS_peak
2232 RMS_trough
2233 Flat_factor
2234 Peak_count
2235 Bit_depth
2236 Number_of_samples
2237 Number_of_NaNs
2238 Number_of_Infs
2239 Number_of_denormals
2240
2241 For example full key look like this @code{lavfi.astats.1.DC_offset} or
2242 this @code{lavfi.astats.Overall.Peak_count}.
2243
2244 For description what each key means read below.
2245
2246 @item reset
2247 Set number of frame after which stats are going to be recalculated.
2248 Default is disabled.
2249
2250 @item measure_perchannel
2251 Select the entries which need to be measured per channel. The metadata keys can
2252 be used as flags, default is @option{all} which measures everything.
2253 @option{none} disables all per channel measurement.
2254
2255 @item measure_overall
2256 Select the entries which need to be measured overall. The metadata keys can
2257 be used as flags, default is @option{all} which measures everything.
2258 @option{none} disables all overall measurement.
2259
2260 @end table
2261
2262 A description of each shown parameter follows:
2263
2264 @table @option
2265 @item DC offset
2266 Mean amplitude displacement from zero.
2267
2268 @item Min level
2269 Minimal sample level.
2270
2271 @item Max level
2272 Maximal sample level.
2273
2274 @item Min difference
2275 Minimal difference between two consecutive samples.
2276
2277 @item Max difference
2278 Maximal difference between two consecutive samples.
2279
2280 @item Mean difference
2281 Mean difference between two consecutive samples.
2282 The average of each difference between two consecutive samples.
2283
2284 @item RMS difference
2285 Root Mean Square difference between two consecutive samples.
2286
2287 @item Peak level dB
2288 @item RMS level dB
2289 Standard peak and RMS level measured in dBFS.
2290
2291 @item RMS peak dB
2292 @item RMS trough dB
2293 Peak and trough values for RMS level measured over a short window.
2294
2295 @item Crest factor
2296 Standard ratio of peak to RMS level (note: not in dB).
2297
2298 @item Flat factor
2299 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
2300 (i.e. either @var{Min level} or @var{Max level}).
2301
2302 @item Peak count
2303 Number of occasions (not the number of samples) that the signal attained either
2304 @var{Min level} or @var{Max level}.
2305
2306 @item Bit depth
2307 Overall bit depth of audio. Number of bits used for each sample.
2308
2309 @item Dynamic range
2310 Measured dynamic range of audio in dB.
2311
2312 @item Zero crossings
2313 Number of points where the waveform crosses the zero level axis.
2314
2315 @item Zero crossings rate
2316 Rate of Zero crossings and number of audio samples.
2317 @end table
2318
2319 @section atempo
2320
2321 Adjust audio tempo.
2322
2323 The filter accepts exactly one parameter, the audio tempo. If not
2324 specified then the filter will assume nominal 1.0 tempo. Tempo must
2325 be in the [0.5, 100.0] range.
2326
2327 Note that tempo greater than 2 will skip some samples rather than
2328 blend them in.  If for any reason this is a concern it is always
2329 possible to daisy-chain several instances of atempo to achieve the
2330 desired product tempo.
2331
2332 @subsection Examples
2333
2334 @itemize
2335 @item
2336 Slow down audio to 80% tempo:
2337 @example
2338 atempo=0.8
2339 @end example
2340
2341 @item
2342 To speed up audio to 300% tempo:
2343 @example
2344 atempo=3
2345 @end example
2346
2347 @item
2348 To speed up audio to 300% tempo by daisy-chaining two atempo instances:
2349 @example
2350 atempo=sqrt(3),atempo=sqrt(3)
2351 @end example
2352 @end itemize
2353
2354 @section atrim
2355
2356 Trim the input so that the output contains one continuous subpart of the input.
2357
2358 It accepts the following parameters:
2359 @table @option
2360 @item start
2361 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
2362 sample with the timestamp @var{start} will be the first sample in the output.
2363
2364 @item end
2365 Specify time of the first audio sample that will be dropped, i.e. the
2366 audio sample immediately preceding the one with the timestamp @var{end} will be
2367 the last sample in the output.
2368
2369 @item start_pts
2370 Same as @var{start}, except this option sets the start timestamp in samples
2371 instead of seconds.
2372
2373 @item end_pts
2374 Same as @var{end}, except this option sets the end timestamp in samples instead
2375 of seconds.
2376
2377 @item duration
2378 The maximum duration of the output in seconds.
2379
2380 @item start_sample
2381 The number of the first sample that should be output.
2382
2383 @item end_sample
2384 The number of the first sample that should be dropped.
2385 @end table
2386
2387 @option{start}, @option{end}, and @option{duration} are expressed as time
2388 duration specifications; see
2389 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
2390
2391 Note that the first two sets of the start/end options and the @option{duration}
2392 option look at the frame timestamp, while the _sample options simply count the
2393 samples that pass through the filter. So start/end_pts and start/end_sample will
2394 give different results when the timestamps are wrong, inexact or do not start at
2395 zero. Also note that this filter does not modify the timestamps. If you wish
2396 to have the output timestamps start at zero, insert the asetpts filter after the
2397 atrim filter.
2398
2399 If multiple start or end options are set, this filter tries to be greedy and
2400 keep all samples that match at least one of the specified constraints. To keep
2401 only the part that matches all the constraints at once, chain multiple atrim
2402 filters.
2403
2404 The defaults are such that all the input is kept. So it is possible to set e.g.
2405 just the end values to keep everything before the specified time.
2406
2407 Examples:
2408 @itemize
2409 @item
2410 Drop everything except the second minute of input:
2411 @example
2412 ffmpeg -i INPUT -af atrim=60:120
2413 @end example
2414
2415 @item
2416 Keep only the first 1000 samples:
2417 @example
2418 ffmpeg -i INPUT -af atrim=end_sample=1000
2419 @end example
2420
2421 @end itemize
2422
2423 @section bandpass
2424
2425 Apply a two-pole Butterworth band-pass filter with central
2426 frequency @var{frequency}, and (3dB-point) band-width width.
2427 The @var{csg} option selects a constant skirt gain (peak gain = Q)
2428 instead of the default: constant 0dB peak gain.
2429 The filter roll off at 6dB per octave (20dB per decade).
2430
2431 The filter accepts the following options:
2432
2433 @table @option
2434 @item frequency, f
2435 Set the filter's central frequency. Default is @code{3000}.
2436
2437 @item csg
2438 Constant skirt gain if set to 1. Defaults to 0.
2439
2440 @item width_type, t
2441 Set method to specify band-width of filter.
2442 @table @option
2443 @item h
2444 Hz
2445 @item q
2446 Q-Factor
2447 @item o
2448 octave
2449 @item s
2450 slope
2451 @item k
2452 kHz
2453 @end table
2454
2455 @item width, w
2456 Specify the band-width of a filter in width_type units.
2457
2458 @item mix, m
2459 How much to use filtered signal in output. Default is 1.
2460 Range is between 0 and 1.
2461
2462 @item channels, c
2463 Specify which channels to filter, by default all available are filtered.
2464 @end table
2465
2466 @subsection Commands
2467
2468 This filter supports the following commands:
2469 @table @option
2470 @item frequency, f
2471 Change bandpass frequency.
2472 Syntax for the command is : "@var{frequency}"
2473
2474 @item width_type, t
2475 Change bandpass width_type.
2476 Syntax for the command is : "@var{width_type}"
2477
2478 @item width, w
2479 Change bandpass width.
2480 Syntax for the command is : "@var{width}"
2481
2482 @item mix, m
2483 Change bandpass mix.
2484 Syntax for the command is : "@var{mix}"
2485 @end table
2486
2487 @section bandreject
2488
2489 Apply a two-pole Butterworth band-reject filter with central
2490 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2491 The filter roll off at 6dB per octave (20dB per decade).
2492
2493 The filter accepts the following options:
2494
2495 @table @option
2496 @item frequency, f
2497 Set the filter's central frequency. Default is @code{3000}.
2498
2499 @item width_type, t
2500 Set method to specify band-width of filter.
2501 @table @option
2502 @item h
2503 Hz
2504 @item q
2505 Q-Factor
2506 @item o
2507 octave
2508 @item s
2509 slope
2510 @item k
2511 kHz
2512 @end table
2513
2514 @item width, w
2515 Specify the band-width of a filter in width_type units.
2516
2517 @item mix, m
2518 How much to use filtered signal in output. Default is 1.
2519 Range is between 0 and 1.
2520
2521 @item channels, c
2522 Specify which channels to filter, by default all available are filtered.
2523 @end table
2524
2525 @subsection Commands
2526
2527 This filter supports the following commands:
2528 @table @option
2529 @item frequency, f
2530 Change bandreject frequency.
2531 Syntax for the command is : "@var{frequency}"
2532
2533 @item width_type, t
2534 Change bandreject width_type.
2535 Syntax for the command is : "@var{width_type}"
2536
2537 @item width, w
2538 Change bandreject width.
2539 Syntax for the command is : "@var{width}"
2540
2541 @item mix, m
2542 Change bandreject mix.
2543 Syntax for the command is : "@var{mix}"
2544 @end table
2545
2546 @section bass, lowshelf
2547
2548 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2549 shelving filter with a response similar to that of a standard
2550 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2551
2552 The filter accepts the following options:
2553
2554 @table @option
2555 @item gain, g
2556 Give the gain at 0 Hz. Its useful range is about -20
2557 (for a large cut) to +20 (for a large boost).
2558 Beware of clipping when using a positive gain.
2559
2560 @item frequency, f
2561 Set the filter's central frequency and so can be used
2562 to extend or reduce the frequency range to be boosted or cut.
2563 The default value is @code{100} Hz.
2564
2565 @item width_type, t
2566 Set method to specify band-width of filter.
2567 @table @option
2568 @item h
2569 Hz
2570 @item q
2571 Q-Factor
2572 @item o
2573 octave
2574 @item s
2575 slope
2576 @item k
2577 kHz
2578 @end table
2579
2580 @item width, w
2581 Determine how steep is the filter's shelf transition.
2582
2583 @item mix, m
2584 How much to use filtered signal in output. Default is 1.
2585 Range is between 0 and 1.
2586
2587 @item channels, c
2588 Specify which channels to filter, by default all available are filtered.
2589 @end table
2590
2591 @subsection Commands
2592
2593 This filter supports the following commands:
2594 @table @option
2595 @item frequency, f
2596 Change bass frequency.
2597 Syntax for the command is : "@var{frequency}"
2598
2599 @item width_type, t
2600 Change bass width_type.
2601 Syntax for the command is : "@var{width_type}"
2602
2603 @item width, w
2604 Change bass width.
2605 Syntax for the command is : "@var{width}"
2606
2607 @item gain, g
2608 Change bass gain.
2609 Syntax for the command is : "@var{gain}"
2610
2611 @item mix, m
2612 Change bass mix.
2613 Syntax for the command is : "@var{mix}"
2614 @end table
2615
2616 @section biquad
2617
2618 Apply a biquad IIR filter with the given coefficients.
2619 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2620 are the numerator and denominator coefficients respectively.
2621 and @var{channels}, @var{c} specify which channels to filter, by default all
2622 available are filtered.
2623
2624 @subsection Commands
2625
2626 This filter supports the following commands:
2627 @table @option
2628 @item a0
2629 @item a1
2630 @item a2
2631 @item b0
2632 @item b1
2633 @item b2
2634 Change biquad parameter.
2635 Syntax for the command is : "@var{value}"
2636
2637 @item mix, m
2638 How much to use filtered signal in output. Default is 1.
2639 Range is between 0 and 1.
2640 @end table
2641
2642 @section bs2b
2643 Bauer stereo to binaural transformation, which improves headphone listening of
2644 stereo audio records.
2645
2646 To enable compilation of this filter you need to configure FFmpeg with
2647 @code{--enable-libbs2b}.
2648
2649 It accepts the following parameters:
2650 @table @option
2651
2652 @item profile
2653 Pre-defined crossfeed level.
2654 @table @option
2655
2656 @item default
2657 Default level (fcut=700, feed=50).
2658
2659 @item cmoy
2660 Chu Moy circuit (fcut=700, feed=60).
2661
2662 @item jmeier
2663 Jan Meier circuit (fcut=650, feed=95).
2664
2665 @end table
2666
2667 @item fcut
2668 Cut frequency (in Hz).
2669
2670 @item feed
2671 Feed level (in Hz).
2672
2673 @end table
2674
2675 @section channelmap
2676
2677 Remap input channels to new locations.
2678
2679 It accepts the following parameters:
2680 @table @option
2681 @item map
2682 Map channels from input to output. The argument is a '|'-separated list of
2683 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2684 @var{in_channel} form. @var{in_channel} can be either the name of the input
2685 channel (e.g. FL for front left) or its index in the input channel layout.
2686 @var{out_channel} is the name of the output channel or its index in the output
2687 channel layout. If @var{out_channel} is not given then it is implicitly an
2688 index, starting with zero and increasing by one for each mapping.
2689
2690 @item channel_layout
2691 The channel layout of the output stream.
2692 @end table
2693
2694 If no mapping is present, the filter will implicitly map input channels to
2695 output channels, preserving indices.
2696
2697 @subsection Examples
2698
2699 @itemize
2700 @item
2701 For example, assuming a 5.1+downmix input MOV file,
2702 @example
2703 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2704 @end example
2705 will create an output WAV file tagged as stereo from the downmix channels of
2706 the input.
2707
2708 @item
2709 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2710 @example
2711 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2712 @end example
2713 @end itemize
2714
2715 @section channelsplit
2716
2717 Split each channel from an input audio stream into a separate output stream.
2718
2719 It accepts the following parameters:
2720 @table @option
2721 @item channel_layout
2722 The channel layout of the input stream. The default is "stereo".
2723 @item channels
2724 A channel layout describing the channels to be extracted as separate output streams
2725 or "all" to extract each input channel as a separate stream. The default is "all".
2726
2727 Choosing channels not present in channel layout in the input will result in an error.
2728 @end table
2729
2730 @subsection Examples
2731
2732 @itemize
2733 @item
2734 For example, assuming a stereo input MP3 file,
2735 @example
2736 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2737 @end example
2738 will create an output Matroska file with two audio streams, one containing only
2739 the left channel and the other the right channel.
2740
2741 @item
2742 Split a 5.1 WAV file into per-channel files:
2743 @example
2744 ffmpeg -i in.wav -filter_complex
2745 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2746 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2747 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2748 side_right.wav
2749 @end example
2750
2751 @item
2752 Extract only LFE from a 5.1 WAV file:
2753 @example
2754 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2755 -map '[LFE]' lfe.wav
2756 @end example
2757 @end itemize
2758
2759 @section chorus
2760 Add a chorus effect to the audio.
2761
2762 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2763
2764 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2765 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2766 The modulation depth defines the range the modulated delay is played before or after
2767 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2768 sound tuned around the original one, like in a chorus where some vocals are slightly
2769 off key.
2770
2771 It accepts the following parameters:
2772 @table @option
2773 @item in_gain
2774 Set input gain. Default is 0.4.
2775
2776 @item out_gain
2777 Set output gain. Default is 0.4.
2778
2779 @item delays
2780 Set delays. A typical delay is around 40ms to 60ms.
2781
2782 @item decays
2783 Set decays.
2784
2785 @item speeds
2786 Set speeds.
2787
2788 @item depths
2789 Set depths.
2790 @end table
2791
2792 @subsection Examples
2793
2794 @itemize
2795 @item
2796 A single delay:
2797 @example
2798 chorus=0.7:0.9:55:0.4:0.25:2
2799 @end example
2800
2801 @item
2802 Two delays:
2803 @example
2804 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2805 @end example
2806
2807 @item
2808 Fuller sounding chorus with three delays:
2809 @example
2810 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
2811 @end example
2812 @end itemize
2813
2814 @section compand
2815 Compress or expand the audio's dynamic range.
2816
2817 It accepts the following parameters:
2818
2819 @table @option
2820
2821 @item attacks
2822 @item decays
2823 A list of times in seconds for each channel over which the instantaneous level
2824 of the input signal is averaged to determine its volume. @var{attacks} refers to
2825 increase of volume and @var{decays} refers to decrease of volume. For most
2826 situations, the attack time (response to the audio getting louder) should be
2827 shorter than the decay time, because the human ear is more sensitive to sudden
2828 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2829 a typical value for decay is 0.8 seconds.
2830 If specified number of attacks & decays is lower than number of channels, the last
2831 set attack/decay will be used for all remaining channels.
2832
2833 @item points
2834 A list of points for the transfer function, specified in dB relative to the
2835 maximum possible signal amplitude. Each key points list must be defined using
2836 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2837 @code{x0/y0 x1/y1 x2/y2 ....}
2838
2839 The input values must be in strictly increasing order but the transfer function
2840 does not have to be monotonically rising. The point @code{0/0} is assumed but
2841 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2842 function are @code{-70/-70|-60/-20|1/0}.
2843
2844 @item soft-knee
2845 Set the curve radius in dB for all joints. It defaults to 0.01.
2846
2847 @item gain
2848 Set the additional gain in dB to be applied at all points on the transfer
2849 function. This allows for easy adjustment of the overall gain.
2850 It defaults to 0.
2851
2852 @item volume
2853 Set an initial volume, in dB, to be assumed for each channel when filtering
2854 starts. This permits the user to supply a nominal level initially, so that, for
2855 example, a very large gain is not applied to initial signal levels before the
2856 companding has begun to operate. A typical value for audio which is initially
2857 quiet is -90 dB. It defaults to 0.
2858
2859 @item delay
2860 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2861 delayed before being fed to the volume adjuster. Specifying a delay
2862 approximately equal to the attack/decay times allows the filter to effectively
2863 operate in predictive rather than reactive mode. It defaults to 0.
2864
2865 @end table
2866
2867 @subsection Examples
2868
2869 @itemize
2870 @item
2871 Make music with both quiet and loud passages suitable for listening to in a
2872 noisy environment:
2873 @example
2874 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2875 @end example
2876
2877 Another example for audio with whisper and explosion parts:
2878 @example
2879 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2880 @end example
2881
2882 @item
2883 A noise gate for when the noise is at a lower level than the signal:
2884 @example
2885 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2886 @end example
2887
2888 @item
2889 Here is another noise gate, this time for when the noise is at a higher level
2890 than the signal (making it, in some ways, similar to squelch):
2891 @example
2892 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2893 @end example
2894
2895 @item
2896 2:1 compression starting at -6dB:
2897 @example
2898 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2899 @end example
2900
2901 @item
2902 2:1 compression starting at -9dB:
2903 @example
2904 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2905 @end example
2906
2907 @item
2908 2:1 compression starting at -12dB:
2909 @example
2910 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2911 @end example
2912
2913 @item
2914 2:1 compression starting at -18dB:
2915 @example
2916 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2917 @end example
2918
2919 @item
2920 3:1 compression starting at -15dB:
2921 @example
2922 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2923 @end example
2924
2925 @item
2926 Compressor/Gate:
2927 @example
2928 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2929 @end example
2930
2931 @item
2932 Expander:
2933 @example
2934 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2935 @end example
2936
2937 @item
2938 Hard limiter at -6dB:
2939 @example
2940 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2941 @end example
2942
2943 @item
2944 Hard limiter at -12dB:
2945 @example
2946 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2947 @end example
2948
2949 @item
2950 Hard noise gate at -35 dB:
2951 @example
2952 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2953 @end example
2954
2955 @item
2956 Soft limiter:
2957 @example
2958 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2959 @end example
2960 @end itemize
2961
2962 @section compensationdelay
2963
2964 Compensation Delay Line is a metric based delay to compensate differing
2965 positions of microphones or speakers.
2966
2967 For example, you have recorded guitar with two microphones placed in
2968 different location. Because the front of sound wave has fixed speed in
2969 normal conditions, the phasing of microphones can vary and depends on
2970 their location and interposition. The best sound mix can be achieved when
2971 these microphones are in phase (synchronized). Note that distance of
2972 ~30 cm between microphones makes one microphone to capture signal in
2973 antiphase to another microphone. That makes the final mix sounding moody.
2974 This filter helps to solve phasing problems by adding different delays
2975 to each microphone track and make them synchronized.
2976
2977 The best result can be reached when you take one track as base and
2978 synchronize other tracks one by one with it.
2979 Remember that synchronization/delay tolerance depends on sample rate, too.
2980 Higher sample rates will give more tolerance.
2981
2982 It accepts the following parameters:
2983
2984 @table @option
2985 @item mm
2986 Set millimeters distance. This is compensation distance for fine tuning.
2987 Default is 0.
2988
2989 @item cm
2990 Set cm distance. This is compensation distance for tightening distance setup.
2991 Default is 0.
2992
2993 @item m
2994 Set meters distance. This is compensation distance for hard distance setup.
2995 Default is 0.
2996
2997 @item dry
2998 Set dry amount. Amount of unprocessed (dry) signal.
2999 Default is 0.
3000
3001 @item wet
3002 Set wet amount. Amount of processed (wet) signal.
3003 Default is 1.
3004
3005 @item temp
3006 Set temperature degree in Celsius. This is the temperature of the environment.
3007 Default is 20.
3008 @end table
3009
3010 @section crossfeed
3011 Apply headphone crossfeed filter.
3012
3013 Crossfeed is the process of blending the left and right channels of stereo
3014 audio recording.
3015 It is mainly used to reduce extreme stereo separation of low frequencies.
3016
3017 The intent is to produce more speaker like sound to the listener.
3018
3019 The filter accepts the following options:
3020
3021 @table @option
3022 @item strength
3023 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
3024 This sets gain of low shelf filter for side part of stereo image.
3025 Default is -6dB. Max allowed is -30db when strength is set to 1.
3026
3027 @item range
3028 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
3029 This sets cut off frequency of low shelf filter. Default is cut off near
3030 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
3031
3032 @item level_in
3033 Set input gain. Default is 0.9.
3034
3035 @item level_out
3036 Set output gain. Default is 1.
3037 @end table
3038
3039 @section crystalizer
3040 Simple algorithm to expand audio dynamic range.
3041
3042 The filter accepts the following options:
3043
3044 @table @option
3045 @item i
3046 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
3047 (unchanged sound) to 10.0 (maximum effect).
3048
3049 @item c
3050 Enable clipping. By default is enabled.
3051 @end table
3052
3053 @section dcshift
3054 Apply a DC shift to the audio.
3055
3056 This can be useful to remove a DC offset (caused perhaps by a hardware problem
3057 in the recording chain) from the audio. The effect of a DC offset is reduced
3058 headroom and hence volume. The @ref{astats} filter can be used to determine if
3059 a signal has a DC offset.
3060
3061 @table @option
3062 @item shift
3063 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
3064 the audio.
3065
3066 @item limitergain
3067 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
3068 used to prevent clipping.
3069 @end table
3070
3071 @section deesser
3072
3073 Apply de-essing to the audio samples.
3074
3075 @table @option
3076 @item i
3077 Set intensity for triggering de-essing. Allowed range is from 0 to 1.
3078 Default is 0.
3079
3080 @item m
3081 Set amount of ducking on treble part of sound. Allowed range is from 0 to 1.
3082 Default is 0.5.
3083
3084 @item f
3085 How much of original frequency content to keep when de-essing. Allowed range is from 0 to 1.
3086 Default is 0.5.
3087
3088 @item s
3089 Set the output mode.
3090
3091 It accepts the following values:
3092 @table @option
3093 @item i
3094 Pass input unchanged.
3095
3096 @item o
3097 Pass ess filtered out.
3098
3099 @item e
3100 Pass only ess.
3101
3102 Default value is @var{o}.
3103 @end table
3104
3105 @end table
3106
3107 @section drmeter
3108 Measure audio dynamic range.
3109
3110 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
3111 is found in transition material. And anything less that 8 have very poor dynamics
3112 and is very compressed.
3113
3114 The filter accepts the following options:
3115
3116 @table @option
3117 @item length
3118 Set window length in seconds used to split audio into segments of equal length.
3119 Default is 3 seconds.
3120 @end table
3121
3122 @section dynaudnorm
3123 Dynamic Audio Normalizer.
3124
3125 This filter applies a certain amount of gain to the input audio in order
3126 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
3127 contrast to more "simple" normalization algorithms, the Dynamic Audio
3128 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
3129 This allows for applying extra gain to the "quiet" sections of the audio
3130 while avoiding distortions or clipping the "loud" sections. In other words:
3131 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
3132 sections, in the sense that the volume of each section is brought to the
3133 same target level. Note, however, that the Dynamic Audio Normalizer achieves
3134 this goal *without* applying "dynamic range compressing". It will retain 100%
3135 of the dynamic range *within* each section of the audio file.
3136
3137 @table @option
3138 @item framelen, f
3139 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
3140 Default is 500 milliseconds.
3141 The Dynamic Audio Normalizer processes the input audio in small chunks,
3142 referred to as frames. This is required, because a peak magnitude has no
3143 meaning for just a single sample value. Instead, we need to determine the
3144 peak magnitude for a contiguous sequence of sample values. While a "standard"
3145 normalizer would simply use the peak magnitude of the complete file, the
3146 Dynamic Audio Normalizer determines the peak magnitude individually for each
3147 frame. The length of a frame is specified in milliseconds. By default, the
3148 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
3149 been found to give good results with most files.
3150 Note that the exact frame length, in number of samples, will be determined
3151 automatically, based on the sampling rate of the individual input audio file.
3152
3153 @item gausssize, g
3154 Set the Gaussian filter window size. In range from 3 to 301, must be odd
3155 number. Default is 31.
3156 Probably the most important parameter of the Dynamic Audio Normalizer is the
3157 @code{window size} of the Gaussian smoothing filter. The filter's window size
3158 is specified in frames, centered around the current frame. For the sake of
3159 simplicity, this must be an odd number. Consequently, the default value of 31
3160 takes into account the current frame, as well as the 15 preceding frames and
3161 the 15 subsequent frames. Using a larger window results in a stronger
3162 smoothing effect and thus in less gain variation, i.e. slower gain
3163 adaptation. Conversely, using a smaller window results in a weaker smoothing
3164 effect and thus in more gain variation, i.e. faster gain adaptation.
3165 In other words, the more you increase this value, the more the Dynamic Audio
3166 Normalizer will behave like a "traditional" normalization filter. On the
3167 contrary, the more you decrease this value, the more the Dynamic Audio
3168 Normalizer will behave like a dynamic range compressor.
3169
3170 @item peak, p
3171 Set the target peak value. This specifies the highest permissible magnitude
3172 level for the normalized audio input. This filter will try to approach the
3173 target peak magnitude as closely as possible, but at the same time it also
3174 makes sure that the normalized signal will never exceed the peak magnitude.
3175 A frame's maximum local gain factor is imposed directly by the target peak
3176 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
3177 It is not recommended to go above this value.
3178
3179 @item maxgain, m
3180 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
3181 The Dynamic Audio Normalizer determines the maximum possible (local) gain
3182 factor for each input frame, i.e. the maximum gain factor that does not
3183 result in clipping or distortion. The maximum gain factor is determined by
3184 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
3185 additionally bounds the frame's maximum gain factor by a predetermined
3186 (global) maximum gain factor. This is done in order to avoid excessive gain
3187 factors in "silent" or almost silent frames. By default, the maximum gain
3188 factor is 10.0, For most inputs the default value should be sufficient and
3189 it usually is not recommended to increase this value. Though, for input
3190 with an extremely low overall volume level, it may be necessary to allow even
3191 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
3192 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
3193 Instead, a "sigmoid" threshold function will be applied. This way, the
3194 gain factors will smoothly approach the threshold value, but never exceed that
3195 value.
3196
3197 @item targetrms, r
3198 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
3199 By default, the Dynamic Audio Normalizer performs "peak" normalization.
3200 This means that the maximum local gain factor for each frame is defined
3201 (only) by the frame's highest magnitude sample. This way, the samples can
3202 be amplified as much as possible without exceeding the maximum signal
3203 level, i.e. without clipping. Optionally, however, the Dynamic Audio
3204 Normalizer can also take into account the frame's root mean square,
3205 abbreviated RMS. In electrical engineering, the RMS is commonly used to
3206 determine the power of a time-varying signal. It is therefore considered
3207 that the RMS is a better approximation of the "perceived loudness" than
3208 just looking at the signal's peak magnitude. Consequently, by adjusting all
3209 frames to a constant RMS value, a uniform "perceived loudness" can be
3210 established. If a target RMS value has been specified, a frame's local gain
3211 factor is defined as the factor that would result in exactly that RMS value.
3212 Note, however, that the maximum local gain factor is still restricted by the
3213 frame's highest magnitude sample, in order to prevent clipping.
3214
3215 @item coupling, n
3216 Enable channels coupling. By default is enabled.
3217 By default, the Dynamic Audio Normalizer will amplify all channels by the same
3218 amount. This means the same gain factor will be applied to all channels, i.e.
3219 the maximum possible gain factor is determined by the "loudest" channel.
3220 However, in some recordings, it may happen that the volume of the different
3221 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
3222 In this case, this option can be used to disable the channel coupling. This way,
3223 the gain factor will be determined independently for each channel, depending
3224 only on the individual channel's highest magnitude sample. This allows for
3225 harmonizing the volume of the different channels.
3226
3227 @item correctdc, c
3228 Enable DC bias correction. By default is disabled.
3229 An audio signal (in the time domain) is a sequence of sample values.
3230 In the Dynamic Audio Normalizer these sample values are represented in the
3231 -1.0 to 1.0 range, regardless of the original input format. Normally, the
3232 audio signal, or "waveform", should be centered around the zero point.
3233 That means if we calculate the mean value of all samples in a file, or in a
3234 single frame, then the result should be 0.0 or at least very close to that
3235 value. If, however, there is a significant deviation of the mean value from
3236 0.0, in either positive or negative direction, this is referred to as a
3237 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
3238 Audio Normalizer provides optional DC bias correction.
3239 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
3240 the mean value, or "DC correction" offset, of each input frame and subtract
3241 that value from all of the frame's sample values which ensures those samples
3242 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
3243 boundaries, the DC correction offset values will be interpolated smoothly
3244 between neighbouring frames.
3245
3246 @item altboundary, b
3247 Enable alternative boundary mode. By default is disabled.
3248 The Dynamic Audio Normalizer takes into account a certain neighbourhood
3249 around each frame. This includes the preceding frames as well as the
3250 subsequent frames. However, for the "boundary" frames, located at the very
3251 beginning and at the very end of the audio file, not all neighbouring
3252 frames are available. In particular, for the first few frames in the audio
3253 file, the preceding frames are not known. And, similarly, for the last few
3254 frames in the audio file, the subsequent frames are not known. Thus, the
3255 question arises which gain factors should be assumed for the missing frames
3256 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
3257 to deal with this situation. The default boundary mode assumes a gain factor
3258 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
3259 "fade out" at the beginning and at the end of the input, respectively.
3260
3261 @item compress, s
3262 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
3263 By default, the Dynamic Audio Normalizer does not apply "traditional"
3264 compression. This means that signal peaks will not be pruned and thus the
3265 full dynamic range will be retained within each local neighbourhood. However,
3266 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
3267 normalization algorithm with a more "traditional" compression.
3268 For this purpose, the Dynamic Audio Normalizer provides an optional compression
3269 (thresholding) function. If (and only if) the compression feature is enabled,
3270 all input frames will be processed by a soft knee thresholding function prior
3271 to the actual normalization process. Put simply, the thresholding function is
3272 going to prune all samples whose magnitude exceeds a certain threshold value.
3273 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
3274 value. Instead, the threshold value will be adjusted for each individual
3275 frame.
3276 In general, smaller parameters result in stronger compression, and vice versa.
3277 Values below 3.0 are not recommended, because audible distortion may appear.
3278 @end table
3279
3280 @section earwax
3281
3282 Make audio easier to listen to on headphones.
3283
3284 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
3285 so that when listened to on headphones the stereo image is moved from
3286 inside your head (standard for headphones) to outside and in front of
3287 the listener (standard for speakers).
3288
3289 Ported from SoX.
3290
3291 @section equalizer
3292
3293 Apply a two-pole peaking equalisation (EQ) filter. With this
3294 filter, the signal-level at and around a selected frequency can
3295 be increased or decreased, whilst (unlike bandpass and bandreject
3296 filters) that at all other frequencies is unchanged.
3297
3298 In order to produce complex equalisation curves, this filter can
3299 be given several times, each with a different central frequency.
3300
3301 The filter accepts the following options:
3302
3303 @table @option
3304 @item frequency, f
3305 Set the filter's central frequency in Hz.
3306
3307 @item width_type, t
3308 Set method to specify band-width of filter.
3309 @table @option
3310 @item h
3311 Hz
3312 @item q
3313 Q-Factor
3314 @item o
3315 octave
3316 @item s
3317 slope
3318 @item k
3319 kHz
3320 @end table
3321
3322 @item width, w
3323 Specify the band-width of a filter in width_type units.
3324
3325 @item gain, g
3326 Set the required gain or attenuation in dB.
3327 Beware of clipping when using a positive gain.
3328
3329 @item mix, m
3330 How much to use filtered signal in output. Default is 1.
3331 Range is between 0 and 1.
3332
3333 @item channels, c
3334 Specify which channels to filter, by default all available are filtered.
3335 @end table
3336
3337 @subsection Examples
3338 @itemize
3339 @item
3340 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
3341 @example
3342 equalizer=f=1000:t=h:width=200:g=-10
3343 @end example
3344
3345 @item
3346 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
3347 @example
3348 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
3349 @end example
3350 @end itemize
3351
3352 @subsection Commands
3353
3354 This filter supports the following commands:
3355 @table @option
3356 @item frequency, f
3357 Change equalizer frequency.
3358 Syntax for the command is : "@var{frequency}"
3359
3360 @item width_type, t
3361 Change equalizer width_type.
3362 Syntax for the command is : "@var{width_type}"
3363
3364 @item width, w
3365 Change equalizer width.
3366 Syntax for the command is : "@var{width}"
3367
3368 @item gain, g
3369 Change equalizer gain.
3370 Syntax for the command is : "@var{gain}"
3371
3372 @item mix, m
3373 Change equalizer mix.
3374 Syntax for the command is : "@var{mix}"
3375 @end table
3376
3377 @section extrastereo
3378
3379 Linearly increases the difference between left and right channels which
3380 adds some sort of "live" effect to playback.
3381
3382 The filter accepts the following options:
3383
3384 @table @option
3385 @item m
3386 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
3387 (average of both channels), with 1.0 sound will be unchanged, with
3388 -1.0 left and right channels will be swapped.
3389
3390 @item c
3391 Enable clipping. By default is enabled.
3392 @end table
3393
3394 @section firequalizer
3395 Apply FIR Equalization using arbitrary frequency response.
3396
3397 The filter accepts the following option:
3398
3399 @table @option
3400 @item gain
3401 Set gain curve equation (in dB). The expression can contain variables:
3402 @table @option
3403 @item f
3404 the evaluated frequency
3405 @item sr
3406 sample rate
3407 @item ch
3408 channel number, set to 0 when multichannels evaluation is disabled
3409 @item chid
3410 channel id, see libavutil/channel_layout.h, set to the first channel id when
3411 multichannels evaluation is disabled
3412 @item chs
3413 number of channels
3414 @item chlayout
3415 channel_layout, see libavutil/channel_layout.h
3416
3417 @end table
3418 and functions:
3419 @table @option
3420 @item gain_interpolate(f)
3421 interpolate gain on frequency f based on gain_entry
3422 @item cubic_interpolate(f)
3423 same as gain_interpolate, but smoother
3424 @end table
3425 This option is also available as command. Default is @code{gain_interpolate(f)}.
3426
3427 @item gain_entry
3428 Set gain entry for gain_interpolate function. The expression can
3429 contain functions:
3430 @table @option
3431 @item entry(f, g)
3432 store gain entry at frequency f with value g
3433 @end table
3434 This option is also available as command.
3435
3436 @item delay
3437 Set filter delay in seconds. Higher value means more accurate.
3438 Default is @code{0.01}.
3439
3440 @item accuracy
3441 Set filter accuracy in Hz. Lower value means more accurate.
3442 Default is @code{5}.
3443
3444 @item wfunc
3445 Set window function. Acceptable values are:
3446 @table @option
3447 @item rectangular
3448 rectangular window, useful when gain curve is already smooth
3449 @item hann
3450 hann window (default)
3451 @item hamming
3452 hamming window
3453 @item blackman
3454 blackman window
3455 @item nuttall3
3456 3-terms continuous 1st derivative nuttall window
3457 @item mnuttall3
3458 minimum 3-terms discontinuous nuttall window
3459 @item nuttall
3460 4-terms continuous 1st derivative nuttall window
3461 @item bnuttall
3462 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
3463 @item bharris
3464 blackman-harris window
3465 @item tukey
3466 tukey window
3467 @end table
3468
3469 @item fixed
3470 If enabled, use fixed number of audio samples. This improves speed when
3471 filtering with large delay. Default is disabled.
3472
3473 @item multi
3474 Enable multichannels evaluation on gain. Default is disabled.
3475
3476 @item zero_phase
3477 Enable zero phase mode by subtracting timestamp to compensate delay.
3478 Default is disabled.
3479
3480 @item scale
3481 Set scale used by gain. Acceptable values are:
3482 @table @option
3483 @item linlin
3484 linear frequency, linear gain
3485 @item linlog
3486 linear frequency, logarithmic (in dB) gain (default)
3487 @item loglin
3488 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
3489 @item loglog
3490 logarithmic frequency, logarithmic gain
3491 @end table
3492
3493 @item dumpfile
3494 Set file for dumping, suitable for gnuplot.
3495
3496 @item dumpscale
3497 Set scale for dumpfile. Acceptable values are same with scale option.
3498 Default is linlog.
3499
3500 @item fft2
3501 Enable 2-channel convolution using complex FFT. This improves speed significantly.
3502 Default is disabled.
3503
3504 @item min_phase
3505 Enable minimum phase impulse response. Default is disabled.
3506 @end table
3507
3508 @subsection Examples
3509 @itemize
3510 @item
3511 lowpass at 1000 Hz:
3512 @example
3513 firequalizer=gain='if(lt(f,1000), 0, -INF)'
3514 @end example
3515 @item
3516 lowpass at 1000 Hz with gain_entry:
3517 @example
3518 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
3519 @end example
3520 @item
3521 custom equalization:
3522 @example
3523 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
3524 @end example
3525 @item
3526 higher delay with zero phase to compensate delay:
3527 @example
3528 firequalizer=delay=0.1:fixed=on:zero_phase=on
3529 @end example
3530 @item
3531 lowpass on left channel, highpass on right channel:
3532 @example
3533 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
3534 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
3535 @end example
3536 @end itemize
3537
3538 @section flanger
3539 Apply a flanging effect to the audio.
3540
3541 The filter accepts the following options:
3542
3543 @table @option
3544 @item delay
3545 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3546
3547 @item depth
3548 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3549
3550 @item regen
3551 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3552 Default value is 0.
3553
3554 @item width
3555 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3556 Default value is 71.
3557
3558 @item speed
3559 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3560
3561 @item shape
3562 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3563 Default value is @var{sinusoidal}.
3564
3565 @item phase
3566 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3567 Default value is 25.
3568
3569 @item interp
3570 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3571 Default is @var{linear}.
3572 @end table
3573
3574 @section haas
3575 Apply Haas effect to audio.
3576
3577 Note that this makes most sense to apply on mono signals.
3578 With this filter applied to mono signals it give some directionality and
3579 stretches its stereo image.
3580
3581 The filter accepts the following options:
3582
3583 @table @option
3584 @item level_in
3585 Set input level. By default is @var{1}, or 0dB
3586
3587 @item level_out
3588 Set output level. By default is @var{1}, or 0dB.
3589
3590 @item side_gain
3591 Set gain applied to side part of signal. By default is @var{1}.
3592
3593 @item middle_source
3594 Set kind of middle source. Can be one of the following:
3595
3596 @table @samp
3597 @item left
3598 Pick left channel.
3599
3600 @item right
3601 Pick right channel.
3602
3603 @item mid
3604 Pick middle part signal of stereo image.
3605
3606 @item side
3607 Pick side part signal of stereo image.
3608 @end table
3609
3610 @item middle_phase
3611 Change middle phase. By default is disabled.
3612
3613 @item left_delay
3614 Set left channel delay. By default is @var{2.05} milliseconds.
3615
3616 @item left_balance
3617 Set left channel balance. By default is @var{-1}.
3618
3619 @item left_gain
3620 Set left channel gain. By default is @var{1}.
3621
3622 @item left_phase
3623 Change left phase. By default is disabled.
3624
3625 @item right_delay
3626 Set right channel delay. By defaults is @var{2.12} milliseconds.
3627
3628 @item right_balance
3629 Set right channel balance. By default is @var{1}.
3630
3631 @item right_gain
3632 Set right channel gain. By default is @var{1}.
3633
3634 @item right_phase
3635 Change right phase. By default is enabled.
3636 @end table
3637
3638 @section hdcd
3639
3640 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3641 embedded HDCD codes is expanded into a 20-bit PCM stream.
3642
3643 The filter supports the Peak Extend and Low-level Gain Adjustment features
3644 of HDCD, and detects the Transient Filter flag.
3645
3646 @example
3647 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3648 @end example
3649
3650 When using the filter with wav, note the default encoding for wav is 16-bit,
3651 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3652 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3653 @example
3654 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3655 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3656 @end example
3657
3658 The filter accepts the following options:
3659
3660 @table @option
3661 @item disable_autoconvert
3662 Disable any automatic format conversion or resampling in the filter graph.
3663
3664 @item process_stereo
3665 Process the stereo channels together. If target_gain does not match between
3666 channels, consider it invalid and use the last valid target_gain.
3667
3668 @item cdt_ms
3669 Set the code detect timer period in ms.
3670
3671 @item force_pe
3672 Always extend peaks above -3dBFS even if PE isn't signaled.
3673
3674 @item analyze_mode
3675 Replace audio with a solid tone and adjust the amplitude to signal some
3676 specific aspect of the decoding process. The output file can be loaded in
3677 an audio editor alongside the original to aid analysis.
3678
3679 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3680
3681 Modes are:
3682 @table @samp
3683 @item 0, off
3684 Disabled
3685 @item 1, lle
3686 Gain adjustment level at each sample
3687 @item 2, pe
3688 Samples where peak extend occurs
3689 @item 3, cdt
3690 Samples where the code detect timer is active
3691 @item 4, tgm
3692 Samples where the target gain does not match between channels
3693 @end table
3694 @end table
3695
3696 @section headphone
3697
3698 Apply head-related transfer functions (HRTFs) to create virtual
3699 loudspeakers around the user for binaural listening via headphones.
3700 The HRIRs are provided via additional streams, for each channel
3701 one stereo input stream is needed.
3702
3703 The filter accepts the following options:
3704
3705 @table @option
3706 @item map
3707 Set mapping of input streams for convolution.
3708 The argument is a '|'-separated list of channel names in order as they
3709 are given as additional stream inputs for filter.
3710 This also specify number of input streams. Number of input streams
3711 must be not less than number of channels in first stream plus one.
3712
3713 @item gain
3714 Set gain applied to audio. Value is in dB. Default is 0.
3715
3716 @item type
3717 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3718 processing audio in time domain which is slow.
3719 @var{freq} is processing audio in frequency domain which is fast.
3720 Default is @var{freq}.
3721
3722 @item lfe
3723 Set custom gain for LFE channels. Value is in dB. Default is 0.
3724
3725 @item size
3726 Set size of frame in number of samples which will be processed at once.
3727 Default value is @var{1024}. Allowed range is from 1024 to 96000.
3728
3729 @item hrir
3730 Set format of hrir stream.
3731 Default value is @var{stereo}. Alternative value is @var{multich}.
3732 If value is set to @var{stereo}, number of additional streams should
3733 be greater or equal to number of input channels in first input stream.
3734 Also each additional stream should have stereo number of channels.
3735 If value is set to @var{multich}, number of additional streams should
3736 be exactly one. Also number of input channels of additional stream
3737 should be equal or greater than twice number of channels of first input
3738 stream.
3739 @end table
3740
3741 @subsection Examples
3742
3743 @itemize
3744 @item
3745 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3746 each amovie filter use stereo file with IR coefficients as input.
3747 The files give coefficients for each position of virtual loudspeaker:
3748 @example
3749 ffmpeg -i input.wav
3750 -filter_complex "amovie=azi_270_ele_0_DFC.wav[sr];amovie=azi_90_ele_0_DFC.wav[sl];amovie=azi_225_ele_0_DFC.wav[br];amovie=azi_135_ele_0_DFC.wav[bl];amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe];amovie=azi_35_ele_0_DFC.wav[fl];amovie=azi_325_ele_0_DFC.wav[fr];[0:a][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
3751 output.wav
3752 @end example
3753
3754 @item
3755 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3756 but now in @var{multich} @var{hrir} format.
3757 @example
3758 ffmpeg -i input.wav -filter_complex "amovie=minp.wav[hrirs];[0:a][hrirs]headphone=map=FL|FR|FC|LFE|BL|BR|SL|SR:hrir=multich"
3759 output.wav
3760 @end example
3761 @end itemize
3762
3763 @section highpass
3764
3765 Apply a high-pass filter with 3dB point frequency.
3766 The filter can be either single-pole, or double-pole (the default).
3767 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3768
3769 The filter accepts the following options:
3770
3771 @table @option
3772 @item frequency, f
3773 Set frequency in Hz. Default is 3000.
3774
3775 @item poles, p
3776 Set number of poles. Default is 2.
3777
3778 @item width_type, t
3779 Set method to specify band-width of filter.
3780 @table @option
3781 @item h
3782 Hz
3783 @item q
3784 Q-Factor
3785 @item o
3786 octave
3787 @item s
3788 slope
3789 @item k
3790 kHz
3791 @end table
3792
3793 @item width, w
3794 Specify the band-width of a filter in width_type units.
3795 Applies only to double-pole filter.
3796 The default is 0.707q and gives a Butterworth response.
3797
3798 @item mix, m
3799 How much to use filtered signal in output. Default is 1.
3800 Range is between 0 and 1.
3801
3802 @item channels, c
3803 Specify which channels to filter, by default all available are filtered.
3804 @end table
3805
3806 @subsection Commands
3807
3808 This filter supports the following commands:
3809 @table @option
3810 @item frequency, f
3811 Change highpass frequency.
3812 Syntax for the command is : "@var{frequency}"
3813
3814 @item width_type, t
3815 Change highpass width_type.
3816 Syntax for the command is : "@var{width_type}"
3817
3818 @item width, w
3819 Change highpass width.
3820 Syntax for the command is : "@var{width}"
3821
3822 @item mix, m
3823 Change highpass mix.
3824 Syntax for the command is : "@var{mix}"
3825 @end table
3826
3827 @section join
3828
3829 Join multiple input streams into one multi-channel stream.
3830
3831 It accepts the following parameters:
3832 @table @option
3833
3834 @item inputs
3835 The number of input streams. It defaults to 2.
3836
3837 @item channel_layout
3838 The desired output channel layout. It defaults to stereo.
3839
3840 @item map
3841 Map channels from inputs to output. The argument is a '|'-separated list of
3842 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3843 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3844 can be either the name of the input channel (e.g. FL for front left) or its
3845 index in the specified input stream. @var{out_channel} is the name of the output
3846 channel.
3847 @end table
3848
3849 The filter will attempt to guess the mappings when they are not specified
3850 explicitly. It does so by first trying to find an unused matching input channel
3851 and if that fails it picks the first unused input channel.
3852
3853 Join 3 inputs (with properly set channel layouts):
3854 @example
3855 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3856 @end example
3857
3858 Build a 5.1 output from 6 single-channel streams:
3859 @example
3860 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3861 'join=inputs=6:channel_layout=5.1:map=0.0-FL|1.0-FR|2.0-FC|3.0-SL|4.0-SR|5.0-LFE'
3862 out
3863 @end example
3864
3865 @section ladspa
3866
3867 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3868
3869 To enable compilation of this filter you need to configure FFmpeg with
3870 @code{--enable-ladspa}.
3871
3872 @table @option
3873 @item file, f
3874 Specifies the name of LADSPA plugin library to load. If the environment
3875 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3876 each one of the directories specified by the colon separated list in
3877 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3878 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3879 @file{/usr/lib/ladspa/}.
3880
3881 @item plugin, p
3882 Specifies the plugin within the library. Some libraries contain only
3883 one plugin, but others contain many of them. If this is not set filter
3884 will list all available plugins within the specified library.
3885
3886 @item controls, c
3887 Set the '|' separated list of controls which are zero or more floating point
3888 values that determine the behavior of the loaded plugin (for example delay,
3889 threshold or gain).
3890 Controls need to be defined using the following syntax:
3891 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3892 @var{valuei} is the value set on the @var{i}-th control.
3893 Alternatively they can be also defined using the following syntax:
3894 @var{value0}|@var{value1}|@var{value2}|..., where
3895 @var{valuei} is the value set on the @var{i}-th control.
3896 If @option{controls} is set to @code{help}, all available controls and
3897 their valid ranges are printed.
3898
3899 @item sample_rate, s
3900 Specify the sample rate, default to 44100. Only used if plugin have
3901 zero inputs.
3902
3903 @item nb_samples, n
3904 Set the number of samples per channel per each output frame, default
3905 is 1024. Only used if plugin have zero inputs.
3906
3907 @item duration, d
3908 Set the minimum duration of the sourced audio. See
3909 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3910 for the accepted syntax.
3911 Note that the resulting duration may be greater than the specified duration,
3912 as the generated audio is always cut at the end of a complete frame.
3913 If not specified, or the expressed duration is negative, the audio is
3914 supposed to be generated forever.
3915 Only used if plugin have zero inputs.
3916
3917 @end table
3918
3919 @subsection Examples
3920
3921 @itemize
3922 @item
3923 List all available plugins within amp (LADSPA example plugin) library:
3924 @example
3925 ladspa=file=amp
3926 @end example
3927
3928 @item
3929 List all available controls and their valid ranges for @code{vcf_notch}
3930 plugin from @code{VCF} library:
3931 @example
3932 ladspa=f=vcf:p=vcf_notch:c=help
3933 @end example
3934
3935 @item
3936 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3937 plugin library:
3938 @example
3939 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3940 @end example
3941
3942 @item
3943 Add reverberation to the audio using TAP-plugins
3944 (Tom's Audio Processing plugins):
3945 @example
3946 ladspa=file=tap_reverb:tap_reverb
3947 @end example
3948
3949 @item
3950 Generate white noise, with 0.2 amplitude:
3951 @example
3952 ladspa=file=cmt:noise_source_white:c=c0=.2
3953 @end example
3954
3955 @item
3956 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3957 @code{C* Audio Plugin Suite} (CAPS) library:
3958 @example
3959 ladspa=file=caps:Click:c=c1=20'
3960 @end example
3961
3962 @item
3963 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3964 @example
3965 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3966 @end example
3967
3968 @item
3969 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3970 @code{SWH Plugins} collection:
3971 @example
3972 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3973 @end example
3974
3975 @item
3976 Attenuate low frequencies using Multiband EQ from Steve Harris
3977 @code{SWH Plugins} collection:
3978 @example
3979 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3980 @end example
3981
3982 @item
3983 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3984 (CAPS) library:
3985 @example
3986 ladspa=caps:Narrower
3987 @end example
3988
3989 @item
3990 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3991 @example
3992 ladspa=caps:White:.2
3993 @end example
3994
3995 @item
3996 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3997 @example
3998 ladspa=caps:Fractal:c=c1=1
3999 @end example
4000
4001 @item
4002 Dynamic volume normalization using @code{VLevel} plugin:
4003 @example
4004 ladspa=vlevel-ladspa:vlevel_mono
4005 @end example
4006 @end itemize
4007
4008 @subsection Commands
4009
4010 This filter supports the following commands:
4011 @table @option
4012 @item cN
4013 Modify the @var{N}-th control value.
4014
4015 If the specified value is not valid, it is ignored and prior one is kept.
4016 @end table
4017
4018 @section loudnorm
4019
4020 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
4021 Support for both single pass (livestreams, files) and double pass (files) modes.
4022 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
4023 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
4024 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
4025
4026 The filter accepts the following options:
4027
4028 @table @option
4029 @item I, i
4030 Set integrated loudness target.
4031 Range is -70.0 - -5.0. Default value is -24.0.
4032
4033 @item LRA, lra
4034 Set loudness range target.
4035 Range is 1.0 - 20.0. Default value is 7.0.
4036
4037 @item TP, tp
4038 Set maximum true peak.
4039 Range is -9.0 - +0.0. Default value is -2.0.
4040
4041 @item measured_I, measured_i
4042 Measured IL of input file.
4043 Range is -99.0 - +0.0.
4044
4045 @item measured_LRA, measured_lra
4046 Measured LRA of input file.
4047 Range is  0.0 - 99.0.
4048
4049 @item measured_TP, measured_tp
4050 Measured true peak of input file.
4051 Range is  -99.0 - +99.0.
4052
4053 @item measured_thresh
4054 Measured threshold of input file.
4055 Range is -99.0 - +0.0.
4056
4057 @item offset
4058 Set offset gain. Gain is applied before the true-peak limiter.
4059 Range is  -99.0 - +99.0. Default is +0.0.
4060
4061 @item linear
4062 Normalize linearly if possible.
4063 measured_I, measured_LRA, measured_TP, and measured_thresh must also
4064 to be specified in order to use this mode.
4065 Options are true or false. Default is true.
4066
4067 @item dual_mono
4068 Treat mono input files as "dual-mono". If a mono file is intended for playback
4069 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
4070 If set to @code{true}, this option will compensate for this effect.
4071 Multi-channel input files are not affected by this option.
4072 Options are true or false. Default is false.
4073
4074 @item print_format
4075 Set print format for stats. Options are summary, json, or none.
4076 Default value is none.
4077 @end table
4078
4079 @section lowpass
4080
4081 Apply a low-pass filter with 3dB point frequency.
4082 The filter can be either single-pole or double-pole (the default).
4083 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
4084
4085 The filter accepts the following options:
4086
4087 @table @option
4088 @item frequency, f
4089 Set frequency in Hz. Default is 500.
4090
4091 @item poles, p
4092 Set number of poles. Default is 2.
4093
4094 @item width_type, t
4095 Set method to specify band-width of filter.
4096 @table @option
4097 @item h
4098 Hz
4099 @item q
4100 Q-Factor
4101 @item o
4102 octave
4103 @item s
4104 slope
4105 @item k
4106 kHz
4107 @end table
4108
4109 @item width, w
4110 Specify the band-width of a filter in width_type units.
4111 Applies only to double-pole filter.
4112 The default is 0.707q and gives a Butterworth response.
4113
4114 @item mix, m
4115 How much to use filtered signal in output. Default is 1.
4116 Range is between 0 and 1.
4117
4118 @item channels, c
4119 Specify which channels to filter, by default all available are filtered.
4120 @end table
4121
4122 @subsection Examples
4123 @itemize
4124 @item
4125 Lowpass only LFE channel, it LFE is not present it does nothing:
4126 @example
4127 lowpass=c=LFE
4128 @end example
4129 @end itemize
4130
4131 @subsection Commands
4132
4133 This filter supports the following commands:
4134 @table @option
4135 @item frequency, f
4136 Change lowpass frequency.
4137 Syntax for the command is : "@var{frequency}"
4138
4139 @item width_type, t
4140 Change lowpass width_type.
4141 Syntax for the command is : "@var{width_type}"
4142
4143 @item width, w
4144 Change lowpass width.
4145 Syntax for the command is : "@var{width}"
4146
4147 @item mix, m
4148 Change lowpass mix.
4149 Syntax for the command is : "@var{mix}"
4150 @end table
4151
4152 @section lv2
4153
4154 Load a LV2 (LADSPA Version 2) plugin.
4155
4156 To enable compilation of this filter you need to configure FFmpeg with
4157 @code{--enable-lv2}.
4158
4159 @table @option
4160 @item plugin, p
4161 Specifies the plugin URI. You may need to escape ':'.
4162
4163 @item controls, c
4164 Set the '|' separated list of controls which are zero or more floating point
4165 values that determine the behavior of the loaded plugin (for example delay,
4166 threshold or gain).
4167 If @option{controls} is set to @code{help}, all available controls and
4168 their valid ranges are printed.
4169
4170 @item sample_rate, s
4171 Specify the sample rate, default to 44100. Only used if plugin have
4172 zero inputs.
4173
4174 @item nb_samples, n
4175 Set the number of samples per channel per each output frame, default
4176 is 1024. Only used if plugin have zero inputs.
4177
4178 @item duration, d
4179 Set the minimum duration of the sourced audio. See
4180 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4181 for the accepted syntax.
4182 Note that the resulting duration may be greater than the specified duration,
4183 as the generated audio is always cut at the end of a complete frame.
4184 If not specified, or the expressed duration is negative, the audio is
4185 supposed to be generated forever.
4186 Only used if plugin have zero inputs.
4187 @end table
4188
4189 @subsection Examples
4190
4191 @itemize
4192 @item
4193 Apply bass enhancer plugin from Calf:
4194 @example
4195 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
4196 @end example
4197
4198 @item
4199 Apply vinyl plugin from Calf:
4200 @example
4201 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
4202 @end example
4203
4204 @item
4205 Apply bit crusher plugin from ArtyFX:
4206 @example
4207 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
4208 @end example
4209 @end itemize
4210
4211 @section mcompand
4212 Multiband Compress or expand the audio's dynamic range.
4213
4214 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
4215 This is akin to the crossover of a loudspeaker, and results in flat frequency
4216 response when absent compander action.
4217
4218 It accepts the following parameters:
4219
4220 @table @option
4221 @item args
4222 This option syntax is:
4223 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
4224 For explanation of each item refer to compand filter documentation.
4225 @end table
4226
4227 @anchor{pan}
4228 @section pan
4229
4230 Mix channels with specific gain levels. The filter accepts the output
4231 channel layout followed by a set of channels definitions.
4232
4233 This filter is also designed to efficiently remap the channels of an audio
4234 stream.
4235
4236 The filter accepts parameters of the form:
4237 "@var{l}|@var{outdef}|@var{outdef}|..."
4238
4239 @table @option
4240 @item l
4241 output channel layout or number of channels
4242
4243 @item outdef
4244 output channel specification, of the form:
4245 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
4246
4247 @item out_name
4248 output channel to define, either a channel name (FL, FR, etc.) or a channel
4249 number (c0, c1, etc.)
4250
4251 @item gain
4252 multiplicative coefficient for the channel, 1 leaving the volume unchanged
4253
4254 @item in_name
4255 input channel to use, see out_name for details; it is not possible to mix
4256 named and numbered input channels
4257 @end table
4258
4259 If the `=' in a channel specification is replaced by `<', then the gains for
4260 that specification will be renormalized so that the total is 1, thus
4261 avoiding clipping noise.
4262
4263 @subsection Mixing examples
4264
4265 For example, if you want to down-mix from stereo to mono, but with a bigger
4266 factor for the left channel:
4267 @example
4268 pan=1c|c0=0.9*c0+0.1*c1
4269 @end example
4270
4271 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
4272 7-channels surround:
4273 @example
4274 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
4275 @end example
4276
4277 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
4278 that should be preferred (see "-ac" option) unless you have very specific
4279 needs.
4280
4281 @subsection Remapping examples
4282
4283 The channel remapping will be effective if, and only if:
4284
4285 @itemize
4286 @item gain coefficients are zeroes or ones,
4287 @item only one input per channel output,
4288 @end itemize
4289
4290 If all these conditions are satisfied, the filter will notify the user ("Pure
4291 channel mapping detected"), and use an optimized and lossless method to do the
4292 remapping.
4293
4294 For example, if you have a 5.1 source and want a stereo audio stream by
4295 dropping the extra channels:
4296 @example
4297 pan="stereo| c0=FL | c1=FR"
4298 @end example
4299
4300 Given the same source, you can also switch front left and front right channels
4301 and keep the input channel layout:
4302 @example
4303 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
4304 @end example
4305
4306 If the input is a stereo audio stream, you can mute the front left channel (and
4307 still keep the stereo channel layout) with:
4308 @example
4309 pan="stereo|c1=c1"
4310 @end example
4311
4312 Still with a stereo audio stream input, you can copy the right channel in both
4313 front left and right:
4314 @example
4315 pan="stereo| c0=FR | c1=FR"
4316 @end example
4317
4318 @section replaygain
4319
4320 ReplayGain scanner filter. This filter takes an audio stream as an input and
4321 outputs it unchanged.
4322 At end of filtering it displays @code{track_gain} and @code{track_peak}.
4323
4324 @section resample
4325
4326 Convert the audio sample format, sample rate and channel layout. It is
4327 not meant to be used directly.
4328
4329 @section rubberband
4330 Apply time-stretching and pitch-shifting with librubberband.
4331
4332 To enable compilation of this filter, you need to configure FFmpeg with
4333 @code{--enable-librubberband}.
4334
4335 The filter accepts the following options:
4336
4337 @table @option
4338 @item tempo
4339 Set tempo scale factor.
4340
4341 @item pitch
4342 Set pitch scale factor.
4343
4344 @item transients
4345 Set transients detector.
4346 Possible values are:
4347 @table @var
4348 @item crisp
4349 @item mixed
4350 @item smooth
4351 @end table
4352
4353 @item detector
4354 Set detector.
4355 Possible values are:
4356 @table @var
4357 @item compound
4358 @item percussive
4359 @item soft
4360 @end table
4361
4362 @item phase
4363 Set phase.
4364 Possible values are:
4365 @table @var
4366 @item laminar
4367 @item independent
4368 @end table
4369
4370 @item window
4371 Set processing window size.
4372 Possible values are:
4373 @table @var
4374 @item standard
4375 @item short
4376 @item long
4377 @end table
4378
4379 @item smoothing
4380 Set smoothing.
4381 Possible values are:
4382 @table @var
4383 @item off
4384 @item on
4385 @end table
4386
4387 @item formant
4388 Enable formant preservation when shift pitching.
4389 Possible values are:
4390 @table @var
4391 @item shifted
4392 @item preserved
4393 @end table
4394
4395 @item pitchq
4396 Set pitch quality.
4397 Possible values are:
4398 @table @var
4399 @item quality
4400 @item speed
4401 @item consistency
4402 @end table
4403
4404 @item channels
4405 Set channels.
4406 Possible values are:
4407 @table @var
4408 @item apart
4409 @item together
4410 @end table
4411 @end table
4412
4413 @section sidechaincompress
4414
4415 This filter acts like normal compressor but has the ability to compress
4416 detected signal using second input signal.
4417 It needs two input streams and returns one output stream.
4418 First input stream will be processed depending on second stream signal.
4419 The filtered signal then can be filtered with other filters in later stages of
4420 processing. See @ref{pan} and @ref{amerge} filter.
4421
4422 The filter accepts the following options:
4423
4424 @table @option
4425 @item level_in
4426 Set input gain. Default is 1. Range is between 0.015625 and 64.
4427
4428 @item mode
4429 Set mode of compressor operation. Can be @code{upward} or @code{downward}.
4430 Default is @code{downward}.
4431
4432 @item threshold
4433 If a signal of second stream raises above this level it will affect the gain
4434 reduction of first stream.
4435 By default is 0.125. Range is between 0.00097563 and 1.
4436
4437 @item ratio
4438 Set a ratio about which the signal is reduced. 1:2 means that if the level
4439 raised 4dB above the threshold, it will be only 2dB above after the reduction.
4440 Default is 2. Range is between 1 and 20.
4441
4442 @item attack
4443 Amount of milliseconds the signal has to rise above the threshold before gain
4444 reduction starts. Default is 20. Range is between 0.01 and 2000.
4445
4446 @item release
4447 Amount of milliseconds the signal has to fall below the threshold before
4448 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
4449
4450 @item makeup
4451 Set the amount by how much signal will be amplified after processing.
4452 Default is 1. Range is from 1 to 64.
4453
4454 @item knee
4455 Curve the sharp knee around the threshold to enter gain reduction more softly.
4456 Default is 2.82843. Range is between 1 and 8.
4457
4458 @item link
4459 Choose if the @code{average} level between all channels of side-chain stream
4460 or the louder(@code{maximum}) channel of side-chain stream affects the
4461 reduction. Default is @code{average}.
4462
4463 @item detection
4464 Should the exact signal be taken in case of @code{peak} or an RMS one in case
4465 of @code{rms}. Default is @code{rms} which is mainly smoother.
4466
4467 @item level_sc
4468 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
4469
4470 @item mix
4471 How much to use compressed signal in output. Default is 1.
4472 Range is between 0 and 1.
4473 @end table
4474
4475 @subsection Examples
4476
4477 @itemize
4478 @item
4479 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
4480 depending on the signal of 2nd input and later compressed signal to be
4481 merged with 2nd input:
4482 @example
4483 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
4484 @end example
4485 @end itemize
4486
4487 @section sidechaingate
4488
4489 A sidechain gate acts like a normal (wideband) gate but has the ability to
4490 filter the detected signal before sending it to the gain reduction stage.
4491 Normally a gate uses the full range signal to detect a level above the
4492 threshold.
4493 For example: If you cut all lower frequencies from your sidechain signal
4494 the gate will decrease the volume of your track only if not enough highs
4495 appear. With this technique you are able to reduce the resonation of a
4496 natural drum or remove "rumbling" of muted strokes from a heavily distorted
4497 guitar.
4498 It needs two input streams and returns one output stream.
4499 First input stream will be processed depending on second stream signal.
4500
4501 The filter accepts the following options:
4502
4503 @table @option
4504 @item level_in
4505 Set input level before filtering.
4506 Default is 1. Allowed range is from 0.015625 to 64.
4507
4508 @item mode
4509 Set the mode of operation. Can be @code{upward} or @code{downward}.
4510 Default is @code{downward}. If set to @code{upward} mode, higher parts of signal
4511 will be amplified, expanding dynamic range in upward direction.
4512 Otherwise, in case of @code{downward} lower parts of signal will be reduced.
4513
4514 @item range
4515 Set the level of gain reduction when the signal is below the threshold.
4516 Default is 0.06125. Allowed range is from 0 to 1.
4517 Setting this to 0 disables reduction and then filter behaves like expander.
4518
4519 @item threshold
4520 If a signal rises above this level the gain reduction is released.
4521 Default is 0.125. Allowed range is from 0 to 1.
4522
4523 @item ratio
4524 Set a ratio about which the signal is reduced.
4525 Default is 2. Allowed range is from 1 to 9000.
4526
4527 @item attack
4528 Amount of milliseconds the signal has to rise above the threshold before gain
4529 reduction stops.
4530 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
4531
4532 @item release
4533 Amount of milliseconds the signal has to fall below the threshold before the
4534 reduction is increased again. Default is 250 milliseconds.
4535 Allowed range is from 0.01 to 9000.
4536
4537 @item makeup
4538 Set amount of amplification of signal after processing.
4539 Default is 1. Allowed range is from 1 to 64.
4540
4541 @item knee
4542 Curve the sharp knee around the threshold to enter gain reduction more softly.
4543 Default is 2.828427125. Allowed range is from 1 to 8.
4544
4545 @item detection
4546 Choose if exact signal should be taken for detection or an RMS like one.
4547 Default is rms. Can be peak or rms.
4548
4549 @item link
4550 Choose if the average level between all channels or the louder channel affects
4551 the reduction.
4552 Default is average. Can be average or maximum.
4553
4554 @item level_sc
4555 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
4556 @end table
4557
4558 @section silencedetect
4559
4560 Detect silence in an audio stream.
4561
4562 This filter logs a message when it detects that the input audio volume is less
4563 or equal to a noise tolerance value for a duration greater or equal to the
4564 minimum detected noise duration.
4565
4566 The printed times and duration are expressed in seconds.
4567
4568 The filter accepts the following options:
4569
4570 @table @option
4571 @item noise, n
4572 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
4573 specified value) or amplitude ratio. Default is -60dB, or 0.001.
4574
4575 @item duration, d
4576 Set silence duration until notification (default is 2 seconds).
4577
4578 @item mono, m
4579 Process each channel separately, instead of combined. By default is disabled.
4580 @end table
4581
4582 @subsection Examples
4583
4584 @itemize
4585 @item
4586 Detect 5 seconds of silence with -50dB noise tolerance:
4587 @example
4588 silencedetect=n=-50dB:d=5
4589 @end example
4590
4591 @item
4592 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
4593 tolerance in @file{silence.mp3}:
4594 @example
4595 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
4596 @end example
4597 @end itemize
4598
4599 @section silenceremove
4600
4601 Remove silence from the beginning, middle or end of the audio.
4602
4603 The filter accepts the following options:
4604
4605 @table @option
4606 @item start_periods
4607 This value is used to indicate if audio should be trimmed at beginning of
4608 the audio. A value of zero indicates no silence should be trimmed from the
4609 beginning. When specifying a non-zero value, it trims audio up until it
4610 finds non-silence. Normally, when trimming silence from beginning of audio
4611 the @var{start_periods} will be @code{1} but it can be increased to higher
4612 values to trim all audio up to specific count of non-silence periods.
4613 Default value is @code{0}.
4614
4615 @item start_duration
4616 Specify the amount of time that non-silence must be detected before it stops
4617 trimming audio. By increasing the duration, bursts of noises can be treated
4618 as silence and trimmed off. Default value is @code{0}.
4619
4620 @item start_threshold
4621 This indicates what sample value should be treated as silence. For digital
4622 audio, a value of @code{0} may be fine but for audio recorded from analog,
4623 you may wish to increase the value to account for background noise.
4624 Can be specified in dB (in case "dB" is appended to the specified value)
4625 or amplitude ratio. Default value is @code{0}.
4626
4627 @item start_silence
4628 Specify max duration of silence at beginning that will be kept after
4629 trimming. Default is 0, which is equal to trimming all samples detected
4630 as silence.
4631
4632 @item start_mode
4633 Specify mode of detection of silence end in start of multi-channel audio.
4634 Can be @var{any} or @var{all}. Default is @var{any}.
4635 With @var{any}, any sample that is detected as non-silence will cause
4636 stopped trimming of silence.
4637 With @var{all}, only if all channels are detected as non-silence will cause
4638 stopped trimming of silence.
4639
4640 @item stop_periods
4641 Set the count for trimming silence from the end of audio.
4642 To remove silence from the middle of a file, specify a @var{stop_periods}
4643 that is negative. This value is then treated as a positive value and is
4644 used to indicate the effect should restart processing as specified by
4645 @var{start_periods}, making it suitable for removing periods of silence
4646 in the middle of the audio.
4647 Default value is @code{0}.
4648
4649 @item stop_duration
4650 Specify a duration of silence that must exist before audio is not copied any
4651 more. By specifying a higher duration, silence that is wanted can be left in
4652 the audio.
4653 Default value is @code{0}.
4654
4655 @item stop_threshold
4656 This is the same as @option{start_threshold} but for trimming silence from
4657 the end of audio.
4658 Can be specified in dB (in case "dB" is appended to the specified value)
4659 or amplitude ratio. Default value is @code{0}.
4660
4661 @item stop_silence
4662 Specify max duration of silence at end that will be kept after
4663 trimming. Default is 0, which is equal to trimming all samples detected
4664 as silence.
4665
4666 @item stop_mode
4667 Specify mode of detection of silence start in end of multi-channel audio.
4668 Can be @var{any} or @var{all}. Default is @var{any}.
4669 With @var{any}, any sample that is detected as non-silence will cause
4670 stopped trimming of silence.
4671 With @var{all}, only if all channels are detected as non-silence will cause
4672 stopped trimming of silence.
4673
4674 @item detection
4675 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4676 and works better with digital silence which is exactly 0.
4677 Default value is @code{rms}.
4678
4679 @item window
4680 Set duration in number of seconds used to calculate size of window in number
4681 of samples for detecting silence.
4682 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4683 @end table
4684
4685 @subsection Examples
4686
4687 @itemize
4688 @item
4689 The following example shows how this filter can be used to start a recording
4690 that does not contain the delay at the start which usually occurs between
4691 pressing the record button and the start of the performance:
4692 @example
4693 silenceremove=start_periods=1:start_duration=5:start_threshold=0.02
4694 @end example
4695
4696 @item
4697 Trim all silence encountered from beginning to end where there is more than 1
4698 second of silence in audio:
4699 @example
4700 silenceremove=stop_periods=-1:stop_duration=1:stop_threshold=-90dB
4701 @end example
4702 @end itemize
4703
4704 @section sofalizer
4705
4706 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4707 loudspeakers around the user for binaural listening via headphones (audio
4708 formats up to 9 channels supported).
4709 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4710 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4711 Austrian Academy of Sciences.
4712
4713 To enable compilation of this filter you need to configure FFmpeg with
4714 @code{--enable-libmysofa}.
4715
4716 The filter accepts the following options:
4717
4718 @table @option
4719 @item sofa
4720 Set the SOFA file used for rendering.
4721
4722 @item gain
4723 Set gain applied to audio. Value is in dB. Default is 0.
4724
4725 @item rotation
4726 Set rotation of virtual loudspeakers in deg. Default is 0.
4727
4728 @item elevation
4729 Set elevation of virtual speakers in deg. Default is 0.
4730
4731 @item radius
4732 Set distance in meters between loudspeakers and the listener with near-field
4733 HRTFs. Default is 1.
4734
4735 @item type
4736 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4737 processing audio in time domain which is slow.
4738 @var{freq} is processing audio in frequency domain which is fast.
4739 Default is @var{freq}.
4740
4741 @item speakers
4742 Set custom positions of virtual loudspeakers. Syntax for this option is:
4743 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4744 Each virtual loudspeaker is described with short channel name following with
4745 azimuth and elevation in degrees.
4746 Each virtual loudspeaker description is separated by '|'.
4747 For example to override front left and front right channel positions use:
4748 'speakers=FL 45 15|FR 345 15'.
4749 Descriptions with unrecognised channel names are ignored.
4750
4751 @item lfegain
4752 Set custom gain for LFE channels. Value is in dB. Default is 0.
4753
4754 @item framesize
4755 Set custom frame size in number of samples. Default is 1024.
4756 Allowed range is from 1024 to 96000. Only used if option @samp{type}
4757 is set to @var{freq}.
4758
4759 @item normalize
4760 Should all IRs be normalized upon importing SOFA file.
4761 By default is enabled.
4762
4763 @item interpolate
4764 Should nearest IRs be interpolated with neighbor IRs if exact position
4765 does not match. By default is disabled.
4766
4767 @item minphase
4768 Minphase all IRs upon loading of SOFA file. By default is disabled.
4769
4770 @item anglestep
4771 Set neighbor search angle step. Only used if option @var{interpolate} is enabled.
4772
4773 @item radstep
4774 Set neighbor search radius step. Only used if option @var{interpolate} is enabled.
4775 @end table
4776
4777 @subsection Examples
4778
4779 @itemize
4780 @item
4781 Using ClubFritz6 sofa file:
4782 @example
4783 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4784 @end example
4785
4786 @item
4787 Using ClubFritz12 sofa file and bigger radius with small rotation:
4788 @example
4789 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4790 @end example
4791
4792 @item
4793 Similar as above but with custom speaker positions for front left, front right, back left and back right
4794 and also with custom gain:
4795 @example
4796 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4797 @end example
4798 @end itemize
4799
4800 @section stereotools
4801
4802 This filter has some handy utilities to manage stereo signals, for converting
4803 M/S stereo recordings to L/R signal while having control over the parameters
4804 or spreading the stereo image of master track.
4805
4806 The filter accepts the following options:
4807
4808 @table @option
4809 @item level_in
4810 Set input level before filtering for both channels. Defaults is 1.
4811 Allowed range is from 0.015625 to 64.
4812
4813 @item level_out
4814 Set output level after filtering for both channels. Defaults is 1.
4815 Allowed range is from 0.015625 to 64.
4816
4817 @item balance_in
4818 Set input balance between both channels. Default is 0.
4819 Allowed range is from -1 to 1.
4820
4821 @item balance_out
4822 Set output balance between both channels. Default is 0.
4823 Allowed range is from -1 to 1.
4824
4825 @item softclip
4826 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4827 clipping. Disabled by default.
4828
4829 @item mutel
4830 Mute the left channel. Disabled by default.
4831
4832 @item muter
4833 Mute the right channel. Disabled by default.
4834
4835 @item phasel
4836 Change the phase of the left channel. Disabled by default.
4837
4838 @item phaser
4839 Change the phase of the right channel. Disabled by default.
4840
4841 @item mode
4842 Set stereo mode. Available values are:
4843
4844 @table @samp
4845 @item lr>lr
4846 Left/Right to Left/Right, this is default.
4847
4848 @item lr>ms
4849 Left/Right to Mid/Side.
4850
4851 @item ms>lr
4852 Mid/Side to Left/Right.
4853
4854 @item lr>ll
4855 Left/Right to Left/Left.
4856
4857 @item lr>rr
4858 Left/Right to Right/Right.
4859
4860 @item lr>l+r
4861 Left/Right to Left + Right.
4862
4863 @item lr>rl
4864 Left/Right to Right/Left.
4865
4866 @item ms>ll
4867 Mid/Side to Left/Left.
4868
4869 @item ms>rr
4870 Mid/Side to Right/Right.
4871 @end table
4872
4873 @item slev
4874 Set level of side signal. Default is 1.
4875 Allowed range is from 0.015625 to 64.
4876
4877 @item sbal
4878 Set balance of side signal. Default is 0.
4879 Allowed range is from -1 to 1.
4880
4881 @item mlev
4882 Set level of the middle signal. Default is 1.
4883 Allowed range is from 0.015625 to 64.
4884
4885 @item mpan
4886 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4887
4888 @item base
4889 Set stereo base between mono and inversed channels. Default is 0.
4890 Allowed range is from -1 to 1.
4891
4892 @item delay
4893 Set delay in milliseconds how much to delay left from right channel and
4894 vice versa. Default is 0. Allowed range is from -20 to 20.
4895
4896 @item sclevel
4897 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4898
4899 @item phase
4900 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4901
4902 @item bmode_in, bmode_out
4903 Set balance mode for balance_in/balance_out option.
4904
4905 Can be one of the following:
4906
4907 @table @samp
4908 @item balance
4909 Classic balance mode. Attenuate one channel at time.
4910 Gain is raised up to 1.
4911
4912 @item amplitude
4913 Similar as classic mode above but gain is raised up to 2.
4914
4915 @item power
4916 Equal power distribution, from -6dB to +6dB range.
4917 @end table
4918 @end table
4919
4920 @subsection Examples
4921
4922 @itemize
4923 @item
4924 Apply karaoke like effect:
4925 @example
4926 stereotools=mlev=0.015625
4927 @end example
4928
4929 @item
4930 Convert M/S signal to L/R:
4931 @example
4932 "stereotools=mode=ms>lr"
4933 @end example
4934 @end itemize
4935
4936 @section stereowiden
4937
4938 This filter enhance the stereo effect by suppressing signal common to both
4939 channels and by delaying the signal of left into right and vice versa,
4940 thereby widening the stereo effect.
4941
4942 The filter accepts the following options:
4943
4944 @table @option
4945 @item delay
4946 Time in milliseconds of the delay of left signal into right and vice versa.
4947 Default is 20 milliseconds.
4948
4949 @item feedback
4950 Amount of gain in delayed signal into right and vice versa. Gives a delay
4951 effect of left signal in right output and vice versa which gives widening
4952 effect. Default is 0.3.
4953
4954 @item crossfeed
4955 Cross feed of left into right with inverted phase. This helps in suppressing
4956 the mono. If the value is 1 it will cancel all the signal common to both
4957 channels. Default is 0.3.
4958
4959 @item drymix
4960 Set level of input signal of original channel. Default is 0.8.
4961 @end table
4962
4963 @section superequalizer
4964 Apply 18 band equalizer.
4965
4966 The filter accepts the following options:
4967 @table @option
4968 @item 1b
4969 Set 65Hz band gain.
4970 @item 2b
4971 Set 92Hz band gain.
4972 @item 3b
4973 Set 131Hz band gain.
4974 @item 4b
4975 Set 185Hz band gain.
4976 @item 5b
4977 Set 262Hz band gain.
4978 @item 6b
4979 Set 370Hz band gain.
4980 @item 7b
4981 Set 523Hz band gain.
4982 @item 8b
4983 Set 740Hz band gain.
4984 @item 9b
4985 Set 1047Hz band gain.
4986 @item 10b
4987 Set 1480Hz band gain.
4988 @item 11b
4989 Set 2093Hz band gain.
4990 @item 12b
4991 Set 2960Hz band gain.
4992 @item 13b
4993 Set 4186Hz band gain.
4994 @item 14b
4995 Set 5920Hz band gain.
4996 @item 15b
4997 Set 8372Hz band gain.
4998 @item 16b
4999 Set 11840Hz band gain.
5000 @item 17b
5001 Set 16744Hz band gain.
5002 @item 18b
5003 Set 20000Hz band gain.
5004 @end table
5005
5006 @section surround
5007 Apply audio surround upmix filter.
5008
5009 This filter allows to produce multichannel output from audio stream.
5010
5011 The filter accepts the following options:
5012
5013 @table @option
5014 @item chl_out
5015 Set output channel layout. By default, this is @var{5.1}.
5016
5017 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5018 for the required syntax.
5019
5020 @item chl_in
5021 Set input channel layout. By default, this is @var{stereo}.
5022
5023 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5024 for the required syntax.
5025
5026 @item level_in
5027 Set input volume level. By default, this is @var{1}.
5028
5029 @item level_out
5030 Set output volume level. By default, this is @var{1}.
5031
5032 @item lfe
5033 Enable LFE channel output if output channel layout has it. By default, this is enabled.
5034
5035 @item lfe_low
5036 Set LFE low cut off frequency. By default, this is @var{128} Hz.
5037
5038 @item lfe_high
5039 Set LFE high cut off frequency. By default, this is @var{256} Hz.
5040
5041 @item lfe_mode
5042 Set LFE mode, can be @var{add} or @var{sub}. Default is @var{add}.
5043 In @var{add} mode, LFE channel is created from input audio and added to output.
5044 In @var{sub} mode, LFE channel is created from input audio and added to output but
5045 also all non-LFE output channels are subtracted with output LFE channel.
5046
5047 @item angle
5048 Set angle of stereo surround transform, Allowed range is from @var{0} to @var{360}.
5049 Default is @var{90}.
5050
5051 @item fc_in
5052 Set front center input volume. By default, this is @var{1}.
5053
5054 @item fc_out
5055 Set front center output volume. By default, this is @var{1}.
5056
5057 @item fl_in
5058 Set front left input volume. By default, this is @var{1}.
5059
5060 @item fl_out
5061 Set front left output volume. By default, this is @var{1}.
5062
5063 @item fr_in
5064 Set front right input volume. By default, this is @var{1}.
5065
5066 @item fr_out
5067 Set front right output volume. By default, this is @var{1}.
5068
5069 @item sl_in
5070 Set side left input volume. By default, this is @var{1}.
5071
5072 @item sl_out
5073 Set side left output volume. By default, this is @var{1}.
5074
5075 @item sr_in
5076 Set side right input volume. By default, this is @var{1}.
5077
5078 @item sr_out
5079 Set side right output volume. By default, this is @var{1}.
5080
5081 @item bl_in
5082 Set back left input volume. By default, this is @var{1}.
5083
5084 @item bl_out
5085 Set back left output volume. By default, this is @var{1}.
5086
5087 @item br_in
5088 Set back right input volume. By default, this is @var{1}.
5089
5090 @item br_out
5091 Set back right output volume. By default, this is @var{1}.
5092
5093 @item bc_in
5094 Set back center input volume. By default, this is @var{1}.
5095
5096 @item bc_out
5097 Set back center output volume. By default, this is @var{1}.
5098
5099 @item lfe_in
5100 Set LFE input volume. By default, this is @var{1}.
5101
5102 @item lfe_out
5103 Set LFE output volume. By default, this is @var{1}.
5104
5105 @item allx
5106 Set spread usage of stereo image across X axis for all channels.
5107
5108 @item ally
5109 Set spread usage of stereo image across Y axis for all channels.
5110
5111 @item fcx, flx, frx, blx, brx, slx, srx, bcx
5112 Set spread usage of stereo image across X axis for each channel.
5113
5114 @item fcy, fly, fry, bly, bry, sly, sry, bcy
5115 Set spread usage of stereo image across Y axis for each channel.
5116
5117 @item win_size
5118 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
5119
5120 @item win_func
5121 Set window function.
5122
5123 It accepts the following values:
5124 @table @samp
5125 @item rect
5126 @item bartlett
5127 @item hann, hanning
5128 @item hamming
5129 @item blackman
5130 @item welch
5131 @item flattop
5132 @item bharris
5133 @item bnuttall
5134 @item bhann
5135 @item sine
5136 @item nuttall
5137 @item lanczos
5138 @item gauss
5139 @item tukey
5140 @item dolph
5141 @item cauchy
5142 @item parzen
5143 @item poisson
5144 @item bohman
5145 @end table
5146 Default is @code{hann}.
5147
5148 @item overlap
5149 Set window overlap. If set to 1, the recommended overlap for selected
5150 window function will be picked. Default is @code{0.5}.
5151 @end table
5152
5153 @section treble, highshelf
5154
5155 Boost or cut treble (upper) frequencies of the audio using a two-pole
5156 shelving filter with a response similar to that of a standard
5157 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
5158
5159 The filter accepts the following options:
5160
5161 @table @option
5162 @item gain, g
5163 Give the gain at whichever is the lower of ~22 kHz and the
5164 Nyquist frequency. Its useful range is about -20 (for a large cut)
5165 to +20 (for a large boost). Beware of clipping when using a positive gain.
5166
5167 @item frequency, f
5168 Set the filter's central frequency and so can be used
5169 to extend or reduce the frequency range to be boosted or cut.
5170 The default value is @code{3000} Hz.
5171
5172 @item width_type, t
5173 Set method to specify band-width of filter.
5174 @table @option
5175 @item h
5176 Hz
5177 @item q
5178 Q-Factor
5179 @item o
5180 octave
5181 @item s
5182 slope
5183 @item k
5184 kHz
5185 @end table
5186
5187 @item width, w
5188 Determine how steep is the filter's shelf transition.
5189
5190 @item mix, m
5191 How much to use filtered signal in output. Default is 1.
5192 Range is between 0 and 1.
5193
5194 @item channels, c
5195 Specify which channels to filter, by default all available are filtered.
5196 @end table
5197
5198 @subsection Commands
5199
5200 This filter supports the following commands:
5201 @table @option
5202 @item frequency, f
5203 Change treble frequency.
5204 Syntax for the command is : "@var{frequency}"
5205
5206 @item width_type, t
5207 Change treble width_type.
5208 Syntax for the command is : "@var{width_type}"
5209
5210 @item width, w
5211 Change treble width.
5212 Syntax for the command is : "@var{width}"
5213
5214 @item gain, g
5215 Change treble gain.
5216 Syntax for the command is : "@var{gain}"
5217
5218 @item mix, m
5219 Change treble mix.
5220 Syntax for the command is : "@var{mix}"
5221 @end table
5222
5223 @section tremolo
5224
5225 Sinusoidal amplitude modulation.
5226
5227 The filter accepts the following options:
5228
5229 @table @option
5230 @item f
5231 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
5232 (20 Hz or lower) will result in a tremolo effect.
5233 This filter may also be used as a ring modulator by specifying
5234 a modulation frequency higher than 20 Hz.
5235 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5236
5237 @item d
5238 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5239 Default value is 0.5.
5240 @end table
5241
5242 @section vibrato
5243
5244 Sinusoidal phase modulation.
5245
5246 The filter accepts the following options:
5247
5248 @table @option
5249 @item f
5250 Modulation frequency in Hertz.
5251 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
5252
5253 @item d
5254 Depth of modulation as a percentage. Range is 0.0 - 1.0.
5255 Default value is 0.5.
5256 @end table
5257
5258 @section volume
5259
5260 Adjust the input audio volume.
5261
5262 It accepts the following parameters:
5263 @table @option
5264
5265 @item volume
5266 Set audio volume expression.
5267
5268 Output values are clipped to the maximum value.
5269
5270 The output audio volume is given by the relation:
5271 @example
5272 @var{output_volume} = @var{volume} * @var{input_volume}
5273 @end example
5274
5275 The default value for @var{volume} is "1.0".
5276
5277 @item precision
5278 This parameter represents the mathematical precision.
5279
5280 It determines which input sample formats will be allowed, which affects the
5281 precision of the volume scaling.
5282
5283 @table @option
5284 @item fixed
5285 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
5286 @item float
5287 32-bit floating-point; this limits input sample format to FLT. (default)
5288 @item double
5289 64-bit floating-point; this limits input sample format to DBL.
5290 @end table
5291
5292 @item replaygain
5293 Choose the behaviour on encountering ReplayGain side data in input frames.
5294
5295 @table @option
5296 @item drop
5297 Remove ReplayGain side data, ignoring its contents (the default).
5298
5299 @item ignore
5300 Ignore ReplayGain side data, but leave it in the frame.
5301
5302 @item track
5303 Prefer the track gain, if present.
5304
5305 @item album
5306 Prefer the album gain, if present.
5307 @end table
5308
5309 @item replaygain_preamp
5310 Pre-amplification gain in dB to apply to the selected replaygain gain.
5311
5312 Default value for @var{replaygain_preamp} is 0.0.
5313
5314 @item eval
5315 Set when the volume expression is evaluated.
5316
5317 It accepts the following values:
5318 @table @samp
5319 @item once
5320 only evaluate expression once during the filter initialization, or
5321 when the @samp{volume} command is sent
5322
5323 @item frame
5324 evaluate expression for each incoming frame
5325 @end table
5326
5327 Default value is @samp{once}.
5328 @end table
5329
5330 The volume expression can contain the following parameters.
5331
5332 @table @option
5333 @item n
5334 frame number (starting at zero)
5335 @item nb_channels
5336 number of channels
5337 @item nb_consumed_samples
5338 number of samples consumed by the filter
5339 @item nb_samples
5340 number of samples in the current frame
5341 @item pos
5342 original frame position in the file
5343 @item pts
5344 frame PTS
5345 @item sample_rate
5346 sample rate
5347 @item startpts
5348 PTS at start of stream
5349 @item startt
5350 time at start of stream
5351 @item t
5352 frame time
5353 @item tb
5354 timestamp timebase
5355 @item volume
5356 last set volume value
5357 @end table
5358
5359 Note that when @option{eval} is set to @samp{once} only the
5360 @var{sample_rate} and @var{tb} variables are available, all other
5361 variables will evaluate to NAN.
5362
5363 @subsection Commands
5364
5365 This filter supports the following commands:
5366 @table @option
5367 @item volume
5368 Modify the volume expression.
5369 The command accepts the same syntax of the corresponding option.
5370
5371 If the specified expression is not valid, it is kept at its current
5372 value.
5373 @item replaygain_noclip
5374 Prevent clipping by limiting the gain applied.
5375
5376 Default value for @var{replaygain_noclip} is 1.
5377
5378 @end table
5379
5380 @subsection Examples
5381
5382 @itemize
5383 @item
5384 Halve the input audio volume:
5385 @example
5386 volume=volume=0.5
5387 volume=volume=1/2
5388 volume=volume=-6.0206dB
5389 @end example
5390
5391 In all the above example the named key for @option{volume} can be
5392 omitted, for example like in:
5393 @example
5394 volume=0.5
5395 @end example
5396
5397 @item
5398 Increase input audio power by 6 decibels using fixed-point precision:
5399 @example
5400 volume=volume=6dB:precision=fixed
5401 @end example
5402
5403 @item
5404 Fade volume after time 10 with an annihilation period of 5 seconds:
5405 @example
5406 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
5407 @end example
5408 @end itemize
5409
5410 @section volumedetect
5411
5412 Detect the volume of the input video.
5413
5414 The filter has no parameters. The input is not modified. Statistics about
5415 the volume will be printed in the log when the input stream end is reached.
5416
5417 In particular it will show the mean volume (root mean square), maximum
5418 volume (on a per-sample basis), and the beginning of a histogram of the
5419 registered volume values (from the maximum value to a cumulated 1/1000 of
5420 the samples).
5421
5422 All volumes are in decibels relative to the maximum PCM value.
5423
5424 @subsection Examples
5425
5426 Here is an excerpt of the output:
5427 @example
5428 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
5429 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
5430 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
5431 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
5432 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
5433 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
5434 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
5435 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
5436 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
5437 @end example
5438
5439 It means that:
5440 @itemize
5441 @item
5442 The mean square energy is approximately -27 dB, or 10^-2.7.
5443 @item
5444 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
5445 @item
5446 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
5447 @end itemize
5448
5449 In other words, raising the volume by +4 dB does not cause any clipping,
5450 raising it by +5 dB causes clipping for 6 samples, etc.
5451
5452 @c man end AUDIO FILTERS
5453
5454 @chapter Audio Sources
5455 @c man begin AUDIO SOURCES
5456
5457 Below is a description of the currently available audio sources.
5458
5459 @section abuffer
5460
5461 Buffer audio frames, and make them available to the filter chain.
5462
5463 This source is mainly intended for a programmatic use, in particular
5464 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
5465
5466 It accepts the following parameters:
5467 @table @option
5468
5469 @item time_base
5470 The timebase which will be used for timestamps of submitted frames. It must be
5471 either a floating-point number or in @var{numerator}/@var{denominator} form.
5472
5473 @item sample_rate
5474 The sample rate of the incoming audio buffers.
5475
5476 @item sample_fmt
5477 The sample format of the incoming audio buffers.
5478 Either a sample format name or its corresponding integer representation from
5479 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
5480
5481 @item channel_layout
5482 The channel layout of the incoming audio buffers.
5483 Either a channel layout name from channel_layout_map in
5484 @file{libavutil/channel_layout.c} or its corresponding integer representation
5485 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
5486
5487 @item channels
5488 The number of channels of the incoming audio buffers.
5489 If both @var{channels} and @var{channel_layout} are specified, then they
5490 must be consistent.
5491
5492 @end table
5493
5494 @subsection Examples
5495
5496 @example
5497 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
5498 @end example
5499
5500 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
5501 Since the sample format with name "s16p" corresponds to the number
5502 6 and the "stereo" channel layout corresponds to the value 0x3, this is
5503 equivalent to:
5504 @example
5505 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
5506 @end example
5507
5508 @section aevalsrc
5509
5510 Generate an audio signal specified by an expression.
5511
5512 This source accepts in input one or more expressions (one for each
5513 channel), which are evaluated and used to generate a corresponding
5514 audio signal.
5515
5516 This source accepts the following options:
5517
5518 @table @option
5519 @item exprs
5520 Set the '|'-separated expressions list for each separate channel. In case the
5521 @option{channel_layout} option is not specified, the selected channel layout
5522 depends on the number of provided expressions. Otherwise the last
5523 specified expression is applied to the remaining output channels.
5524
5525 @item channel_layout, c
5526 Set the channel layout. The number of channels in the specified layout
5527 must be equal to the number of specified expressions.
5528
5529 @item duration, d
5530 Set the minimum duration of the sourced audio. See
5531 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
5532 for the accepted syntax.
5533 Note that the resulting duration may be greater than the specified
5534 duration, as the generated audio is always cut at the end of a
5535 complete frame.
5536
5537 If not specified, or the expressed duration is negative, the audio is
5538 supposed to be generated forever.
5539
5540 @item nb_samples, n
5541 Set the number of samples per channel per each output frame,
5542 default to 1024.
5543
5544 @item sample_rate, s
5545 Specify the sample rate, default to 44100.
5546 @end table
5547
5548 Each expression in @var{exprs} can contain the following constants:
5549
5550 @table @option
5551 @item n
5552 number of the evaluated sample, starting from 0
5553
5554 @item t
5555 time of the evaluated sample expressed in seconds, starting from 0
5556
5557 @item s
5558 sample rate
5559
5560 @end table
5561
5562 @subsection Examples
5563
5564 @itemize
5565 @item
5566 Generate silence:
5567 @example
5568 aevalsrc=0
5569 @end example
5570
5571 @item
5572 Generate a sin signal with frequency of 440 Hz, set sample rate to
5573 8000 Hz:
5574 @example
5575 aevalsrc="sin(440*2*PI*t):s=8000"
5576 @end example
5577
5578 @item
5579 Generate a two channels signal, specify the channel layout (Front
5580 Center + Back Center) explicitly:
5581 @example
5582 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
5583 @end example
5584
5585 @item
5586 Generate white noise:
5587 @example
5588 aevalsrc="-2+random(0)"
5589 @end example
5590
5591 @item
5592 Generate an amplitude modulated signal:
5593 @example
5594 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
5595 @end example
5596
5597 @item
5598 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
5599 @example
5600 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
5601 @end example
5602
5603 @end itemize
5604
5605 @section anullsrc
5606
5607 The null audio source, return unprocessed audio frames. It is mainly useful
5608 as a template and to be employed in analysis / debugging tools, or as
5609 the source for filters which ignore the input data (for example the sox
5610 synth filter).
5611
5612 This source accepts the following options:
5613
5614 @table @option
5615
5616 @item channel_layout, cl
5617
5618 Specifies the channel layout, and can be either an integer or a string
5619 representing a channel layout. The default value of @var{channel_layout}
5620 is "stereo".
5621
5622 Check the channel_layout_map definition in
5623 @file{libavutil/channel_layout.c} for the mapping between strings and
5624 channel layout values.
5625
5626 @item sample_rate, r
5627 Specifies the sample rate, and defaults to 44100.
5628
5629 @item nb_samples, n
5630 Set the number of samples per requested frames.
5631
5632 @end table
5633
5634 @subsection Examples
5635
5636 @itemize
5637 @item
5638 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
5639 @example
5640 anullsrc=r=48000:cl=4
5641 @end example
5642
5643 @item
5644 Do the same operation with a more obvious syntax:
5645 @example
5646 anullsrc=r=48000:cl=mono
5647 @end example
5648 @end itemize
5649
5650 All the parameters need to be explicitly defined.
5651
5652 @section flite
5653
5654 Synthesize a voice utterance using the libflite library.
5655
5656 To enable compilation of this filter you need to configure FFmpeg with
5657 @code{--enable-libflite}.
5658
5659 Note that versions of the flite library prior to 2.0 are not thread-safe.
5660
5661 The filter accepts the following options:
5662
5663 @table @option
5664
5665 @item list_voices
5666 If set to 1, list the names of the available voices and exit
5667 immediately. Default value is 0.
5668
5669 @item nb_samples, n
5670 Set the maximum number of samples per frame. Default value is 512.
5671
5672 @item textfile
5673 Set the filename containing the text to speak.
5674
5675 @item text
5676 Set the text to speak.
5677
5678 @item voice, v
5679 Set the voice to use for the speech synthesis. Default value is
5680 @code{kal}. See also the @var{list_voices} option.
5681 @end table
5682
5683 @subsection Examples
5684
5685 @itemize
5686 @item
5687 Read from file @file{speech.txt}, and synthesize the text using the
5688 standard flite voice:
5689 @example
5690 flite=textfile=speech.txt
5691 @end example
5692
5693 @item
5694 Read the specified text selecting the @code{slt} voice:
5695 @example
5696 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5697 @end example
5698
5699 @item
5700 Input text to ffmpeg:
5701 @example
5702 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
5703 @end example
5704
5705 @item
5706 Make @file{ffplay} speak the specified text, using @code{flite} and
5707 the @code{lavfi} device:
5708 @example
5709 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
5710 @end example
5711 @end itemize
5712
5713 For more information about libflite, check:
5714 @url{http://www.festvox.org/flite/}
5715
5716 @section anoisesrc
5717
5718 Generate a noise audio signal.
5719
5720 The filter accepts the following options:
5721
5722 @table @option
5723 @item sample_rate, r
5724 Specify the sample rate. Default value is 48000 Hz.
5725
5726 @item amplitude, a
5727 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
5728 is 1.0.
5729
5730 @item duration, d
5731 Specify the duration of the generated audio stream. Not specifying this option
5732 results in noise with an infinite length.
5733
5734 @item color, colour, c
5735 Specify the color of noise. Available noise colors are white, pink, brown,
5736 blue and violet. Default color is white.
5737
5738 @item seed, s
5739 Specify a value used to seed the PRNG.
5740
5741 @item nb_samples, n
5742 Set the number of samples per each output frame, default is 1024.
5743 @end table
5744
5745 @subsection Examples
5746
5747 @itemize
5748
5749 @item
5750 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
5751 @example
5752 anoisesrc=d=60:c=pink:r=44100:a=0.5
5753 @end example
5754 @end itemize
5755
5756 @section hilbert
5757
5758 Generate odd-tap Hilbert transform FIR coefficients.
5759
5760 The resulting stream can be used with @ref{afir} filter for phase-shifting
5761 the signal by 90 degrees.
5762
5763 This is used in many matrix coding schemes and for analytic signal generation.
5764 The process is often written as a multiplication by i (or j), the imaginary unit.
5765
5766 The filter accepts the following options:
5767
5768 @table @option
5769
5770 @item sample_rate, s
5771 Set sample rate, default is 44100.
5772
5773 @item taps, t
5774 Set length of FIR filter, default is 22051.
5775
5776 @item nb_samples, n
5777 Set number of samples per each frame.
5778
5779 @item win_func, w
5780 Set window function to be used when generating FIR coefficients.
5781 @end table
5782
5783 @section sinc
5784
5785 Generate a sinc kaiser-windowed low-pass, high-pass, band-pass, or band-reject FIR coefficients.
5786
5787 The resulting stream can be used with @ref{afir} filter for filtering the audio signal.
5788
5789 The filter accepts the following options:
5790
5791 @table @option
5792 @item sample_rate, r
5793 Set sample rate, default is 44100.
5794
5795 @item nb_samples, n
5796 Set number of samples per each frame. Default is 1024.
5797
5798 @item hp
5799 Set high-pass frequency. Default is 0.
5800
5801 @item lp
5802 Set low-pass frequency. Default is 0.
5803 If high-pass frequency is lower than low-pass frequency and low-pass frequency
5804 is higher than 0 then filter will create band-pass filter coefficients,
5805 otherwise band-reject filter coefficients.
5806
5807 @item phase
5808 Set filter phase response. Default is 50. Allowed range is from 0 to 100.
5809
5810 @item beta
5811 Set Kaiser window beta.
5812
5813 @item att
5814 Set stop-band attenuation. Default is 120dB, allowed range is from 40 to 180 dB.
5815
5816 @item round
5817 Enable rounding, by default is disabled.
5818
5819 @item hptaps
5820 Set number of taps for high-pass filter.
5821
5822 @item lptaps
5823 Set number of taps for low-pass filter.
5824 @end table
5825
5826 @section sine
5827
5828 Generate an audio signal made of a sine wave with amplitude 1/8.
5829
5830 The audio signal is bit-exact.
5831
5832 The filter accepts the following options:
5833
5834 @table @option
5835
5836 @item frequency, f
5837 Set the carrier frequency. Default is 440 Hz.
5838
5839 @item beep_factor, b
5840 Enable a periodic beep every second with frequency @var{beep_factor} times
5841 the carrier frequency. Default is 0, meaning the beep is disabled.
5842
5843 @item sample_rate, r
5844 Specify the sample rate, default is 44100.
5845
5846 @item duration, d
5847 Specify the duration of the generated audio stream.
5848
5849 @item samples_per_frame
5850 Set the number of samples per output frame.
5851
5852 The expression can contain the following constants:
5853
5854 @table @option
5855 @item n
5856 The (sequential) number of the output audio frame, starting from 0.
5857
5858 @item pts
5859 The PTS (Presentation TimeStamp) of the output audio frame,
5860 expressed in @var{TB} units.
5861
5862 @item t
5863 The PTS of the output audio frame, expressed in seconds.
5864
5865 @item TB
5866 The timebase of the output audio frames.
5867 @end table
5868
5869 Default is @code{1024}.
5870 @end table
5871
5872 @subsection Examples
5873
5874 @itemize
5875
5876 @item
5877 Generate a simple 440 Hz sine wave:
5878 @example
5879 sine
5880 @end example
5881
5882 @item
5883 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5884 @example
5885 sine=220:4:d=5
5886 sine=f=220:b=4:d=5
5887 sine=frequency=220:beep_factor=4:duration=5
5888 @end example
5889
5890 @item
5891 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5892 pattern:
5893 @example
5894 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5895 @end example
5896 @end itemize
5897
5898 @c man end AUDIO SOURCES
5899
5900 @chapter Audio Sinks
5901 @c man begin AUDIO SINKS
5902
5903 Below is a description of the currently available audio sinks.
5904
5905 @section abuffersink
5906
5907 Buffer audio frames, and make them available to the end of filter chain.
5908
5909 This sink is mainly intended for programmatic use, in particular
5910 through the interface defined in @file{libavfilter/buffersink.h}
5911 or the options system.
5912
5913 It accepts a pointer to an AVABufferSinkContext structure, which
5914 defines the incoming buffers' formats, to be passed as the opaque
5915 parameter to @code{avfilter_init_filter} for initialization.
5916 @section anullsink
5917
5918 Null audio sink; do absolutely nothing with the input audio. It is
5919 mainly useful as a template and for use in analysis / debugging
5920 tools.
5921
5922 @c man end AUDIO SINKS
5923
5924 @chapter Video Filters
5925 @c man begin VIDEO FILTERS
5926
5927 When you configure your FFmpeg build, you can disable any of the
5928 existing filters using @code{--disable-filters}.
5929 The configure output will show the video filters included in your
5930 build.
5931
5932 Below is a description of the currently available video filters.
5933
5934 @section addroi
5935
5936 Mark a region of interest in a video frame.
5937
5938 The frame data is passed through unchanged, but metadata is attached
5939 to the frame indicating regions of interest which can affect the
5940 behaviour of later encoding.  Multiple regions can be marked by
5941 applying the filter multiple times.
5942
5943 @table @option
5944 @item x
5945 Region distance in pixels from the left edge of the frame.
5946 @item y
5947 Region distance in pixels from the top edge of the frame.
5948 @item w
5949 Region width in pixels.
5950 @item h
5951 Region height in pixels.
5952
5953 The parameters @var{x}, @var{y}, @var{w} and @var{h} are expressions,
5954 and may contain the following variables:
5955 @table @option
5956 @item iw
5957 Width of the input frame.
5958 @item ih
5959 Height of the input frame.
5960 @end table
5961
5962 @item qoffset
5963 Quantisation offset to apply within the region.
5964
5965 This must be a real value in the range -1 to +1.  A value of zero
5966 indicates no quality change.  A negative value asks for better quality
5967 (less quantisation), while a positive value asks for worse quality
5968 (greater quantisation).
5969
5970 The range is calibrated so that the extreme values indicate the
5971 largest possible offset - if the rest of the frame is encoded with the
5972 worst possible quality, an offset of -1 indicates that this region
5973 should be encoded with the best possible quality anyway.  Intermediate
5974 values are then interpolated in some codec-dependent way.
5975
5976 For example, in 10-bit H.264 the quantisation parameter varies between
5977 -12 and 51.  A typical qoffset value of -1/10 therefore indicates that
5978 this region should be encoded with a QP around one-tenth of the full
5979 range better than the rest of the frame.  So, if most of the frame
5980 were to be encoded with a QP of around 30, this region would get a QP
5981 of around 24 (an offset of approximately -1/10 * (51 - -12) = -6.3).
5982 An extreme value of -1 would indicate that this region should be
5983 encoded with the best possible quality regardless of the treatment of
5984 the rest of the frame - that is, should be encoded at a QP of -12.
5985 @item clear
5986 If set to true, remove any existing regions of interest marked on the
5987 frame before adding the new one.
5988 @end table
5989
5990 @subsection Examples
5991
5992 @itemize
5993 @item
5994 Mark the centre quarter of the frame as interesting.
5995 @example
5996 addroi=iw/4:ih/4:iw/2:ih/2:-1/10
5997 @end example
5998 @item
5999 Mark the 100-pixel-wide region on the left edge of the frame as very
6000 uninteresting (to be encoded at much lower quality than the rest of
6001 the frame).
6002 @example
6003 addroi=0:0:100:ih:+1/5
6004 @end example
6005 @end itemize
6006
6007 @section alphaextract
6008
6009 Extract the alpha component from the input as a grayscale video. This
6010 is especially useful with the @var{alphamerge} filter.
6011
6012 @section alphamerge
6013
6014 Add or replace the alpha component of the primary input with the
6015 grayscale value of a second input. This is intended for use with
6016 @var{alphaextract} to allow the transmission or storage of frame
6017 sequences that have alpha in a format that doesn't support an alpha
6018 channel.
6019
6020 For example, to reconstruct full frames from a normal YUV-encoded video
6021 and a separate video created with @var{alphaextract}, you might use:
6022 @example
6023 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
6024 @end example
6025
6026 Since this filter is designed for reconstruction, it operates on frame
6027 sequences without considering timestamps, and terminates when either
6028 input reaches end of stream. This will cause problems if your encoding
6029 pipeline drops frames. If you're trying to apply an image as an
6030 overlay to a video stream, consider the @var{overlay} filter instead.
6031
6032 @section amplify
6033
6034 Amplify differences between current pixel and pixels of adjacent frames in
6035 same pixel location.
6036
6037 This filter accepts the following options:
6038
6039 @table @option
6040 @item radius
6041 Set frame radius. Default is 2. Allowed range is from 1 to 63.
6042 For example radius of 3 will instruct filter to calculate average of 7 frames.
6043
6044 @item factor
6045 Set factor to amplify difference. Default is 2. Allowed range is from 0 to 65535.
6046
6047 @item threshold
6048 Set threshold for difference amplification. Any difference greater or equal to
6049 this value will not alter source pixel. Default is 10.
6050 Allowed range is from 0 to 65535.
6051
6052 @item tolerance
6053 Set tolerance for difference amplification. Any difference lower to
6054 this value will not alter source pixel. Default is 0.
6055 Allowed range is from 0 to 65535.
6056
6057 @item low
6058 Set lower limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6059 This option controls maximum possible value that will decrease source pixel value.
6060
6061 @item high
6062 Set high limit for changing source pixel. Default is 65535. Allowed range is from 0 to 65535.
6063 This option controls maximum possible value that will increase source pixel value.
6064
6065 @item planes
6066 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
6067 @end table
6068
6069 @section ass
6070
6071 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
6072 and libavformat to work. On the other hand, it is limited to ASS (Advanced
6073 Substation Alpha) subtitles files.
6074
6075 This filter accepts the following option in addition to the common options from
6076 the @ref{subtitles} filter:
6077
6078 @table @option
6079 @item shaping
6080 Set the shaping engine
6081
6082 Available values are:
6083 @table @samp
6084 @item auto
6085 The default libass shaping engine, which is the best available.
6086 @item simple
6087 Fast, font-agnostic shaper that can do only substitutions
6088 @item complex
6089 Slower shaper using OpenType for substitutions and positioning
6090 @end table
6091
6092 The default is @code{auto}.
6093 @end table
6094
6095 @section atadenoise
6096 Apply an Adaptive Temporal Averaging Denoiser to the video input.
6097
6098 The filter accepts the following options:
6099
6100 @table @option
6101 @item 0a
6102 Set threshold A for 1st plane. Default is 0.02.
6103 Valid range is 0 to 0.3.
6104
6105 @item 0b
6106 Set threshold B for 1st plane. Default is 0.04.
6107 Valid range is 0 to 5.
6108
6109 @item 1a
6110 Set threshold A for 2nd plane. Default is 0.02.
6111 Valid range is 0 to 0.3.
6112
6113 @item 1b
6114 Set threshold B for 2nd plane. Default is 0.04.
6115 Valid range is 0 to 5.
6116
6117 @item 2a
6118 Set threshold A for 3rd plane. Default is 0.02.
6119 Valid range is 0 to 0.3.
6120
6121 @item 2b
6122 Set threshold B for 3rd plane. Default is 0.04.
6123 Valid range is 0 to 5.
6124
6125 Threshold A is designed to react on abrupt changes in the input signal and
6126 threshold B is designed to react on continuous changes in the input signal.
6127
6128 @item s
6129 Set number of frames filter will use for averaging. Default is 9. Must be odd
6130 number in range [5, 129].
6131
6132 @item p
6133 Set what planes of frame filter will use for averaging. Default is all.
6134 @end table
6135
6136 @section avgblur
6137
6138 Apply average blur filter.
6139
6140 The filter accepts the following options:
6141
6142 @table @option
6143 @item sizeX
6144 Set horizontal radius size.
6145
6146 @item planes
6147 Set which planes to filter. By default all planes are filtered.
6148
6149 @item sizeY
6150 Set vertical radius size, if zero it will be same as @code{sizeX}.
6151 Default is @code{0}.
6152 @end table
6153
6154 @section bbox
6155
6156 Compute the bounding box for the non-black pixels in the input frame
6157 luminance plane.
6158
6159 This filter computes the bounding box containing all the pixels with a
6160 luminance value greater than the minimum allowed value.
6161 The parameters describing the bounding box are printed on the filter
6162 log.
6163
6164 The filter accepts the following option:
6165
6166 @table @option
6167 @item min_val
6168 Set the minimal luminance value. Default is @code{16}.
6169 @end table
6170
6171 @section bitplanenoise
6172
6173 Show and measure bit plane noise.
6174
6175 The filter accepts the following options:
6176
6177 @table @option
6178 @item bitplane
6179 Set which plane to analyze. Default is @code{1}.
6180
6181 @item filter
6182 Filter out noisy pixels from @code{bitplane} set above.
6183 Default is disabled.
6184 @end table
6185
6186 @section blackdetect
6187
6188 Detect video intervals that are (almost) completely black. Can be
6189 useful to detect chapter transitions, commercials, or invalid
6190 recordings. Output lines contains the time for the start, end and
6191 duration of the detected black interval expressed in seconds.
6192
6193 In order to display the output lines, you need to set the loglevel at
6194 least to the AV_LOG_INFO value.
6195
6196 The filter accepts the following options:
6197
6198 @table @option
6199 @item black_min_duration, d
6200 Set the minimum detected black duration expressed in seconds. It must
6201 be a non-negative floating point number.
6202
6203 Default value is 2.0.
6204
6205 @item picture_black_ratio_th, pic_th
6206 Set the threshold for considering a picture "black".
6207 Express the minimum value for the ratio:
6208 @example
6209 @var{nb_black_pixels} / @var{nb_pixels}
6210 @end example
6211
6212 for which a picture is considered black.
6213 Default value is 0.98.
6214
6215 @item pixel_black_th, pix_th
6216 Set the threshold for considering a pixel "black".
6217
6218 The threshold expresses the maximum pixel luminance value for which a
6219 pixel is considered "black". The provided value is scaled according to
6220 the following equation:
6221 @example
6222 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
6223 @end example
6224
6225 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
6226 the input video format, the range is [0-255] for YUV full-range
6227 formats and [16-235] for YUV non full-range formats.
6228
6229 Default value is 0.10.
6230 @end table
6231
6232 The following example sets the maximum pixel threshold to the minimum
6233 value, and detects only black intervals of 2 or more seconds:
6234 @example
6235 blackdetect=d=2:pix_th=0.00
6236 @end example
6237
6238 @section blackframe
6239
6240 Detect frames that are (almost) completely black. Can be useful to
6241 detect chapter transitions or commercials. Output lines consist of
6242 the frame number of the detected frame, the percentage of blackness,
6243 the position in the file if known or -1 and the timestamp in seconds.
6244
6245 In order to display the output lines, you need to set the loglevel at
6246 least to the AV_LOG_INFO value.
6247
6248 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
6249 The value represents the percentage of pixels in the picture that
6250 are below the threshold value.
6251
6252 It accepts the following parameters:
6253
6254 @table @option
6255
6256 @item amount
6257 The percentage of the pixels that have to be below the threshold; it defaults to
6258 @code{98}.
6259
6260 @item threshold, thresh
6261 The threshold below which a pixel value is considered black; it defaults to
6262 @code{32}.
6263
6264 @end table
6265
6266 @section blend, tblend
6267
6268 Blend two video frames into each other.
6269
6270 The @code{blend} filter takes two input streams and outputs one
6271 stream, the first input is the "top" layer and second input is
6272 "bottom" layer.  By default, the output terminates when the longest input terminates.
6273
6274 The @code{tblend} (time blend) filter takes two consecutive frames
6275 from one single stream, and outputs the result obtained by blending
6276 the new frame on top of the old frame.
6277
6278 A description of the accepted options follows.
6279
6280 @table @option
6281 @item c0_mode
6282 @item c1_mode
6283 @item c2_mode
6284 @item c3_mode
6285 @item all_mode
6286 Set blend mode for specific pixel component or all pixel components in case
6287 of @var{all_mode}. Default value is @code{normal}.
6288
6289 Available values for component modes are:
6290 @table @samp
6291 @item addition
6292 @item grainmerge
6293 @item and
6294 @item average
6295 @item burn
6296 @item darken
6297 @item difference
6298 @item grainextract
6299 @item divide
6300 @item dodge
6301 @item freeze
6302 @item exclusion
6303 @item extremity
6304 @item glow
6305 @item hardlight
6306 @item hardmix
6307 @item heat
6308 @item lighten
6309 @item linearlight
6310 @item multiply
6311 @item multiply128
6312 @item negation
6313 @item normal
6314 @item or
6315 @item overlay
6316 @item phoenix
6317 @item pinlight
6318 @item reflect
6319 @item screen
6320 @item softlight
6321 @item subtract
6322 @item vividlight
6323 @item xor
6324 @end table
6325
6326 @item c0_opacity
6327 @item c1_opacity
6328 @item c2_opacity
6329 @item c3_opacity
6330 @item all_opacity
6331 Set blend opacity for specific pixel component or all pixel components in case
6332 of @var{all_opacity}. Only used in combination with pixel component blend modes.
6333
6334 @item c0_expr
6335 @item c1_expr
6336 @item c2_expr
6337 @item c3_expr
6338 @item all_expr
6339 Set blend expression for specific pixel component or all pixel components in case
6340 of @var{all_expr}. Note that related mode options will be ignored if those are set.
6341
6342 The expressions can use the following variables:
6343
6344 @table @option
6345 @item N
6346 The sequential number of the filtered frame, starting from @code{0}.
6347
6348 @item X
6349 @item Y
6350 the coordinates of the current sample
6351
6352 @item W
6353 @item H
6354 the width and height of currently filtered plane
6355
6356 @item SW
6357 @item SH
6358 Width and height scale for the plane being filtered. It is the
6359 ratio between the dimensions of the current plane to the luma plane,
6360 e.g. for a @code{yuv420p} frame, the values are @code{1,1} for
6361 the luma plane and @code{0.5,0.5} for the chroma planes.
6362
6363 @item T
6364 Time of the current frame, expressed in seconds.
6365
6366 @item TOP, A
6367 Value of pixel component at current location for first video frame (top layer).
6368
6369 @item BOTTOM, B
6370 Value of pixel component at current location for second video frame (bottom layer).
6371 @end table
6372 @end table
6373
6374 The @code{blend} filter also supports the @ref{framesync} options.
6375
6376 @subsection Examples
6377
6378 @itemize
6379 @item
6380 Apply transition from bottom layer to top layer in first 10 seconds:
6381 @example
6382 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
6383 @end example
6384
6385 @item
6386 Apply linear horizontal transition from top layer to bottom layer:
6387 @example
6388 blend=all_expr='A*(X/W)+B*(1-X/W)'
6389 @end example
6390
6391 @item
6392 Apply 1x1 checkerboard effect:
6393 @example
6394 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
6395 @end example
6396
6397 @item
6398 Apply uncover left effect:
6399 @example
6400 blend=all_expr='if(gte(N*SW+X,W),A,B)'
6401 @end example
6402
6403 @item
6404 Apply uncover down effect:
6405 @example
6406 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
6407 @end example
6408
6409 @item
6410 Apply uncover up-left effect:
6411 @example
6412 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
6413 @end example
6414
6415 @item
6416 Split diagonally video and shows top and bottom layer on each side:
6417 @example
6418 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
6419 @end example
6420
6421 @item
6422 Display differences between the current and the previous frame:
6423 @example
6424 tblend=all_mode=grainextract
6425 @end example
6426 @end itemize
6427
6428 @section bm3d
6429
6430 Denoise frames using Block-Matching 3D algorithm.
6431
6432 The filter accepts the following options.
6433
6434 @table @option
6435 @item sigma
6436 Set denoising strength. Default value is 1.
6437 Allowed range is from 0 to 999.9.
6438 The denoising algorithm is very sensitive to sigma, so adjust it
6439 according to the source.
6440
6441 @item block
6442 Set local patch size. This sets dimensions in 2D.
6443
6444 @item bstep
6445 Set sliding step for processing blocks. Default value is 4.
6446 Allowed range is from 1 to 64.
6447 Smaller values allows processing more reference blocks and is slower.
6448
6449 @item group
6450 Set maximal number of similar blocks for 3rd dimension. Default value is 1.
6451 When set to 1, no block matching is done. Larger values allows more blocks
6452 in single group.
6453 Allowed range is from 1 to 256.
6454
6455 @item range
6456 Set radius for search block matching. Default is 9.
6457 Allowed range is from 1 to INT32_MAX.
6458
6459 @item mstep
6460 Set step between two search locations for block matching. Default is 1.
6461 Allowed range is from 1 to 64. Smaller is slower.
6462
6463 @item thmse
6464 Set threshold of mean square error for block matching. Valid range is 0 to
6465 INT32_MAX.
6466
6467 @item hdthr
6468 Set thresholding parameter for hard thresholding in 3D transformed domain.
6469 Larger values results in stronger hard-thresholding filtering in frequency
6470 domain.
6471
6472 @item estim
6473 Set filtering estimation mode. Can be @code{basic} or @code{final}.
6474 Default is @code{basic}.
6475
6476 @item ref
6477 If enabled, filter will use 2nd stream for block matching.
6478 Default is disabled for @code{basic} value of @var{estim} option,
6479 and always enabled if value of @var{estim} is @code{final}.
6480
6481 @item planes
6482 Set planes to filter. Default is all available except alpha.
6483 @end table
6484
6485 @subsection Examples
6486
6487 @itemize
6488 @item
6489 Basic filtering with bm3d:
6490 @example
6491 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic
6492 @end example
6493
6494 @item
6495 Same as above, but filtering only luma:
6496 @example
6497 bm3d=sigma=3:block=4:bstep=2:group=1:estim=basic:planes=1
6498 @end example
6499
6500 @item
6501 Same as above, but with both estimation modes:
6502 @example
6503 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
6504 @end example
6505
6506 @item
6507 Same as above, but prefilter with @ref{nlmeans} filter instead:
6508 @example
6509 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
6510 @end example
6511 @end itemize
6512
6513 @section boxblur
6514
6515 Apply a boxblur algorithm to the input video.
6516
6517 It accepts the following parameters:
6518
6519 @table @option
6520
6521 @item luma_radius, lr
6522 @item luma_power, lp
6523 @item chroma_radius, cr
6524 @item chroma_power, cp
6525 @item alpha_radius, ar
6526 @item alpha_power, ap
6527
6528 @end table
6529
6530 A description of the accepted options follows.
6531
6532 @table @option
6533 @item luma_radius, lr
6534 @item chroma_radius, cr
6535 @item alpha_radius, ar
6536 Set an expression for the box radius in pixels used for blurring the
6537 corresponding input plane.
6538
6539 The radius value must be a non-negative number, and must not be
6540 greater than the value of the expression @code{min(w,h)/2} for the
6541 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
6542 planes.
6543
6544 Default value for @option{luma_radius} is "2". If not specified,
6545 @option{chroma_radius} and @option{alpha_radius} default to the
6546 corresponding value set for @option{luma_radius}.
6547
6548 The expressions can contain the following constants:
6549 @table @option
6550 @item w
6551 @item h
6552 The input width and height in pixels.
6553
6554 @item cw
6555 @item ch
6556 The input chroma image width and height in pixels.
6557
6558 @item hsub
6559 @item vsub
6560 The horizontal and vertical chroma subsample values. For example, for the
6561 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
6562 @end table
6563
6564 @item luma_power, lp
6565 @item chroma_power, cp
6566 @item alpha_power, ap
6567 Specify how many times the boxblur filter is applied to the
6568 corresponding plane.
6569
6570 Default value for @option{luma_power} is 2. If not specified,
6571 @option{chroma_power} and @option{alpha_power} default to the
6572 corresponding value set for @option{luma_power}.
6573
6574 A value of 0 will disable the effect.
6575 @end table
6576
6577 @subsection Examples
6578
6579 @itemize
6580 @item
6581 Apply a boxblur filter with the luma, chroma, and alpha radii
6582 set to 2:
6583 @example
6584 boxblur=luma_radius=2:luma_power=1
6585 boxblur=2:1
6586 @end example
6587
6588 @item
6589 Set the luma radius to 2, and alpha and chroma radius to 0:
6590 @example
6591 boxblur=2:1:cr=0:ar=0
6592 @end example
6593
6594 @item
6595 Set the luma and chroma radii to a fraction of the video dimension:
6596 @example
6597 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
6598 @end example
6599 @end itemize
6600
6601 @section bwdif
6602
6603 Deinterlace the input video ("bwdif" stands for "Bob Weaver
6604 Deinterlacing Filter").
6605
6606 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
6607 interpolation algorithms.
6608 It accepts the following parameters:
6609
6610 @table @option
6611 @item mode
6612 The interlacing mode to adopt. It accepts one of the following values:
6613
6614 @table @option
6615 @item 0, send_frame
6616 Output one frame for each frame.
6617 @item 1, send_field
6618 Output one frame for each field.
6619 @end table
6620
6621 The default value is @code{send_field}.
6622
6623 @item parity
6624 The picture field parity assumed for the input interlaced video. It accepts one
6625 of the following values:
6626
6627 @table @option
6628 @item 0, tff
6629 Assume the top field is first.
6630 @item 1, bff
6631 Assume the bottom field is first.
6632 @item -1, auto
6633 Enable automatic detection of field parity.
6634 @end table
6635
6636 The default value is @code{auto}.
6637 If the interlacing is unknown or the decoder does not export this information,
6638 top field first will be assumed.
6639
6640 @item deint
6641 Specify which frames to deinterlace. Accept one of the following
6642 values:
6643
6644 @table @option
6645 @item 0, all
6646 Deinterlace all frames.
6647 @item 1, interlaced
6648 Only deinterlace frames marked as interlaced.
6649 @end table
6650
6651 The default value is @code{all}.
6652 @end table
6653
6654 @section chromahold
6655 Remove all color information for all colors except for certain one.
6656
6657 The filter accepts the following options:
6658
6659 @table @option
6660 @item color
6661 The color which will not be replaced with neutral chroma.
6662
6663 @item similarity
6664 Similarity percentage with the above color.
6665 0.01 matches only the exact key color, while 1.0 matches everything.
6666
6667 @item blend
6668 Blend percentage.
6669 0.0 makes pixels either fully gray, or not gray at all.
6670 Higher values result in more preserved color.
6671
6672 @item yuv
6673 Signals that the color passed is already in YUV instead of RGB.
6674
6675 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6676 This can be used to pass exact YUV values as hexadecimal numbers.
6677 @end table
6678
6679 @section chromakey
6680 YUV colorspace color/chroma keying.
6681
6682 The filter accepts the following options:
6683
6684 @table @option
6685 @item color
6686 The color which will be replaced with transparency.
6687
6688 @item similarity
6689 Similarity percentage with the key color.
6690
6691 0.01 matches only the exact key color, while 1.0 matches everything.
6692
6693 @item blend
6694 Blend percentage.
6695
6696 0.0 makes pixels either fully transparent, or not transparent at all.
6697
6698 Higher values result in semi-transparent pixels, with a higher transparency
6699 the more similar the pixels color is to the key color.
6700
6701 @item yuv
6702 Signals that the color passed is already in YUV instead of RGB.
6703
6704 Literal colors like "green" or "red" don't make sense with this enabled anymore.
6705 This can be used to pass exact YUV values as hexadecimal numbers.
6706 @end table
6707
6708 @subsection Examples
6709
6710 @itemize
6711 @item
6712 Make every green pixel in the input image transparent:
6713 @example
6714 ffmpeg -i input.png -vf chromakey=green out.png
6715 @end example
6716
6717 @item
6718 Overlay a greenscreen-video on top of a static black background.
6719 @example
6720 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
6721 @end example
6722 @end itemize
6723
6724 @section chromashift
6725 Shift chroma pixels horizontally and/or vertically.
6726
6727 The filter accepts the following options:
6728 @table @option
6729 @item cbh
6730 Set amount to shift chroma-blue horizontally.
6731 @item cbv
6732 Set amount to shift chroma-blue vertically.
6733 @item crh
6734 Set amount to shift chroma-red horizontally.
6735 @item crv
6736 Set amount to shift chroma-red vertically.
6737 @item edge
6738 Set edge mode, can be @var{smear}, default, or @var{warp}.
6739 @end table
6740
6741 @section ciescope
6742
6743 Display CIE color diagram with pixels overlaid onto it.
6744
6745 The filter accepts the following options:
6746
6747 @table @option
6748 @item system
6749 Set color system.
6750
6751 @table @samp
6752 @item ntsc, 470m
6753 @item ebu, 470bg
6754 @item smpte
6755 @item 240m
6756 @item apple
6757 @item widergb
6758 @item cie1931
6759 @item rec709, hdtv
6760 @item uhdtv, rec2020
6761 @item dcip3
6762 @end table
6763
6764 @item cie
6765 Set CIE system.
6766
6767 @table @samp
6768 @item xyy
6769 @item ucs
6770 @item luv
6771 @end table
6772
6773 @item gamuts
6774 Set what gamuts to draw.
6775
6776 See @code{system} option for available values.
6777
6778 @item size, s
6779 Set ciescope size, by default set to 512.
6780
6781 @item intensity, i
6782 Set intensity used to map input pixel values to CIE diagram.
6783
6784 @item contrast
6785 Set contrast used to draw tongue colors that are out of active color system gamut.
6786
6787 @item corrgamma
6788 Correct gamma displayed on scope, by default enabled.
6789
6790 @item showwhite
6791 Show white point on CIE diagram, by default disabled.
6792
6793 @item gamma
6794 Set input gamma. Used only with XYZ input color space.
6795 @end table
6796
6797 @section codecview
6798
6799 Visualize information exported by some codecs.
6800
6801 Some codecs can export information through frames using side-data or other
6802 means. For example, some MPEG based codecs export motion vectors through the
6803 @var{export_mvs} flag in the codec @option{flags2} option.
6804
6805 The filter accepts the following option:
6806
6807 @table @option
6808 @item mv
6809 Set motion vectors to visualize.
6810
6811 Available flags for @var{mv} are:
6812
6813 @table @samp
6814 @item pf
6815 forward predicted MVs of P-frames
6816 @item bf
6817 forward predicted MVs of B-frames
6818 @item bb
6819 backward predicted MVs of B-frames
6820 @end table
6821
6822 @item qp
6823 Display quantization parameters using the chroma planes.
6824
6825 @item mv_type, mvt
6826 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
6827
6828 Available flags for @var{mv_type} are:
6829
6830 @table @samp
6831 @item fp
6832 forward predicted MVs
6833 @item bp
6834 backward predicted MVs
6835 @end table
6836
6837 @item frame_type, ft
6838 Set frame type to visualize motion vectors of.
6839
6840 Available flags for @var{frame_type} are:
6841
6842 @table @samp
6843 @item if
6844 intra-coded frames (I-frames)
6845 @item pf
6846 predicted frames (P-frames)
6847 @item bf
6848 bi-directionally predicted frames (B-frames)
6849 @end table
6850 @end table
6851
6852 @subsection Examples
6853
6854 @itemize
6855 @item
6856 Visualize forward predicted MVs of all frames using @command{ffplay}:
6857 @example
6858 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
6859 @end example
6860
6861 @item
6862 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
6863 @example
6864 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
6865 @end example
6866 @end itemize
6867
6868 @section colorbalance
6869 Modify intensity of primary colors (red, green and blue) of input frames.
6870
6871 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
6872 regions for the red-cyan, green-magenta or blue-yellow balance.
6873
6874 A positive adjustment value shifts the balance towards the primary color, a negative
6875 value towards the complementary color.
6876
6877 The filter accepts the following options:
6878
6879 @table @option
6880 @item rs
6881 @item gs
6882 @item bs
6883 Adjust red, green and blue shadows (darkest pixels).
6884
6885 @item rm
6886 @item gm
6887 @item bm
6888 Adjust red, green and blue midtones (medium pixels).
6889
6890 @item rh
6891 @item gh
6892 @item bh
6893 Adjust red, green and blue highlights (brightest pixels).
6894
6895 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6896 @end table
6897
6898 @subsection Examples
6899
6900 @itemize
6901 @item
6902 Add red color cast to shadows:
6903 @example
6904 colorbalance=rs=.3
6905 @end example
6906 @end itemize
6907
6908 @section colorkey
6909 RGB colorspace color keying.
6910
6911 The filter accepts the following options:
6912
6913 @table @option
6914 @item color
6915 The color which will be replaced with transparency.
6916
6917 @item similarity
6918 Similarity percentage with the key color.
6919
6920 0.01 matches only the exact key color, while 1.0 matches everything.
6921
6922 @item blend
6923 Blend percentage.
6924
6925 0.0 makes pixels either fully transparent, or not transparent at all.
6926
6927 Higher values result in semi-transparent pixels, with a higher transparency
6928 the more similar the pixels color is to the key color.
6929 @end table
6930
6931 @subsection Examples
6932
6933 @itemize
6934 @item
6935 Make every green pixel in the input image transparent:
6936 @example
6937 ffmpeg -i input.png -vf colorkey=green out.png
6938 @end example
6939
6940 @item
6941 Overlay a greenscreen-video on top of a static background image.
6942 @example
6943 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
6944 @end example
6945 @end itemize
6946
6947 @section colorhold
6948 Remove all color information for all RGB colors except for certain one.
6949
6950 The filter accepts the following options:
6951
6952 @table @option
6953 @item color
6954 The color which will not be replaced with neutral gray.
6955
6956 @item similarity
6957 Similarity percentage with the above color.
6958 0.01 matches only the exact key color, while 1.0 matches everything.
6959
6960 @item blend
6961 Blend percentage. 0.0 makes pixels fully gray.
6962 Higher values result in more preserved color.
6963 @end table
6964
6965 @section colorlevels
6966
6967 Adjust video input frames using levels.
6968
6969 The filter accepts the following options:
6970
6971 @table @option
6972 @item rimin
6973 @item gimin
6974 @item bimin
6975 @item aimin
6976 Adjust red, green, blue and alpha input black point.
6977 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
6978
6979 @item rimax
6980 @item gimax
6981 @item bimax
6982 @item aimax
6983 Adjust red, green, blue and alpha input white point.
6984 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
6985
6986 Input levels are used to lighten highlights (bright tones), darken shadows
6987 (dark tones), change the balance of bright and dark tones.
6988
6989 @item romin
6990 @item gomin
6991 @item bomin
6992 @item aomin
6993 Adjust red, green, blue and alpha output black point.
6994 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
6995
6996 @item romax
6997 @item gomax
6998 @item bomax
6999 @item aomax
7000 Adjust red, green, blue and alpha output white point.
7001 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
7002
7003 Output levels allows manual selection of a constrained output level range.
7004 @end table
7005
7006 @subsection Examples
7007
7008 @itemize
7009 @item
7010 Make video output darker:
7011 @example
7012 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
7013 @end example
7014
7015 @item
7016 Increase contrast:
7017 @example
7018 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
7019 @end example
7020
7021 @item
7022 Make video output lighter:
7023 @example
7024 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
7025 @end example
7026
7027 @item
7028 Increase brightness:
7029 @example
7030 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
7031 @end example
7032 @end itemize
7033
7034 @section colorchannelmixer
7035
7036 Adjust video input frames by re-mixing color channels.
7037
7038 This filter modifies a color channel by adding the values associated to
7039 the other channels of the same pixels. For example if the value to
7040 modify is red, the output value will be:
7041 @example
7042 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
7043 @end example
7044
7045 The filter accepts the following options:
7046
7047 @table @option
7048 @item rr
7049 @item rg
7050 @item rb
7051 @item ra
7052 Adjust contribution of input red, green, blue and alpha channels for output red channel.
7053 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
7054
7055 @item gr
7056 @item gg
7057 @item gb
7058 @item ga
7059 Adjust contribution of input red, green, blue and alpha channels for output green channel.
7060 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
7061
7062 @item br
7063 @item bg
7064 @item bb
7065 @item ba
7066 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
7067 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
7068
7069 @item ar
7070 @item ag
7071 @item ab
7072 @item aa
7073 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
7074 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
7075
7076 Allowed ranges for options are @code{[-2.0, 2.0]}.
7077 @end table
7078
7079 @subsection Examples
7080
7081 @itemize
7082 @item
7083 Convert source to grayscale:
7084 @example
7085 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
7086 @end example
7087 @item
7088 Simulate sepia tones:
7089 @example
7090 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
7091 @end example
7092 @end itemize
7093
7094 @section colormatrix
7095
7096 Convert color matrix.
7097
7098 The filter accepts the following options:
7099
7100 @table @option
7101 @item src
7102 @item dst
7103 Specify the source and destination color matrix. Both values must be
7104 specified.
7105
7106 The accepted values are:
7107 @table @samp
7108 @item bt709
7109 BT.709
7110
7111 @item fcc
7112 FCC
7113
7114 @item bt601
7115 BT.601
7116
7117 @item bt470
7118 BT.470
7119
7120 @item bt470bg
7121 BT.470BG
7122
7123 @item smpte170m
7124 SMPTE-170M
7125
7126 @item smpte240m
7127 SMPTE-240M
7128
7129 @item bt2020
7130 BT.2020
7131 @end table
7132 @end table
7133
7134 For example to convert from BT.601 to SMPTE-240M, use the command:
7135 @example
7136 colormatrix=bt601:smpte240m
7137 @end example
7138
7139 @section colorspace
7140
7141 Convert colorspace, transfer characteristics or color primaries.
7142 Input video needs to have an even size.
7143
7144 The filter accepts the following options:
7145
7146 @table @option
7147 @anchor{all}
7148 @item all
7149 Specify all color properties at once.
7150
7151 The accepted values are:
7152 @table @samp
7153 @item bt470m
7154 BT.470M
7155
7156 @item bt470bg
7157 BT.470BG
7158
7159 @item bt601-6-525
7160 BT.601-6 525
7161
7162 @item bt601-6-625
7163 BT.601-6 625
7164
7165 @item bt709
7166 BT.709
7167
7168 @item smpte170m
7169 SMPTE-170M
7170
7171 @item smpte240m
7172 SMPTE-240M
7173
7174 @item bt2020
7175 BT.2020
7176
7177 @end table
7178
7179 @anchor{space}
7180 @item space
7181 Specify output colorspace.
7182
7183 The accepted values are:
7184 @table @samp
7185 @item bt709
7186 BT.709
7187
7188 @item fcc
7189 FCC
7190
7191 @item bt470bg
7192 BT.470BG or BT.601-6 625
7193
7194 @item smpte170m
7195 SMPTE-170M or BT.601-6 525
7196
7197 @item smpte240m
7198 SMPTE-240M
7199
7200 @item ycgco
7201 YCgCo
7202
7203 @item bt2020ncl
7204 BT.2020 with non-constant luminance
7205
7206 @end table
7207
7208 @anchor{trc}
7209 @item trc
7210 Specify output transfer characteristics.
7211
7212 The accepted values are:
7213 @table @samp
7214 @item bt709
7215 BT.709
7216
7217 @item bt470m
7218 BT.470M
7219
7220 @item bt470bg
7221 BT.470BG
7222
7223 @item gamma22
7224 Constant gamma of 2.2
7225
7226 @item gamma28
7227 Constant gamma of 2.8
7228
7229 @item smpte170m
7230 SMPTE-170M, BT.601-6 625 or BT.601-6 525
7231
7232 @item smpte240m
7233 SMPTE-240M
7234
7235 @item srgb
7236 SRGB
7237
7238 @item iec61966-2-1
7239 iec61966-2-1
7240
7241 @item iec61966-2-4
7242 iec61966-2-4
7243
7244 @item xvycc
7245 xvycc
7246
7247 @item bt2020-10
7248 BT.2020 for 10-bits content
7249
7250 @item bt2020-12
7251 BT.2020 for 12-bits content
7252
7253 @end table
7254
7255 @anchor{primaries}
7256 @item primaries
7257 Specify output color primaries.
7258
7259 The accepted values are:
7260 @table @samp
7261 @item bt709
7262 BT.709
7263
7264 @item bt470m
7265 BT.470M
7266
7267 @item bt470bg
7268 BT.470BG or BT.601-6 625
7269
7270 @item smpte170m
7271 SMPTE-170M or BT.601-6 525
7272
7273 @item smpte240m
7274 SMPTE-240M
7275
7276 @item film
7277 film
7278
7279 @item smpte431
7280 SMPTE-431
7281
7282 @item smpte432
7283 SMPTE-432
7284
7285 @item bt2020
7286 BT.2020
7287
7288 @item jedec-p22
7289 JEDEC P22 phosphors
7290
7291 @end table
7292
7293 @anchor{range}
7294 @item range
7295 Specify output color range.
7296
7297 The accepted values are:
7298 @table @samp
7299 @item tv
7300 TV (restricted) range
7301
7302 @item mpeg
7303 MPEG (restricted) range
7304
7305 @item pc
7306 PC (full) range
7307
7308 @item jpeg
7309 JPEG (full) range
7310
7311 @end table
7312
7313 @item format
7314 Specify output color format.
7315
7316 The accepted values are:
7317 @table @samp
7318 @item yuv420p
7319 YUV 4:2:0 planar 8-bits
7320
7321 @item yuv420p10
7322 YUV 4:2:0 planar 10-bits
7323
7324 @item yuv420p12
7325 YUV 4:2:0 planar 12-bits
7326
7327 @item yuv422p
7328 YUV 4:2:2 planar 8-bits
7329
7330 @item yuv422p10
7331 YUV 4:2:2 planar 10-bits
7332
7333 @item yuv422p12
7334 YUV 4:2:2 planar 12-bits
7335
7336 @item yuv444p
7337 YUV 4:4:4 planar 8-bits
7338
7339 @item yuv444p10
7340 YUV 4:4:4 planar 10-bits
7341
7342 @item yuv444p12
7343 YUV 4:4:4 planar 12-bits
7344
7345 @end table
7346
7347 @item fast
7348 Do a fast conversion, which skips gamma/primary correction. This will take
7349 significantly less CPU, but will be mathematically incorrect. To get output
7350 compatible with that produced by the colormatrix filter, use fast=1.
7351
7352 @item dither
7353 Specify dithering mode.
7354
7355 The accepted values are:
7356 @table @samp
7357 @item none
7358 No dithering
7359
7360 @item fsb
7361 Floyd-Steinberg dithering
7362 @end table
7363
7364 @item wpadapt
7365 Whitepoint adaptation mode.
7366
7367 The accepted values are:
7368 @table @samp
7369 @item bradford
7370 Bradford whitepoint adaptation
7371
7372 @item vonkries
7373 von Kries whitepoint adaptation
7374
7375 @item identity
7376 identity whitepoint adaptation (i.e. no whitepoint adaptation)
7377 @end table
7378
7379 @item iall
7380 Override all input properties at once. Same accepted values as @ref{all}.
7381
7382 @item ispace
7383 Override input colorspace. Same accepted values as @ref{space}.
7384
7385 @item iprimaries
7386 Override input color primaries. Same accepted values as @ref{primaries}.
7387
7388 @item itrc
7389 Override input transfer characteristics. Same accepted values as @ref{trc}.
7390
7391 @item irange
7392 Override input color range. Same accepted values as @ref{range}.
7393
7394 @end table
7395
7396 The filter converts the transfer characteristics, color space and color
7397 primaries to the specified user values. The output value, if not specified,
7398 is set to a default value based on the "all" property. If that property is
7399 also not specified, the filter will log an error. The output color range and
7400 format default to the same value as the input color range and format. The
7401 input transfer characteristics, color space, color primaries and color range
7402 should be set on the input data. If any of these are missing, the filter will
7403 log an error and no conversion will take place.
7404
7405 For example to convert the input to SMPTE-240M, use the command:
7406 @example
7407 colorspace=smpte240m
7408 @end example
7409
7410 @section convolution
7411
7412 Apply convolution of 3x3, 5x5, 7x7 or horizontal/vertical up to 49 elements.
7413
7414 The filter accepts the following options:
7415
7416 @table @option
7417 @item 0m
7418 @item 1m
7419 @item 2m
7420 @item 3m
7421 Set matrix for each plane.
7422 Matrix is sequence of 9, 25 or 49 signed integers in @var{square} mode,
7423 and from 1 to 49 odd number of signed integers in @var{row} mode.
7424
7425 @item 0rdiv
7426 @item 1rdiv
7427 @item 2rdiv
7428 @item 3rdiv
7429 Set multiplier for calculated value for each plane.
7430 If unset or 0, it will be sum of all matrix elements.
7431
7432 @item 0bias
7433 @item 1bias
7434 @item 2bias
7435 @item 3bias
7436 Set bias for each plane. This value is added to the result of the multiplication.
7437 Useful for making the overall image brighter or darker. Default is 0.0.
7438
7439 @item 0mode
7440 @item 1mode
7441 @item 2mode
7442 @item 3mode
7443 Set matrix mode for each plane. Can be @var{square}, @var{row} or @var{column}.
7444 Default is @var{square}.
7445 @end table
7446
7447 @subsection Examples
7448
7449 @itemize
7450 @item
7451 Apply sharpen:
7452 @example
7453 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"
7454 @end example
7455
7456 @item
7457 Apply blur:
7458 @example
7459 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"
7460 @end example
7461
7462 @item
7463 Apply edge enhance:
7464 @example
7465 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"
7466 @end example
7467
7468 @item
7469 Apply edge detect:
7470 @example
7471 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"
7472 @end example
7473
7474 @item
7475 Apply laplacian edge detector which includes diagonals:
7476 @example
7477 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"
7478 @end example
7479
7480 @item
7481 Apply emboss:
7482 @example
7483 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"
7484 @end example
7485 @end itemize
7486
7487 @section convolve
7488
7489 Apply 2D convolution of video stream in frequency domain using second stream
7490 as impulse.
7491
7492 The filter accepts the following options:
7493
7494 @table @option
7495 @item planes
7496 Set which planes to process.
7497
7498 @item impulse
7499 Set which impulse video frames will be processed, can be @var{first}
7500 or @var{all}. Default is @var{all}.
7501 @end table
7502
7503 The @code{convolve} filter also supports the @ref{framesync} options.
7504
7505 @section copy
7506
7507 Copy the input video source unchanged to the output. This is mainly useful for
7508 testing purposes.
7509
7510 @anchor{coreimage}
7511 @section coreimage
7512 Video filtering on GPU using Apple's CoreImage API on OSX.
7513
7514 Hardware acceleration is based on an OpenGL context. Usually, this means it is
7515 processed by video hardware. However, software-based OpenGL implementations
7516 exist which means there is no guarantee for hardware processing. It depends on
7517 the respective OSX.
7518
7519 There are many filters and image generators provided by Apple that come with a
7520 large variety of options. The filter has to be referenced by its name along
7521 with its options.
7522
7523 The coreimage filter accepts the following options:
7524 @table @option
7525 @item list_filters
7526 List all available filters and generators along with all their respective
7527 options as well as possible minimum and maximum values along with the default
7528 values.
7529 @example
7530 list_filters=true
7531 @end example
7532
7533 @item filter
7534 Specify all filters by their respective name and options.
7535 Use @var{list_filters} to determine all valid filter names and options.
7536 Numerical options are specified by a float value and are automatically clamped
7537 to their respective value range.  Vector and color options have to be specified
7538 by a list of space separated float values. Character escaping has to be done.
7539 A special option name @code{default} is available to use default options for a
7540 filter.
7541
7542 It is required to specify either @code{default} or at least one of the filter options.
7543 All omitted options are used with their default values.
7544 The syntax of the filter string is as follows:
7545 @example
7546 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
7547 @end example
7548
7549 @item output_rect
7550 Specify a rectangle where the output of the filter chain is copied into the
7551 input image. It is given by a list of space separated float values:
7552 @example
7553 output_rect=x\ y\ width\ height
7554 @end example
7555 If not given, the output rectangle equals the dimensions of the input image.
7556 The output rectangle is automatically cropped at the borders of the input
7557 image. Negative values are valid for each component.
7558 @example
7559 output_rect=25\ 25\ 100\ 100
7560 @end example
7561 @end table
7562
7563 Several filters can be chained for successive processing without GPU-HOST
7564 transfers allowing for fast processing of complex filter chains.
7565 Currently, only filters with zero (generators) or exactly one (filters) input
7566 image and one output image are supported. Also, transition filters are not yet
7567 usable as intended.
7568
7569 Some filters generate output images with additional padding depending on the
7570 respective filter kernel. The padding is automatically removed to ensure the
7571 filter output has the same size as the input image.
7572
7573 For image generators, the size of the output image is determined by the
7574 previous output image of the filter chain or the input image of the whole
7575 filterchain, respectively. The generators do not use the pixel information of
7576 this image to generate their output. However, the generated output is
7577 blended onto this image, resulting in partial or complete coverage of the
7578 output image.
7579
7580 The @ref{coreimagesrc} video source can be used for generating input images
7581 which are directly fed into the filter chain. By using it, providing input
7582 images by another video source or an input video is not required.
7583
7584 @subsection Examples
7585
7586 @itemize
7587
7588 @item
7589 List all filters available:
7590 @example
7591 coreimage=list_filters=true
7592 @end example
7593
7594 @item
7595 Use the CIBoxBlur filter with default options to blur an image:
7596 @example
7597 coreimage=filter=CIBoxBlur@@default
7598 @end example
7599
7600 @item
7601 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
7602 its center at 100x100 and a radius of 50 pixels:
7603 @example
7604 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
7605 @end example
7606
7607 @item
7608 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
7609 given as complete and escaped command-line for Apple's standard bash shell:
7610 @example
7611 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
7612 @end example
7613 @end itemize
7614
7615 @section crop
7616
7617 Crop the input video to given dimensions.
7618
7619 It accepts the following parameters:
7620
7621 @table @option
7622 @item w, out_w
7623 The width of the output video. It defaults to @code{iw}.
7624 This expression is evaluated only once during the filter
7625 configuration, or when the @samp{w} or @samp{out_w} command is sent.
7626
7627 @item h, out_h
7628 The height of the output video. It defaults to @code{ih}.
7629 This expression is evaluated only once during the filter
7630 configuration, or when the @samp{h} or @samp{out_h} command is sent.
7631
7632 @item x
7633 The horizontal position, in the input video, of the left edge of the output
7634 video. It defaults to @code{(in_w-out_w)/2}.
7635 This expression is evaluated per-frame.
7636
7637 @item y
7638 The vertical position, in the input video, of the top edge of the output video.
7639 It defaults to @code{(in_h-out_h)/2}.
7640 This expression is evaluated per-frame.
7641
7642 @item keep_aspect
7643 If set to 1 will force the output display aspect ratio
7644 to be the same of the input, by changing the output sample aspect
7645 ratio. It defaults to 0.
7646
7647 @item exact
7648 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
7649 width/height/x/y as specified and will not be rounded to nearest smaller value.
7650 It defaults to 0.
7651 @end table
7652
7653 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
7654 expressions containing the following constants:
7655
7656 @table @option
7657 @item x
7658 @item y
7659 The computed values for @var{x} and @var{y}. They are evaluated for
7660 each new frame.
7661
7662 @item in_w
7663 @item in_h
7664 The input width and height.
7665
7666 @item iw
7667 @item ih
7668 These are the same as @var{in_w} and @var{in_h}.
7669
7670 @item out_w
7671 @item out_h
7672 The output (cropped) width and height.
7673
7674 @item ow
7675 @item oh
7676 These are the same as @var{out_w} and @var{out_h}.
7677
7678 @item a
7679 same as @var{iw} / @var{ih}
7680
7681 @item sar
7682 input sample aspect ratio
7683
7684 @item dar
7685 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
7686
7687 @item hsub
7688 @item vsub
7689 horizontal and vertical chroma subsample values. For example for the
7690 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7691
7692 @item n
7693 The number of the input frame, starting from 0.
7694
7695 @item pos
7696 the position in the file of the input frame, NAN if unknown
7697
7698 @item t
7699 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
7700
7701 @end table
7702
7703 The expression for @var{out_w} may depend on the value of @var{out_h},
7704 and the expression for @var{out_h} may depend on @var{out_w}, but they
7705 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
7706 evaluated after @var{out_w} and @var{out_h}.
7707
7708 The @var{x} and @var{y} parameters specify the expressions for the
7709 position of the top-left corner of the output (non-cropped) area. They
7710 are evaluated for each frame. If the evaluated value is not valid, it
7711 is approximated to the nearest valid value.
7712
7713 The expression for @var{x} may depend on @var{y}, and the expression
7714 for @var{y} may depend on @var{x}.
7715
7716 @subsection Examples
7717
7718 @itemize
7719 @item
7720 Crop area with size 100x100 at position (12,34).
7721 @example
7722 crop=100:100:12:34
7723 @end example
7724
7725 Using named options, the example above becomes:
7726 @example
7727 crop=w=100:h=100:x=12:y=34
7728 @end example
7729
7730 @item
7731 Crop the central input area with size 100x100:
7732 @example
7733 crop=100:100
7734 @end example
7735
7736 @item
7737 Crop the central input area with size 2/3 of the input video:
7738 @example
7739 crop=2/3*in_w:2/3*in_h
7740 @end example
7741
7742 @item
7743 Crop the input video central square:
7744 @example
7745 crop=out_w=in_h
7746 crop=in_h
7747 @end example
7748
7749 @item
7750 Delimit the rectangle with the top-left corner placed at position
7751 100:100 and the right-bottom corner corresponding to the right-bottom
7752 corner of the input image.
7753 @example
7754 crop=in_w-100:in_h-100:100:100
7755 @end example
7756
7757 @item
7758 Crop 10 pixels from the left and right borders, and 20 pixels from
7759 the top and bottom borders
7760 @example
7761 crop=in_w-2*10:in_h-2*20
7762 @end example
7763
7764 @item
7765 Keep only the bottom right quarter of the input image:
7766 @example
7767 crop=in_w/2:in_h/2:in_w/2:in_h/2
7768 @end example
7769
7770 @item
7771 Crop height for getting Greek harmony:
7772 @example
7773 crop=in_w:1/PHI*in_w
7774 @end example
7775
7776 @item
7777 Apply trembling effect:
7778 @example
7779 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)
7780 @end example
7781
7782 @item
7783 Apply erratic camera effect depending on timestamp:
7784 @example
7785 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)"
7786 @end example
7787
7788 @item
7789 Set x depending on the value of y:
7790 @example
7791 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
7792 @end example
7793 @end itemize
7794
7795 @subsection Commands
7796
7797 This filter supports the following commands:
7798 @table @option
7799 @item w, out_w
7800 @item h, out_h
7801 @item x
7802 @item y
7803 Set width/height of the output video and the horizontal/vertical position
7804 in the input video.
7805 The command accepts the same syntax of the corresponding option.
7806
7807 If the specified expression is not valid, it is kept at its current
7808 value.
7809 @end table
7810
7811 @section cropdetect
7812
7813 Auto-detect the crop size.
7814
7815 It calculates the necessary cropping parameters and prints the
7816 recommended parameters via the logging system. The detected dimensions
7817 correspond to the non-black area of the input video.
7818
7819 It accepts the following parameters:
7820
7821 @table @option
7822
7823 @item limit
7824 Set higher black value threshold, which can be optionally specified
7825 from nothing (0) to everything (255 for 8-bit based formats). An intensity
7826 value greater to the set value is considered non-black. It defaults to 24.
7827 You can also specify a value between 0.0 and 1.0 which will be scaled depending
7828 on the bitdepth of the pixel format.
7829
7830 @item round
7831 The value which the width/height should be divisible by. It defaults to
7832 16. The offset is automatically adjusted to center the video. Use 2 to
7833 get only even dimensions (needed for 4:2:2 video). 16 is best when
7834 encoding to most video codecs.
7835
7836 @item reset_count, reset
7837 Set the counter that determines after how many frames cropdetect will
7838 reset the previously detected largest video area and start over to
7839 detect the current optimal crop area. Default value is 0.
7840
7841 This can be useful when channel logos distort the video area. 0
7842 indicates 'never reset', and returns the largest area encountered during
7843 playback.
7844 @end table
7845
7846 @anchor{cue}
7847 @section cue
7848
7849 Delay video filtering until a given wallclock timestamp. The filter first
7850 passes on @option{preroll} amount of frames, then it buffers at most
7851 @option{buffer} amount of frames and waits for the cue. After reaching the cue
7852 it forwards the buffered frames and also any subsequent frames coming in its
7853 input.
7854
7855 The filter can be used synchronize the output of multiple ffmpeg processes for
7856 realtime output devices like decklink. By putting the delay in the filtering
7857 chain and pre-buffering frames the process can pass on data to output almost
7858 immediately after the target wallclock timestamp is reached.
7859
7860 Perfect frame accuracy cannot be guaranteed, but the result is good enough for
7861 some use cases.
7862
7863 @table @option
7864
7865 @item cue
7866 The cue timestamp expressed in a UNIX timestamp in microseconds. Default is 0.
7867
7868 @item preroll
7869 The duration of content to pass on as preroll expressed in seconds. Default is 0.
7870
7871 @item buffer
7872 The maximum duration of content to buffer before waiting for the cue expressed
7873 in seconds. Default is 0.
7874
7875 @end table
7876
7877 @anchor{curves}
7878 @section curves
7879
7880 Apply color adjustments using curves.
7881
7882 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
7883 component (red, green and blue) has its values defined by @var{N} key points
7884 tied from each other using a smooth curve. The x-axis represents the pixel
7885 values from the input frame, and the y-axis the new pixel values to be set for
7886 the output frame.
7887
7888 By default, a component curve is defined by the two points @var{(0;0)} and
7889 @var{(1;1)}. This creates a straight line where each original pixel value is
7890 "adjusted" to its own value, which means no change to the image.
7891
7892 The filter allows you to redefine these two points and add some more. A new
7893 curve (using a natural cubic spline interpolation) will be define to pass
7894 smoothly through all these new coordinates. The new defined points needs to be
7895 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
7896 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
7897 the vector spaces, the values will be clipped accordingly.
7898
7899 The filter accepts the following options:
7900
7901 @table @option
7902 @item preset
7903 Select one of the available color presets. This option can be used in addition
7904 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
7905 options takes priority on the preset values.
7906 Available presets are:
7907 @table @samp
7908 @item none
7909 @item color_negative
7910 @item cross_process
7911 @item darker
7912 @item increase_contrast
7913 @item lighter
7914 @item linear_contrast
7915 @item medium_contrast
7916 @item negative
7917 @item strong_contrast
7918 @item vintage
7919 @end table
7920 Default is @code{none}.
7921 @item master, m
7922 Set the master key points. These points will define a second pass mapping. It
7923 is sometimes called a "luminance" or "value" mapping. It can be used with
7924 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
7925 post-processing LUT.
7926 @item red, r
7927 Set the key points for the red component.
7928 @item green, g
7929 Set the key points for the green component.
7930 @item blue, b
7931 Set the key points for the blue component.
7932 @item all
7933 Set the key points for all components (not including master).
7934 Can be used in addition to the other key points component
7935 options. In this case, the unset component(s) will fallback on this
7936 @option{all} setting.
7937 @item psfile
7938 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
7939 @item plot
7940 Save Gnuplot script of the curves in specified file.
7941 @end table
7942
7943 To avoid some filtergraph syntax conflicts, each key points list need to be
7944 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
7945
7946 @subsection Examples
7947
7948 @itemize
7949 @item
7950 Increase slightly the middle level of blue:
7951 @example
7952 curves=blue='0/0 0.5/0.58 1/1'
7953 @end example
7954
7955 @item
7956 Vintage effect:
7957 @example
7958 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'
7959 @end example
7960 Here we obtain the following coordinates for each components:
7961 @table @var
7962 @item red
7963 @code{(0;0.11) (0.42;0.51) (1;0.95)}
7964 @item green
7965 @code{(0;0) (0.50;0.48) (1;1)}
7966 @item blue
7967 @code{(0;0.22) (0.49;0.44) (1;0.80)}
7968 @end table
7969
7970 @item
7971 The previous example can also be achieved with the associated built-in preset:
7972 @example
7973 curves=preset=vintage
7974 @end example
7975
7976 @item
7977 Or simply:
7978 @example
7979 curves=vintage
7980 @end example
7981
7982 @item
7983 Use a Photoshop preset and redefine the points of the green component:
7984 @example
7985 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
7986 @end example
7987
7988 @item
7989 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
7990 and @command{gnuplot}:
7991 @example
7992 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
7993 gnuplot -p /tmp/curves.plt
7994 @end example
7995 @end itemize
7996
7997 @section datascope
7998
7999 Video data analysis filter.
8000
8001 This filter shows hexadecimal pixel values of part of video.
8002
8003 The filter accepts the following options:
8004
8005 @table @option
8006 @item size, s
8007 Set output video size.
8008
8009 @item x
8010 Set x offset from where to pick pixels.
8011
8012 @item y
8013 Set y offset from where to pick pixels.
8014
8015 @item mode
8016 Set scope mode, can be one of the following:
8017 @table @samp
8018 @item mono
8019 Draw hexadecimal pixel values with white color on black background.
8020
8021 @item color
8022 Draw hexadecimal pixel values with input video pixel color on black
8023 background.
8024
8025 @item color2
8026 Draw hexadecimal pixel values on color background picked from input video,
8027 the text color is picked in such way so its always visible.
8028 @end table
8029
8030 @item axis
8031 Draw rows and columns numbers on left and top of video.
8032
8033 @item opacity
8034 Set background opacity.
8035 @end table
8036
8037 @section dctdnoiz
8038
8039 Denoise frames using 2D DCT (frequency domain filtering).
8040
8041 This filter is not designed for real time.
8042
8043 The filter accepts the following options:
8044
8045 @table @option
8046 @item sigma, s
8047 Set the noise sigma constant.
8048
8049 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
8050 coefficient (absolute value) below this threshold with be dropped.
8051
8052 If you need a more advanced filtering, see @option{expr}.
8053
8054 Default is @code{0}.
8055
8056 @item overlap
8057 Set number overlapping pixels for each block. Since the filter can be slow, you
8058 may want to reduce this value, at the cost of a less effective filter and the
8059 risk of various artefacts.
8060
8061 If the overlapping value doesn't permit processing the whole input width or
8062 height, a warning will be displayed and according borders won't be denoised.
8063
8064 Default value is @var{blocksize}-1, which is the best possible setting.
8065
8066 @item expr, e
8067 Set the coefficient factor expression.
8068
8069 For each coefficient of a DCT block, this expression will be evaluated as a
8070 multiplier value for the coefficient.
8071
8072 If this is option is set, the @option{sigma} option will be ignored.
8073
8074 The absolute value of the coefficient can be accessed through the @var{c}
8075 variable.
8076
8077 @item n
8078 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
8079 @var{blocksize}, which is the width and height of the processed blocks.
8080
8081 The default value is @var{3} (8x8) and can be raised to @var{4} for a
8082 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
8083 on the speed processing. Also, a larger block size does not necessarily means a
8084 better de-noising.
8085 @end table
8086
8087 @subsection Examples
8088
8089 Apply a denoise with a @option{sigma} of @code{4.5}:
8090 @example
8091 dctdnoiz=4.5
8092 @end example
8093
8094 The same operation can be achieved using the expression system:
8095 @example
8096 dctdnoiz=e='gte(c, 4.5*3)'
8097 @end example
8098
8099 Violent denoise using a block size of @code{16x16}:
8100 @example
8101 dctdnoiz=15:n=4
8102 @end example
8103
8104 @section deband
8105
8106 Remove banding artifacts from input video.
8107 It works by replacing banded pixels with average value of referenced pixels.
8108
8109 The filter accepts the following options:
8110
8111 @table @option
8112 @item 1thr
8113 @item 2thr
8114 @item 3thr
8115 @item 4thr
8116 Set banding detection threshold for each plane. Default is 0.02.
8117 Valid range is 0.00003 to 0.5.
8118 If difference between current pixel and reference pixel is less than threshold,
8119 it will be considered as banded.
8120
8121 @item range, r
8122 Banding detection range in pixels. Default is 16. If positive, random number
8123 in range 0 to set value will be used. If negative, exact absolute value
8124 will be used.
8125 The range defines square of four pixels around current pixel.
8126
8127 @item direction, d
8128 Set direction in radians from which four pixel will be compared. If positive,
8129 random direction from 0 to set direction will be picked. If negative, exact of
8130 absolute value will be picked. For example direction 0, -PI or -2*PI radians
8131 will pick only pixels on same row and -PI/2 will pick only pixels on same
8132 column.
8133
8134 @item blur, b
8135 If enabled, current pixel is compared with average value of all four
8136 surrounding pixels. The default is enabled. If disabled current pixel is
8137 compared with all four surrounding pixels. The pixel is considered banded
8138 if only all four differences with surrounding pixels are less than threshold.
8139
8140 @item coupling, c
8141 If enabled, current pixel is changed if and only if all pixel components are banded,
8142 e.g. banding detection threshold is triggered for all color components.
8143 The default is disabled.
8144 @end table
8145
8146 @section deblock
8147
8148 Remove blocking artifacts from input video.
8149
8150 The filter accepts the following options:
8151
8152 @table @option
8153 @item filter
8154 Set filter type, can be @var{weak} or @var{strong}. Default is @var{strong}.
8155 This controls what kind of deblocking is applied.
8156
8157 @item block
8158 Set size of block, allowed range is from 4 to 512. Default is @var{8}.
8159
8160 @item alpha
8161 @item beta
8162 @item gamma
8163 @item delta
8164 Set blocking detection thresholds. Allowed range is 0 to 1.
8165 Defaults are: @var{0.098} for @var{alpha} and @var{0.05} for the rest.
8166 Using higher threshold gives more deblocking strength.
8167 Setting @var{alpha} controls threshold detection at exact edge of block.
8168 Remaining options controls threshold detection near the edge. Each one for
8169 below/above or left/right. Setting any of those to @var{0} disables
8170 deblocking.
8171
8172 @item planes
8173 Set planes to filter. Default is to filter all available planes.
8174 @end table
8175
8176 @subsection Examples
8177
8178 @itemize
8179 @item
8180 Deblock using weak filter and block size of 4 pixels.
8181 @example
8182 deblock=filter=weak:block=4
8183 @end example
8184
8185 @item
8186 Deblock using strong filter, block size of 4 pixels and custom thresholds for
8187 deblocking more edges.
8188 @example
8189 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05
8190 @end example
8191
8192 @item
8193 Similar as above, but filter only first plane.
8194 @example
8195 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=1
8196 @end example
8197
8198 @item
8199 Similar as above, but filter only second and third plane.
8200 @example
8201 deblock=filter=strong:block=4:alpha=0.12:beta=0.07:gamma=0.06:delta=0.05:planes=6
8202 @end example
8203 @end itemize
8204
8205 @anchor{decimate}
8206 @section decimate
8207
8208 Drop duplicated frames at regular intervals.
8209
8210 The filter accepts the following options:
8211
8212 @table @option
8213 @item cycle
8214 Set the number of frames from which one will be dropped. Setting this to
8215 @var{N} means one frame in every batch of @var{N} frames will be dropped.
8216 Default is @code{5}.
8217
8218 @item dupthresh
8219 Set the threshold for duplicate detection. If the difference metric for a frame
8220 is less than or equal to this value, then it is declared as duplicate. Default
8221 is @code{1.1}
8222
8223 @item scthresh
8224 Set scene change threshold. Default is @code{15}.
8225
8226 @item blockx
8227 @item blocky
8228 Set the size of the x and y-axis blocks used during metric calculations.
8229 Larger blocks give better noise suppression, but also give worse detection of
8230 small movements. Must be a power of two. Default is @code{32}.
8231
8232 @item ppsrc
8233 Mark main input as a pre-processed input and activate clean source input
8234 stream. This allows the input to be pre-processed with various filters to help
8235 the metrics calculation while keeping the frame selection lossless. When set to
8236 @code{1}, the first stream is for the pre-processed input, and the second
8237 stream is the clean source from where the kept frames are chosen. Default is
8238 @code{0}.
8239
8240 @item chroma
8241 Set whether or not chroma is considered in the metric calculations. Default is
8242 @code{1}.
8243 @end table
8244
8245 @section deconvolve
8246
8247 Apply 2D deconvolution of video stream in frequency domain using second stream
8248 as impulse.
8249
8250 The filter accepts the following options:
8251
8252 @table @option
8253 @item planes
8254 Set which planes to process.
8255
8256 @item impulse
8257 Set which impulse video frames will be processed, can be @var{first}
8258 or @var{all}. Default is @var{all}.
8259
8260 @item noise
8261 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
8262 and height are not same and not power of 2 or if stream prior to convolving
8263 had noise.
8264 @end table
8265
8266 The @code{deconvolve} filter also supports the @ref{framesync} options.
8267
8268 @section dedot
8269
8270 Reduce cross-luminance (dot-crawl) and cross-color (rainbows) from video.
8271
8272 It accepts the following options:
8273
8274 @table @option
8275 @item m
8276 Set mode of operation. Can be combination of @var{dotcrawl} for cross-luminance reduction and/or
8277 @var{rainbows} for cross-color reduction.
8278
8279 @item lt
8280 Set spatial luma threshold. Lower values increases reduction of cross-luminance.
8281
8282 @item tl
8283 Set tolerance for temporal luma. Higher values increases reduction of cross-luminance.
8284
8285 @item tc
8286 Set tolerance for chroma temporal variation. Higher values increases reduction of cross-color.
8287
8288 @item ct
8289 Set temporal chroma threshold. Lower values increases reduction of cross-color.
8290 @end table
8291
8292 @section deflate
8293
8294 Apply deflate effect to the video.
8295
8296 This filter replaces the pixel by the local(3x3) average by taking into account
8297 only values lower than the pixel.
8298
8299 It accepts the following options:
8300
8301 @table @option
8302 @item threshold0
8303 @item threshold1
8304 @item threshold2
8305 @item threshold3
8306 Limit the maximum change for each plane, default is 65535.
8307 If 0, plane will remain unchanged.
8308 @end table
8309
8310 @section deflicker
8311
8312 Remove temporal frame luminance variations.
8313
8314 It accepts the following options:
8315
8316 @table @option
8317 @item size, s
8318 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
8319
8320 @item mode, m
8321 Set averaging mode to smooth temporal luminance variations.
8322
8323 Available values are:
8324 @table @samp
8325 @item am
8326 Arithmetic mean
8327
8328 @item gm
8329 Geometric mean
8330
8331 @item hm
8332 Harmonic mean
8333
8334 @item qm
8335 Quadratic mean
8336
8337 @item cm
8338 Cubic mean
8339
8340 @item pm
8341 Power mean
8342
8343 @item median
8344 Median
8345 @end table
8346
8347 @item bypass
8348 Do not actually modify frame. Useful when one only wants metadata.
8349 @end table
8350
8351 @section dejudder
8352
8353 Remove judder produced by partially interlaced telecined content.
8354
8355 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
8356 source was partially telecined content then the output of @code{pullup,dejudder}
8357 will have a variable frame rate. May change the recorded frame rate of the
8358 container. Aside from that change, this filter will not affect constant frame
8359 rate video.
8360
8361 The option available in this filter is:
8362 @table @option
8363
8364 @item cycle
8365 Specify the length of the window over which the judder repeats.
8366
8367 Accepts any integer greater than 1. Useful values are:
8368 @table @samp
8369
8370 @item 4
8371 If the original was telecined from 24 to 30 fps (Film to NTSC).
8372
8373 @item 5
8374 If the original was telecined from 25 to 30 fps (PAL to NTSC).
8375
8376 @item 20
8377 If a mixture of the two.
8378 @end table
8379
8380 The default is @samp{4}.
8381 @end table
8382
8383 @section delogo
8384
8385 Suppress a TV station logo by a simple interpolation of the surrounding
8386 pixels. Just set a rectangle covering the logo and watch it disappear
8387 (and sometimes something even uglier appear - your mileage may vary).
8388
8389 It accepts the following parameters:
8390 @table @option
8391
8392 @item x
8393 @item y
8394 Specify the top left corner coordinates of the logo. They must be
8395 specified.
8396
8397 @item w
8398 @item h
8399 Specify the width and height of the logo to clear. They must be
8400 specified.
8401
8402 @item band, t
8403 Specify the thickness of the fuzzy edge of the rectangle (added to
8404 @var{w} and @var{h}). The default value is 1. This option is
8405 deprecated, setting higher values should no longer be necessary and
8406 is not recommended.
8407
8408 @item show
8409 When set to 1, a green rectangle is drawn on the screen to simplify
8410 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
8411 The default value is 0.
8412
8413 The rectangle is drawn on the outermost pixels which will be (partly)
8414 replaced with interpolated values. The values of the next pixels
8415 immediately outside this rectangle in each direction will be used to
8416 compute the interpolated pixel values inside the rectangle.
8417
8418 @end table
8419
8420 @subsection Examples
8421
8422 @itemize
8423 @item
8424 Set a rectangle covering the area with top left corner coordinates 0,0
8425 and size 100x77, and a band of size 10:
8426 @example
8427 delogo=x=0:y=0:w=100:h=77:band=10
8428 @end example
8429
8430 @end itemize
8431
8432 @section derain
8433
8434 Remove the rain in the input image/video by applying the derain methods based on
8435 convolutional neural networks. Supported models:
8436
8437 @itemize
8438 @item
8439 Recurrent Squeeze-and-Excitation Context Aggregation Net (RESCAN).
8440 See @url{http://openaccess.thecvf.com/content_ECCV_2018/papers/Xia_Li_Recurrent_Squeeze-and-Excitation_Context_ECCV_2018_paper.pdf}.
8441 @end itemize
8442
8443 Training scripts as well as scripts for model generation are provided in
8444 the repository at @url{https://github.com/XueweiMeng/derain_filter.git}.
8445
8446 The filter accepts the following options:
8447
8448 @table @option
8449 @item dnn_backend
8450 Specify which DNN backend to use for model loading and execution. This option accepts
8451 the following values:
8452
8453 @table @samp
8454 @item native
8455 Native implementation of DNN loading and execution.
8456 @end table
8457 Default value is @samp{native}.
8458
8459 @item model
8460 Set path to model file specifying network architecture and its parameters.
8461 Note that different backends use different file formats. TensorFlow backend
8462 can load files for both formats, while native backend can load files for only
8463 its format.
8464 @end table
8465
8466 @section deshake
8467
8468 Attempt to fix small changes in horizontal and/or vertical shift. This
8469 filter helps remove camera shake from hand-holding a camera, bumping a
8470 tripod, moving on a vehicle, etc.
8471
8472 The filter accepts the following options:
8473
8474 @table @option
8475
8476 @item x
8477 @item y
8478 @item w
8479 @item h
8480 Specify a rectangular area where to limit the search for motion
8481 vectors.
8482 If desired the search for motion vectors can be limited to a
8483 rectangular area of the frame defined by its top left corner, width
8484 and height. These parameters have the same meaning as the drawbox
8485 filter which can be used to visualise the position of the bounding
8486 box.
8487
8488 This is useful when simultaneous movement of subjects within the frame
8489 might be confused for camera motion by the motion vector search.
8490
8491 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
8492 then the full frame is used. This allows later options to be set
8493 without specifying the bounding box for the motion vector search.
8494
8495 Default - search the whole frame.
8496
8497 @item rx
8498 @item ry
8499 Specify the maximum extent of movement in x and y directions in the
8500 range 0-64 pixels. Default 16.
8501
8502 @item edge
8503 Specify how to generate pixels to fill blanks at the edge of the
8504 frame. Available values are:
8505 @table @samp
8506 @item blank, 0
8507 Fill zeroes at blank locations
8508 @item original, 1
8509 Original image at blank locations
8510 @item clamp, 2
8511 Extruded edge value at blank locations
8512 @item mirror, 3
8513 Mirrored edge at blank locations
8514 @end table
8515 Default value is @samp{mirror}.
8516
8517 @item blocksize
8518 Specify the blocksize to use for motion search. Range 4-128 pixels,
8519 default 8.
8520
8521 @item contrast
8522 Specify the contrast threshold for blocks. Only blocks with more than
8523 the specified contrast (difference between darkest and lightest
8524 pixels) will be considered. Range 1-255, default 125.
8525
8526 @item search
8527 Specify the search strategy. Available values are:
8528 @table @samp
8529 @item exhaustive, 0
8530 Set exhaustive search
8531 @item less, 1
8532 Set less exhaustive search.
8533 @end table
8534 Default value is @samp{exhaustive}.
8535
8536 @item filename
8537 If set then a detailed log of the motion search is written to the
8538 specified file.
8539
8540 @end table
8541
8542 @section despill
8543
8544 Remove unwanted contamination of foreground colors, caused by reflected color of
8545 greenscreen or bluescreen.
8546
8547 This filter accepts the following options:
8548
8549 @table @option
8550 @item type
8551 Set what type of despill to use.
8552
8553 @item mix
8554 Set how spillmap will be generated.
8555
8556 @item expand
8557 Set how much to get rid of still remaining spill.
8558
8559 @item red
8560 Controls amount of red in spill area.
8561
8562 @item green
8563 Controls amount of green in spill area.
8564 Should be -1 for greenscreen.
8565
8566 @item blue
8567 Controls amount of blue in spill area.
8568 Should be -1 for bluescreen.
8569
8570 @item brightness
8571 Controls brightness of spill area, preserving colors.
8572
8573 @item alpha
8574 Modify alpha from generated spillmap.
8575 @end table
8576
8577 @section detelecine
8578
8579 Apply an exact inverse of the telecine operation. It requires a predefined
8580 pattern specified using the pattern option which must be the same as that passed
8581 to the telecine filter.
8582
8583 This filter accepts the following options:
8584
8585 @table @option
8586 @item first_field
8587 @table @samp
8588 @item top, t
8589 top field first
8590 @item bottom, b
8591 bottom field first
8592 The default value is @code{top}.
8593 @end table
8594
8595 @item pattern
8596 A string of numbers representing the pulldown pattern you wish to apply.
8597 The default value is @code{23}.
8598
8599 @item start_frame
8600 A number representing position of the first frame with respect to the telecine
8601 pattern. This is to be used if the stream is cut. The default value is @code{0}.
8602 @end table
8603
8604 @section dilation
8605
8606 Apply dilation effect to the video.
8607
8608 This filter replaces the pixel by the local(3x3) maximum.
8609
8610 It accepts the following options:
8611
8612 @table @option
8613 @item threshold0
8614 @item threshold1
8615 @item threshold2
8616 @item threshold3
8617 Limit the maximum change for each plane, default is 65535.
8618 If 0, plane will remain unchanged.
8619
8620 @item coordinates
8621 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8622 pixels are used.
8623
8624 Flags to local 3x3 coordinates maps like this:
8625
8626     1 2 3
8627     4   5
8628     6 7 8
8629 @end table
8630
8631 @section displace
8632
8633 Displace pixels as indicated by second and third input stream.
8634
8635 It takes three input streams and outputs one stream, the first input is the
8636 source, and second and third input are displacement maps.
8637
8638 The second input specifies how much to displace pixels along the
8639 x-axis, while the third input specifies how much to displace pixels
8640 along the y-axis.
8641 If one of displacement map streams terminates, last frame from that
8642 displacement map will be used.
8643
8644 Note that once generated, displacements maps can be reused over and over again.
8645
8646 A description of the accepted options follows.
8647
8648 @table @option
8649 @item edge
8650 Set displace behavior for pixels that are out of range.
8651
8652 Available values are:
8653 @table @samp
8654 @item blank
8655 Missing pixels are replaced by black pixels.
8656
8657 @item smear
8658 Adjacent pixels will spread out to replace missing pixels.
8659
8660 @item wrap
8661 Out of range pixels are wrapped so they point to pixels of other side.
8662
8663 @item mirror
8664 Out of range pixels will be replaced with mirrored pixels.
8665 @end table
8666 Default is @samp{smear}.
8667
8668 @end table
8669
8670 @subsection Examples
8671
8672 @itemize
8673 @item
8674 Add ripple effect to rgb input of video size hd720:
8675 @example
8676 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
8677 @end example
8678
8679 @item
8680 Add wave effect to rgb input of video size hd720:
8681 @example
8682 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
8683 @end example
8684 @end itemize
8685
8686 @section drawbox
8687
8688 Draw a colored box on the input image.
8689
8690 It accepts the following parameters:
8691
8692 @table @option
8693 @item x
8694 @item y
8695 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
8696
8697 @item width, w
8698 @item height, h
8699 The expressions which specify the width and height of the box; if 0 they are interpreted as
8700 the input width and height. It defaults to 0.
8701
8702 @item color, c
8703 Specify the color of the box to write. For the general syntax of this option,
8704 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8705 value @code{invert} is used, the box edge color is the same as the
8706 video with inverted luma.
8707
8708 @item thickness, t
8709 The expression which sets the thickness of the box edge.
8710 A value of @code{fill} will create a filled box. Default value is @code{3}.
8711
8712 See below for the list of accepted constants.
8713
8714 @item replace
8715 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
8716 will overwrite the video's color and alpha pixels.
8717 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
8718 @end table
8719
8720 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8721 following constants:
8722
8723 @table @option
8724 @item dar
8725 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8726
8727 @item hsub
8728 @item vsub
8729 horizontal and vertical chroma subsample values. For example for the
8730 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8731
8732 @item in_h, ih
8733 @item in_w, iw
8734 The input width and height.
8735
8736 @item sar
8737 The input sample aspect ratio.
8738
8739 @item x
8740 @item y
8741 The x and y offset coordinates where the box is drawn.
8742
8743 @item w
8744 @item h
8745 The width and height of the drawn box.
8746
8747 @item t
8748 The thickness of the drawn box.
8749
8750 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8751 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8752
8753 @end table
8754
8755 @subsection Examples
8756
8757 @itemize
8758 @item
8759 Draw a black box around the edge of the input image:
8760 @example
8761 drawbox
8762 @end example
8763
8764 @item
8765 Draw a box with color red and an opacity of 50%:
8766 @example
8767 drawbox=10:20:200:60:red@@0.5
8768 @end example
8769
8770 The previous example can be specified as:
8771 @example
8772 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
8773 @end example
8774
8775 @item
8776 Fill the box with pink color:
8777 @example
8778 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
8779 @end example
8780
8781 @item
8782 Draw a 2-pixel red 2.40:1 mask:
8783 @example
8784 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
8785 @end example
8786 @end itemize
8787
8788 @section drawgrid
8789
8790 Draw a grid on the input image.
8791
8792 It accepts the following parameters:
8793
8794 @table @option
8795 @item x
8796 @item y
8797 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
8798
8799 @item width, w
8800 @item height, h
8801 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
8802 input width and height, respectively, minus @code{thickness}, so image gets
8803 framed. Default to 0.
8804
8805 @item color, c
8806 Specify the color of the grid. For the general syntax of this option,
8807 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
8808 value @code{invert} is used, the grid color is the same as the
8809 video with inverted luma.
8810
8811 @item thickness, t
8812 The expression which sets the thickness of the grid line. Default value is @code{1}.
8813
8814 See below for the list of accepted constants.
8815
8816 @item replace
8817 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
8818 will overwrite the video's color and alpha pixels.
8819 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
8820 @end table
8821
8822 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
8823 following constants:
8824
8825 @table @option
8826 @item dar
8827 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
8828
8829 @item hsub
8830 @item vsub
8831 horizontal and vertical chroma subsample values. For example for the
8832 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8833
8834 @item in_h, ih
8835 @item in_w, iw
8836 The input grid cell width and height.
8837
8838 @item sar
8839 The input sample aspect ratio.
8840
8841 @item x
8842 @item y
8843 The x and y coordinates of some point of grid intersection (meant to configure offset).
8844
8845 @item w
8846 @item h
8847 The width and height of the drawn cell.
8848
8849 @item t
8850 The thickness of the drawn cell.
8851
8852 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
8853 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
8854
8855 @end table
8856
8857 @subsection Examples
8858
8859 @itemize
8860 @item
8861 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
8862 @example
8863 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
8864 @end example
8865
8866 @item
8867 Draw a white 3x3 grid with an opacity of 50%:
8868 @example
8869 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
8870 @end example
8871 @end itemize
8872
8873 @anchor{drawtext}
8874 @section drawtext
8875
8876 Draw a text string or text from a specified file on top of a video, using the
8877 libfreetype library.
8878
8879 To enable compilation of this filter, you need to configure FFmpeg with
8880 @code{--enable-libfreetype}.
8881 To enable default font fallback and the @var{font} option you need to
8882 configure FFmpeg with @code{--enable-libfontconfig}.
8883 To enable the @var{text_shaping} option, you need to configure FFmpeg with
8884 @code{--enable-libfribidi}.
8885
8886 @subsection Syntax
8887
8888 It accepts the following parameters:
8889
8890 @table @option
8891
8892 @item box
8893 Used to draw a box around text using the background color.
8894 The value must be either 1 (enable) or 0 (disable).
8895 The default value of @var{box} is 0.
8896
8897 @item boxborderw
8898 Set the width of the border to be drawn around the box using @var{boxcolor}.
8899 The default value of @var{boxborderw} is 0.
8900
8901 @item boxcolor
8902 The color to be used for drawing box around text. For the syntax of this
8903 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8904
8905 The default value of @var{boxcolor} is "white".
8906
8907 @item line_spacing
8908 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
8909 The default value of @var{line_spacing} is 0.
8910
8911 @item borderw
8912 Set the width of the border to be drawn around the text using @var{bordercolor}.
8913 The default value of @var{borderw} is 0.
8914
8915 @item bordercolor
8916 Set the color to be used for drawing border around text. For the syntax of this
8917 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8918
8919 The default value of @var{bordercolor} is "black".
8920
8921 @item expansion
8922 Select how the @var{text} is expanded. Can be either @code{none},
8923 @code{strftime} (deprecated) or
8924 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
8925 below for details.
8926
8927 @item basetime
8928 Set a start time for the count. Value is in microseconds. Only applied
8929 in the deprecated strftime expansion mode. To emulate in normal expansion
8930 mode use the @code{pts} function, supplying the start time (in seconds)
8931 as the second argument.
8932
8933 @item fix_bounds
8934 If true, check and fix text coords to avoid clipping.
8935
8936 @item fontcolor
8937 The color to be used for drawing fonts. For the syntax of this option, check
8938 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
8939
8940 The default value of @var{fontcolor} is "black".
8941
8942 @item fontcolor_expr
8943 String which is expanded the same way as @var{text} to obtain dynamic
8944 @var{fontcolor} value. By default this option has empty value and is not
8945 processed. When this option is set, it overrides @var{fontcolor} option.
8946
8947 @item font
8948 The font family to be used for drawing text. By default Sans.
8949
8950 @item fontfile
8951 The font file to be used for drawing text. The path must be included.
8952 This parameter is mandatory if the fontconfig support is disabled.
8953
8954 @item alpha
8955 Draw the text applying alpha blending. The value can
8956 be a number between 0.0 and 1.0.
8957 The expression accepts the same variables @var{x, y} as well.
8958 The default value is 1.
8959 Please see @var{fontcolor_expr}.
8960
8961 @item fontsize
8962 The font size to be used for drawing text.
8963 The default value of @var{fontsize} is 16.
8964
8965 @item text_shaping
8966 If set to 1, attempt to shape the text (for example, reverse the order of
8967 right-to-left text and join Arabic characters) before drawing it.
8968 Otherwise, just draw the text exactly as given.
8969 By default 1 (if supported).
8970
8971 @item ft_load_flags
8972 The flags to be used for loading the fonts.
8973
8974 The flags map the corresponding flags supported by libfreetype, and are
8975 a combination of the following values:
8976 @table @var
8977 @item default
8978 @item no_scale
8979 @item no_hinting
8980 @item render
8981 @item no_bitmap
8982 @item vertical_layout
8983 @item force_autohint
8984 @item crop_bitmap
8985 @item pedantic
8986 @item ignore_global_advance_width
8987 @item no_recurse
8988 @item ignore_transform
8989 @item monochrome
8990 @item linear_design
8991 @item no_autohint
8992 @end table
8993
8994 Default value is "default".
8995
8996 For more information consult the documentation for the FT_LOAD_*
8997 libfreetype flags.
8998
8999 @item shadowcolor
9000 The color to be used for drawing a shadow behind the drawn text. For the
9001 syntax of this option, check the @ref{color syntax,,"Color" section in the
9002 ffmpeg-utils manual,ffmpeg-utils}.
9003
9004 The default value of @var{shadowcolor} is "black".
9005
9006 @item shadowx
9007 @item shadowy
9008 The x and y offsets for the text shadow position with respect to the
9009 position of the text. They can be either positive or negative
9010 values. The default value for both is "0".
9011
9012 @item start_number
9013 The starting frame number for the n/frame_num variable. The default value
9014 is "0".
9015
9016 @item tabsize
9017 The size in number of spaces to use for rendering the tab.
9018 Default value is 4.
9019
9020 @item timecode
9021 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
9022 format. It can be used with or without text parameter. @var{timecode_rate}
9023 option must be specified.
9024
9025 @item timecode_rate, rate, r
9026 Set the timecode frame rate (timecode only). Value will be rounded to nearest
9027 integer. Minimum value is "1".
9028 Drop-frame timecode is supported for frame rates 30 & 60.
9029
9030 @item tc24hmax
9031 If set to 1, the output of the timecode option will wrap around at 24 hours.
9032 Default is 0 (disabled).
9033
9034 @item text
9035 The text string to be drawn. The text must be a sequence of UTF-8
9036 encoded characters.
9037 This parameter is mandatory if no file is specified with the parameter
9038 @var{textfile}.
9039
9040 @item textfile
9041 A text file containing text to be drawn. The text must be a sequence
9042 of UTF-8 encoded characters.
9043
9044 This parameter is mandatory if no text string is specified with the
9045 parameter @var{text}.
9046
9047 If both @var{text} and @var{textfile} are specified, an error is thrown.
9048
9049 @item reload
9050 If set to 1, the @var{textfile} will be reloaded before each frame.
9051 Be sure to update it atomically, or it may be read partially, or even fail.
9052
9053 @item x
9054 @item y
9055 The expressions which specify the offsets where text will be drawn
9056 within the video frame. They are relative to the top/left border of the
9057 output image.
9058
9059 The default value of @var{x} and @var{y} is "0".
9060
9061 See below for the list of accepted constants and functions.
9062 @end table
9063
9064 The parameters for @var{x} and @var{y} are expressions containing the
9065 following constants and functions:
9066
9067 @table @option
9068 @item dar
9069 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
9070
9071 @item hsub
9072 @item vsub
9073 horizontal and vertical chroma subsample values. For example for the
9074 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9075
9076 @item line_h, lh
9077 the height of each text line
9078
9079 @item main_h, h, H
9080 the input height
9081
9082 @item main_w, w, W
9083 the input width
9084
9085 @item max_glyph_a, ascent
9086 the maximum distance from the baseline to the highest/upper grid
9087 coordinate used to place a glyph outline point, for all the rendered
9088 glyphs.
9089 It is a positive value, due to the grid's orientation with the Y axis
9090 upwards.
9091
9092 @item max_glyph_d, descent
9093 the maximum distance from the baseline to the lowest grid coordinate
9094 used to place a glyph outline point, for all the rendered glyphs.
9095 This is a negative value, due to the grid's orientation, with the Y axis
9096 upwards.
9097
9098 @item max_glyph_h
9099 maximum glyph height, that is the maximum height for all the glyphs
9100 contained in the rendered text, it is equivalent to @var{ascent} -
9101 @var{descent}.
9102
9103 @item max_glyph_w
9104 maximum glyph width, that is the maximum width for all the glyphs
9105 contained in the rendered text
9106
9107 @item n
9108 the number of input frame, starting from 0
9109
9110 @item rand(min, max)
9111 return a random number included between @var{min} and @var{max}
9112
9113 @item sar
9114 The input sample aspect ratio.
9115
9116 @item t
9117 timestamp expressed in seconds, NAN if the input timestamp is unknown
9118
9119 @item text_h, th
9120 the height of the rendered text
9121
9122 @item text_w, tw
9123 the width of the rendered text
9124
9125 @item x
9126 @item y
9127 the x and y offset coordinates where the text is drawn.
9128
9129 These parameters allow the @var{x} and @var{y} expressions to refer
9130 to each other, so you can for example specify @code{y=x/dar}.
9131
9132 @item pict_type
9133 A one character description of the current frame's picture type.
9134
9135 @item pkt_pos
9136 The current packet's position in the input file or stream
9137 (in bytes, from the start of the input). A value of -1 indicates
9138 this info is not available.
9139
9140 @item pkt_duration
9141 The current packet's duration, in seconds.
9142
9143 @item pkt_size
9144 The current packet's size (in bytes).
9145 @end table
9146
9147 @anchor{drawtext_expansion}
9148 @subsection Text expansion
9149
9150 If @option{expansion} is set to @code{strftime},
9151 the filter recognizes strftime() sequences in the provided text and
9152 expands them accordingly. Check the documentation of strftime(). This
9153 feature is deprecated.
9154
9155 If @option{expansion} is set to @code{none}, the text is printed verbatim.
9156
9157 If @option{expansion} is set to @code{normal} (which is the default),
9158 the following expansion mechanism is used.
9159
9160 The backslash character @samp{\}, followed by any character, always expands to
9161 the second character.
9162
9163 Sequences of the form @code{%@{...@}} are expanded. The text between the
9164 braces is a function name, possibly followed by arguments separated by ':'.
9165 If the arguments contain special characters or delimiters (':' or '@}'),
9166 they should be escaped.
9167
9168 Note that they probably must also be escaped as the value for the
9169 @option{text} option in the filter argument string and as the filter
9170 argument in the filtergraph description, and possibly also for the shell,
9171 that makes up to four levels of escaping; using a text file avoids these
9172 problems.
9173
9174 The following functions are available:
9175
9176 @table @command
9177
9178 @item expr, e
9179 The expression evaluation result.
9180
9181 It must take one argument specifying the expression to be evaluated,
9182 which accepts the same constants and functions as the @var{x} and
9183 @var{y} values. Note that not all constants should be used, for
9184 example the text size is not known when evaluating the expression, so
9185 the constants @var{text_w} and @var{text_h} will have an undefined
9186 value.
9187
9188 @item expr_int_format, eif
9189 Evaluate the expression's value and output as formatted integer.
9190
9191 The first argument is the expression to be evaluated, just as for the @var{expr} function.
9192 The second argument specifies the output format. Allowed values are @samp{x},
9193 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
9194 @code{printf} function.
9195 The third parameter is optional and sets the number of positions taken by the output.
9196 It can be used to add padding with zeros from the left.
9197
9198 @item gmtime
9199 The time at which the filter is running, expressed in UTC.
9200 It can accept an argument: a strftime() format string.
9201
9202 @item localtime
9203 The time at which the filter is running, expressed in the local time zone.
9204 It can accept an argument: a strftime() format string.
9205
9206 @item metadata
9207 Frame metadata. Takes one or two arguments.
9208
9209 The first argument is mandatory and specifies the metadata key.
9210
9211 The second argument is optional and specifies a default value, used when the
9212 metadata key is not found or empty.
9213
9214 Available metadata can be identified by inspecting entries
9215 starting with TAG included within each frame section
9216 printed by running @code{ffprobe -show_frames}.
9217
9218 String metadata generated in filters leading to
9219 the drawtext filter are also available.
9220
9221 @item n, frame_num
9222 The frame number, starting from 0.
9223
9224 @item pict_type
9225 A one character description of the current picture type.
9226
9227 @item pts
9228 The timestamp of the current frame.
9229 It can take up to three arguments.
9230
9231 The first argument is the format of the timestamp; it defaults to @code{flt}
9232 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
9233 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
9234 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
9235 @code{localtime} stands for the timestamp of the frame formatted as
9236 local time zone time.
9237
9238 The second argument is an offset added to the timestamp.
9239
9240 If the format is set to @code{hms}, a third argument @code{24HH} may be
9241 supplied to present the hour part of the formatted timestamp in 24h format
9242 (00-23).
9243
9244 If the format is set to @code{localtime} or @code{gmtime},
9245 a third argument may be supplied: a strftime() format string.
9246 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
9247 @end table
9248
9249 @subsection Commands
9250
9251 This filter supports altering parameters via commands:
9252 @table @option
9253 @item reinit
9254 Alter existing filter parameters.
9255
9256 Syntax for the argument is the same as for filter invocation, e.g.
9257
9258 @example
9259 fontsize=56:fontcolor=green:text='Hello World'
9260 @end example
9261
9262 Full filter invocation with sendcmd would look like this:
9263
9264 @example
9265 sendcmd=c='56.0 drawtext reinit fontsize=56\:fontcolor=green\:text=Hello\\ World'
9266 @end example
9267 @end table
9268
9269 If the entire argument can't be parsed or applied as valid values then the filter will
9270 continue with its existing parameters.
9271
9272 @subsection Examples
9273
9274 @itemize
9275 @item
9276 Draw "Test Text" with font FreeSerif, using the default values for the
9277 optional parameters.
9278
9279 @example
9280 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
9281 @end example
9282
9283 @item
9284 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
9285 and y=50 (counting from the top-left corner of the screen), text is
9286 yellow with a red box around it. Both the text and the box have an
9287 opacity of 20%.
9288
9289 @example
9290 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
9291           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
9292 @end example
9293
9294 Note that the double quotes are not necessary if spaces are not used
9295 within the parameter list.
9296
9297 @item
9298 Show the text at the center of the video frame:
9299 @example
9300 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
9301 @end example
9302
9303 @item
9304 Show the text at a random position, switching to a new position every 30 seconds:
9305 @example
9306 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)"
9307 @end example
9308
9309 @item
9310 Show a text line sliding from right to left in the last row of the video
9311 frame. The file @file{LONG_LINE} is assumed to contain a single line
9312 with no newlines.
9313 @example
9314 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
9315 @end example
9316
9317 @item
9318 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
9319 @example
9320 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
9321 @end example
9322
9323 @item
9324 Draw a single green letter "g", at the center of the input video.
9325 The glyph baseline is placed at half screen height.
9326 @example
9327 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
9328 @end example
9329
9330 @item
9331 Show text for 1 second every 3 seconds:
9332 @example
9333 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
9334 @end example
9335
9336 @item
9337 Use fontconfig to set the font. Note that the colons need to be escaped.
9338 @example
9339 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
9340 @end example
9341
9342 @item
9343 Print the date of a real-time encoding (see strftime(3)):
9344 @example
9345 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
9346 @end example
9347
9348 @item
9349 Show text fading in and out (appearing/disappearing):
9350 @example
9351 #!/bin/sh
9352 DS=1.0 # display start
9353 DE=10.0 # display end
9354 FID=1.5 # fade in duration
9355 FOD=5 # fade out duration
9356 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 @}"
9357 @end example
9358
9359 @item
9360 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
9361 and the @option{fontsize} value are included in the @option{y} offset.
9362 @example
9363 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
9364 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
9365 @end example
9366
9367 @end itemize
9368
9369 For more information about libfreetype, check:
9370 @url{http://www.freetype.org/}.
9371
9372 For more information about fontconfig, check:
9373 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
9374
9375 For more information about libfribidi, check:
9376 @url{http://fribidi.org/}.
9377
9378 @section edgedetect
9379
9380 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
9381
9382 The filter accepts the following options:
9383
9384 @table @option
9385 @item low
9386 @item high
9387 Set low and high threshold values used by the Canny thresholding
9388 algorithm.
9389
9390 The high threshold selects the "strong" edge pixels, which are then
9391 connected through 8-connectivity with the "weak" edge pixels selected
9392 by the low threshold.
9393
9394 @var{low} and @var{high} threshold values must be chosen in the range
9395 [0,1], and @var{low} should be lesser or equal to @var{high}.
9396
9397 Default value for @var{low} is @code{20/255}, and default value for @var{high}
9398 is @code{50/255}.
9399
9400 @item mode
9401 Define the drawing mode.
9402
9403 @table @samp
9404 @item wires
9405 Draw white/gray wires on black background.
9406
9407 @item colormix
9408 Mix the colors to create a paint/cartoon effect.
9409
9410 @item canny
9411 Apply Canny edge detector on all selected planes.
9412 @end table
9413 Default value is @var{wires}.
9414
9415 @item planes
9416 Select planes for filtering. By default all available planes are filtered.
9417 @end table
9418
9419 @subsection Examples
9420
9421 @itemize
9422 @item
9423 Standard edge detection with custom values for the hysteresis thresholding:
9424 @example
9425 edgedetect=low=0.1:high=0.4
9426 @end example
9427
9428 @item
9429 Painting effect without thresholding:
9430 @example
9431 edgedetect=mode=colormix:high=0
9432 @end example
9433 @end itemize
9434
9435 @section eq
9436 Set brightness, contrast, saturation and approximate gamma adjustment.
9437
9438 The filter accepts the following options:
9439
9440 @table @option
9441 @item contrast
9442 Set the contrast expression. The value must be a float value in range
9443 @code{-2.0} to @code{2.0}. The default value is "1".
9444
9445 @item brightness
9446 Set the brightness expression. The value must be a float value in
9447 range @code{-1.0} to @code{1.0}. The default value is "0".
9448
9449 @item saturation
9450 Set the saturation expression. The value must be a float in
9451 range @code{0.0} to @code{3.0}. The default value is "1".
9452
9453 @item gamma
9454 Set the gamma expression. The value must be a float in range
9455 @code{0.1} to @code{10.0}.  The default value is "1".
9456
9457 @item gamma_r
9458 Set the gamma expression for red. The value must be a float in
9459 range @code{0.1} to @code{10.0}. The default value is "1".
9460
9461 @item gamma_g
9462 Set the gamma expression for green. The value must be a float in range
9463 @code{0.1} to @code{10.0}. The default value is "1".
9464
9465 @item gamma_b
9466 Set the gamma expression for blue. The value must be a float in range
9467 @code{0.1} to @code{10.0}. The default value is "1".
9468
9469 @item gamma_weight
9470 Set the gamma weight expression. It can be used to reduce the effect
9471 of a high gamma value on bright image areas, e.g. keep them from
9472 getting overamplified and just plain white. The value must be a float
9473 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
9474 gamma correction all the way down while @code{1.0} leaves it at its
9475 full strength. Default is "1".
9476
9477 @item eval
9478 Set when the expressions for brightness, contrast, saturation and
9479 gamma expressions are evaluated.
9480
9481 It accepts the following values:
9482 @table @samp
9483 @item init
9484 only evaluate expressions once during the filter initialization or
9485 when a command is processed
9486
9487 @item frame
9488 evaluate expressions for each incoming frame
9489 @end table
9490
9491 Default value is @samp{init}.
9492 @end table
9493
9494 The expressions accept the following parameters:
9495 @table @option
9496 @item n
9497 frame count of the input frame starting from 0
9498
9499 @item pos
9500 byte position of the corresponding packet in the input file, NAN if
9501 unspecified
9502
9503 @item r
9504 frame rate of the input video, NAN if the input frame rate is unknown
9505
9506 @item t
9507 timestamp expressed in seconds, NAN if the input timestamp is unknown
9508 @end table
9509
9510 @subsection Commands
9511 The filter supports the following commands:
9512
9513 @table @option
9514 @item contrast
9515 Set the contrast expression.
9516
9517 @item brightness
9518 Set the brightness expression.
9519
9520 @item saturation
9521 Set the saturation expression.
9522
9523 @item gamma
9524 Set the gamma expression.
9525
9526 @item gamma_r
9527 Set the gamma_r expression.
9528
9529 @item gamma_g
9530 Set gamma_g expression.
9531
9532 @item gamma_b
9533 Set gamma_b expression.
9534
9535 @item gamma_weight
9536 Set gamma_weight expression.
9537
9538 The command accepts the same syntax of the corresponding option.
9539
9540 If the specified expression is not valid, it is kept at its current
9541 value.
9542
9543 @end table
9544
9545 @section erosion
9546
9547 Apply erosion effect to the video.
9548
9549 This filter replaces the pixel by the local(3x3) minimum.
9550
9551 It accepts the following options:
9552
9553 @table @option
9554 @item threshold0
9555 @item threshold1
9556 @item threshold2
9557 @item threshold3
9558 Limit the maximum change for each plane, default is 65535.
9559 If 0, plane will remain unchanged.
9560
9561 @item coordinates
9562 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
9563 pixels are used.
9564
9565 Flags to local 3x3 coordinates maps like this:
9566
9567     1 2 3
9568     4   5
9569     6 7 8
9570 @end table
9571
9572 @section extractplanes
9573
9574 Extract color channel components from input video stream into
9575 separate grayscale video streams.
9576
9577 The filter accepts the following option:
9578
9579 @table @option
9580 @item planes
9581 Set plane(s) to extract.
9582
9583 Available values for planes are:
9584 @table @samp
9585 @item y
9586 @item u
9587 @item v
9588 @item a
9589 @item r
9590 @item g
9591 @item b
9592 @end table
9593
9594 Choosing planes not available in the input will result in an error.
9595 That means you cannot select @code{r}, @code{g}, @code{b} planes
9596 with @code{y}, @code{u}, @code{v} planes at same time.
9597 @end table
9598
9599 @subsection Examples
9600
9601 @itemize
9602 @item
9603 Extract luma, u and v color channel component from input video frame
9604 into 3 grayscale outputs:
9605 @example
9606 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
9607 @end example
9608 @end itemize
9609
9610 @section elbg
9611
9612 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
9613
9614 For each input image, the filter will compute the optimal mapping from
9615 the input to the output given the codebook length, that is the number
9616 of distinct output colors.
9617
9618 This filter accepts the following options.
9619
9620 @table @option
9621 @item codebook_length, l
9622 Set codebook length. The value must be a positive integer, and
9623 represents the number of distinct output colors. Default value is 256.
9624
9625 @item nb_steps, n
9626 Set the maximum number of iterations to apply for computing the optimal
9627 mapping. The higher the value the better the result and the higher the
9628 computation time. Default value is 1.
9629
9630 @item seed, s
9631 Set a random seed, must be an integer included between 0 and
9632 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
9633 will try to use a good random seed on a best effort basis.
9634
9635 @item pal8
9636 Set pal8 output pixel format. This option does not work with codebook
9637 length greater than 256.
9638 @end table
9639
9640 @section entropy
9641
9642 Measure graylevel entropy in histogram of color channels of video frames.
9643
9644 It accepts the following parameters:
9645
9646 @table @option
9647 @item mode
9648 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
9649
9650 @var{diff} mode measures entropy of histogram delta values, absolute differences
9651 between neighbour histogram values.
9652 @end table
9653
9654 @section fade
9655
9656 Apply a fade-in/out effect to the input video.
9657
9658 It accepts the following parameters:
9659
9660 @table @option
9661 @item type, t
9662 The effect type can be either "in" for a fade-in, or "out" for a fade-out
9663 effect.
9664 Default is @code{in}.
9665
9666 @item start_frame, s
9667 Specify the number of the frame to start applying the fade
9668 effect at. Default is 0.
9669
9670 @item nb_frames, n
9671 The number of frames that the fade effect lasts. At the end of the
9672 fade-in effect, the output video will have the same intensity as the input video.
9673 At the end of the fade-out transition, the output video will be filled with the
9674 selected @option{color}.
9675 Default is 25.
9676
9677 @item alpha
9678 If set to 1, fade only alpha channel, if one exists on the input.
9679 Default value is 0.
9680
9681 @item start_time, st
9682 Specify the timestamp (in seconds) of the frame to start to apply the fade
9683 effect. If both start_frame and start_time are specified, the fade will start at
9684 whichever comes last.  Default is 0.
9685
9686 @item duration, d
9687 The number of seconds for which the fade effect has to last. At the end of the
9688 fade-in effect the output video will have the same intensity as the input video,
9689 at the end of the fade-out transition the output video will be filled with the
9690 selected @option{color}.
9691 If both duration and nb_frames are specified, duration is used. Default is 0
9692 (nb_frames is used by default).
9693
9694 @item color, c
9695 Specify the color of the fade. Default is "black".
9696 @end table
9697
9698 @subsection Examples
9699
9700 @itemize
9701 @item
9702 Fade in the first 30 frames of video:
9703 @example
9704 fade=in:0:30
9705 @end example
9706
9707 The command above is equivalent to:
9708 @example
9709 fade=t=in:s=0:n=30
9710 @end example
9711
9712 @item
9713 Fade out the last 45 frames of a 200-frame video:
9714 @example
9715 fade=out:155:45
9716 fade=type=out:start_frame=155:nb_frames=45
9717 @end example
9718
9719 @item
9720 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
9721 @example
9722 fade=in:0:25, fade=out:975:25
9723 @end example
9724
9725 @item
9726 Make the first 5 frames yellow, then fade in from frame 5-24:
9727 @example
9728 fade=in:5:20:color=yellow
9729 @end example
9730
9731 @item
9732 Fade in alpha over first 25 frames of video:
9733 @example
9734 fade=in:0:25:alpha=1
9735 @end example
9736
9737 @item
9738 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
9739 @example
9740 fade=t=in:st=5.5:d=0.5
9741 @end example
9742
9743 @end itemize
9744
9745 @section fftfilt
9746 Apply arbitrary expressions to samples in frequency domain
9747
9748 @table @option
9749 @item dc_Y
9750 Adjust the dc value (gain) of the luma plane of the image. The filter
9751 accepts an integer value in range @code{0} to @code{1000}. The default
9752 value is set to @code{0}.
9753
9754 @item dc_U
9755 Adjust the dc value (gain) of the 1st chroma plane of the image. The
9756 filter accepts an integer value in range @code{0} to @code{1000}. The
9757 default value is set to @code{0}.
9758
9759 @item dc_V
9760 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
9761 filter accepts an integer value in range @code{0} to @code{1000}. The
9762 default value is set to @code{0}.
9763
9764 @item weight_Y
9765 Set the frequency domain weight expression for the luma plane.
9766
9767 @item weight_U
9768 Set the frequency domain weight expression for the 1st chroma plane.
9769
9770 @item weight_V
9771 Set the frequency domain weight expression for the 2nd chroma plane.
9772
9773 @item eval
9774 Set when the expressions are evaluated.
9775
9776 It accepts the following values:
9777 @table @samp
9778 @item init
9779 Only evaluate expressions once during the filter initialization.
9780
9781 @item frame
9782 Evaluate expressions for each incoming frame.
9783 @end table
9784
9785 Default value is @samp{init}.
9786
9787 The filter accepts the following variables:
9788 @item X
9789 @item Y
9790 The coordinates of the current sample.
9791
9792 @item W
9793 @item H
9794 The width and height of the image.
9795
9796 @item N
9797 The number of input frame, starting from 0.
9798 @end table
9799
9800 @subsection Examples
9801
9802 @itemize
9803 @item
9804 High-pass:
9805 @example
9806 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
9807 @end example
9808
9809 @item
9810 Low-pass:
9811 @example
9812 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
9813 @end example
9814
9815 @item
9816 Sharpen:
9817 @example
9818 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
9819 @end example
9820
9821 @item
9822 Blur:
9823 @example
9824 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
9825 @end example
9826
9827 @end itemize
9828
9829 @section fftdnoiz
9830 Denoise frames using 3D FFT (frequency domain filtering).
9831
9832 The filter accepts the following options:
9833
9834 @table @option
9835 @item sigma
9836 Set the noise sigma constant. This sets denoising strength.
9837 Default value is 1. Allowed range is from 0 to 30.
9838 Using very high sigma with low overlap may give blocking artifacts.
9839
9840 @item amount
9841 Set amount of denoising. By default all detected noise is reduced.
9842 Default value is 1. Allowed range is from 0 to 1.
9843
9844 @item block
9845 Set size of block, Default is 4, can be 3, 4, 5 or 6.
9846 Actual size of block in pixels is 2 to power of @var{block}, so by default
9847 block size in pixels is 2^4 which is 16.
9848
9849 @item overlap
9850 Set block overlap. Default is 0.5. Allowed range is from 0.2 to 0.8.
9851
9852 @item prev
9853 Set number of previous frames to use for denoising. By default is set to 0.
9854
9855 @item next
9856 Set number of next frames to to use for denoising. By default is set to 0.
9857
9858 @item planes
9859 Set planes which will be filtered, by default are all available filtered
9860 except alpha.
9861 @end table
9862
9863 @section field
9864
9865 Extract a single field from an interlaced image using stride
9866 arithmetic to avoid wasting CPU time. The output frames are marked as
9867 non-interlaced.
9868
9869 The filter accepts the following options:
9870
9871 @table @option
9872 @item type
9873 Specify whether to extract the top (if the value is @code{0} or
9874 @code{top}) or the bottom field (if the value is @code{1} or
9875 @code{bottom}).
9876 @end table
9877
9878 @section fieldhint
9879
9880 Create new frames by copying the top and bottom fields from surrounding frames
9881 supplied as numbers by the hint file.
9882
9883 @table @option
9884 @item hint
9885 Set file containing hints: absolute/relative frame numbers.
9886
9887 There must be one line for each frame in a clip. Each line must contain two
9888 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
9889 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
9890 is current frame number for @code{absolute} mode or out of [-1, 1] range
9891 for @code{relative} mode. First number tells from which frame to pick up top
9892 field and second number tells from which frame to pick up bottom field.
9893
9894 If optionally followed by @code{+} output frame will be marked as interlaced,
9895 else if followed by @code{-} output frame will be marked as progressive, else
9896 it will be marked same as input frame.
9897 If line starts with @code{#} or @code{;} that line is skipped.
9898
9899 @item mode
9900 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
9901 @end table
9902
9903 Example of first several lines of @code{hint} file for @code{relative} mode:
9904 @example
9905 0,0 - # first frame
9906 1,0 - # second frame, use third's frame top field and second's frame bottom field
9907 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
9908 1,0 -
9909 0,0 -
9910 0,0 -
9911 1,0 -
9912 1,0 -
9913 1,0 -
9914 0,0 -
9915 0,0 -
9916 1,0 -
9917 1,0 -
9918 1,0 -
9919 0,0 -
9920 @end example
9921
9922 @section fieldmatch
9923
9924 Field matching filter for inverse telecine. It is meant to reconstruct the
9925 progressive frames from a telecined stream. The filter does not drop duplicated
9926 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
9927 followed by a decimation filter such as @ref{decimate} in the filtergraph.
9928
9929 The separation of the field matching and the decimation is notably motivated by
9930 the possibility of inserting a de-interlacing filter fallback between the two.
9931 If the source has mixed telecined and real interlaced content,
9932 @code{fieldmatch} will not be able to match fields for the interlaced parts.
9933 But these remaining combed frames will be marked as interlaced, and thus can be
9934 de-interlaced by a later filter such as @ref{yadif} before decimation.
9935
9936 In addition to the various configuration options, @code{fieldmatch} can take an
9937 optional second stream, activated through the @option{ppsrc} option. If
9938 enabled, the frames reconstruction will be based on the fields and frames from
9939 this second stream. This allows the first input to be pre-processed in order to
9940 help the various algorithms of the filter, while keeping the output lossless
9941 (assuming the fields are matched properly). Typically, a field-aware denoiser,
9942 or brightness/contrast adjustments can help.
9943
9944 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
9945 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
9946 which @code{fieldmatch} is based on. While the semantic and usage are very
9947 close, some behaviour and options names can differ.
9948
9949 The @ref{decimate} filter currently only works for constant frame rate input.
9950 If your input has mixed telecined (30fps) and progressive content with a lower
9951 framerate like 24fps use the following filterchain to produce the necessary cfr
9952 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
9953
9954 The filter accepts the following options:
9955
9956 @table @option
9957 @item order
9958 Specify the assumed field order of the input stream. Available values are:
9959
9960 @table @samp
9961 @item auto
9962 Auto detect parity (use FFmpeg's internal parity value).
9963 @item bff
9964 Assume bottom field first.
9965 @item tff
9966 Assume top field first.
9967 @end table
9968
9969 Note that it is sometimes recommended not to trust the parity announced by the
9970 stream.
9971
9972 Default value is @var{auto}.
9973
9974 @item mode
9975 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
9976 sense that it won't risk creating jerkiness due to duplicate frames when
9977 possible, but if there are bad edits or blended fields it will end up
9978 outputting combed frames when a good match might actually exist. On the other
9979 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
9980 but will almost always find a good frame if there is one. The other values are
9981 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
9982 jerkiness and creating duplicate frames versus finding good matches in sections
9983 with bad edits, orphaned fields, blended fields, etc.
9984
9985 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
9986
9987 Available values are:
9988
9989 @table @samp
9990 @item pc
9991 2-way matching (p/c)
9992 @item pc_n
9993 2-way matching, and trying 3rd match if still combed (p/c + n)
9994 @item pc_u
9995 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
9996 @item pc_n_ub
9997 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
9998 still combed (p/c + n + u/b)
9999 @item pcn
10000 3-way matching (p/c/n)
10001 @item pcn_ub
10002 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
10003 detected as combed (p/c/n + u/b)
10004 @end table
10005
10006 The parenthesis at the end indicate the matches that would be used for that
10007 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
10008 @var{top}).
10009
10010 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
10011 the slowest.
10012
10013 Default value is @var{pc_n}.
10014
10015 @item ppsrc
10016 Mark the main input stream as a pre-processed input, and enable the secondary
10017 input stream as the clean source to pick the fields from. See the filter
10018 introduction for more details. It is similar to the @option{clip2} feature from
10019 VFM/TFM.
10020
10021 Default value is @code{0} (disabled).
10022
10023 @item field
10024 Set the field to match from. It is recommended to set this to the same value as
10025 @option{order} unless you experience matching failures with that setting. In
10026 certain circumstances changing the field that is used to match from can have a
10027 large impact on matching performance. Available values are:
10028
10029 @table @samp
10030 @item auto
10031 Automatic (same value as @option{order}).
10032 @item bottom
10033 Match from the bottom field.
10034 @item top
10035 Match from the top field.
10036 @end table
10037
10038 Default value is @var{auto}.
10039
10040 @item mchroma
10041 Set whether or not chroma is included during the match comparisons. In most
10042 cases it is recommended to leave this enabled. You should set this to @code{0}
10043 only if your clip has bad chroma problems such as heavy rainbowing or other
10044 artifacts. Setting this to @code{0} could also be used to speed things up at
10045 the cost of some accuracy.
10046
10047 Default value is @code{1}.
10048
10049 @item y0
10050 @item y1
10051 These define an exclusion band which excludes the lines between @option{y0} and
10052 @option{y1} from being included in the field matching decision. An exclusion
10053 band can be used to ignore subtitles, a logo, or other things that may
10054 interfere with the matching. @option{y0} sets the starting scan line and
10055 @option{y1} sets the ending line; all lines in between @option{y0} and
10056 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
10057 @option{y0} and @option{y1} to the same value will disable the feature.
10058 @option{y0} and @option{y1} defaults to @code{0}.
10059
10060 @item scthresh
10061 Set the scene change detection threshold as a percentage of maximum change on
10062 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
10063 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
10064 @option{scthresh} is @code{[0.0, 100.0]}.
10065
10066 Default value is @code{12.0}.
10067
10068 @item combmatch
10069 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
10070 account the combed scores of matches when deciding what match to use as the
10071 final match. Available values are:
10072
10073 @table @samp
10074 @item none
10075 No final matching based on combed scores.
10076 @item sc
10077 Combed scores are only used when a scene change is detected.
10078 @item full
10079 Use combed scores all the time.
10080 @end table
10081
10082 Default is @var{sc}.
10083
10084 @item combdbg
10085 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
10086 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
10087 Available values are:
10088
10089 @table @samp
10090 @item none
10091 No forced calculation.
10092 @item pcn
10093 Force p/c/n calculations.
10094 @item pcnub
10095 Force p/c/n/u/b calculations.
10096 @end table
10097
10098 Default value is @var{none}.
10099
10100 @item cthresh
10101 This is the area combing threshold used for combed frame detection. This
10102 essentially controls how "strong" or "visible" combing must be to be detected.
10103 Larger values mean combing must be more visible and smaller values mean combing
10104 can be less visible or strong and still be detected. Valid settings are from
10105 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
10106 be detected as combed). This is basically a pixel difference value. A good
10107 range is @code{[8, 12]}.
10108
10109 Default value is @code{9}.
10110
10111 @item chroma
10112 Sets whether or not chroma is considered in the combed frame decision.  Only
10113 disable this if your source has chroma problems (rainbowing, etc.) that are
10114 causing problems for the combed frame detection with chroma enabled. Actually,
10115 using @option{chroma}=@var{0} is usually more reliable, except for the case
10116 where there is chroma only combing in the source.
10117
10118 Default value is @code{0}.
10119
10120 @item blockx
10121 @item blocky
10122 Respectively set the x-axis and y-axis size of the window used during combed
10123 frame detection. This has to do with the size of the area in which
10124 @option{combpel} pixels are required to be detected as combed for a frame to be
10125 declared combed. See the @option{combpel} parameter description for more info.
10126 Possible values are any number that is a power of 2 starting at 4 and going up
10127 to 512.
10128
10129 Default value is @code{16}.
10130
10131 @item combpel
10132 The number of combed pixels inside any of the @option{blocky} by
10133 @option{blockx} size blocks on the frame for the frame to be detected as
10134 combed. While @option{cthresh} controls how "visible" the combing must be, this
10135 setting controls "how much" combing there must be in any localized area (a
10136 window defined by the @option{blockx} and @option{blocky} settings) on the
10137 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
10138 which point no frames will ever be detected as combed). This setting is known
10139 as @option{MI} in TFM/VFM vocabulary.
10140
10141 Default value is @code{80}.
10142 @end table
10143
10144 @anchor{p/c/n/u/b meaning}
10145 @subsection p/c/n/u/b meaning
10146
10147 @subsubsection p/c/n
10148
10149 We assume the following telecined stream:
10150
10151 @example
10152 Top fields:     1 2 2 3 4
10153 Bottom fields:  1 2 3 4 4
10154 @end example
10155
10156 The numbers correspond to the progressive frame the fields relate to. Here, the
10157 first two frames are progressive, the 3rd and 4th are combed, and so on.
10158
10159 When @code{fieldmatch} is configured to run a matching from bottom
10160 (@option{field}=@var{bottom}) this is how this input stream get transformed:
10161
10162 @example
10163 Input stream:
10164                 T     1 2 2 3 4
10165                 B     1 2 3 4 4   <-- matching reference
10166
10167 Matches:              c c n n c
10168
10169 Output stream:
10170                 T     1 2 3 4 4
10171                 B     1 2 3 4 4
10172 @end example
10173
10174 As a result of the field matching, we can see that some frames get duplicated.
10175 To perform a complete inverse telecine, you need to rely on a decimation filter
10176 after this operation. See for instance the @ref{decimate} filter.
10177
10178 The same operation now matching from top fields (@option{field}=@var{top})
10179 looks like this:
10180
10181 @example
10182 Input stream:
10183                 T     1 2 2 3 4   <-- matching reference
10184                 B     1 2 3 4 4
10185
10186 Matches:              c c p p c
10187
10188 Output stream:
10189                 T     1 2 2 3 4
10190                 B     1 2 2 3 4
10191 @end example
10192
10193 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
10194 basically, they refer to the frame and field of the opposite parity:
10195
10196 @itemize
10197 @item @var{p} matches the field of the opposite parity in the previous frame
10198 @item @var{c} matches the field of the opposite parity in the current frame
10199 @item @var{n} matches the field of the opposite parity in the next frame
10200 @end itemize
10201
10202 @subsubsection u/b
10203
10204 The @var{u} and @var{b} matching are a bit special in the sense that they match
10205 from the opposite parity flag. In the following examples, we assume that we are
10206 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
10207 'x' is placed above and below each matched fields.
10208
10209 With bottom matching (@option{field}=@var{bottom}):
10210 @example
10211 Match:           c         p           n          b          u
10212
10213                  x       x               x        x          x
10214   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10215   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10216                  x         x           x        x              x
10217
10218 Output frames:
10219                  2          1          2          2          2
10220                  2          2          2          1          3
10221 @end example
10222
10223 With top matching (@option{field}=@var{top}):
10224 @example
10225 Match:           c         p           n          b          u
10226
10227                  x         x           x        x              x
10228   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
10229   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
10230                  x       x               x        x          x
10231
10232 Output frames:
10233                  2          2          2          1          2
10234                  2          1          3          2          2
10235 @end example
10236
10237 @subsection Examples
10238
10239 Simple IVTC of a top field first telecined stream:
10240 @example
10241 fieldmatch=order=tff:combmatch=none, decimate
10242 @end example
10243
10244 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
10245 @example
10246 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
10247 @end example
10248
10249 @section fieldorder
10250
10251 Transform the field order of the input video.
10252
10253 It accepts the following parameters:
10254
10255 @table @option
10256
10257 @item order
10258 The output field order. Valid values are @var{tff} for top field first or @var{bff}
10259 for bottom field first.
10260 @end table
10261
10262 The default value is @samp{tff}.
10263
10264 The transformation is done by shifting the picture content up or down
10265 by one line, and filling the remaining line with appropriate picture content.
10266 This method is consistent with most broadcast field order converters.
10267
10268 If the input video is not flagged as being interlaced, or it is already
10269 flagged as being of the required output field order, then this filter does
10270 not alter the incoming video.
10271
10272 It is very useful when converting to or from PAL DV material,
10273 which is bottom field first.
10274
10275 For example:
10276 @example
10277 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
10278 @end example
10279
10280 @section fifo, afifo
10281
10282 Buffer input images and send them when they are requested.
10283
10284 It is mainly useful when auto-inserted by the libavfilter
10285 framework.
10286
10287 It does not take parameters.
10288
10289 @section fillborders
10290
10291 Fill borders of the input video, without changing video stream dimensions.
10292 Sometimes video can have garbage at the four edges and you may not want to
10293 crop video input to keep size multiple of some number.
10294
10295 This filter accepts the following options:
10296
10297 @table @option
10298 @item left
10299 Number of pixels to fill from left border.
10300
10301 @item right
10302 Number of pixels to fill from right border.
10303
10304 @item top
10305 Number of pixels to fill from top border.
10306
10307 @item bottom
10308 Number of pixels to fill from bottom border.
10309
10310 @item mode
10311 Set fill mode.
10312
10313 It accepts the following values:
10314 @table @samp
10315 @item smear
10316 fill pixels using outermost pixels
10317
10318 @item mirror
10319 fill pixels using mirroring
10320
10321 @item fixed
10322 fill pixels with constant value
10323 @end table
10324
10325 Default is @var{smear}.
10326
10327 @item color
10328 Set color for pixels in fixed mode. Default is @var{black}.
10329 @end table
10330
10331 @section find_rect
10332
10333 Find a rectangular object
10334
10335 It accepts the following options:
10336
10337 @table @option
10338 @item object
10339 Filepath of the object image, needs to be in gray8.
10340
10341 @item threshold
10342 Detection threshold, default is 0.5.
10343
10344 @item mipmaps
10345 Number of mipmaps, default is 3.
10346
10347 @item xmin, ymin, xmax, ymax
10348 Specifies the rectangle in which to search.
10349 @end table
10350
10351 @subsection Examples
10352
10353 @itemize
10354 @item
10355 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10356 @example
10357 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10358 @end example
10359 @end itemize
10360
10361 @section cover_rect
10362
10363 Cover a rectangular object
10364
10365 It accepts the following options:
10366
10367 @table @option
10368 @item cover
10369 Filepath of the optional cover image, needs to be in yuv420.
10370
10371 @item mode
10372 Set covering mode.
10373
10374 It accepts the following values:
10375 @table @samp
10376 @item cover
10377 cover it by the supplied image
10378 @item blur
10379 cover it by interpolating the surrounding pixels
10380 @end table
10381
10382 Default value is @var{blur}.
10383 @end table
10384
10385 @subsection Examples
10386
10387 @itemize
10388 @item
10389 Cover a rectangular object by the supplied image of a given video using @command{ffmpeg}:
10390 @example
10391 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
10392 @end example
10393 @end itemize
10394
10395 @section floodfill
10396
10397 Flood area with values of same pixel components with another values.
10398
10399 It accepts the following options:
10400 @table @option
10401 @item x
10402 Set pixel x coordinate.
10403
10404 @item y
10405 Set pixel y coordinate.
10406
10407 @item s0
10408 Set source #0 component value.
10409
10410 @item s1
10411 Set source #1 component value.
10412
10413 @item s2
10414 Set source #2 component value.
10415
10416 @item s3
10417 Set source #3 component value.
10418
10419 @item d0
10420 Set destination #0 component value.
10421
10422 @item d1
10423 Set destination #1 component value.
10424
10425 @item d2
10426 Set destination #2 component value.
10427
10428 @item d3
10429 Set destination #3 component value.
10430 @end table
10431
10432 @anchor{format}
10433 @section format
10434
10435 Convert the input video to one of the specified pixel formats.
10436 Libavfilter will try to pick one that is suitable as input to
10437 the next filter.
10438
10439 It accepts the following parameters:
10440 @table @option
10441
10442 @item pix_fmts
10443 A '|'-separated list of pixel format names, such as
10444 "pix_fmts=yuv420p|monow|rgb24".
10445
10446 @end table
10447
10448 @subsection Examples
10449
10450 @itemize
10451 @item
10452 Convert the input video to the @var{yuv420p} format
10453 @example
10454 format=pix_fmts=yuv420p
10455 @end example
10456
10457 Convert the input video to any of the formats in the list
10458 @example
10459 format=pix_fmts=yuv420p|yuv444p|yuv410p
10460 @end example
10461 @end itemize
10462
10463 @anchor{fps}
10464 @section fps
10465
10466 Convert the video to specified constant frame rate by duplicating or dropping
10467 frames as necessary.
10468
10469 It accepts the following parameters:
10470 @table @option
10471
10472 @item fps
10473 The desired output frame rate. The default is @code{25}.
10474
10475 @item start_time
10476 Assume the first PTS should be the given value, in seconds. This allows for
10477 padding/trimming at the start of stream. By default, no assumption is made
10478 about the first frame's expected PTS, so no padding or trimming is done.
10479 For example, this could be set to 0 to pad the beginning with duplicates of
10480 the first frame if a video stream starts after the audio stream or to trim any
10481 frames with a negative PTS.
10482
10483 @item round
10484 Timestamp (PTS) rounding method.
10485
10486 Possible values are:
10487 @table @option
10488 @item zero
10489 round towards 0
10490 @item inf
10491 round away from 0
10492 @item down
10493 round towards -infinity
10494 @item up
10495 round towards +infinity
10496 @item near
10497 round to nearest
10498 @end table
10499 The default is @code{near}.
10500
10501 @item eof_action
10502 Action performed when reading the last frame.
10503
10504 Possible values are:
10505 @table @option
10506 @item round
10507 Use same timestamp rounding method as used for other frames.
10508 @item pass
10509 Pass through last frame if input duration has not been reached yet.
10510 @end table
10511 The default is @code{round}.
10512
10513 @end table
10514
10515 Alternatively, the options can be specified as a flat string:
10516 @var{fps}[:@var{start_time}[:@var{round}]].
10517
10518 See also the @ref{setpts} filter.
10519
10520 @subsection Examples
10521
10522 @itemize
10523 @item
10524 A typical usage in order to set the fps to 25:
10525 @example
10526 fps=fps=25
10527 @end example
10528
10529 @item
10530 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
10531 @example
10532 fps=fps=film:round=near
10533 @end example
10534 @end itemize
10535
10536 @section framepack
10537
10538 Pack two different video streams into a stereoscopic video, setting proper
10539 metadata on supported codecs. The two views should have the same size and
10540 framerate and processing will stop when the shorter video ends. Please note
10541 that you may conveniently adjust view properties with the @ref{scale} and
10542 @ref{fps} filters.
10543
10544 It accepts the following parameters:
10545 @table @option
10546
10547 @item format
10548 The desired packing format. Supported values are:
10549
10550 @table @option
10551
10552 @item sbs
10553 The views are next to each other (default).
10554
10555 @item tab
10556 The views are on top of each other.
10557
10558 @item lines
10559 The views are packed by line.
10560
10561 @item columns
10562 The views are packed by column.
10563
10564 @item frameseq
10565 The views are temporally interleaved.
10566
10567 @end table
10568
10569 @end table
10570
10571 Some examples:
10572
10573 @example
10574 # Convert left and right views into a frame-sequential video
10575 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
10576
10577 # Convert views into a side-by-side video with the same output resolution as the input
10578 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
10579 @end example
10580
10581 @section framerate
10582
10583 Change the frame rate by interpolating new video output frames from the source
10584 frames.
10585
10586 This filter is not designed to function correctly with interlaced media. If
10587 you wish to change the frame rate of interlaced media then you are required
10588 to deinterlace before this filter and re-interlace after this filter.
10589
10590 A description of the accepted options follows.
10591
10592 @table @option
10593 @item fps
10594 Specify the output frames per second. This option can also be specified
10595 as a value alone. The default is @code{50}.
10596
10597 @item interp_start
10598 Specify the start of a range where the output frame will be created as a
10599 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10600 the default is @code{15}.
10601
10602 @item interp_end
10603 Specify the end of a range where the output frame will be created as a
10604 linear interpolation of two frames. The range is [@code{0}-@code{255}],
10605 the default is @code{240}.
10606
10607 @item scene
10608 Specify the level at which a scene change is detected as a value between
10609 0 and 100 to indicate a new scene; a low value reflects a low
10610 probability for the current frame to introduce a new scene, while a higher
10611 value means the current frame is more likely to be one.
10612 The default is @code{8.2}.
10613
10614 @item flags
10615 Specify flags influencing the filter process.
10616
10617 Available value for @var{flags} is:
10618
10619 @table @option
10620 @item scene_change_detect, scd
10621 Enable scene change detection using the value of the option @var{scene}.
10622 This flag is enabled by default.
10623 @end table
10624 @end table
10625
10626 @section framestep
10627
10628 Select one frame every N-th frame.
10629
10630 This filter accepts the following option:
10631 @table @option
10632 @item step
10633 Select frame after every @code{step} frames.
10634 Allowed values are positive integers higher than 0. Default value is @code{1}.
10635 @end table
10636
10637 @section freezedetect
10638
10639 Detect frozen video.
10640
10641 This filter logs a message and sets frame metadata when it detects that the
10642 input video has no significant change in content during a specified duration.
10643 Video freeze detection calculates the mean average absolute difference of all
10644 the components of video frames and compares it to a noise floor.
10645
10646 The printed times and duration are expressed in seconds. The
10647 @code{lavfi.freezedetect.freeze_start} metadata key is set on the first frame
10648 whose timestamp equals or exceeds the detection duration and it contains the
10649 timestamp of the first frame of the freeze. The
10650 @code{lavfi.freezedetect.freeze_duration} and
10651 @code{lavfi.freezedetect.freeze_end} metadata keys are set on the first frame
10652 after the freeze.
10653
10654 The filter accepts the following options:
10655
10656 @table @option
10657 @item noise, n
10658 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
10659 specified value) or as a difference ratio between 0 and 1. Default is -60dB, or
10660 0.001.
10661
10662 @item duration, d
10663 Set freeze duration until notification (default is 2 seconds).
10664 @end table
10665
10666 @anchor{frei0r}
10667 @section frei0r
10668
10669 Apply a frei0r effect to the input video.
10670
10671 To enable the compilation of this filter, you need to install the frei0r
10672 header and configure FFmpeg with @code{--enable-frei0r}.
10673
10674 It accepts the following parameters:
10675
10676 @table @option
10677
10678 @item filter_name
10679 The name of the frei0r effect to load. If the environment variable
10680 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
10681 directories specified by the colon-separated list in @env{FREI0R_PATH}.
10682 Otherwise, the standard frei0r paths are searched, in this order:
10683 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
10684 @file{/usr/lib/frei0r-1/}.
10685
10686 @item filter_params
10687 A '|'-separated list of parameters to pass to the frei0r effect.
10688
10689 @end table
10690
10691 A frei0r effect parameter can be a boolean (its value is either
10692 "y" or "n"), a double, a color (specified as
10693 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
10694 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
10695 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
10696 a position (specified as @var{X}/@var{Y}, where
10697 @var{X} and @var{Y} are floating point numbers) and/or a string.
10698
10699 The number and types of parameters depend on the loaded effect. If an
10700 effect parameter is not specified, the default value is set.
10701
10702 @subsection Examples
10703
10704 @itemize
10705 @item
10706 Apply the distort0r effect, setting the first two double parameters:
10707 @example
10708 frei0r=filter_name=distort0r:filter_params=0.5|0.01
10709 @end example
10710
10711 @item
10712 Apply the colordistance effect, taking a color as the first parameter:
10713 @example
10714 frei0r=colordistance:0.2/0.3/0.4
10715 frei0r=colordistance:violet
10716 frei0r=colordistance:0x112233
10717 @end example
10718
10719 @item
10720 Apply the perspective effect, specifying the top left and top right image
10721 positions:
10722 @example
10723 frei0r=perspective:0.2/0.2|0.8/0.2
10724 @end example
10725 @end itemize
10726
10727 For more information, see
10728 @url{http://frei0r.dyne.org}
10729
10730 @section fspp
10731
10732 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
10733
10734 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
10735 processing filter, one of them is performed once per block, not per pixel.
10736 This allows for much higher speed.
10737
10738 The filter accepts the following options:
10739
10740 @table @option
10741 @item quality
10742 Set quality. This option defines the number of levels for averaging. It accepts
10743 an integer in the range 4-5. Default value is @code{4}.
10744
10745 @item qp
10746 Force a constant quantization parameter. It accepts an integer in range 0-63.
10747 If not set, the filter will use the QP from the video stream (if available).
10748
10749 @item strength
10750 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
10751 more details but also more artifacts, while higher values make the image smoother
10752 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
10753
10754 @item use_bframe_qp
10755 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10756 option may cause flicker since the B-Frames have often larger QP. Default is
10757 @code{0} (not enabled).
10758
10759 @end table
10760
10761 @section gblur
10762
10763 Apply Gaussian blur filter.
10764
10765 The filter accepts the following options:
10766
10767 @table @option
10768 @item sigma
10769 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
10770
10771 @item steps
10772 Set number of steps for Gaussian approximation. Default is @code{1}.
10773
10774 @item planes
10775 Set which planes to filter. By default all planes are filtered.
10776
10777 @item sigmaV
10778 Set vertical sigma, if negative it will be same as @code{sigma}.
10779 Default is @code{-1}.
10780 @end table
10781
10782 @section geq
10783
10784 Apply generic equation to each pixel.
10785
10786 The filter accepts the following options:
10787
10788 @table @option
10789 @item lum_expr, lum
10790 Set the luminance expression.
10791 @item cb_expr, cb
10792 Set the chrominance blue expression.
10793 @item cr_expr, cr
10794 Set the chrominance red expression.
10795 @item alpha_expr, a
10796 Set the alpha expression.
10797 @item red_expr, r
10798 Set the red expression.
10799 @item green_expr, g
10800 Set the green expression.
10801 @item blue_expr, b
10802 Set the blue expression.
10803 @end table
10804
10805 The colorspace is selected according to the specified options. If one
10806 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
10807 options is specified, the filter will automatically select a YCbCr
10808 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
10809 @option{blue_expr} options is specified, it will select an RGB
10810 colorspace.
10811
10812 If one of the chrominance expression is not defined, it falls back on the other
10813 one. If no alpha expression is specified it will evaluate to opaque value.
10814 If none of chrominance expressions are specified, they will evaluate
10815 to the luminance expression.
10816
10817 The expressions can use the following variables and functions:
10818
10819 @table @option
10820 @item N
10821 The sequential number of the filtered frame, starting from @code{0}.
10822
10823 @item X
10824 @item Y
10825 The coordinates of the current sample.
10826
10827 @item W
10828 @item H
10829 The width and height of the image.
10830
10831 @item SW
10832 @item SH
10833 Width and height scale depending on the currently filtered plane. It is the
10834 ratio between the corresponding luma plane number of pixels and the current
10835 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
10836 @code{0.5,0.5} for chroma planes.
10837
10838 @item T
10839 Time of the current frame, expressed in seconds.
10840
10841 @item p(x, y)
10842 Return the value of the pixel at location (@var{x},@var{y}) of the current
10843 plane.
10844
10845 @item lum(x, y)
10846 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
10847 plane.
10848
10849 @item cb(x, y)
10850 Return the value of the pixel at location (@var{x},@var{y}) of the
10851 blue-difference chroma plane. Return 0 if there is no such plane.
10852
10853 @item cr(x, y)
10854 Return the value of the pixel at location (@var{x},@var{y}) of the
10855 red-difference chroma plane. Return 0 if there is no such plane.
10856
10857 @item r(x, y)
10858 @item g(x, y)
10859 @item b(x, y)
10860 Return the value of the pixel at location (@var{x},@var{y}) of the
10861 red/green/blue component. Return 0 if there is no such component.
10862
10863 @item alpha(x, y)
10864 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
10865 plane. Return 0 if there is no such plane.
10866 @end table
10867
10868 For functions, if @var{x} and @var{y} are outside the area, the value will be
10869 automatically clipped to the closer edge.
10870
10871 @subsection Examples
10872
10873 @itemize
10874 @item
10875 Flip the image horizontally:
10876 @example
10877 geq=p(W-X\,Y)
10878 @end example
10879
10880 @item
10881 Generate a bidimensional sine wave, with angle @code{PI/3} and a
10882 wavelength of 100 pixels:
10883 @example
10884 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
10885 @end example
10886
10887 @item
10888 Generate a fancy enigmatic moving light:
10889 @example
10890 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
10891 @end example
10892
10893 @item
10894 Generate a quick emboss effect:
10895 @example
10896 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
10897 @end example
10898
10899 @item
10900 Modify RGB components depending on pixel position:
10901 @example
10902 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
10903 @end example
10904
10905 @item
10906 Create a radial gradient that is the same size as the input (also see
10907 the @ref{vignette} filter):
10908 @example
10909 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
10910 @end example
10911 @end itemize
10912
10913 @section gradfun
10914
10915 Fix the banding artifacts that are sometimes introduced into nearly flat
10916 regions by truncation to 8-bit color depth.
10917 Interpolate the gradients that should go where the bands are, and
10918 dither them.
10919
10920 It is designed for playback only.  Do not use it prior to
10921 lossy compression, because compression tends to lose the dither and
10922 bring back the bands.
10923
10924 It accepts the following parameters:
10925
10926 @table @option
10927
10928 @item strength
10929 The maximum amount by which the filter will change any one pixel. This is also
10930 the threshold for detecting nearly flat regions. Acceptable values range from
10931 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
10932 valid range.
10933
10934 @item radius
10935 The neighborhood to fit the gradient to. A larger radius makes for smoother
10936 gradients, but also prevents the filter from modifying the pixels near detailed
10937 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
10938 values will be clipped to the valid range.
10939
10940 @end table
10941
10942 Alternatively, the options can be specified as a flat string:
10943 @var{strength}[:@var{radius}]
10944
10945 @subsection Examples
10946
10947 @itemize
10948 @item
10949 Apply the filter with a @code{3.5} strength and radius of @code{8}:
10950 @example
10951 gradfun=3.5:8
10952 @end example
10953
10954 @item
10955 Specify radius, omitting the strength (which will fall-back to the default
10956 value):
10957 @example
10958 gradfun=radius=8
10959 @end example
10960
10961 @end itemize
10962
10963 @section graphmonitor, agraphmonitor
10964 Show various filtergraph stats.
10965
10966 With this filter one can debug complete filtergraph.
10967 Especially issues with links filling with queued frames.
10968
10969 The filter accepts the following options:
10970
10971 @table @option
10972 @item size, s
10973 Set video output size. Default is @var{hd720}.
10974
10975 @item opacity, o
10976 Set video opacity. Default is @var{0.9}. Allowed range is from @var{0} to @var{1}.
10977
10978 @item mode, m
10979 Set output mode, can be @var{fulll} or @var{compact}.
10980 In @var{compact} mode only filters with some queued frames have displayed stats.
10981
10982 @item flags, f
10983 Set flags which enable which stats are shown in video.
10984
10985 Available values for flags are:
10986 @table @samp
10987 @item queue
10988 Display number of queued frames in each link.
10989
10990 @item frame_count_in
10991 Display number of frames taken from filter.
10992
10993 @item frame_count_out
10994 Display number of frames given out from filter.
10995
10996 @item pts
10997 Display current filtered frame pts.
10998
10999 @item time
11000 Display current filtered frame time.
11001
11002 @item timebase
11003 Display time base for filter link.
11004
11005 @item format
11006 Display used format for filter link.
11007
11008 @item size
11009 Display video size or number of audio channels in case of audio used by filter link.
11010
11011 @item rate
11012 Display video frame rate or sample rate in case of audio used by filter link.
11013 @end table
11014
11015 @item rate, r
11016 Set upper limit for video rate of output stream, Default value is @var{25}.
11017 This guarantee that output video frame rate will not be higher than this value.
11018 @end table
11019
11020 @section greyedge
11021 A color constancy variation filter which estimates scene illumination via grey edge algorithm
11022 and corrects the scene colors accordingly.
11023
11024 See: @url{https://staff.science.uva.nl/th.gevers/pub/GeversTIP07.pdf}
11025
11026 The filter accepts the following options:
11027
11028 @table @option
11029 @item difford
11030 The order of differentiation to be applied on the scene. Must be chosen in the range
11031 [0,2] and default value is 1.
11032
11033 @item minknorm
11034 The Minkowski parameter to be used for calculating the Minkowski distance. Must
11035 be chosen in the range [0,20] and default value is 1. Set to 0 for getting
11036 max value instead of calculating Minkowski distance.
11037
11038 @item sigma
11039 The standard deviation of Gaussian blur to be applied on the scene. Must be
11040 chosen in the range [0,1024.0] and default value = 1. floor( @var{sigma} * break_off_sigma(3) )
11041 can't be equal to 0 if @var{difford} is greater than 0.
11042 @end table
11043
11044 @subsection Examples
11045 @itemize
11046
11047 @item
11048 Grey Edge:
11049 @example
11050 greyedge=difford=1:minknorm=5:sigma=2
11051 @end example
11052
11053 @item
11054 Max Edge:
11055 @example
11056 greyedge=difford=1:minknorm=0:sigma=2
11057 @end example
11058
11059 @end itemize
11060
11061 @anchor{haldclut}
11062 @section haldclut
11063
11064 Apply a Hald CLUT to a video stream.
11065
11066 First input is the video stream to process, and second one is the Hald CLUT.
11067 The Hald CLUT input can be a simple picture or a complete video stream.
11068
11069 The filter accepts the following options:
11070
11071 @table @option
11072 @item shortest
11073 Force termination when the shortest input terminates. Default is @code{0}.
11074 @item repeatlast
11075 Continue applying the last CLUT after the end of the stream. A value of
11076 @code{0} disable the filter after the last frame of the CLUT is reached.
11077 Default is @code{1}.
11078 @end table
11079
11080 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
11081 filters share the same internals).
11082
11083 This filter also supports the @ref{framesync} options.
11084
11085 More information about the Hald CLUT can be found on Eskil Steenberg's website
11086 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
11087
11088 @subsection Workflow examples
11089
11090 @subsubsection Hald CLUT video stream
11091
11092 Generate an identity Hald CLUT stream altered with various effects:
11093 @example
11094 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
11095 @end example
11096
11097 Note: make sure you use a lossless codec.
11098
11099 Then use it with @code{haldclut} to apply it on some random stream:
11100 @example
11101 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
11102 @end example
11103
11104 The Hald CLUT will be applied to the 10 first seconds (duration of
11105 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
11106 to the remaining frames of the @code{mandelbrot} stream.
11107
11108 @subsubsection Hald CLUT with preview
11109
11110 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
11111 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
11112 biggest possible square starting at the top left of the picture. The remaining
11113 padding pixels (bottom or right) will be ignored. This area can be used to add
11114 a preview of the Hald CLUT.
11115
11116 Typically, the following generated Hald CLUT will be supported by the
11117 @code{haldclut} filter:
11118
11119 @example
11120 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
11121    pad=iw+320 [padded_clut];
11122    smptebars=s=320x256, split [a][b];
11123    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
11124    [main][b] overlay=W-320" -frames:v 1 clut.png
11125 @end example
11126
11127 It contains the original and a preview of the effect of the CLUT: SMPTE color
11128 bars are displayed on the right-top, and below the same color bars processed by
11129 the color changes.
11130
11131 Then, the effect of this Hald CLUT can be visualized with:
11132 @example
11133 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
11134 @end example
11135
11136 @section hflip
11137
11138 Flip the input video horizontally.
11139
11140 For example, to horizontally flip the input video with @command{ffmpeg}:
11141 @example
11142 ffmpeg -i in.avi -vf "hflip" out.avi
11143 @end example
11144
11145 @section histeq
11146 This filter applies a global color histogram equalization on a
11147 per-frame basis.
11148
11149 It can be used to correct video that has a compressed range of pixel
11150 intensities.  The filter redistributes the pixel intensities to
11151 equalize their distribution across the intensity range. It may be
11152 viewed as an "automatically adjusting contrast filter". This filter is
11153 useful only for correcting degraded or poorly captured source
11154 video.
11155
11156 The filter accepts the following options:
11157
11158 @table @option
11159 @item strength
11160 Determine the amount of equalization to be applied.  As the strength
11161 is reduced, the distribution of pixel intensities more-and-more
11162 approaches that of the input frame. The value must be a float number
11163 in the range [0,1] and defaults to 0.200.
11164
11165 @item intensity
11166 Set the maximum intensity that can generated and scale the output
11167 values appropriately.  The strength should be set as desired and then
11168 the intensity can be limited if needed to avoid washing-out. The value
11169 must be a float number in the range [0,1] and defaults to 0.210.
11170
11171 @item antibanding
11172 Set the antibanding level. If enabled the filter will randomly vary
11173 the luminance of output pixels by a small amount to avoid banding of
11174 the histogram. Possible values are @code{none}, @code{weak} or
11175 @code{strong}. It defaults to @code{none}.
11176 @end table
11177
11178 @section histogram
11179
11180 Compute and draw a color distribution histogram for the input video.
11181
11182 The computed histogram is a representation of the color component
11183 distribution in an image.
11184
11185 Standard histogram displays the color components distribution in an image.
11186 Displays color graph for each color component. Shows distribution of
11187 the Y, U, V, A or R, G, B components, depending on input format, in the
11188 current frame. Below each graph a color component scale meter is shown.
11189
11190 The filter accepts the following options:
11191
11192 @table @option
11193 @item level_height
11194 Set height of level. Default value is @code{200}.
11195 Allowed range is [50, 2048].
11196
11197 @item scale_height
11198 Set height of color scale. Default value is @code{12}.
11199 Allowed range is [0, 40].
11200
11201 @item display_mode
11202 Set display mode.
11203 It accepts the following values:
11204 @table @samp
11205 @item stack
11206 Per color component graphs are placed below each other.
11207
11208 @item parade
11209 Per color component graphs are placed side by side.
11210
11211 @item overlay
11212 Presents information identical to that in the @code{parade}, except
11213 that the graphs representing color components are superimposed directly
11214 over one another.
11215 @end table
11216 Default is @code{stack}.
11217
11218 @item levels_mode
11219 Set mode. Can be either @code{linear}, or @code{logarithmic}.
11220 Default is @code{linear}.
11221
11222 @item components
11223 Set what color components to display.
11224 Default is @code{7}.
11225
11226 @item fgopacity
11227 Set foreground opacity. Default is @code{0.7}.
11228
11229 @item bgopacity
11230 Set background opacity. Default is @code{0.5}.
11231 @end table
11232
11233 @subsection Examples
11234
11235 @itemize
11236
11237 @item
11238 Calculate and draw histogram:
11239 @example
11240 ffplay -i input -vf histogram
11241 @end example
11242
11243 @end itemize
11244
11245 @anchor{hqdn3d}
11246 @section hqdn3d
11247
11248 This is a high precision/quality 3d denoise filter. It aims to reduce
11249 image noise, producing smooth images and making still images really
11250 still. It should enhance compressibility.
11251
11252 It accepts the following optional parameters:
11253
11254 @table @option
11255 @item luma_spatial
11256 A non-negative floating point number which specifies spatial luma strength.
11257 It defaults to 4.0.
11258
11259 @item chroma_spatial
11260 A non-negative floating point number which specifies spatial chroma strength.
11261 It defaults to 3.0*@var{luma_spatial}/4.0.
11262
11263 @item luma_tmp
11264 A floating point number which specifies luma temporal strength. It defaults to
11265 6.0*@var{luma_spatial}/4.0.
11266
11267 @item chroma_tmp
11268 A floating point number which specifies chroma temporal strength. It defaults to
11269 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
11270 @end table
11271
11272 @anchor{hwdownload}
11273 @section hwdownload
11274
11275 Download hardware frames to system memory.
11276
11277 The input must be in hardware frames, and the output a non-hardware format.
11278 Not all formats will be supported on the output - it may be necessary to insert
11279 an additional @option{format} filter immediately following in the graph to get
11280 the output in a supported format.
11281
11282 @section hwmap
11283
11284 Map hardware frames to system memory or to another device.
11285
11286 This filter has several different modes of operation; which one is used depends
11287 on the input and output formats:
11288 @itemize
11289 @item
11290 Hardware frame input, normal frame output
11291
11292 Map the input frames to system memory and pass them to the output.  If the
11293 original hardware frame is later required (for example, after overlaying
11294 something else on part of it), the @option{hwmap} filter can be used again
11295 in the next mode to retrieve it.
11296 @item
11297 Normal frame input, hardware frame output
11298
11299 If the input is actually a software-mapped hardware frame, then unmap it -
11300 that is, return the original hardware frame.
11301
11302 Otherwise, a device must be provided.  Create new hardware surfaces on that
11303 device for the output, then map them back to the software format at the input
11304 and give those frames to the preceding filter.  This will then act like the
11305 @option{hwupload} filter, but may be able to avoid an additional copy when
11306 the input is already in a compatible format.
11307 @item
11308 Hardware frame input and output
11309
11310 A device must be supplied for the output, either directly or with the
11311 @option{derive_device} option.  The input and output devices must be of
11312 different types and compatible - the exact meaning of this is
11313 system-dependent, but typically it means that they must refer to the same
11314 underlying hardware context (for example, refer to the same graphics card).
11315
11316 If the input frames were originally created on the output device, then unmap
11317 to retrieve the original frames.
11318
11319 Otherwise, map the frames to the output device - create new hardware frames
11320 on the output corresponding to the frames on the input.
11321 @end itemize
11322
11323 The following additional parameters are accepted:
11324
11325 @table @option
11326 @item mode
11327 Set the frame mapping mode.  Some combination of:
11328 @table @var
11329 @item read
11330 The mapped frame should be readable.
11331 @item write
11332 The mapped frame should be writeable.
11333 @item overwrite
11334 The mapping will always overwrite the entire frame.
11335
11336 This may improve performance in some cases, as the original contents of the
11337 frame need not be loaded.
11338 @item direct
11339 The mapping must not involve any copying.
11340
11341 Indirect mappings to copies of frames are created in some cases where either
11342 direct mapping is not possible or it would have unexpected properties.
11343 Setting this flag ensures that the mapping is direct and will fail if that is
11344 not possible.
11345 @end table
11346 Defaults to @var{read+write} if not specified.
11347
11348 @item derive_device @var{type}
11349 Rather than using the device supplied at initialisation, instead derive a new
11350 device of type @var{type} from the device the input frames exist on.
11351
11352 @item reverse
11353 In a hardware to hardware mapping, map in reverse - create frames in the sink
11354 and map them back to the source.  This may be necessary in some cases where
11355 a mapping in one direction is required but only the opposite direction is
11356 supported by the devices being used.
11357
11358 This option is dangerous - it may break the preceding filter in undefined
11359 ways if there are any additional constraints on that filter's output.
11360 Do not use it without fully understanding the implications of its use.
11361 @end table
11362
11363 @anchor{hwupload}
11364 @section hwupload
11365
11366 Upload system memory frames to hardware surfaces.
11367
11368 The device to upload to must be supplied when the filter is initialised.  If
11369 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
11370 option.
11371
11372 @anchor{hwupload_cuda}
11373 @section hwupload_cuda
11374
11375 Upload system memory frames to a CUDA device.
11376
11377 It accepts the following optional parameters:
11378
11379 @table @option
11380 @item device
11381 The number of the CUDA device to use
11382 @end table
11383
11384 @section hqx
11385
11386 Apply a high-quality magnification filter designed for pixel art. This filter
11387 was originally created by Maxim Stepin.
11388
11389 It accepts the following option:
11390
11391 @table @option
11392 @item n
11393 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
11394 @code{hq3x} and @code{4} for @code{hq4x}.
11395 Default is @code{3}.
11396 @end table
11397
11398 @section hstack
11399 Stack input videos horizontally.
11400
11401 All streams must be of same pixel format and of same height.
11402
11403 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11404 to create same output.
11405
11406 The filter accept the following option:
11407
11408 @table @option
11409 @item inputs
11410 Set number of input streams. Default is 2.
11411
11412 @item shortest
11413 If set to 1, force the output to terminate when the shortest input
11414 terminates. Default value is 0.
11415 @end table
11416
11417 @section hue
11418
11419 Modify the hue and/or the saturation of the input.
11420
11421 It accepts the following parameters:
11422
11423 @table @option
11424 @item h
11425 Specify the hue angle as a number of degrees. It accepts an expression,
11426 and defaults to "0".
11427
11428 @item s
11429 Specify the saturation in the [-10,10] range. It accepts an expression and
11430 defaults to "1".
11431
11432 @item H
11433 Specify the hue angle as a number of radians. It accepts an
11434 expression, and defaults to "0".
11435
11436 @item b
11437 Specify the brightness in the [-10,10] range. It accepts an expression and
11438 defaults to "0".
11439 @end table
11440
11441 @option{h} and @option{H} are mutually exclusive, and can't be
11442 specified at the same time.
11443
11444 The @option{b}, @option{h}, @option{H} and @option{s} option values are
11445 expressions containing the following constants:
11446
11447 @table @option
11448 @item n
11449 frame count of the input frame starting from 0
11450
11451 @item pts
11452 presentation timestamp of the input frame expressed in time base units
11453
11454 @item r
11455 frame rate of the input video, NAN if the input frame rate is unknown
11456
11457 @item t
11458 timestamp expressed in seconds, NAN if the input timestamp is unknown
11459
11460 @item tb
11461 time base of the input video
11462 @end table
11463
11464 @subsection Examples
11465
11466 @itemize
11467 @item
11468 Set the hue to 90 degrees and the saturation to 1.0:
11469 @example
11470 hue=h=90:s=1
11471 @end example
11472
11473 @item
11474 Same command but expressing the hue in radians:
11475 @example
11476 hue=H=PI/2:s=1
11477 @end example
11478
11479 @item
11480 Rotate hue and make the saturation swing between 0
11481 and 2 over a period of 1 second:
11482 @example
11483 hue="H=2*PI*t: s=sin(2*PI*t)+1"
11484 @end example
11485
11486 @item
11487 Apply a 3 seconds saturation fade-in effect starting at 0:
11488 @example
11489 hue="s=min(t/3\,1)"
11490 @end example
11491
11492 The general fade-in expression can be written as:
11493 @example
11494 hue="s=min(0\, max((t-START)/DURATION\, 1))"
11495 @end example
11496
11497 @item
11498 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
11499 @example
11500 hue="s=max(0\, min(1\, (8-t)/3))"
11501 @end example
11502
11503 The general fade-out expression can be written as:
11504 @example
11505 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
11506 @end example
11507
11508 @end itemize
11509
11510 @subsection Commands
11511
11512 This filter supports the following commands:
11513 @table @option
11514 @item b
11515 @item s
11516 @item h
11517 @item H
11518 Modify the hue and/or the saturation and/or brightness of the input video.
11519 The command accepts the same syntax of the corresponding option.
11520
11521 If the specified expression is not valid, it is kept at its current
11522 value.
11523 @end table
11524
11525 @section hysteresis
11526
11527 Grow first stream into second stream by connecting components.
11528 This makes it possible to build more robust edge masks.
11529
11530 This filter accepts the following options:
11531
11532 @table @option
11533 @item planes
11534 Set which planes will be processed as bitmap, unprocessed planes will be
11535 copied from first stream.
11536 By default value 0xf, all planes will be processed.
11537
11538 @item threshold
11539 Set threshold which is used in filtering. If pixel component value is higher than
11540 this value filter algorithm for connecting components is activated.
11541 By default value is 0.
11542 @end table
11543
11544 @section idet
11545
11546 Detect video interlacing type.
11547
11548 This filter tries to detect if the input frames are interlaced, progressive,
11549 top or bottom field first. It will also try to detect fields that are
11550 repeated between adjacent frames (a sign of telecine).
11551
11552 Single frame detection considers only immediately adjacent frames when classifying each frame.
11553 Multiple frame detection incorporates the classification history of previous frames.
11554
11555 The filter will log these metadata values:
11556
11557 @table @option
11558 @item single.current_frame
11559 Detected type of current frame using single-frame detection. One of:
11560 ``tff'' (top field first), ``bff'' (bottom field first),
11561 ``progressive'', or ``undetermined''
11562
11563 @item single.tff
11564 Cumulative number of frames detected as top field first using single-frame detection.
11565
11566 @item multiple.tff
11567 Cumulative number of frames detected as top field first using multiple-frame detection.
11568
11569 @item single.bff
11570 Cumulative number of frames detected as bottom field first using single-frame detection.
11571
11572 @item multiple.current_frame
11573 Detected type of current frame using multiple-frame detection. One of:
11574 ``tff'' (top field first), ``bff'' (bottom field first),
11575 ``progressive'', or ``undetermined''
11576
11577 @item multiple.bff
11578 Cumulative number of frames detected as bottom field first using multiple-frame detection.
11579
11580 @item single.progressive
11581 Cumulative number of frames detected as progressive using single-frame detection.
11582
11583 @item multiple.progressive
11584 Cumulative number of frames detected as progressive using multiple-frame detection.
11585
11586 @item single.undetermined
11587 Cumulative number of frames that could not be classified using single-frame detection.
11588
11589 @item multiple.undetermined
11590 Cumulative number of frames that could not be classified using multiple-frame detection.
11591
11592 @item repeated.current_frame
11593 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
11594
11595 @item repeated.neither
11596 Cumulative number of frames with no repeated field.
11597
11598 @item repeated.top
11599 Cumulative number of frames with the top field repeated from the previous frame's top field.
11600
11601 @item repeated.bottom
11602 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
11603 @end table
11604
11605 The filter accepts the following options:
11606
11607 @table @option
11608 @item intl_thres
11609 Set interlacing threshold.
11610 @item prog_thres
11611 Set progressive threshold.
11612 @item rep_thres
11613 Threshold for repeated field detection.
11614 @item half_life
11615 Number of frames after which a given frame's contribution to the
11616 statistics is halved (i.e., it contributes only 0.5 to its
11617 classification). The default of 0 means that all frames seen are given
11618 full weight of 1.0 forever.
11619 @item analyze_interlaced_flag
11620 When this is not 0 then idet will use the specified number of frames to determine
11621 if the interlaced flag is accurate, it will not count undetermined frames.
11622 If the flag is found to be accurate it will be used without any further
11623 computations, if it is found to be inaccurate it will be cleared without any
11624 further computations. This allows inserting the idet filter as a low computational
11625 method to clean up the interlaced flag
11626 @end table
11627
11628 @section il
11629
11630 Deinterleave or interleave fields.
11631
11632 This filter allows one to process interlaced images fields without
11633 deinterlacing them. Deinterleaving splits the input frame into 2
11634 fields (so called half pictures). Odd lines are moved to the top
11635 half of the output image, even lines to the bottom half.
11636 You can process (filter) them independently and then re-interleave them.
11637
11638 The filter accepts the following options:
11639
11640 @table @option
11641 @item luma_mode, l
11642 @item chroma_mode, c
11643 @item alpha_mode, a
11644 Available values for @var{luma_mode}, @var{chroma_mode} and
11645 @var{alpha_mode} are:
11646
11647 @table @samp
11648 @item none
11649 Do nothing.
11650
11651 @item deinterleave, d
11652 Deinterleave fields, placing one above the other.
11653
11654 @item interleave, i
11655 Interleave fields. Reverse the effect of deinterleaving.
11656 @end table
11657 Default value is @code{none}.
11658
11659 @item luma_swap, ls
11660 @item chroma_swap, cs
11661 @item alpha_swap, as
11662 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
11663 @end table
11664
11665 @section inflate
11666
11667 Apply inflate effect to the video.
11668
11669 This filter replaces the pixel by the local(3x3) average by taking into account
11670 only values higher than the pixel.
11671
11672 It accepts the following options:
11673
11674 @table @option
11675 @item threshold0
11676 @item threshold1
11677 @item threshold2
11678 @item threshold3
11679 Limit the maximum change for each plane, default is 65535.
11680 If 0, plane will remain unchanged.
11681 @end table
11682
11683 @section interlace
11684
11685 Simple interlacing filter from progressive contents. This interleaves upper (or
11686 lower) lines from odd frames with lower (or upper) lines from even frames,
11687 halving the frame rate and preserving image height.
11688
11689 @example
11690    Original        Original             New Frame
11691    Frame 'j'      Frame 'j+1'             (tff)
11692   ==========      ===========       ==================
11693     Line 0  -------------------->    Frame 'j' Line 0
11694     Line 1          Line 1  ---->   Frame 'j+1' Line 1
11695     Line 2 --------------------->    Frame 'j' Line 2
11696     Line 3          Line 3  ---->   Frame 'j+1' Line 3
11697      ...             ...                   ...
11698 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
11699 @end example
11700
11701 It accepts the following optional parameters:
11702
11703 @table @option
11704 @item scan
11705 This determines whether the interlaced frame is taken from the even
11706 (tff - default) or odd (bff) lines of the progressive frame.
11707
11708 @item lowpass
11709 Vertical lowpass filter to avoid twitter interlacing and
11710 reduce moire patterns.
11711
11712 @table @samp
11713 @item 0, off
11714 Disable vertical lowpass filter
11715
11716 @item 1, linear
11717 Enable linear filter (default)
11718
11719 @item 2, complex
11720 Enable complex filter. This will slightly less reduce twitter and moire
11721 but better retain detail and subjective sharpness impression.
11722
11723 @end table
11724 @end table
11725
11726 @section kerndeint
11727
11728 Deinterlace input video by applying Donald Graft's adaptive kernel
11729 deinterling. Work on interlaced parts of a video to produce
11730 progressive frames.
11731
11732 The description of the accepted parameters follows.
11733
11734 @table @option
11735 @item thresh
11736 Set the threshold which affects the filter's tolerance when
11737 determining if a pixel line must be processed. It must be an integer
11738 in the range [0,255] and defaults to 10. A value of 0 will result in
11739 applying the process on every pixels.
11740
11741 @item map
11742 Paint pixels exceeding the threshold value to white if set to 1.
11743 Default is 0.
11744
11745 @item order
11746 Set the fields order. Swap fields if set to 1, leave fields alone if
11747 0. Default is 0.
11748
11749 @item sharp
11750 Enable additional sharpening if set to 1. Default is 0.
11751
11752 @item twoway
11753 Enable twoway sharpening if set to 1. Default is 0.
11754 @end table
11755
11756 @subsection Examples
11757
11758 @itemize
11759 @item
11760 Apply default values:
11761 @example
11762 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
11763 @end example
11764
11765 @item
11766 Enable additional sharpening:
11767 @example
11768 kerndeint=sharp=1
11769 @end example
11770
11771 @item
11772 Paint processed pixels in white:
11773 @example
11774 kerndeint=map=1
11775 @end example
11776 @end itemize
11777
11778 @section lagfun
11779
11780 Slowly update darker pixels.
11781
11782 This filter makes short flashes of light appear longer.
11783 This filter accepts the following options:
11784
11785 @table @option
11786 @item decay
11787 Set factor for decaying. Default is .95. Allowed range is from 0 to 1.
11788
11789 @item planes
11790 Set which planes to filter. Default is all. Allowed range is from 0 to 15.
11791 @end table
11792
11793 @section lenscorrection
11794
11795 Correct radial lens distortion
11796
11797 This filter can be used to correct for radial distortion as can result from the use
11798 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
11799 one can use tools available for example as part of opencv or simply trial-and-error.
11800 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
11801 and extract the k1 and k2 coefficients from the resulting matrix.
11802
11803 Note that effectively the same filter is available in the open-source tools Krita and
11804 Digikam from the KDE project.
11805
11806 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
11807 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
11808 brightness distribution, so you may want to use both filters together in certain
11809 cases, though you will have to take care of ordering, i.e. whether vignetting should
11810 be applied before or after lens correction.
11811
11812 @subsection Options
11813
11814 The filter accepts the following options:
11815
11816 @table @option
11817 @item cx
11818 Relative x-coordinate of the focal point of the image, and thereby the center of the
11819 distortion. This value has a range [0,1] and is expressed as fractions of the image
11820 width. Default is 0.5.
11821 @item cy
11822 Relative y-coordinate of the focal point of the image, and thereby the center of the
11823 distortion. This value has a range [0,1] and is expressed as fractions of the image
11824 height. Default is 0.5.
11825 @item k1
11826 Coefficient of the quadratic correction term. This value has a range [-1,1]. 0 means
11827 no correction. Default is 0.
11828 @item k2
11829 Coefficient of the double quadratic correction term. This value has a range [-1,1].
11830 0 means no correction. Default is 0.
11831 @end table
11832
11833 The formula that generates the correction is:
11834
11835 @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)
11836
11837 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
11838 distances from the focal point in the source and target images, respectively.
11839
11840 @section lensfun
11841
11842 Apply lens correction via the lensfun library (@url{http://lensfun.sourceforge.net/}).
11843
11844 The @code{lensfun} filter requires the camera make, camera model, and lens model
11845 to apply the lens correction. The filter will load the lensfun database and
11846 query it to find the corresponding camera and lens entries in the database. As
11847 long as these entries can be found with the given options, the filter can
11848 perform corrections on frames. Note that incomplete strings will result in the
11849 filter choosing the best match with the given options, and the filter will
11850 output the chosen camera and lens models (logged with level "info"). You must
11851 provide the make, camera model, and lens model as they are required.
11852
11853 The filter accepts the following options:
11854
11855 @table @option
11856 @item make
11857 The make of the camera (for example, "Canon"). This option is required.
11858
11859 @item model
11860 The model of the camera (for example, "Canon EOS 100D"). This option is
11861 required.
11862
11863 @item lens_model
11864 The model of the lens (for example, "Canon EF-S 18-55mm f/3.5-5.6 IS STM"). This
11865 option is required.
11866
11867 @item mode
11868 The type of correction to apply. The following values are valid options:
11869
11870 @table @samp
11871 @item vignetting
11872 Enables fixing lens vignetting.
11873
11874 @item geometry
11875 Enables fixing lens geometry. This is the default.
11876
11877 @item subpixel
11878 Enables fixing chromatic aberrations.
11879
11880 @item vig_geo
11881 Enables fixing lens vignetting and lens geometry.
11882
11883 @item vig_subpixel
11884 Enables fixing lens vignetting and chromatic aberrations.
11885
11886 @item distortion
11887 Enables fixing both lens geometry and chromatic aberrations.
11888
11889 @item all
11890 Enables all possible corrections.
11891
11892 @end table
11893 @item focal_length
11894 The focal length of the image/video (zoom; expected constant for video). For
11895 example, a 18--55mm lens has focal length range of [18--55], so a value in that
11896 range should be chosen when using that lens. Default 18.
11897
11898 @item aperture
11899 The aperture of the image/video (expected constant for video). Note that
11900 aperture is only used for vignetting correction. Default 3.5.
11901
11902 @item focus_distance
11903 The focus distance of the image/video (expected constant for video). Note that
11904 focus distance is only used for vignetting and only slightly affects the
11905 vignetting correction process. If unknown, leave it at the default value (which
11906 is 1000).
11907
11908 @item scale
11909 The scale factor which is applied after transformation. After correction the
11910 video is no longer necessarily rectangular. This parameter controls how much of
11911 the resulting image is visible. The value 0 means that a value will be chosen
11912 automatically such that there is little or no unmapped area in the output
11913 image. 1.0 means that no additional scaling is done. Lower values may result
11914 in more of the corrected image being visible, while higher values may avoid
11915 unmapped areas in the output.
11916
11917 @item target_geometry
11918 The target geometry of the output image/video. The following values are valid
11919 options:
11920
11921 @table @samp
11922 @item rectilinear (default)
11923 @item fisheye
11924 @item panoramic
11925 @item equirectangular
11926 @item fisheye_orthographic
11927 @item fisheye_stereographic
11928 @item fisheye_equisolid
11929 @item fisheye_thoby
11930 @end table
11931 @item reverse
11932 Apply the reverse of image correction (instead of correcting distortion, apply
11933 it).
11934
11935 @item interpolation
11936 The type of interpolation used when correcting distortion. The following values
11937 are valid options:
11938
11939 @table @samp
11940 @item nearest
11941 @item linear (default)
11942 @item lanczos
11943 @end table
11944 @end table
11945
11946 @subsection Examples
11947
11948 @itemize
11949 @item
11950 Apply lens correction with make "Canon", camera model "Canon EOS 100D", and lens
11951 model "Canon EF-S 18-55mm f/3.5-5.6 IS STM" with focal length of "18" and
11952 aperture of "8.0".
11953
11954 @example
11955 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
11956 @end example
11957
11958 @item
11959 Apply the same as before, but only for the first 5 seconds of video.
11960
11961 @example
11962 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
11963 @end example
11964
11965 @end itemize
11966
11967 @section libvmaf
11968
11969 Obtain the VMAF (Video Multi-Method Assessment Fusion)
11970 score between two input videos.
11971
11972 The obtained VMAF score is printed through the logging system.
11973
11974 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
11975 After installing the library it can be enabled using:
11976 @code{./configure --enable-libvmaf --enable-version3}.
11977 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
11978
11979 The filter has following options:
11980
11981 @table @option
11982 @item model_path
11983 Set the model path which is to be used for SVM.
11984 Default value: @code{"vmaf_v0.6.1.pkl"}
11985
11986 @item log_path
11987 Set the file path to be used to store logs.
11988
11989 @item log_fmt
11990 Set the format of the log file (xml or json).
11991
11992 @item enable_transform
11993 This option can enable/disable the @code{score_transform} applied to the final predicted VMAF score,
11994 if you have specified score_transform option in the input parameter file passed to @code{run_vmaf_training.py}
11995 Default value: @code{false}
11996
11997 @item phone_model
11998 Invokes the phone model which will generate VMAF scores higher than in the
11999 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
12000
12001 @item psnr
12002 Enables computing psnr along with vmaf.
12003
12004 @item ssim
12005 Enables computing ssim along with vmaf.
12006
12007 @item ms_ssim
12008 Enables computing ms_ssim along with vmaf.
12009
12010 @item pool
12011 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
12012
12013 @item n_threads
12014 Set number of threads to be used when computing vmaf.
12015
12016 @item n_subsample
12017 Set interval for frame subsampling used when computing vmaf.
12018
12019 @item enable_conf_interval
12020 Enables confidence interval.
12021 @end table
12022
12023 This filter also supports the @ref{framesync} options.
12024
12025 On the below examples the input file @file{main.mpg} being processed is
12026 compared with the reference file @file{ref.mpg}.
12027
12028 @example
12029 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
12030 @end example
12031
12032 Example with options:
12033 @example
12034 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:log_fmt=json" -f null -
12035 @end example
12036
12037 @section limiter
12038
12039 Limits the pixel components values to the specified range [min, max].
12040
12041 The filter accepts the following options:
12042
12043 @table @option
12044 @item min
12045 Lower bound. Defaults to the lowest allowed value for the input.
12046
12047 @item max
12048 Upper bound. Defaults to the highest allowed value for the input.
12049
12050 @item planes
12051 Specify which planes will be processed. Defaults to all available.
12052 @end table
12053
12054 @section loop
12055
12056 Loop video frames.
12057
12058 The filter accepts the following options:
12059
12060 @table @option
12061 @item loop
12062 Set the number of loops. Setting this value to -1 will result in infinite loops.
12063 Default is 0.
12064
12065 @item size
12066 Set maximal size in number of frames. Default is 0.
12067
12068 @item start
12069 Set first frame of loop. Default is 0.
12070 @end table
12071
12072 @subsection Examples
12073
12074 @itemize
12075 @item
12076 Loop single first frame infinitely:
12077 @example
12078 loop=loop=-1:size=1:start=0
12079 @end example
12080
12081 @item
12082 Loop single first frame 10 times:
12083 @example
12084 loop=loop=10:size=1:start=0
12085 @end example
12086
12087 @item
12088 Loop 10 first frames 5 times:
12089 @example
12090 loop=loop=5:size=10:start=0
12091 @end example
12092 @end itemize
12093
12094 @section lut1d
12095
12096 Apply a 1D LUT to an input video.
12097
12098 The filter accepts the following options:
12099
12100 @table @option
12101 @item file
12102 Set the 1D LUT file name.
12103
12104 Currently supported formats:
12105 @table @samp
12106 @item cube
12107 Iridas
12108 @item csp
12109 cineSpace
12110 @end table
12111
12112 @item interp
12113 Select interpolation mode.
12114
12115 Available values are:
12116
12117 @table @samp
12118 @item nearest
12119 Use values from the nearest defined point.
12120 @item linear
12121 Interpolate values using the linear interpolation.
12122 @item cosine
12123 Interpolate values using the cosine interpolation.
12124 @item cubic
12125 Interpolate values using the cubic interpolation.
12126 @item spline
12127 Interpolate values using the spline interpolation.
12128 @end table
12129 @end table
12130
12131 @anchor{lut3d}
12132 @section lut3d
12133
12134 Apply a 3D LUT to an input video.
12135
12136 The filter accepts the following options:
12137
12138 @table @option
12139 @item file
12140 Set the 3D LUT file name.
12141
12142 Currently supported formats:
12143 @table @samp
12144 @item 3dl
12145 AfterEffects
12146 @item cube
12147 Iridas
12148 @item dat
12149 DaVinci
12150 @item m3d
12151 Pandora
12152 @item csp
12153 cineSpace
12154 @end table
12155 @item interp
12156 Select interpolation mode.
12157
12158 Available values are:
12159
12160 @table @samp
12161 @item nearest
12162 Use values from the nearest defined point.
12163 @item trilinear
12164 Interpolate values using the 8 points defining a cube.
12165 @item tetrahedral
12166 Interpolate values using a tetrahedron.
12167 @end table
12168 @end table
12169
12170 @section lumakey
12171
12172 Turn certain luma values into transparency.
12173
12174 The filter accepts the following options:
12175
12176 @table @option
12177 @item threshold
12178 Set the luma which will be used as base for transparency.
12179 Default value is @code{0}.
12180
12181 @item tolerance
12182 Set the range of luma values to be keyed out.
12183 Default value is @code{0}.
12184
12185 @item softness
12186 Set the range of softness. Default value is @code{0}.
12187 Use this to control gradual transition from zero to full transparency.
12188 @end table
12189
12190 @section lut, lutrgb, lutyuv
12191
12192 Compute a look-up table for binding each pixel component input value
12193 to an output value, and apply it to the input video.
12194
12195 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
12196 to an RGB input video.
12197
12198 These filters accept the following parameters:
12199 @table @option
12200 @item c0
12201 set first pixel component expression
12202 @item c1
12203 set second pixel component expression
12204 @item c2
12205 set third pixel component expression
12206 @item c3
12207 set fourth pixel component expression, corresponds to the alpha component
12208
12209 @item r
12210 set red component expression
12211 @item g
12212 set green component expression
12213 @item b
12214 set blue component expression
12215 @item a
12216 alpha component expression
12217
12218 @item y
12219 set Y/luminance component expression
12220 @item u
12221 set U/Cb component expression
12222 @item v
12223 set V/Cr component expression
12224 @end table
12225
12226 Each of them specifies the expression to use for computing the lookup table for
12227 the corresponding pixel component values.
12228
12229 The exact component associated to each of the @var{c*} options depends on the
12230 format in input.
12231
12232 The @var{lut} filter requires either YUV or RGB pixel formats in input,
12233 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
12234
12235 The expressions can contain the following constants and functions:
12236
12237 @table @option
12238 @item w
12239 @item h
12240 The input width and height.
12241
12242 @item val
12243 The input value for the pixel component.
12244
12245 @item clipval
12246 The input value, clipped to the @var{minval}-@var{maxval} range.
12247
12248 @item maxval
12249 The maximum value for the pixel component.
12250
12251 @item minval
12252 The minimum value for the pixel component.
12253
12254 @item negval
12255 The negated value for the pixel component value, clipped to the
12256 @var{minval}-@var{maxval} range; it corresponds to the expression
12257 "maxval-clipval+minval".
12258
12259 @item clip(val)
12260 The computed value in @var{val}, clipped to the
12261 @var{minval}-@var{maxval} range.
12262
12263 @item gammaval(gamma)
12264 The computed gamma correction value of the pixel component value,
12265 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
12266 expression
12267 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
12268
12269 @end table
12270
12271 All expressions default to "val".
12272
12273 @subsection Examples
12274
12275 @itemize
12276 @item
12277 Negate input video:
12278 @example
12279 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
12280 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
12281 @end example
12282
12283 The above is the same as:
12284 @example
12285 lutrgb="r=negval:g=negval:b=negval"
12286 lutyuv="y=negval:u=negval:v=negval"
12287 @end example
12288
12289 @item
12290 Negate luminance:
12291 @example
12292 lutyuv=y=negval
12293 @end example
12294
12295 @item
12296 Remove chroma components, turning the video into a graytone image:
12297 @example
12298 lutyuv="u=128:v=128"
12299 @end example
12300
12301 @item
12302 Apply a luma burning effect:
12303 @example
12304 lutyuv="y=2*val"
12305 @end example
12306
12307 @item
12308 Remove green and blue components:
12309 @example
12310 lutrgb="g=0:b=0"
12311 @end example
12312
12313 @item
12314 Set a constant alpha channel value on input:
12315 @example
12316 format=rgba,lutrgb=a="maxval-minval/2"
12317 @end example
12318
12319 @item
12320 Correct luminance gamma by a factor of 0.5:
12321 @example
12322 lutyuv=y=gammaval(0.5)
12323 @end example
12324
12325 @item
12326 Discard least significant bits of luma:
12327 @example
12328 lutyuv=y='bitand(val, 128+64+32)'
12329 @end example
12330
12331 @item
12332 Technicolor like effect:
12333 @example
12334 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
12335 @end example
12336 @end itemize
12337
12338 @section lut2, tlut2
12339
12340 The @code{lut2} filter takes two input streams and outputs one
12341 stream.
12342
12343 The @code{tlut2} (time lut2) filter takes two consecutive frames
12344 from one single stream.
12345
12346 This filter accepts the following parameters:
12347 @table @option
12348 @item c0
12349 set first pixel component expression
12350 @item c1
12351 set second pixel component expression
12352 @item c2
12353 set third pixel component expression
12354 @item c3
12355 set fourth pixel component expression, corresponds to the alpha component
12356
12357 @item d
12358 set output bit depth, only available for @code{lut2} filter. By default is 0,
12359 which means bit depth is automatically picked from first input format.
12360 @end table
12361
12362 Each of them specifies the expression to use for computing the lookup table for
12363 the corresponding pixel component values.
12364
12365 The exact component associated to each of the @var{c*} options depends on the
12366 format in inputs.
12367
12368 The expressions can contain the following constants:
12369
12370 @table @option
12371 @item w
12372 @item h
12373 The input width and height.
12374
12375 @item x
12376 The first input value for the pixel component.
12377
12378 @item y
12379 The second input value for the pixel component.
12380
12381 @item bdx
12382 The first input video bit depth.
12383
12384 @item bdy
12385 The second input video bit depth.
12386 @end table
12387
12388 All expressions default to "x".
12389
12390 @subsection Examples
12391
12392 @itemize
12393 @item
12394 Highlight differences between two RGB video streams:
12395 @example
12396 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)'
12397 @end example
12398
12399 @item
12400 Highlight differences between two YUV video streams:
12401 @example
12402 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)'
12403 @end example
12404
12405 @item
12406 Show max difference between two video streams:
12407 @example
12408 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)))'
12409 @end example
12410 @end itemize
12411
12412 @section maskedclamp
12413
12414 Clamp the first input stream with the second input and third input stream.
12415
12416 Returns the value of first stream to be between second input
12417 stream - @code{undershoot} and third input stream + @code{overshoot}.
12418
12419 This filter accepts the following options:
12420 @table @option
12421 @item undershoot
12422 Default value is @code{0}.
12423
12424 @item overshoot
12425 Default value is @code{0}.
12426
12427 @item planes
12428 Set which planes will be processed as bitmap, unprocessed planes will be
12429 copied from first stream.
12430 By default value 0xf, all planes will be processed.
12431 @end table
12432
12433 @section maskedmerge
12434
12435 Merge the first input stream with the second input stream using per pixel
12436 weights in the third input stream.
12437
12438 A value of 0 in the third stream pixel component means that pixel component
12439 from first stream is returned unchanged, while maximum value (eg. 255 for
12440 8-bit videos) means that pixel component from second stream is returned
12441 unchanged. Intermediate values define the amount of merging between both
12442 input stream's pixel components.
12443
12444 This filter accepts the following options:
12445 @table @option
12446 @item planes
12447 Set which planes will be processed as bitmap, unprocessed planes will be
12448 copied from first stream.
12449 By default value 0xf, all planes will be processed.
12450 @end table
12451
12452 @section maskfun
12453 Create mask from input video.
12454
12455 For example it is useful to create motion masks after @code{tblend} filter.
12456
12457 This filter accepts the following options:
12458
12459 @table @option
12460 @item low
12461 Set low threshold. Any pixel component lower or exact than this value will be set to 0.
12462
12463 @item high
12464 Set high threshold. Any pixel component higher than this value will be set to max value
12465 allowed for current pixel format.
12466
12467 @item planes
12468 Set planes to filter, by default all available planes are filtered.
12469
12470 @item fill
12471 Fill all frame pixels with this value.
12472
12473 @item sum
12474 Set max average pixel value for frame. If sum of all pixel components is higher that this
12475 average, output frame will be completely filled with value set by @var{fill} option.
12476 Typically useful for scene changes when used in combination with @code{tblend} filter.
12477 @end table
12478
12479 @section mcdeint
12480
12481 Apply motion-compensation deinterlacing.
12482
12483 It needs one field per frame as input and must thus be used together
12484 with yadif=1/3 or equivalent.
12485
12486 This filter accepts the following options:
12487 @table @option
12488 @item mode
12489 Set the deinterlacing mode.
12490
12491 It accepts one of the following values:
12492 @table @samp
12493 @item fast
12494 @item medium
12495 @item slow
12496 use iterative motion estimation
12497 @item extra_slow
12498 like @samp{slow}, but use multiple reference frames.
12499 @end table
12500 Default value is @samp{fast}.
12501
12502 @item parity
12503 Set the picture field parity assumed for the input video. It must be
12504 one of the following values:
12505
12506 @table @samp
12507 @item 0, tff
12508 assume top field first
12509 @item 1, bff
12510 assume bottom field first
12511 @end table
12512
12513 Default value is @samp{bff}.
12514
12515 @item qp
12516 Set per-block quantization parameter (QP) used by the internal
12517 encoder.
12518
12519 Higher values should result in a smoother motion vector field but less
12520 optimal individual vectors. Default value is 1.
12521 @end table
12522
12523 @section mergeplanes
12524
12525 Merge color channel components from several video streams.
12526
12527 The filter accepts up to 4 input streams, and merge selected input
12528 planes to the output video.
12529
12530 This filter accepts the following options:
12531 @table @option
12532 @item mapping
12533 Set input to output plane mapping. Default is @code{0}.
12534
12535 The mappings is specified as a bitmap. It should be specified as a
12536 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
12537 mapping for the first plane of the output stream. 'A' sets the number of
12538 the input stream to use (from 0 to 3), and 'a' the plane number of the
12539 corresponding input to use (from 0 to 3). The rest of the mappings is
12540 similar, 'Bb' describes the mapping for the output stream second
12541 plane, 'Cc' describes the mapping for the output stream third plane and
12542 'Dd' describes the mapping for the output stream fourth plane.
12543
12544 @item format
12545 Set output pixel format. Default is @code{yuva444p}.
12546 @end table
12547
12548 @subsection Examples
12549
12550 @itemize
12551 @item
12552 Merge three gray video streams of same width and height into single video stream:
12553 @example
12554 [a0][a1][a2]mergeplanes=0x001020:yuv444p
12555 @end example
12556
12557 @item
12558 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
12559 @example
12560 [a0][a1]mergeplanes=0x00010210:yuva444p
12561 @end example
12562
12563 @item
12564 Swap Y and A plane in yuva444p stream:
12565 @example
12566 format=yuva444p,mergeplanes=0x03010200:yuva444p
12567 @end example
12568
12569 @item
12570 Swap U and V plane in yuv420p stream:
12571 @example
12572 format=yuv420p,mergeplanes=0x000201:yuv420p
12573 @end example
12574
12575 @item
12576 Cast a rgb24 clip to yuv444p:
12577 @example
12578 format=rgb24,mergeplanes=0x000102:yuv444p
12579 @end example
12580 @end itemize
12581
12582 @section mestimate
12583
12584 Estimate and export motion vectors using block matching algorithms.
12585 Motion vectors are stored in frame side data to be used by other filters.
12586
12587 This filter accepts the following options:
12588 @table @option
12589 @item method
12590 Specify the motion estimation method. Accepts one of the following values:
12591
12592 @table @samp
12593 @item esa
12594 Exhaustive search algorithm.
12595 @item tss
12596 Three step search algorithm.
12597 @item tdls
12598 Two dimensional logarithmic search algorithm.
12599 @item ntss
12600 New three step search algorithm.
12601 @item fss
12602 Four step search algorithm.
12603 @item ds
12604 Diamond search algorithm.
12605 @item hexbs
12606 Hexagon-based search algorithm.
12607 @item epzs
12608 Enhanced predictive zonal search algorithm.
12609 @item umh
12610 Uneven multi-hexagon search algorithm.
12611 @end table
12612 Default value is @samp{esa}.
12613
12614 @item mb_size
12615 Macroblock size. Default @code{16}.
12616
12617 @item search_param
12618 Search parameter. Default @code{7}.
12619 @end table
12620
12621 @section midequalizer
12622
12623 Apply Midway Image Equalization effect using two video streams.
12624
12625 Midway Image Equalization adjusts a pair of images to have the same
12626 histogram, while maintaining their dynamics as much as possible. It's
12627 useful for e.g. matching exposures from a pair of stereo cameras.
12628
12629 This filter has two inputs and one output, which must be of same pixel format, but
12630 may be of different sizes. The output of filter is first input adjusted with
12631 midway histogram of both inputs.
12632
12633 This filter accepts the following option:
12634
12635 @table @option
12636 @item planes
12637 Set which planes to process. Default is @code{15}, which is all available planes.
12638 @end table
12639
12640 @section minterpolate
12641
12642 Convert the video to specified frame rate using motion interpolation.
12643
12644 This filter accepts the following options:
12645 @table @option
12646 @item fps
12647 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}.
12648
12649 @item mi_mode
12650 Motion interpolation mode. Following values are accepted:
12651 @table @samp
12652 @item dup
12653 Duplicate previous or next frame for interpolating new ones.
12654 @item blend
12655 Blend source frames. Interpolated frame is mean of previous and next frames.
12656 @item mci
12657 Motion compensated interpolation. Following options are effective when this mode is selected:
12658
12659 @table @samp
12660 @item mc_mode
12661 Motion compensation mode. Following values are accepted:
12662 @table @samp
12663 @item obmc
12664 Overlapped block motion compensation.
12665 @item aobmc
12666 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
12667 @end table
12668 Default mode is @samp{obmc}.
12669
12670 @item me_mode
12671 Motion estimation mode. Following values are accepted:
12672 @table @samp
12673 @item bidir
12674 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
12675 @item bilat
12676 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
12677 @end table
12678 Default mode is @samp{bilat}.
12679
12680 @item me
12681 The algorithm to be used for motion estimation. Following values are accepted:
12682 @table @samp
12683 @item esa
12684 Exhaustive search algorithm.
12685 @item tss
12686 Three step search algorithm.
12687 @item tdls
12688 Two dimensional logarithmic search algorithm.
12689 @item ntss
12690 New three step search algorithm.
12691 @item fss
12692 Four step search algorithm.
12693 @item ds
12694 Diamond search algorithm.
12695 @item hexbs
12696 Hexagon-based search algorithm.
12697 @item epzs
12698 Enhanced predictive zonal search algorithm.
12699 @item umh
12700 Uneven multi-hexagon search algorithm.
12701 @end table
12702 Default algorithm is @samp{epzs}.
12703
12704 @item mb_size
12705 Macroblock size. Default @code{16}.
12706
12707 @item search_param
12708 Motion estimation search parameter. Default @code{32}.
12709
12710 @item vsbmc
12711 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).
12712 @end table
12713 @end table
12714
12715 @item scd
12716 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:
12717 @table @samp
12718 @item none
12719 Disable scene change detection.
12720 @item fdiff
12721 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
12722 @end table
12723 Default method is @samp{fdiff}.
12724
12725 @item scd_threshold
12726 Scene change detection threshold. Default is @code{5.0}.
12727 @end table
12728
12729 @section mix
12730
12731 Mix several video input streams into one video stream.
12732
12733 A description of the accepted options follows.
12734
12735 @table @option
12736 @item nb_inputs
12737 The number of inputs. If unspecified, it defaults to 2.
12738
12739 @item weights
12740 Specify weight of each input video stream as sequence.
12741 Each weight is separated by space. If number of weights
12742 is smaller than number of @var{frames} last specified
12743 weight will be used for all remaining unset weights.
12744
12745 @item scale
12746 Specify scale, if it is set it will be multiplied with sum
12747 of each weight multiplied with pixel values to give final destination
12748 pixel value. By default @var{scale} is auto scaled to sum of weights.
12749
12750 @item duration
12751 Specify how end of stream is determined.
12752 @table @samp
12753 @item longest
12754 The duration of the longest input. (default)
12755
12756 @item shortest
12757 The duration of the shortest input.
12758
12759 @item first
12760 The duration of the first input.
12761 @end table
12762 @end table
12763
12764 @section mpdecimate
12765
12766 Drop frames that do not differ greatly from the previous frame in
12767 order to reduce frame rate.
12768
12769 The main use of this filter is for very-low-bitrate encoding
12770 (e.g. streaming over dialup modem), but it could in theory be used for
12771 fixing movies that were inverse-telecined incorrectly.
12772
12773 A description of the accepted options follows.
12774
12775 @table @option
12776 @item max
12777 Set the maximum number of consecutive frames which can be dropped (if
12778 positive), or the minimum interval between dropped frames (if
12779 negative). If the value is 0, the frame is dropped disregarding the
12780 number of previous sequentially dropped frames.
12781
12782 Default value is 0.
12783
12784 @item hi
12785 @item lo
12786 @item frac
12787 Set the dropping threshold values.
12788
12789 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
12790 represent actual pixel value differences, so a threshold of 64
12791 corresponds to 1 unit of difference for each pixel, or the same spread
12792 out differently over the block.
12793
12794 A frame is a candidate for dropping if no 8x8 blocks differ by more
12795 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
12796 meaning the whole image) differ by more than a threshold of @option{lo}.
12797
12798 Default value for @option{hi} is 64*12, default value for @option{lo} is
12799 64*5, and default value for @option{frac} is 0.33.
12800 @end table
12801
12802
12803 @section negate
12804
12805 Negate (invert) the input video.
12806
12807 It accepts the following option:
12808
12809 @table @option
12810
12811 @item negate_alpha
12812 With value 1, it negates the alpha component, if present. Default value is 0.
12813 @end table
12814
12815 @anchor{nlmeans}
12816 @section nlmeans
12817
12818 Denoise frames using Non-Local Means algorithm.
12819
12820 Each pixel is adjusted by looking for other pixels with similar contexts. This
12821 context similarity is defined by comparing their surrounding patches of size
12822 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
12823 around the pixel.
12824
12825 Note that the research area defines centers for patches, which means some
12826 patches will be made of pixels outside that research area.
12827
12828 The filter accepts the following options.
12829
12830 @table @option
12831 @item s
12832 Set denoising strength. Default is 1.0. Must be in range [1.0, 30.0].
12833
12834 @item p
12835 Set patch size. Default is 7. Must be odd number in range [0, 99].
12836
12837 @item pc
12838 Same as @option{p} but for chroma planes.
12839
12840 The default value is @var{0} and means automatic.
12841
12842 @item r
12843 Set research size. Default is 15. Must be odd number in range [0, 99].
12844
12845 @item rc
12846 Same as @option{r} but for chroma planes.
12847
12848 The default value is @var{0} and means automatic.
12849 @end table
12850
12851 @section nnedi
12852
12853 Deinterlace video using neural network edge directed interpolation.
12854
12855 This filter accepts the following options:
12856
12857 @table @option
12858 @item weights
12859 Mandatory option, without binary file filter can not work.
12860 Currently file can be found here:
12861 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
12862
12863 @item deint
12864 Set which frames to deinterlace, by default it is @code{all}.
12865 Can be @code{all} or @code{interlaced}.
12866
12867 @item field
12868 Set mode of operation.
12869
12870 Can be one of the following:
12871
12872 @table @samp
12873 @item af
12874 Use frame flags, both fields.
12875 @item a
12876 Use frame flags, single field.
12877 @item t
12878 Use top field only.
12879 @item b
12880 Use bottom field only.
12881 @item tf
12882 Use both fields, top first.
12883 @item bf
12884 Use both fields, bottom first.
12885 @end table
12886
12887 @item planes
12888 Set which planes to process, by default filter process all frames.
12889
12890 @item nsize
12891 Set size of local neighborhood around each pixel, used by the predictor neural
12892 network.
12893
12894 Can be one of the following:
12895
12896 @table @samp
12897 @item s8x6
12898 @item s16x6
12899 @item s32x6
12900 @item s48x6
12901 @item s8x4
12902 @item s16x4
12903 @item s32x4
12904 @end table
12905
12906 @item nns
12907 Set the number of neurons in predictor neural network.
12908 Can be one of the following:
12909
12910 @table @samp
12911 @item n16
12912 @item n32
12913 @item n64
12914 @item n128
12915 @item n256
12916 @end table
12917
12918 @item qual
12919 Controls the number of different neural network predictions that are blended
12920 together to compute the final output value. Can be @code{fast}, default or
12921 @code{slow}.
12922
12923 @item etype
12924 Set which set of weights to use in the predictor.
12925 Can be one of the following:
12926
12927 @table @samp
12928 @item a
12929 weights trained to minimize absolute error
12930 @item s
12931 weights trained to minimize squared error
12932 @end table
12933
12934 @item pscrn
12935 Controls whether or not the prescreener neural network is used to decide
12936 which pixels should be processed by the predictor neural network and which
12937 can be handled by simple cubic interpolation.
12938 The prescreener is trained to know whether cubic interpolation will be
12939 sufficient for a pixel or whether it should be predicted by the predictor nn.
12940 The computational complexity of the prescreener nn is much less than that of
12941 the predictor nn. Since most pixels can be handled by cubic interpolation,
12942 using the prescreener generally results in much faster processing.
12943 The prescreener is pretty accurate, so the difference between using it and not
12944 using it is almost always unnoticeable.
12945
12946 Can be one of the following:
12947
12948 @table @samp
12949 @item none
12950 @item original
12951 @item new
12952 @end table
12953
12954 Default is @code{new}.
12955
12956 @item fapprox
12957 Set various debugging flags.
12958 @end table
12959
12960 @section noformat
12961
12962 Force libavfilter not to use any of the specified pixel formats for the
12963 input to the next filter.
12964
12965 It accepts the following parameters:
12966 @table @option
12967
12968 @item pix_fmts
12969 A '|'-separated list of pixel format names, such as
12970 pix_fmts=yuv420p|monow|rgb24".
12971
12972 @end table
12973
12974 @subsection Examples
12975
12976 @itemize
12977 @item
12978 Force libavfilter to use a format different from @var{yuv420p} for the
12979 input to the vflip filter:
12980 @example
12981 noformat=pix_fmts=yuv420p,vflip
12982 @end example
12983
12984 @item
12985 Convert the input video to any of the formats not contained in the list:
12986 @example
12987 noformat=yuv420p|yuv444p|yuv410p
12988 @end example
12989 @end itemize
12990
12991 @section noise
12992
12993 Add noise on video input frame.
12994
12995 The filter accepts the following options:
12996
12997 @table @option
12998 @item all_seed
12999 @item c0_seed
13000 @item c1_seed
13001 @item c2_seed
13002 @item c3_seed
13003 Set noise seed for specific pixel component or all pixel components in case
13004 of @var{all_seed}. Default value is @code{123457}.
13005
13006 @item all_strength, alls
13007 @item c0_strength, c0s
13008 @item c1_strength, c1s
13009 @item c2_strength, c2s
13010 @item c3_strength, c3s
13011 Set noise strength for specific pixel component or all pixel components in case
13012 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
13013
13014 @item all_flags, allf
13015 @item c0_flags, c0f
13016 @item c1_flags, c1f
13017 @item c2_flags, c2f
13018 @item c3_flags, c3f
13019 Set pixel component flags or set flags for all components if @var{all_flags}.
13020 Available values for component flags are:
13021 @table @samp
13022 @item a
13023 averaged temporal noise (smoother)
13024 @item p
13025 mix random noise with a (semi)regular pattern
13026 @item t
13027 temporal noise (noise pattern changes between frames)
13028 @item u
13029 uniform noise (gaussian otherwise)
13030 @end table
13031 @end table
13032
13033 @subsection Examples
13034
13035 Add temporal and uniform noise to input video:
13036 @example
13037 noise=alls=20:allf=t+u
13038 @end example
13039
13040 @section normalize
13041
13042 Normalize RGB video (aka histogram stretching, contrast stretching).
13043 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
13044
13045 For each channel of each frame, the filter computes the input range and maps
13046 it linearly to the user-specified output range. The output range defaults
13047 to the full dynamic range from pure black to pure white.
13048
13049 Temporal smoothing can be used on the input range to reduce flickering (rapid
13050 changes in brightness) caused when small dark or bright objects enter or leave
13051 the scene. This is similar to the auto-exposure (automatic gain control) on a
13052 video camera, and, like a video camera, it may cause a period of over- or
13053 under-exposure of the video.
13054
13055 The R,G,B channels can be normalized independently, which may cause some
13056 color shifting, or linked together as a single channel, which prevents
13057 color shifting. Linked normalization preserves hue. Independent normalization
13058 does not, so it can be used to remove some color casts. Independent and linked
13059 normalization can be combined in any ratio.
13060
13061 The normalize filter accepts the following options:
13062
13063 @table @option
13064 @item blackpt
13065 @item whitept
13066 Colors which define the output range. The minimum input value is mapped to
13067 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
13068 The defaults are black and white respectively. Specifying white for
13069 @var{blackpt} and black for @var{whitept} will give color-inverted,
13070 normalized video. Shades of grey can be used to reduce the dynamic range
13071 (contrast). Specifying saturated colors here can create some interesting
13072 effects.
13073
13074 @item smoothing
13075 The number of previous frames to use for temporal smoothing. The input range
13076 of each channel is smoothed using a rolling average over the current frame
13077 and the @var{smoothing} previous frames. The default is 0 (no temporal
13078 smoothing).
13079
13080 @item independence
13081 Controls the ratio of independent (color shifting) channel normalization to
13082 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
13083 independent. Defaults to 1.0 (fully independent).
13084
13085 @item strength
13086 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
13087 expensive no-op. Defaults to 1.0 (full strength).
13088
13089 @end table
13090
13091 @subsection Examples
13092
13093 Stretch video contrast to use the full dynamic range, with no temporal
13094 smoothing; may flicker depending on the source content:
13095 @example
13096 normalize=blackpt=black:whitept=white:smoothing=0
13097 @end example
13098
13099 As above, but with 50 frames of temporal smoothing; flicker should be
13100 reduced, depending on the source content:
13101 @example
13102 normalize=blackpt=black:whitept=white:smoothing=50
13103 @end example
13104
13105 As above, but with hue-preserving linked channel normalization:
13106 @example
13107 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
13108 @end example
13109
13110 As above, but with half strength:
13111 @example
13112 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
13113 @end example
13114
13115 Map the darkest input color to red, the brightest input color to cyan:
13116 @example
13117 normalize=blackpt=red:whitept=cyan
13118 @end example
13119
13120 @section null
13121
13122 Pass the video source unchanged to the output.
13123
13124 @section ocr
13125 Optical Character Recognition
13126
13127 This filter uses Tesseract for optical character recognition. To enable
13128 compilation of this filter, you need to configure FFmpeg with
13129 @code{--enable-libtesseract}.
13130
13131 It accepts the following options:
13132
13133 @table @option
13134 @item datapath
13135 Set datapath to tesseract data. Default is to use whatever was
13136 set at installation.
13137
13138 @item language
13139 Set language, default is "eng".
13140
13141 @item whitelist
13142 Set character whitelist.
13143
13144 @item blacklist
13145 Set character blacklist.
13146 @end table
13147
13148 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
13149 The filter exports confidence of recognized words as the frame metadata @code{lavfi.ocr.confidence}.
13150
13151 @section ocv
13152
13153 Apply a video transform using libopencv.
13154
13155 To enable this filter, install the libopencv library and headers and
13156 configure FFmpeg with @code{--enable-libopencv}.
13157
13158 It accepts the following parameters:
13159
13160 @table @option
13161
13162 @item filter_name
13163 The name of the libopencv filter to apply.
13164
13165 @item filter_params
13166 The parameters to pass to the libopencv filter. If not specified, the default
13167 values are assumed.
13168
13169 @end table
13170
13171 Refer to the official libopencv documentation for more precise
13172 information:
13173 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
13174
13175 Several libopencv filters are supported; see the following subsections.
13176
13177 @anchor{dilate}
13178 @subsection dilate
13179
13180 Dilate an image by using a specific structuring element.
13181 It corresponds to the libopencv function @code{cvDilate}.
13182
13183 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
13184
13185 @var{struct_el} represents a structuring element, and has the syntax:
13186 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
13187
13188 @var{cols} and @var{rows} represent the number of columns and rows of
13189 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
13190 point, and @var{shape} the shape for the structuring element. @var{shape}
13191 must be "rect", "cross", "ellipse", or "custom".
13192
13193 If the value for @var{shape} is "custom", it must be followed by a
13194 string of the form "=@var{filename}". The file with name
13195 @var{filename} is assumed to represent a binary image, with each
13196 printable character corresponding to a bright pixel. When a custom
13197 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
13198 or columns and rows of the read file are assumed instead.
13199
13200 The default value for @var{struct_el} is "3x3+0x0/rect".
13201
13202 @var{nb_iterations} specifies the number of times the transform is
13203 applied to the image, and defaults to 1.
13204
13205 Some examples:
13206 @example
13207 # Use the default values
13208 ocv=dilate
13209
13210 # Dilate using a structuring element with a 5x5 cross, iterating two times
13211 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
13212
13213 # Read the shape from the file diamond.shape, iterating two times.
13214 # The file diamond.shape may contain a pattern of characters like this
13215 #   *
13216 #  ***
13217 # *****
13218 #  ***
13219 #   *
13220 # The specified columns and rows are ignored
13221 # but the anchor point coordinates are not
13222 ocv=dilate:0x0+2x2/custom=diamond.shape|2
13223 @end example
13224
13225 @subsection erode
13226
13227 Erode an image by using a specific structuring element.
13228 It corresponds to the libopencv function @code{cvErode}.
13229
13230 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
13231 with the same syntax and semantics as the @ref{dilate} filter.
13232
13233 @subsection smooth
13234
13235 Smooth the input video.
13236
13237 The filter takes the following parameters:
13238 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
13239
13240 @var{type} is the type of smooth filter to apply, and must be one of
13241 the following values: "blur", "blur_no_scale", "median", "gaussian",
13242 or "bilateral". The default value is "gaussian".
13243
13244 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
13245 depend on the smooth type. @var{param1} and
13246 @var{param2} accept integer positive values or 0. @var{param3} and
13247 @var{param4} accept floating point values.
13248
13249 The default value for @var{param1} is 3. The default value for the
13250 other parameters is 0.
13251
13252 These parameters correspond to the parameters assigned to the
13253 libopencv function @code{cvSmooth}.
13254
13255 @section oscilloscope
13256
13257 2D Video Oscilloscope.
13258
13259 Useful to measure spatial impulse, step responses, chroma delays, etc.
13260
13261 It accepts the following parameters:
13262
13263 @table @option
13264 @item x
13265 Set scope center x position.
13266
13267 @item y
13268 Set scope center y position.
13269
13270 @item s
13271 Set scope size, relative to frame diagonal.
13272
13273 @item t
13274 Set scope tilt/rotation.
13275
13276 @item o
13277 Set trace opacity.
13278
13279 @item tx
13280 Set trace center x position.
13281
13282 @item ty
13283 Set trace center y position.
13284
13285 @item tw
13286 Set trace width, relative to width of frame.
13287
13288 @item th
13289 Set trace height, relative to height of frame.
13290
13291 @item c
13292 Set which components to trace. By default it traces first three components.
13293
13294 @item g
13295 Draw trace grid. By default is enabled.
13296
13297 @item st
13298 Draw some statistics. By default is enabled.
13299
13300 @item sc
13301 Draw scope. By default is enabled.
13302 @end table
13303
13304 @subsection Examples
13305
13306 @itemize
13307 @item
13308 Inspect full first row of video frame.
13309 @example
13310 oscilloscope=x=0.5:y=0:s=1
13311 @end example
13312
13313 @item
13314 Inspect full last row of video frame.
13315 @example
13316 oscilloscope=x=0.5:y=1:s=1
13317 @end example
13318
13319 @item
13320 Inspect full 5th line of video frame of height 1080.
13321 @example
13322 oscilloscope=x=0.5:y=5/1080:s=1
13323 @end example
13324
13325 @item
13326 Inspect full last column of video frame.
13327 @example
13328 oscilloscope=x=1:y=0.5:s=1:t=1
13329 @end example
13330
13331 @end itemize
13332
13333 @anchor{overlay}
13334 @section overlay
13335
13336 Overlay one video on top of another.
13337
13338 It takes two inputs and has one output. The first input is the "main"
13339 video on which the second input is overlaid.
13340
13341 It accepts the following parameters:
13342
13343 A description of the accepted options follows.
13344
13345 @table @option
13346 @item x
13347 @item y
13348 Set the expression for the x and y coordinates of the overlaid video
13349 on the main video. Default value is "0" for both expressions. In case
13350 the expression is invalid, it is set to a huge value (meaning that the
13351 overlay will not be displayed within the output visible area).
13352
13353 @item eof_action
13354 See @ref{framesync}.
13355
13356 @item eval
13357 Set when the expressions for @option{x}, and @option{y} are evaluated.
13358
13359 It accepts the following values:
13360 @table @samp
13361 @item init
13362 only evaluate expressions once during the filter initialization or
13363 when a command is processed
13364
13365 @item frame
13366 evaluate expressions for each incoming frame
13367 @end table
13368
13369 Default value is @samp{frame}.
13370
13371 @item shortest
13372 See @ref{framesync}.
13373
13374 @item format
13375 Set the format for the output video.
13376
13377 It accepts the following values:
13378 @table @samp
13379 @item yuv420
13380 force YUV420 output
13381
13382 @item yuv422
13383 force YUV422 output
13384
13385 @item yuv444
13386 force YUV444 output
13387
13388 @item rgb
13389 force packed RGB output
13390
13391 @item gbrp
13392 force planar RGB output
13393
13394 @item auto
13395 automatically pick format
13396 @end table
13397
13398 Default value is @samp{yuv420}.
13399
13400 @item repeatlast
13401 See @ref{framesync}.
13402
13403 @item alpha
13404 Set format of alpha of the overlaid video, it can be @var{straight} or
13405 @var{premultiplied}. Default is @var{straight}.
13406 @end table
13407
13408 The @option{x}, and @option{y} expressions can contain the following
13409 parameters.
13410
13411 @table @option
13412 @item main_w, W
13413 @item main_h, H
13414 The main input width and height.
13415
13416 @item overlay_w, w
13417 @item overlay_h, h
13418 The overlay input width and height.
13419
13420 @item x
13421 @item y
13422 The computed values for @var{x} and @var{y}. They are evaluated for
13423 each new frame.
13424
13425 @item hsub
13426 @item vsub
13427 horizontal and vertical chroma subsample values of the output
13428 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
13429 @var{vsub} is 1.
13430
13431 @item n
13432 the number of input frame, starting from 0
13433
13434 @item pos
13435 the position in the file of the input frame, NAN if unknown
13436
13437 @item t
13438 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
13439
13440 @end table
13441
13442 This filter also supports the @ref{framesync} options.
13443
13444 Note that the @var{n}, @var{pos}, @var{t} variables are available only
13445 when evaluation is done @emph{per frame}, and will evaluate to NAN
13446 when @option{eval} is set to @samp{init}.
13447
13448 Be aware that frames are taken from each input video in timestamp
13449 order, hence, if their initial timestamps differ, it is a good idea
13450 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
13451 have them begin in the same zero timestamp, as the example for
13452 the @var{movie} filter does.
13453
13454 You can chain together more overlays but you should test the
13455 efficiency of such approach.
13456
13457 @subsection Commands
13458
13459 This filter supports the following commands:
13460 @table @option
13461 @item x
13462 @item y
13463 Modify the x and y of the overlay input.
13464 The command accepts the same syntax of the corresponding option.
13465
13466 If the specified expression is not valid, it is kept at its current
13467 value.
13468 @end table
13469
13470 @subsection Examples
13471
13472 @itemize
13473 @item
13474 Draw the overlay at 10 pixels from the bottom right corner of the main
13475 video:
13476 @example
13477 overlay=main_w-overlay_w-10:main_h-overlay_h-10
13478 @end example
13479
13480 Using named options the example above becomes:
13481 @example
13482 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
13483 @end example
13484
13485 @item
13486 Insert a transparent PNG logo in the bottom left corner of the input,
13487 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
13488 @example
13489 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
13490 @end example
13491
13492 @item
13493 Insert 2 different transparent PNG logos (second logo on bottom
13494 right corner) using the @command{ffmpeg} tool:
13495 @example
13496 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
13497 @end example
13498
13499 @item
13500 Add a transparent color layer on top of the main video; @code{WxH}
13501 must specify the size of the main input to the overlay filter:
13502 @example
13503 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
13504 @end example
13505
13506 @item
13507 Play an original video and a filtered version (here with the deshake
13508 filter) side by side using the @command{ffplay} tool:
13509 @example
13510 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
13511 @end example
13512
13513 The above command is the same as:
13514 @example
13515 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
13516 @end example
13517
13518 @item
13519 Make a sliding overlay appearing from the left to the right top part of the
13520 screen starting since time 2:
13521 @example
13522 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
13523 @end example
13524
13525 @item
13526 Compose output by putting two input videos side to side:
13527 @example
13528 ffmpeg -i left.avi -i right.avi -filter_complex "
13529 nullsrc=size=200x100 [background];
13530 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
13531 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
13532 [background][left]       overlay=shortest=1       [background+left];
13533 [background+left][right] overlay=shortest=1:x=100 [left+right]
13534 "
13535 @end example
13536
13537 @item
13538 Mask 10-20 seconds of a video by applying the delogo filter to a section
13539 @example
13540 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
13541 -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]'
13542 masked.avi
13543 @end example
13544
13545 @item
13546 Chain several overlays in cascade:
13547 @example
13548 nullsrc=s=200x200 [bg];
13549 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
13550 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
13551 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
13552 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
13553 [in3] null,       [mid2] overlay=100:100 [out0]
13554 @end example
13555
13556 @end itemize
13557
13558 @section owdenoise
13559
13560 Apply Overcomplete Wavelet denoiser.
13561
13562 The filter accepts the following options:
13563
13564 @table @option
13565 @item depth
13566 Set depth.
13567
13568 Larger depth values will denoise lower frequency components more, but
13569 slow down filtering.
13570
13571 Must be an int in the range 8-16, default is @code{8}.
13572
13573 @item luma_strength, ls
13574 Set luma strength.
13575
13576 Must be a double value in the range 0-1000, default is @code{1.0}.
13577
13578 @item chroma_strength, cs
13579 Set chroma strength.
13580
13581 Must be a double value in the range 0-1000, default is @code{1.0}.
13582 @end table
13583
13584 @anchor{pad}
13585 @section pad
13586
13587 Add paddings to the input image, and place the original input at the
13588 provided @var{x}, @var{y} coordinates.
13589
13590 It accepts the following parameters:
13591
13592 @table @option
13593 @item width, w
13594 @item height, h
13595 Specify an expression for the size of the output image with the
13596 paddings added. If the value for @var{width} or @var{height} is 0, the
13597 corresponding input size is used for the output.
13598
13599 The @var{width} expression can reference the value set by the
13600 @var{height} expression, and vice versa.
13601
13602 The default value of @var{width} and @var{height} is 0.
13603
13604 @item x
13605 @item y
13606 Specify the offsets to place the input image at within the padded area,
13607 with respect to the top/left border of the output image.
13608
13609 The @var{x} expression can reference the value set by the @var{y}
13610 expression, and vice versa.
13611
13612 The default value of @var{x} and @var{y} is 0.
13613
13614 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
13615 so the input image is centered on the padded area.
13616
13617 @item color
13618 Specify the color of the padded area. For the syntax of this option,
13619 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
13620 manual,ffmpeg-utils}.
13621
13622 The default value of @var{color} is "black".
13623
13624 @item eval
13625 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
13626
13627 It accepts the following values:
13628
13629 @table @samp
13630 @item init
13631 Only evaluate expressions once during the filter initialization or when
13632 a command is processed.
13633
13634 @item frame
13635 Evaluate expressions for each incoming frame.
13636
13637 @end table
13638
13639 Default value is @samp{init}.
13640
13641 @item aspect
13642 Pad to aspect instead to a resolution.
13643
13644 @end table
13645
13646 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
13647 options are expressions containing the following constants:
13648
13649 @table @option
13650 @item in_w
13651 @item in_h
13652 The input video width and height.
13653
13654 @item iw
13655 @item ih
13656 These are the same as @var{in_w} and @var{in_h}.
13657
13658 @item out_w
13659 @item out_h
13660 The output width and height (the size of the padded area), as
13661 specified by the @var{width} and @var{height} expressions.
13662
13663 @item ow
13664 @item oh
13665 These are the same as @var{out_w} and @var{out_h}.
13666
13667 @item x
13668 @item y
13669 The x and y offsets as specified by the @var{x} and @var{y}
13670 expressions, or NAN if not yet specified.
13671
13672 @item a
13673 same as @var{iw} / @var{ih}
13674
13675 @item sar
13676 input sample aspect ratio
13677
13678 @item dar
13679 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
13680
13681 @item hsub
13682 @item vsub
13683 The horizontal and vertical chroma subsample values. For example for the
13684 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13685 @end table
13686
13687 @subsection Examples
13688
13689 @itemize
13690 @item
13691 Add paddings with the color "violet" to the input video. The output video
13692 size is 640x480, and the top-left corner of the input video is placed at
13693 column 0, row 40
13694 @example
13695 pad=640:480:0:40:violet
13696 @end example
13697
13698 The example above is equivalent to the following command:
13699 @example
13700 pad=width=640:height=480:x=0:y=40:color=violet
13701 @end example
13702
13703 @item
13704 Pad the input to get an output with dimensions increased by 3/2,
13705 and put the input video at the center of the padded area:
13706 @example
13707 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
13708 @end example
13709
13710 @item
13711 Pad the input to get a squared output with size equal to the maximum
13712 value between the input width and height, and put the input video at
13713 the center of the padded area:
13714 @example
13715 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
13716 @end example
13717
13718 @item
13719 Pad the input to get a final w/h ratio of 16:9:
13720 @example
13721 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
13722 @end example
13723
13724 @item
13725 In case of anamorphic video, in order to set the output display aspect
13726 correctly, it is necessary to use @var{sar} in the expression,
13727 according to the relation:
13728 @example
13729 (ih * X / ih) * sar = output_dar
13730 X = output_dar / sar
13731 @end example
13732
13733 Thus the previous example needs to be modified to:
13734 @example
13735 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
13736 @end example
13737
13738 @item
13739 Double the output size and put the input video in the bottom-right
13740 corner of the output padded area:
13741 @example
13742 pad="2*iw:2*ih:ow-iw:oh-ih"
13743 @end example
13744 @end itemize
13745
13746 @anchor{palettegen}
13747 @section palettegen
13748
13749 Generate one palette for a whole video stream.
13750
13751 It accepts the following options:
13752
13753 @table @option
13754 @item max_colors
13755 Set the maximum number of colors to quantize in the palette.
13756 Note: the palette will still contain 256 colors; the unused palette entries
13757 will be black.
13758
13759 @item reserve_transparent
13760 Create a palette of 255 colors maximum and reserve the last one for
13761 transparency. Reserving the transparency color is useful for GIF optimization.
13762 If not set, the maximum of colors in the palette will be 256. You probably want
13763 to disable this option for a standalone image.
13764 Set by default.
13765
13766 @item transparency_color
13767 Set the color that will be used as background for transparency.
13768
13769 @item stats_mode
13770 Set statistics mode.
13771
13772 It accepts the following values:
13773 @table @samp
13774 @item full
13775 Compute full frame histograms.
13776 @item diff
13777 Compute histograms only for the part that differs from previous frame. This
13778 might be relevant to give more importance to the moving part of your input if
13779 the background is static.
13780 @item single
13781 Compute new histogram for each frame.
13782 @end table
13783
13784 Default value is @var{full}.
13785 @end table
13786
13787 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
13788 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
13789 color quantization of the palette. This information is also visible at
13790 @var{info} logging level.
13791
13792 @subsection Examples
13793
13794 @itemize
13795 @item
13796 Generate a representative palette of a given video using @command{ffmpeg}:
13797 @example
13798 ffmpeg -i input.mkv -vf palettegen palette.png
13799 @end example
13800 @end itemize
13801
13802 @section paletteuse
13803
13804 Use a palette to downsample an input video stream.
13805
13806 The filter takes two inputs: one video stream and a palette. The palette must
13807 be a 256 pixels image.
13808
13809 It accepts the following options:
13810
13811 @table @option
13812 @item dither
13813 Select dithering mode. Available algorithms are:
13814 @table @samp
13815 @item bayer
13816 Ordered 8x8 bayer dithering (deterministic)
13817 @item heckbert
13818 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
13819 Note: this dithering is sometimes considered "wrong" and is included as a
13820 reference.
13821 @item floyd_steinberg
13822 Floyd and Steingberg dithering (error diffusion)
13823 @item sierra2
13824 Frankie Sierra dithering v2 (error diffusion)
13825 @item sierra2_4a
13826 Frankie Sierra dithering v2 "Lite" (error diffusion)
13827 @end table
13828
13829 Default is @var{sierra2_4a}.
13830
13831 @item bayer_scale
13832 When @var{bayer} dithering is selected, this option defines the scale of the
13833 pattern (how much the crosshatch pattern is visible). A low value means more
13834 visible pattern for less banding, and higher value means less visible pattern
13835 at the cost of more banding.
13836
13837 The option must be an integer value in the range [0,5]. Default is @var{2}.
13838
13839 @item diff_mode
13840 If set, define the zone to process
13841
13842 @table @samp
13843 @item rectangle
13844 Only the changing rectangle will be reprocessed. This is similar to GIF
13845 cropping/offsetting compression mechanism. This option can be useful for speed
13846 if only a part of the image is changing, and has use cases such as limiting the
13847 scope of the error diffusal @option{dither} to the rectangle that bounds the
13848 moving scene (it leads to more deterministic output if the scene doesn't change
13849 much, and as a result less moving noise and better GIF compression).
13850 @end table
13851
13852 Default is @var{none}.
13853
13854 @item new
13855 Take new palette for each output frame.
13856
13857 @item alpha_threshold
13858 Sets the alpha threshold for transparency. Alpha values above this threshold
13859 will be treated as completely opaque, and values below this threshold will be
13860 treated as completely transparent.
13861
13862 The option must be an integer value in the range [0,255]. Default is @var{128}.
13863 @end table
13864
13865 @subsection Examples
13866
13867 @itemize
13868 @item
13869 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
13870 using @command{ffmpeg}:
13871 @example
13872 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
13873 @end example
13874 @end itemize
13875
13876 @section perspective
13877
13878 Correct perspective of video not recorded perpendicular to the screen.
13879
13880 A description of the accepted parameters follows.
13881
13882 @table @option
13883 @item x0
13884 @item y0
13885 @item x1
13886 @item y1
13887 @item x2
13888 @item y2
13889 @item x3
13890 @item y3
13891 Set coordinates expression for top left, top right, bottom left and bottom right corners.
13892 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
13893 If the @code{sense} option is set to @code{source}, then the specified points will be sent
13894 to the corners of the destination. If the @code{sense} option is set to @code{destination},
13895 then the corners of the source will be sent to the specified coordinates.
13896
13897 The expressions can use the following variables:
13898
13899 @table @option
13900 @item W
13901 @item H
13902 the width and height of video frame.
13903 @item in
13904 Input frame count.
13905 @item on
13906 Output frame count.
13907 @end table
13908
13909 @item interpolation
13910 Set interpolation for perspective correction.
13911
13912 It accepts the following values:
13913 @table @samp
13914 @item linear
13915 @item cubic
13916 @end table
13917
13918 Default value is @samp{linear}.
13919
13920 @item sense
13921 Set interpretation of coordinate options.
13922
13923 It accepts the following values:
13924 @table @samp
13925 @item 0, source
13926
13927 Send point in the source specified by the given coordinates to
13928 the corners of the destination.
13929
13930 @item 1, destination
13931
13932 Send the corners of the source to the point in the destination specified
13933 by the given coordinates.
13934
13935 Default value is @samp{source}.
13936 @end table
13937
13938 @item eval
13939 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
13940
13941 It accepts the following values:
13942 @table @samp
13943 @item init
13944 only evaluate expressions once during the filter initialization or
13945 when a command is processed
13946
13947 @item frame
13948 evaluate expressions for each incoming frame
13949 @end table
13950
13951 Default value is @samp{init}.
13952 @end table
13953
13954 @section phase
13955
13956 Delay interlaced video by one field time so that the field order changes.
13957
13958 The intended use is to fix PAL movies that have been captured with the
13959 opposite field order to the film-to-video transfer.
13960
13961 A description of the accepted parameters follows.
13962
13963 @table @option
13964 @item mode
13965 Set phase mode.
13966
13967 It accepts the following values:
13968 @table @samp
13969 @item t
13970 Capture field order top-first, transfer bottom-first.
13971 Filter will delay the bottom field.
13972
13973 @item b
13974 Capture field order bottom-first, transfer top-first.
13975 Filter will delay the top field.
13976
13977 @item p
13978 Capture and transfer with the same field order. This mode only exists
13979 for the documentation of the other options to refer to, but if you
13980 actually select it, the filter will faithfully do nothing.
13981
13982 @item a
13983 Capture field order determined automatically by field flags, transfer
13984 opposite.
13985 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
13986 basis using field flags. If no field information is available,
13987 then this works just like @samp{u}.
13988
13989 @item u
13990 Capture unknown or varying, transfer opposite.
13991 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
13992 analyzing the images and selecting the alternative that produces best
13993 match between the fields.
13994
13995 @item T
13996 Capture top-first, transfer unknown or varying.
13997 Filter selects among @samp{t} and @samp{p} using image analysis.
13998
13999 @item B
14000 Capture bottom-first, transfer unknown or varying.
14001 Filter selects among @samp{b} and @samp{p} using image analysis.
14002
14003 @item A
14004 Capture determined by field flags, transfer unknown or varying.
14005 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
14006 image analysis. If no field information is available, then this works just
14007 like @samp{U}. This is the default mode.
14008
14009 @item U
14010 Both capture and transfer unknown or varying.
14011 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
14012 @end table
14013 @end table
14014
14015 @section pixdesctest
14016
14017 Pixel format descriptor test filter, mainly useful for internal
14018 testing. The output video should be equal to the input video.
14019
14020 For example:
14021 @example
14022 format=monow, pixdesctest
14023 @end example
14024
14025 can be used to test the monowhite pixel format descriptor definition.
14026
14027 @section pixscope
14028
14029 Display sample values of color channels. Mainly useful for checking color
14030 and levels. Minimum supported resolution is 640x480.
14031
14032 The filters accept the following options:
14033
14034 @table @option
14035 @item x
14036 Set scope X position, relative offset on X axis.
14037
14038 @item y
14039 Set scope Y position, relative offset on Y axis.
14040
14041 @item w
14042 Set scope width.
14043
14044 @item h
14045 Set scope height.
14046
14047 @item o
14048 Set window opacity. This window also holds statistics about pixel area.
14049
14050 @item wx
14051 Set window X position, relative offset on X axis.
14052
14053 @item wy
14054 Set window Y position, relative offset on Y axis.
14055 @end table
14056
14057 @section pp
14058
14059 Enable the specified chain of postprocessing subfilters using libpostproc. This
14060 library should be automatically selected with a GPL build (@code{--enable-gpl}).
14061 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
14062 Each subfilter and some options have a short and a long name that can be used
14063 interchangeably, i.e. dr/dering are the same.
14064
14065 The filters accept the following options:
14066
14067 @table @option
14068 @item subfilters
14069 Set postprocessing subfilters string.
14070 @end table
14071
14072 All subfilters share common options to determine their scope:
14073
14074 @table @option
14075 @item a/autoq
14076 Honor the quality commands for this subfilter.
14077
14078 @item c/chrom
14079 Do chrominance filtering, too (default).
14080
14081 @item y/nochrom
14082 Do luminance filtering only (no chrominance).
14083
14084 @item n/noluma
14085 Do chrominance filtering only (no luminance).
14086 @end table
14087
14088 These options can be appended after the subfilter name, separated by a '|'.
14089
14090 Available subfilters are:
14091
14092 @table @option
14093 @item hb/hdeblock[|difference[|flatness]]
14094 Horizontal deblocking filter
14095 @table @option
14096 @item difference
14097 Difference factor where higher values mean more deblocking (default: @code{32}).
14098 @item flatness
14099 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14100 @end table
14101
14102 @item vb/vdeblock[|difference[|flatness]]
14103 Vertical deblocking filter
14104 @table @option
14105 @item difference
14106 Difference factor where higher values mean more deblocking (default: @code{32}).
14107 @item flatness
14108 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14109 @end table
14110
14111 @item ha/hadeblock[|difference[|flatness]]
14112 Accurate horizontal deblocking filter
14113 @table @option
14114 @item difference
14115 Difference factor where higher values mean more deblocking (default: @code{32}).
14116 @item flatness
14117 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14118 @end table
14119
14120 @item va/vadeblock[|difference[|flatness]]
14121 Accurate vertical deblocking filter
14122 @table @option
14123 @item difference
14124 Difference factor where higher values mean more deblocking (default: @code{32}).
14125 @item flatness
14126 Flatness threshold where lower values mean more deblocking (default: @code{39}).
14127 @end table
14128 @end table
14129
14130 The horizontal and vertical deblocking filters share the difference and
14131 flatness values so you cannot set different horizontal and vertical
14132 thresholds.
14133
14134 @table @option
14135 @item h1/x1hdeblock
14136 Experimental horizontal deblocking filter
14137
14138 @item v1/x1vdeblock
14139 Experimental vertical deblocking filter
14140
14141 @item dr/dering
14142 Deringing filter
14143
14144 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
14145 @table @option
14146 @item threshold1
14147 larger -> stronger filtering
14148 @item threshold2
14149 larger -> stronger filtering
14150 @item threshold3
14151 larger -> stronger filtering
14152 @end table
14153
14154 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
14155 @table @option
14156 @item f/fullyrange
14157 Stretch luminance to @code{0-255}.
14158 @end table
14159
14160 @item lb/linblenddeint
14161 Linear blend deinterlacing filter that deinterlaces the given block by
14162 filtering all lines with a @code{(1 2 1)} filter.
14163
14164 @item li/linipoldeint
14165 Linear interpolating deinterlacing filter that deinterlaces the given block by
14166 linearly interpolating every second line.
14167
14168 @item ci/cubicipoldeint
14169 Cubic interpolating deinterlacing filter deinterlaces the given block by
14170 cubically interpolating every second line.
14171
14172 @item md/mediandeint
14173 Median deinterlacing filter that deinterlaces the given block by applying a
14174 median filter to every second line.
14175
14176 @item fd/ffmpegdeint
14177 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
14178 second line with a @code{(-1 4 2 4 -1)} filter.
14179
14180 @item l5/lowpass5
14181 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
14182 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
14183
14184 @item fq/forceQuant[|quantizer]
14185 Overrides the quantizer table from the input with the constant quantizer you
14186 specify.
14187 @table @option
14188 @item quantizer
14189 Quantizer to use
14190 @end table
14191
14192 @item de/default
14193 Default pp filter combination (@code{hb|a,vb|a,dr|a})
14194
14195 @item fa/fast
14196 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
14197
14198 @item ac
14199 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
14200 @end table
14201
14202 @subsection Examples
14203
14204 @itemize
14205 @item
14206 Apply horizontal and vertical deblocking, deringing and automatic
14207 brightness/contrast:
14208 @example
14209 pp=hb/vb/dr/al
14210 @end example
14211
14212 @item
14213 Apply default filters without brightness/contrast correction:
14214 @example
14215 pp=de/-al
14216 @end example
14217
14218 @item
14219 Apply default filters and temporal denoiser:
14220 @example
14221 pp=default/tmpnoise|1|2|3
14222 @end example
14223
14224 @item
14225 Apply deblocking on luminance only, and switch vertical deblocking on or off
14226 automatically depending on available CPU time:
14227 @example
14228 pp=hb|y/vb|a
14229 @end example
14230 @end itemize
14231
14232 @section pp7
14233 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
14234 similar to spp = 6 with 7 point DCT, where only the center sample is
14235 used after IDCT.
14236
14237 The filter accepts the following options:
14238
14239 @table @option
14240 @item qp
14241 Force a constant quantization parameter. It accepts an integer in range
14242 0 to 63. If not set, the filter will use the QP from the video stream
14243 (if available).
14244
14245 @item mode
14246 Set thresholding mode. Available modes are:
14247
14248 @table @samp
14249 @item hard
14250 Set hard thresholding.
14251 @item soft
14252 Set soft thresholding (better de-ringing effect, but likely blurrier).
14253 @item medium
14254 Set medium thresholding (good results, default).
14255 @end table
14256 @end table
14257
14258 @section premultiply
14259 Apply alpha premultiply effect to input video stream using first plane
14260 of second stream as alpha.
14261
14262 Both streams must have same dimensions and same pixel format.
14263
14264 The filter accepts the following option:
14265
14266 @table @option
14267 @item planes
14268 Set which planes will be processed, unprocessed planes will be copied.
14269 By default value 0xf, all planes will be processed.
14270
14271 @item inplace
14272 Do not require 2nd input for processing, instead use alpha plane from input stream.
14273 @end table
14274
14275 @section prewitt
14276 Apply prewitt operator to input video stream.
14277
14278 The filter accepts the following option:
14279
14280 @table @option
14281 @item planes
14282 Set which planes will be processed, unprocessed planes will be copied.
14283 By default value 0xf, all planes will be processed.
14284
14285 @item scale
14286 Set value which will be multiplied with filtered result.
14287
14288 @item delta
14289 Set value which will be added to filtered result.
14290 @end table
14291
14292 @anchor{program_opencl}
14293 @section program_opencl
14294
14295 Filter video using an OpenCL program.
14296
14297 @table @option
14298
14299 @item source
14300 OpenCL program source file.
14301
14302 @item kernel
14303 Kernel name in program.
14304
14305 @item inputs
14306 Number of inputs to the filter.  Defaults to 1.
14307
14308 @item size, s
14309 Size of output frames.  Defaults to the same as the first input.
14310
14311 @end table
14312
14313 The program source file must contain a kernel function with the given name,
14314 which will be run once for each plane of the output.  Each run on a plane
14315 gets enqueued as a separate 2D global NDRange with one work-item for each
14316 pixel to be generated.  The global ID offset for each work-item is therefore
14317 the coordinates of a pixel in the destination image.
14318
14319 The kernel function needs to take the following arguments:
14320 @itemize
14321 @item
14322 Destination image, @var{__write_only image2d_t}.
14323
14324 This image will become the output; the kernel should write all of it.
14325 @item
14326 Frame index, @var{unsigned int}.
14327
14328 This is a counter starting from zero and increasing by one for each frame.
14329 @item
14330 Source images, @var{__read_only image2d_t}.
14331
14332 These are the most recent images on each input.  The kernel may read from
14333 them to generate the output, but they can't be written to.
14334 @end itemize
14335
14336 Example programs:
14337
14338 @itemize
14339 @item
14340 Copy the input to the output (output must be the same size as the input).
14341 @verbatim
14342 __kernel void copy(__write_only image2d_t destination,
14343                    unsigned int index,
14344                    __read_only  image2d_t source)
14345 {
14346     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
14347
14348     int2 location = (int2)(get_global_id(0), get_global_id(1));
14349
14350     float4 value = read_imagef(source, sampler, location);
14351
14352     write_imagef(destination, location, value);
14353 }
14354 @end verbatim
14355
14356 @item
14357 Apply a simple transformation, rotating the input by an amount increasing
14358 with the index counter.  Pixel values are linearly interpolated by the
14359 sampler, and the output need not have the same dimensions as the input.
14360 @verbatim
14361 __kernel void rotate_image(__write_only image2d_t dst,
14362                            unsigned int index,
14363                            __read_only  image2d_t src)
14364 {
14365     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14366                                CLK_FILTER_LINEAR);
14367
14368     float angle = (float)index / 100.0f;
14369
14370     float2 dst_dim = convert_float2(get_image_dim(dst));
14371     float2 src_dim = convert_float2(get_image_dim(src));
14372
14373     float2 dst_cen = dst_dim / 2.0f;
14374     float2 src_cen = src_dim / 2.0f;
14375
14376     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
14377
14378     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
14379     float2 src_pos = {
14380         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
14381         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
14382     };
14383     src_pos = src_pos * src_dim / dst_dim;
14384
14385     float2 src_loc = src_pos + src_cen;
14386
14387     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
14388         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
14389         write_imagef(dst, dst_loc, 0.5f);
14390     else
14391         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
14392 }
14393 @end verbatim
14394
14395 @item
14396 Blend two inputs together, with the amount of each input used varying
14397 with the index counter.
14398 @verbatim
14399 __kernel void blend_images(__write_only image2d_t dst,
14400                            unsigned int index,
14401                            __read_only  image2d_t src1,
14402                            __read_only  image2d_t src2)
14403 {
14404     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
14405                                CLK_FILTER_LINEAR);
14406
14407     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
14408
14409     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
14410     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
14411     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
14412
14413     float4 val1 = read_imagef(src1, sampler, src1_loc);
14414     float4 val2 = read_imagef(src2, sampler, src2_loc);
14415
14416     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
14417 }
14418 @end verbatim
14419
14420 @end itemize
14421
14422 @section pseudocolor
14423
14424 Alter frame colors in video with pseudocolors.
14425
14426 This filter accept the following options:
14427
14428 @table @option
14429 @item c0
14430 set pixel first component expression
14431
14432 @item c1
14433 set pixel second component expression
14434
14435 @item c2
14436 set pixel third component expression
14437
14438 @item c3
14439 set pixel fourth component expression, corresponds to the alpha component
14440
14441 @item i
14442 set component to use as base for altering colors
14443 @end table
14444
14445 Each of them specifies the expression to use for computing the lookup table for
14446 the corresponding pixel component values.
14447
14448 The expressions can contain the following constants and functions:
14449
14450 @table @option
14451 @item w
14452 @item h
14453 The input width and height.
14454
14455 @item val
14456 The input value for the pixel component.
14457
14458 @item ymin, umin, vmin, amin
14459 The minimum allowed component value.
14460
14461 @item ymax, umax, vmax, amax
14462 The maximum allowed component value.
14463 @end table
14464
14465 All expressions default to "val".
14466
14467 @subsection Examples
14468
14469 @itemize
14470 @item
14471 Change too high luma values to gradient:
14472 @example
14473 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'"
14474 @end example
14475 @end itemize
14476
14477 @section psnr
14478
14479 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
14480 Ratio) between two input videos.
14481
14482 This filter takes in input two input videos, the first input is
14483 considered the "main" source and is passed unchanged to the
14484 output. The second input is used as a "reference" video for computing
14485 the PSNR.
14486
14487 Both video inputs must have the same resolution and pixel format for
14488 this filter to work correctly. Also it assumes that both inputs
14489 have the same number of frames, which are compared one by one.
14490
14491 The obtained average PSNR is printed through the logging system.
14492
14493 The filter stores the accumulated MSE (mean squared error) of each
14494 frame, and at the end of the processing it is averaged across all frames
14495 equally, and the following formula is applied to obtain the PSNR:
14496
14497 @example
14498 PSNR = 10*log10(MAX^2/MSE)
14499 @end example
14500
14501 Where MAX is the average of the maximum values of each component of the
14502 image.
14503
14504 The description of the accepted parameters follows.
14505
14506 @table @option
14507 @item stats_file, f
14508 If specified the filter will use the named file to save the PSNR of
14509 each individual frame. When filename equals "-" the data is sent to
14510 standard output.
14511
14512 @item stats_version
14513 Specifies which version of the stats file format to use. Details of
14514 each format are written below.
14515 Default value is 1.
14516
14517 @item stats_add_max
14518 Determines whether the max value is output to the stats log.
14519 Default value is 0.
14520 Requires stats_version >= 2. If this is set and stats_version < 2,
14521 the filter will return an error.
14522 @end table
14523
14524 This filter also supports the @ref{framesync} options.
14525
14526 The file printed if @var{stats_file} is selected, contains a sequence of
14527 key/value pairs of the form @var{key}:@var{value} for each compared
14528 couple of frames.
14529
14530 If a @var{stats_version} greater than 1 is specified, a header line precedes
14531 the list of per-frame-pair stats, with key value pairs following the frame
14532 format with the following parameters:
14533
14534 @table @option
14535 @item psnr_log_version
14536 The version of the log file format. Will match @var{stats_version}.
14537
14538 @item fields
14539 A comma separated list of the per-frame-pair parameters included in
14540 the log.
14541 @end table
14542
14543 A description of each shown per-frame-pair parameter follows:
14544
14545 @table @option
14546 @item n
14547 sequential number of the input frame, starting from 1
14548
14549 @item mse_avg
14550 Mean Square Error pixel-by-pixel average difference of the compared
14551 frames, averaged over all the image components.
14552
14553 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
14554 Mean Square Error pixel-by-pixel average difference of the compared
14555 frames for the component specified by the suffix.
14556
14557 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
14558 Peak Signal to Noise ratio of the compared frames for the component
14559 specified by the suffix.
14560
14561 @item max_avg, max_y, max_u, max_v
14562 Maximum allowed value for each channel, and average over all
14563 channels.
14564 @end table
14565
14566 For example:
14567 @example
14568 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14569 [main][ref] psnr="stats_file=stats.log" [out]
14570 @end example
14571
14572 On this example the input file being processed is compared with the
14573 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
14574 is stored in @file{stats.log}.
14575
14576 @anchor{pullup}
14577 @section pullup
14578
14579 Pulldown reversal (inverse telecine) filter, capable of handling mixed
14580 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
14581 content.
14582
14583 The pullup filter is designed to take advantage of future context in making
14584 its decisions. This filter is stateless in the sense that it does not lock
14585 onto a pattern to follow, but it instead looks forward to the following
14586 fields in order to identify matches and rebuild progressive frames.
14587
14588 To produce content with an even framerate, insert the fps filter after
14589 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
14590 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
14591
14592 The filter accepts the following options:
14593
14594 @table @option
14595 @item jl
14596 @item jr
14597 @item jt
14598 @item jb
14599 These options set the amount of "junk" to ignore at the left, right, top, and
14600 bottom of the image, respectively. Left and right are in units of 8 pixels,
14601 while top and bottom are in units of 2 lines.
14602 The default is 8 pixels on each side.
14603
14604 @item sb
14605 Set the strict breaks. Setting this option to 1 will reduce the chances of
14606 filter generating an occasional mismatched frame, but it may also cause an
14607 excessive number of frames to be dropped during high motion sequences.
14608 Conversely, setting it to -1 will make filter match fields more easily.
14609 This may help processing of video where there is slight blurring between
14610 the fields, but may also cause there to be interlaced frames in the output.
14611 Default value is @code{0}.
14612
14613 @item mp
14614 Set the metric plane to use. It accepts the following values:
14615 @table @samp
14616 @item l
14617 Use luma plane.
14618
14619 @item u
14620 Use chroma blue plane.
14621
14622 @item v
14623 Use chroma red plane.
14624 @end table
14625
14626 This option may be set to use chroma plane instead of the default luma plane
14627 for doing filter's computations. This may improve accuracy on very clean
14628 source material, but more likely will decrease accuracy, especially if there
14629 is chroma noise (rainbow effect) or any grayscale video.
14630 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
14631 load and make pullup usable in realtime on slow machines.
14632 @end table
14633
14634 For best results (without duplicated frames in the output file) it is
14635 necessary to change the output frame rate. For example, to inverse
14636 telecine NTSC input:
14637 @example
14638 ffmpeg -i input -vf pullup -r 24000/1001 ...
14639 @end example
14640
14641 @section qp
14642
14643 Change video quantization parameters (QP).
14644
14645 The filter accepts the following option:
14646
14647 @table @option
14648 @item qp
14649 Set expression for quantization parameter.
14650 @end table
14651
14652 The expression is evaluated through the eval API and can contain, among others,
14653 the following constants:
14654
14655 @table @var
14656 @item known
14657 1 if index is not 129, 0 otherwise.
14658
14659 @item qp
14660 Sequential index starting from -129 to 128.
14661 @end table
14662
14663 @subsection Examples
14664
14665 @itemize
14666 @item
14667 Some equation like:
14668 @example
14669 qp=2+2*sin(PI*qp)
14670 @end example
14671 @end itemize
14672
14673 @section random
14674
14675 Flush video frames from internal cache of frames into a random order.
14676 No frame is discarded.
14677 Inspired by @ref{frei0r} nervous filter.
14678
14679 @table @option
14680 @item frames
14681 Set size in number of frames of internal cache, in range from @code{2} to
14682 @code{512}. Default is @code{30}.
14683
14684 @item seed
14685 Set seed for random number generator, must be an integer included between
14686 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
14687 less than @code{0}, the filter will try to use a good random seed on a
14688 best effort basis.
14689 @end table
14690
14691 @section readeia608
14692
14693 Read closed captioning (EIA-608) information from the top lines of a video frame.
14694
14695 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
14696 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
14697 with EIA-608 data (starting from 0). A description of each metadata value follows:
14698
14699 @table @option
14700 @item lavfi.readeia608.X.cc
14701 The two bytes stored as EIA-608 data (printed in hexadecimal).
14702
14703 @item lavfi.readeia608.X.line
14704 The number of the line on which the EIA-608 data was identified and read.
14705 @end table
14706
14707 This filter accepts the following options:
14708
14709 @table @option
14710 @item scan_min
14711 Set the line to start scanning for EIA-608 data. Default is @code{0}.
14712
14713 @item scan_max
14714 Set the line to end scanning for EIA-608 data. Default is @code{29}.
14715
14716 @item mac
14717 Set minimal acceptable amplitude change for sync codes detection.
14718 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
14719
14720 @item spw
14721 Set the ratio of width reserved for sync code detection.
14722 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
14723
14724 @item mhd
14725 Set the max peaks height difference for sync code detection.
14726 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14727
14728 @item mpd
14729 Set max peaks period difference for sync code detection.
14730 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
14731
14732 @item msd
14733 Set the first two max start code bits differences.
14734 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
14735
14736 @item bhd
14737 Set the minimum ratio of bits height compared to 3rd start code bit.
14738 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
14739
14740 @item th_w
14741 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
14742
14743 @item th_b
14744 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
14745
14746 @item chp
14747 Enable checking the parity bit. In the event of a parity error, the filter will output
14748 @code{0x00} for that character. Default is false.
14749
14750 @item lp
14751 Lowpass lines prior further proccessing. Default is disabled.
14752 @end table
14753
14754 @subsection Examples
14755
14756 @itemize
14757 @item
14758 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
14759 @example
14760 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
14761 @end example
14762 @end itemize
14763
14764 @section readvitc
14765
14766 Read vertical interval timecode (VITC) information from the top lines of a
14767 video frame.
14768
14769 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
14770 timecode value, if a valid timecode has been detected. Further metadata key
14771 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
14772 timecode data has been found or not.
14773
14774 This filter accepts the following options:
14775
14776 @table @option
14777 @item scan_max
14778 Set the maximum number of lines to scan for VITC data. If the value is set to
14779 @code{-1} the full video frame is scanned. Default is @code{45}.
14780
14781 @item thr_b
14782 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
14783 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
14784
14785 @item thr_w
14786 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
14787 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
14788 @end table
14789
14790 @subsection Examples
14791
14792 @itemize
14793 @item
14794 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
14795 draw @code{--:--:--:--} as a placeholder:
14796 @example
14797 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
14798 @end example
14799 @end itemize
14800
14801 @section remap
14802
14803 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
14804
14805 Destination pixel at position (X, Y) will be picked from source (x, y) position
14806 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
14807 value for pixel will be used for destination pixel.
14808
14809 Xmap and Ymap input video streams must be of same dimensions. Output video stream
14810 will have Xmap/Ymap video stream dimensions.
14811 Xmap and Ymap input video streams are 16bit depth, single channel.
14812
14813 @table @option
14814 @item format
14815 Specify pixel format of output from this filter. Can be @code{color} or @code{gray}.
14816 Default is @code{color}.
14817 @end table
14818
14819 @section removegrain
14820
14821 The removegrain filter is a spatial denoiser for progressive video.
14822
14823 @table @option
14824 @item m0
14825 Set mode for the first plane.
14826
14827 @item m1
14828 Set mode for the second plane.
14829
14830 @item m2
14831 Set mode for the third plane.
14832
14833 @item m3
14834 Set mode for the fourth plane.
14835 @end table
14836
14837 Range of mode is from 0 to 24. Description of each mode follows:
14838
14839 @table @var
14840 @item 0
14841 Leave input plane unchanged. Default.
14842
14843 @item 1
14844 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
14845
14846 @item 2
14847 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
14848
14849 @item 3
14850 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
14851
14852 @item 4
14853 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
14854 This is equivalent to a median filter.
14855
14856 @item 5
14857 Line-sensitive clipping giving the minimal change.
14858
14859 @item 6
14860 Line-sensitive clipping, intermediate.
14861
14862 @item 7
14863 Line-sensitive clipping, intermediate.
14864
14865 @item 8
14866 Line-sensitive clipping, intermediate.
14867
14868 @item 9
14869 Line-sensitive clipping on a line where the neighbours pixels are the closest.
14870
14871 @item 10
14872 Replaces the target pixel with the closest neighbour.
14873
14874 @item 11
14875 [1 2 1] horizontal and vertical kernel blur.
14876
14877 @item 12
14878 Same as mode 11.
14879
14880 @item 13
14881 Bob mode, interpolates top field from the line where the neighbours
14882 pixels are the closest.
14883
14884 @item 14
14885 Bob mode, interpolates bottom field from the line where the neighbours
14886 pixels are the closest.
14887
14888 @item 15
14889 Bob mode, interpolates top field. Same as 13 but with a more complicated
14890 interpolation formula.
14891
14892 @item 16
14893 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
14894 interpolation formula.
14895
14896 @item 17
14897 Clips the pixel with the minimum and maximum of respectively the maximum and
14898 minimum of each pair of opposite neighbour pixels.
14899
14900 @item 18
14901 Line-sensitive clipping using opposite neighbours whose greatest distance from
14902 the current pixel is minimal.
14903
14904 @item 19
14905 Replaces the pixel with the average of its 8 neighbours.
14906
14907 @item 20
14908 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
14909
14910 @item 21
14911 Clips pixels using the averages of opposite neighbour.
14912
14913 @item 22
14914 Same as mode 21 but simpler and faster.
14915
14916 @item 23
14917 Small edge and halo removal, but reputed useless.
14918
14919 @item 24
14920 Similar as 23.
14921 @end table
14922
14923 @section removelogo
14924
14925 Suppress a TV station logo, using an image file to determine which
14926 pixels comprise the logo. It works by filling in the pixels that
14927 comprise the logo with neighboring pixels.
14928
14929 The filter accepts the following options:
14930
14931 @table @option
14932 @item filename, f
14933 Set the filter bitmap file, which can be any image format supported by
14934 libavformat. The width and height of the image file must match those of the
14935 video stream being processed.
14936 @end table
14937
14938 Pixels in the provided bitmap image with a value of zero are not
14939 considered part of the logo, non-zero pixels are considered part of
14940 the logo. If you use white (255) for the logo and black (0) for the
14941 rest, you will be safe. For making the filter bitmap, it is
14942 recommended to take a screen capture of a black frame with the logo
14943 visible, and then using a threshold filter followed by the erode
14944 filter once or twice.
14945
14946 If needed, little splotches can be fixed manually. Remember that if
14947 logo pixels are not covered, the filter quality will be much
14948 reduced. Marking too many pixels as part of the logo does not hurt as
14949 much, but it will increase the amount of blurring needed to cover over
14950 the image and will destroy more information than necessary, and extra
14951 pixels will slow things down on a large logo.
14952
14953 @section repeatfields
14954
14955 This filter uses the repeat_field flag from the Video ES headers and hard repeats
14956 fields based on its value.
14957
14958 @section reverse
14959
14960 Reverse a video clip.
14961
14962 Warning: This filter requires memory to buffer the entire clip, so trimming
14963 is suggested.
14964
14965 @subsection Examples
14966
14967 @itemize
14968 @item
14969 Take the first 5 seconds of a clip, and reverse it.
14970 @example
14971 trim=end=5,reverse
14972 @end example
14973 @end itemize
14974
14975 @section rgbashift
14976 Shift R/G/B/A pixels horizontally and/or vertically.
14977
14978 The filter accepts the following options:
14979 @table @option
14980 @item rh
14981 Set amount to shift red horizontally.
14982 @item rv
14983 Set amount to shift red vertically.
14984 @item gh
14985 Set amount to shift green horizontally.
14986 @item gv
14987 Set amount to shift green vertically.
14988 @item bh
14989 Set amount to shift blue horizontally.
14990 @item bv
14991 Set amount to shift blue vertically.
14992 @item ah
14993 Set amount to shift alpha horizontally.
14994 @item av
14995 Set amount to shift alpha vertically.
14996 @item edge
14997 Set edge mode, can be @var{smear}, default, or @var{warp}.
14998 @end table
14999
15000 @section roberts
15001 Apply roberts cross operator to input video stream.
15002
15003 The filter accepts the following option:
15004
15005 @table @option
15006 @item planes
15007 Set which planes will be processed, unprocessed planes will be copied.
15008 By default value 0xf, all planes will be processed.
15009
15010 @item scale
15011 Set value which will be multiplied with filtered result.
15012
15013 @item delta
15014 Set value which will be added to filtered result.
15015 @end table
15016
15017 @section rotate
15018
15019 Rotate video by an arbitrary angle expressed in radians.
15020
15021 The filter accepts the following options:
15022
15023 A description of the optional parameters follows.
15024 @table @option
15025 @item angle, a
15026 Set an expression for the angle by which to rotate the input video
15027 clockwise, expressed as a number of radians. A negative value will
15028 result in a counter-clockwise rotation. By default it is set to "0".
15029
15030 This expression is evaluated for each frame.
15031
15032 @item out_w, ow
15033 Set the output width expression, default value is "iw".
15034 This expression is evaluated just once during configuration.
15035
15036 @item out_h, oh
15037 Set the output height expression, default value is "ih".
15038 This expression is evaluated just once during configuration.
15039
15040 @item bilinear
15041 Enable bilinear interpolation if set to 1, a value of 0 disables
15042 it. Default value is 1.
15043
15044 @item fillcolor, c
15045 Set the color used to fill the output area not covered by the rotated
15046 image. For the general syntax of this option, check the
15047 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15048 If the special value "none" is selected then no
15049 background is printed (useful for example if the background is never shown).
15050
15051 Default value is "black".
15052 @end table
15053
15054 The expressions for the angle and the output size can contain the
15055 following constants and functions:
15056
15057 @table @option
15058 @item n
15059 sequential number of the input frame, starting from 0. It is always NAN
15060 before the first frame is filtered.
15061
15062 @item t
15063 time in seconds of the input frame, it is set to 0 when the filter is
15064 configured. It is always NAN before the first frame is filtered.
15065
15066 @item hsub
15067 @item vsub
15068 horizontal and vertical chroma subsample values. For example for the
15069 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15070
15071 @item in_w, iw
15072 @item in_h, ih
15073 the input video width and height
15074
15075 @item out_w, ow
15076 @item out_h, oh
15077 the output width and height, that is the size of the padded area as
15078 specified by the @var{width} and @var{height} expressions
15079
15080 @item rotw(a)
15081 @item roth(a)
15082 the minimal width/height required for completely containing the input
15083 video rotated by @var{a} radians.
15084
15085 These are only available when computing the @option{out_w} and
15086 @option{out_h} expressions.
15087 @end table
15088
15089 @subsection Examples
15090
15091 @itemize
15092 @item
15093 Rotate the input by PI/6 radians clockwise:
15094 @example
15095 rotate=PI/6
15096 @end example
15097
15098 @item
15099 Rotate the input by PI/6 radians counter-clockwise:
15100 @example
15101 rotate=-PI/6
15102 @end example
15103
15104 @item
15105 Rotate the input by 45 degrees clockwise:
15106 @example
15107 rotate=45*PI/180
15108 @end example
15109
15110 @item
15111 Apply a constant rotation with period T, starting from an angle of PI/3:
15112 @example
15113 rotate=PI/3+2*PI*t/T
15114 @end example
15115
15116 @item
15117 Make the input video rotation oscillating with a period of T
15118 seconds and an amplitude of A radians:
15119 @example
15120 rotate=A*sin(2*PI/T*t)
15121 @end example
15122
15123 @item
15124 Rotate the video, output size is chosen so that the whole rotating
15125 input video is always completely contained in the output:
15126 @example
15127 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
15128 @end example
15129
15130 @item
15131 Rotate the video, reduce the output size so that no background is ever
15132 shown:
15133 @example
15134 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
15135 @end example
15136 @end itemize
15137
15138 @subsection Commands
15139
15140 The filter supports the following commands:
15141
15142 @table @option
15143 @item a, angle
15144 Set the angle expression.
15145 The command accepts the same syntax of the corresponding option.
15146
15147 If the specified expression is not valid, it is kept at its current
15148 value.
15149 @end table
15150
15151 @section sab
15152
15153 Apply Shape Adaptive Blur.
15154
15155 The filter accepts the following options:
15156
15157 @table @option
15158 @item luma_radius, lr
15159 Set luma blur filter strength, must be a value in range 0.1-4.0, default
15160 value is 1.0. A greater value will result in a more blurred image, and
15161 in slower processing.
15162
15163 @item luma_pre_filter_radius, lpfr
15164 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
15165 value is 1.0.
15166
15167 @item luma_strength, ls
15168 Set luma maximum difference between pixels to still be considered, must
15169 be a value in the 0.1-100.0 range, default value is 1.0.
15170
15171 @item chroma_radius, cr
15172 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
15173 greater value will result in a more blurred image, and in slower
15174 processing.
15175
15176 @item chroma_pre_filter_radius, cpfr
15177 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
15178
15179 @item chroma_strength, cs
15180 Set chroma maximum difference between pixels to still be considered,
15181 must be a value in the -0.9-100.0 range.
15182 @end table
15183
15184 Each chroma option value, if not explicitly specified, is set to the
15185 corresponding luma option value.
15186
15187 @anchor{scale}
15188 @section scale
15189
15190 Scale (resize) the input video, using the libswscale library.
15191
15192 The scale filter forces the output display aspect ratio to be the same
15193 of the input, by changing the output sample aspect ratio.
15194
15195 If the input image format is different from the format requested by
15196 the next filter, the scale filter will convert the input to the
15197 requested format.
15198
15199 @subsection Options
15200 The filter accepts the following options, or any of the options
15201 supported by the libswscale scaler.
15202
15203 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
15204 the complete list of scaler options.
15205
15206 @table @option
15207 @item width, w
15208 @item height, h
15209 Set the output video dimension expression. Default value is the input
15210 dimension.
15211
15212 If the @var{width} or @var{w} value is 0, the input width is used for
15213 the output. If the @var{height} or @var{h} value is 0, the input height
15214 is used for the output.
15215
15216 If one and only one of the values is -n with n >= 1, the scale filter
15217 will use a value that maintains the aspect ratio of the input image,
15218 calculated from the other specified dimension. After that it will,
15219 however, make sure that the calculated dimension is divisible by n and
15220 adjust the value if necessary.
15221
15222 If both values are -n with n >= 1, the behavior will be identical to
15223 both values being set to 0 as previously detailed.
15224
15225 See below for the list of accepted constants for use in the dimension
15226 expression.
15227
15228 @item eval
15229 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
15230
15231 @table @samp
15232 @item init
15233 Only evaluate expressions once during the filter initialization or when a command is processed.
15234
15235 @item frame
15236 Evaluate expressions for each incoming frame.
15237
15238 @end table
15239
15240 Default value is @samp{init}.
15241
15242
15243 @item interl
15244 Set the interlacing mode. It accepts the following values:
15245
15246 @table @samp
15247 @item 1
15248 Force interlaced aware scaling.
15249
15250 @item 0
15251 Do not apply interlaced scaling.
15252
15253 @item -1
15254 Select interlaced aware scaling depending on whether the source frames
15255 are flagged as interlaced or not.
15256 @end table
15257
15258 Default value is @samp{0}.
15259
15260 @item flags
15261 Set libswscale scaling flags. See
15262 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15263 complete list of values. If not explicitly specified the filter applies
15264 the default flags.
15265
15266
15267 @item param0, param1
15268 Set libswscale input parameters for scaling algorithms that need them. See
15269 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
15270 complete documentation. If not explicitly specified the filter applies
15271 empty parameters.
15272
15273
15274
15275 @item size, s
15276 Set the video size. For the syntax of this option, check the
15277 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15278
15279 @item in_color_matrix
15280 @item out_color_matrix
15281 Set in/output YCbCr color space type.
15282
15283 This allows the autodetected value to be overridden as well as allows forcing
15284 a specific value used for the output and encoder.
15285
15286 If not specified, the color space type depends on the pixel format.
15287
15288 Possible values:
15289
15290 @table @samp
15291 @item auto
15292 Choose automatically.
15293
15294 @item bt709
15295 Format conforming to International Telecommunication Union (ITU)
15296 Recommendation BT.709.
15297
15298 @item fcc
15299 Set color space conforming to the United States Federal Communications
15300 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
15301
15302 @item bt601
15303 @item bt470
15304 @item smpte170m
15305 Set color space conforming to:
15306
15307 @itemize
15308 @item
15309 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
15310
15311 @item
15312 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
15313
15314 @item
15315 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
15316
15317 @end itemize
15318
15319 @item smpte240m
15320 Set color space conforming to SMPTE ST 240:1999.
15321
15322 @item bt2020
15323 Set color space conforming to ITU-R BT.2020 non-constant luminance system.
15324 @end table
15325
15326 @item in_range
15327 @item out_range
15328 Set in/output YCbCr sample range.
15329
15330 This allows the autodetected value to be overridden as well as allows forcing
15331 a specific value used for the output and encoder. If not specified, the
15332 range depends on the pixel format. Possible values:
15333
15334 @table @samp
15335 @item auto/unknown
15336 Choose automatically.
15337
15338 @item jpeg/full/pc
15339 Set full range (0-255 in case of 8-bit luma).
15340
15341 @item mpeg/limited/tv
15342 Set "MPEG" range (16-235 in case of 8-bit luma).
15343 @end table
15344
15345 @item force_original_aspect_ratio
15346 Enable decreasing or increasing output video width or height if necessary to
15347 keep the original aspect ratio. Possible values:
15348
15349 @table @samp
15350 @item disable
15351 Scale the video as specified and disable this feature.
15352
15353 @item decrease
15354 The output video dimensions will automatically be decreased if needed.
15355
15356 @item increase
15357 The output video dimensions will automatically be increased if needed.
15358
15359 @end table
15360
15361 One useful instance of this option is that when you know a specific device's
15362 maximum allowed resolution, you can use this to limit the output video to
15363 that, while retaining the aspect ratio. For example, device A allows
15364 1280x720 playback, and your video is 1920x800. Using this option (set it to
15365 decrease) and specifying 1280x720 to the command line makes the output
15366 1280x533.
15367
15368 Please note that this is a different thing than specifying -1 for @option{w}
15369 or @option{h}, you still need to specify the output resolution for this option
15370 to work.
15371
15372 @end table
15373
15374 The values of the @option{w} and @option{h} options are expressions
15375 containing the following constants:
15376
15377 @table @var
15378 @item in_w
15379 @item in_h
15380 The input width and height
15381
15382 @item iw
15383 @item ih
15384 These are the same as @var{in_w} and @var{in_h}.
15385
15386 @item out_w
15387 @item out_h
15388 The output (scaled) width and height
15389
15390 @item ow
15391 @item oh
15392 These are the same as @var{out_w} and @var{out_h}
15393
15394 @item a
15395 The same as @var{iw} / @var{ih}
15396
15397 @item sar
15398 input sample aspect ratio
15399
15400 @item dar
15401 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15402
15403 @item hsub
15404 @item vsub
15405 horizontal and vertical input chroma subsample values. For example for the
15406 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15407
15408 @item ohsub
15409 @item ovsub
15410 horizontal and vertical output chroma subsample values. For example for the
15411 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15412 @end table
15413
15414 @subsection Examples
15415
15416 @itemize
15417 @item
15418 Scale the input video to a size of 200x100
15419 @example
15420 scale=w=200:h=100
15421 @end example
15422
15423 This is equivalent to:
15424 @example
15425 scale=200:100
15426 @end example
15427
15428 or:
15429 @example
15430 scale=200x100
15431 @end example
15432
15433 @item
15434 Specify a size abbreviation for the output size:
15435 @example
15436 scale=qcif
15437 @end example
15438
15439 which can also be written as:
15440 @example
15441 scale=size=qcif
15442 @end example
15443
15444 @item
15445 Scale the input to 2x:
15446 @example
15447 scale=w=2*iw:h=2*ih
15448 @end example
15449
15450 @item
15451 The above is the same as:
15452 @example
15453 scale=2*in_w:2*in_h
15454 @end example
15455
15456 @item
15457 Scale the input to 2x with forced interlaced scaling:
15458 @example
15459 scale=2*iw:2*ih:interl=1
15460 @end example
15461
15462 @item
15463 Scale the input to half size:
15464 @example
15465 scale=w=iw/2:h=ih/2
15466 @end example
15467
15468 @item
15469 Increase the width, and set the height to the same size:
15470 @example
15471 scale=3/2*iw:ow
15472 @end example
15473
15474 @item
15475 Seek Greek harmony:
15476 @example
15477 scale=iw:1/PHI*iw
15478 scale=ih*PHI:ih
15479 @end example
15480
15481 @item
15482 Increase the height, and set the width to 3/2 of the height:
15483 @example
15484 scale=w=3/2*oh:h=3/5*ih
15485 @end example
15486
15487 @item
15488 Increase the size, making the size a multiple of the chroma
15489 subsample values:
15490 @example
15491 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
15492 @end example
15493
15494 @item
15495 Increase the width to a maximum of 500 pixels,
15496 keeping the same aspect ratio as the input:
15497 @example
15498 scale=w='min(500\, iw*3/2):h=-1'
15499 @end example
15500
15501 @item
15502 Make pixels square by combining scale and setsar:
15503 @example
15504 scale='trunc(ih*dar):ih',setsar=1/1
15505 @end example
15506
15507 @item
15508 Make pixels square by combining scale and setsar,
15509 making sure the resulting resolution is even (required by some codecs):
15510 @example
15511 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
15512 @end example
15513 @end itemize
15514
15515 @subsection Commands
15516
15517 This filter supports the following commands:
15518 @table @option
15519 @item width, w
15520 @item height, h
15521 Set the output video dimension expression.
15522 The command accepts the same syntax of the corresponding option.
15523
15524 If the specified expression is not valid, it is kept at its current
15525 value.
15526 @end table
15527
15528 @section scale_npp
15529
15530 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
15531 format conversion on CUDA video frames. Setting the output width and height
15532 works in the same way as for the @var{scale} filter.
15533
15534 The following additional options are accepted:
15535 @table @option
15536 @item format
15537 The pixel format of the output CUDA frames. If set to the string "same" (the
15538 default), the input format will be kept. Note that automatic format negotiation
15539 and conversion is not yet supported for hardware frames
15540
15541 @item interp_algo
15542 The interpolation algorithm used for resizing. One of the following:
15543 @table @option
15544 @item nn
15545 Nearest neighbour.
15546
15547 @item linear
15548 @item cubic
15549 @item cubic2p_bspline
15550 2-parameter cubic (B=1, C=0)
15551
15552 @item cubic2p_catmullrom
15553 2-parameter cubic (B=0, C=1/2)
15554
15555 @item cubic2p_b05c03
15556 2-parameter cubic (B=1/2, C=3/10)
15557
15558 @item super
15559 Supersampling
15560
15561 @item lanczos
15562 @end table
15563
15564 @end table
15565
15566 @section scale2ref
15567
15568 Scale (resize) the input video, based on a reference video.
15569
15570 See the scale filter for available options, scale2ref supports the same but
15571 uses the reference video instead of the main input as basis. scale2ref also
15572 supports the following additional constants for the @option{w} and
15573 @option{h} options:
15574
15575 @table @var
15576 @item main_w
15577 @item main_h
15578 The main input video's width and height
15579
15580 @item main_a
15581 The same as @var{main_w} / @var{main_h}
15582
15583 @item main_sar
15584 The main input video's sample aspect ratio
15585
15586 @item main_dar, mdar
15587 The main input video's display aspect ratio. Calculated from
15588 @code{(main_w / main_h) * main_sar}.
15589
15590 @item main_hsub
15591 @item main_vsub
15592 The main input video's horizontal and vertical chroma subsample values.
15593 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
15594 is 1.
15595 @end table
15596
15597 @subsection Examples
15598
15599 @itemize
15600 @item
15601 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
15602 @example
15603 'scale2ref[b][a];[a][b]overlay'
15604 @end example
15605
15606 @item
15607 Scale a logo to 1/10th the height of a video, while preserving its display aspect ratio.
15608 @example
15609 [logo-in][video-in]scale2ref=w=oh*mdar:h=ih/10[logo-out][video-out]
15610 @end example
15611 @end itemize
15612
15613 @anchor{selectivecolor}
15614 @section selectivecolor
15615
15616 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
15617 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
15618 by the "purity" of the color (that is, how saturated it already is).
15619
15620 This filter is similar to the Adobe Photoshop Selective Color tool.
15621
15622 The filter accepts the following options:
15623
15624 @table @option
15625 @item correction_method
15626 Select color correction method.
15627
15628 Available values are:
15629 @table @samp
15630 @item absolute
15631 Specified adjustments are applied "as-is" (added/subtracted to original pixel
15632 component value).
15633 @item relative
15634 Specified adjustments are relative to the original component value.
15635 @end table
15636 Default is @code{absolute}.
15637 @item reds
15638 Adjustments for red pixels (pixels where the red component is the maximum)
15639 @item yellows
15640 Adjustments for yellow pixels (pixels where the blue component is the minimum)
15641 @item greens
15642 Adjustments for green pixels (pixels where the green component is the maximum)
15643 @item cyans
15644 Adjustments for cyan pixels (pixels where the red component is the minimum)
15645 @item blues
15646 Adjustments for blue pixels (pixels where the blue component is the maximum)
15647 @item magentas
15648 Adjustments for magenta pixels (pixels where the green component is the minimum)
15649 @item whites
15650 Adjustments for white pixels (pixels where all components are greater than 128)
15651 @item neutrals
15652 Adjustments for all pixels except pure black and pure white
15653 @item blacks
15654 Adjustments for black pixels (pixels where all components are lesser than 128)
15655 @item psfile
15656 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
15657 @end table
15658
15659 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
15660 4 space separated floating point adjustment values in the [-1,1] range,
15661 respectively to adjust the amount of cyan, magenta, yellow and black for the
15662 pixels of its range.
15663
15664 @subsection Examples
15665
15666 @itemize
15667 @item
15668 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
15669 increase magenta by 27% in blue areas:
15670 @example
15671 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
15672 @end example
15673
15674 @item
15675 Use a Photoshop selective color preset:
15676 @example
15677 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
15678 @end example
15679 @end itemize
15680
15681 @anchor{separatefields}
15682 @section separatefields
15683
15684 The @code{separatefields} takes a frame-based video input and splits
15685 each frame into its components fields, producing a new half height clip
15686 with twice the frame rate and twice the frame count.
15687
15688 This filter use field-dominance information in frame to decide which
15689 of each pair of fields to place first in the output.
15690 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
15691
15692 @section setdar, setsar
15693
15694 The @code{setdar} filter sets the Display Aspect Ratio for the filter
15695 output video.
15696
15697 This is done by changing the specified Sample (aka Pixel) Aspect
15698 Ratio, according to the following equation:
15699 @example
15700 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
15701 @end example
15702
15703 Keep in mind that the @code{setdar} filter does not modify the pixel
15704 dimensions of the video frame. Also, the display aspect ratio set by
15705 this filter may be changed by later filters in the filterchain,
15706 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
15707 applied.
15708
15709 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
15710 the filter output video.
15711
15712 Note that as a consequence of the application of this filter, the
15713 output display aspect ratio will change according to the equation
15714 above.
15715
15716 Keep in mind that the sample aspect ratio set by the @code{setsar}
15717 filter may be changed by later filters in the filterchain, e.g. if
15718 another "setsar" or a "setdar" filter is applied.
15719
15720 It accepts the following parameters:
15721
15722 @table @option
15723 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
15724 Set the aspect ratio used by the filter.
15725
15726 The parameter can be a floating point number string, an expression, or
15727 a string of the form @var{num}:@var{den}, where @var{num} and
15728 @var{den} are the numerator and denominator of the aspect ratio. If
15729 the parameter is not specified, it is assumed the value "0".
15730 In case the form "@var{num}:@var{den}" is used, the @code{:} character
15731 should be escaped.
15732
15733 @item max
15734 Set the maximum integer value to use for expressing numerator and
15735 denominator when reducing the expressed aspect ratio to a rational.
15736 Default value is @code{100}.
15737
15738 @end table
15739
15740 The parameter @var{sar} is an expression containing
15741 the following constants:
15742
15743 @table @option
15744 @item E, PI, PHI
15745 These are approximated values for the mathematical constants e
15746 (Euler's number), pi (Greek pi), and phi (the golden ratio).
15747
15748 @item w, h
15749 The input width and height.
15750
15751 @item a
15752 These are the same as @var{w} / @var{h}.
15753
15754 @item sar
15755 The input sample aspect ratio.
15756
15757 @item dar
15758 The input display aspect ratio. It is the same as
15759 (@var{w} / @var{h}) * @var{sar}.
15760
15761 @item hsub, vsub
15762 Horizontal and vertical chroma subsample values. For example, for the
15763 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15764 @end table
15765
15766 @subsection Examples
15767
15768 @itemize
15769
15770 @item
15771 To change the display aspect ratio to 16:9, specify one of the following:
15772 @example
15773 setdar=dar=1.77777
15774 setdar=dar=16/9
15775 @end example
15776
15777 @item
15778 To change the sample aspect ratio to 10:11, specify:
15779 @example
15780 setsar=sar=10/11
15781 @end example
15782
15783 @item
15784 To set a display aspect ratio of 16:9, and specify a maximum integer value of
15785 1000 in the aspect ratio reduction, use the command:
15786 @example
15787 setdar=ratio=16/9:max=1000
15788 @end example
15789
15790 @end itemize
15791
15792 @anchor{setfield}
15793 @section setfield
15794
15795 Force field for the output video frame.
15796
15797 The @code{setfield} filter marks the interlace type field for the
15798 output frames. It does not change the input frame, but only sets the
15799 corresponding property, which affects how the frame is treated by
15800 following filters (e.g. @code{fieldorder} or @code{yadif}).
15801
15802 The filter accepts the following options:
15803
15804 @table @option
15805
15806 @item mode
15807 Available values are:
15808
15809 @table @samp
15810 @item auto
15811 Keep the same field property.
15812
15813 @item bff
15814 Mark the frame as bottom-field-first.
15815
15816 @item tff
15817 Mark the frame as top-field-first.
15818
15819 @item prog
15820 Mark the frame as progressive.
15821 @end table
15822 @end table
15823
15824 @anchor{setparams}
15825 @section setparams
15826
15827 Force frame parameter for the output video frame.
15828
15829 The @code{setparams} filter marks interlace and color range for the
15830 output frames. It does not change the input frame, but only sets the
15831 corresponding property, which affects how the frame is treated by
15832 filters/encoders.
15833
15834 @table @option
15835 @item field_mode
15836 Available values are:
15837
15838 @table @samp
15839 @item auto
15840 Keep the same field property (default).
15841
15842 @item bff
15843 Mark the frame as bottom-field-first.
15844
15845 @item tff
15846 Mark the frame as top-field-first.
15847
15848 @item prog
15849 Mark the frame as progressive.
15850 @end table
15851
15852 @item range
15853 Available values are:
15854
15855 @table @samp
15856 @item auto
15857 Keep the same color range property (default).
15858
15859 @item unspecified, unknown
15860 Mark the frame as unspecified color range.
15861
15862 @item limited, tv, mpeg
15863 Mark the frame as limited range.
15864
15865 @item full, pc, jpeg
15866 Mark the frame as full range.
15867 @end table
15868
15869 @item color_primaries
15870 Set the color primaries.
15871 Available values are:
15872
15873 @table @samp
15874 @item auto
15875 Keep the same color primaries property (default).
15876
15877 @item bt709
15878 @item unknown
15879 @item bt470m
15880 @item bt470bg
15881 @item smpte170m
15882 @item smpte240m
15883 @item film
15884 @item bt2020
15885 @item smpte428
15886 @item smpte431
15887 @item smpte432
15888 @item jedec-p22
15889 @end table
15890
15891 @item color_trc
15892 Set the color transfer.
15893 Available values are:
15894
15895 @table @samp
15896 @item auto
15897 Keep the same color trc property (default).
15898
15899 @item bt709
15900 @item unknown
15901 @item bt470m
15902 @item bt470bg
15903 @item smpte170m
15904 @item smpte240m
15905 @item linear
15906 @item log100
15907 @item log316
15908 @item iec61966-2-4
15909 @item bt1361e
15910 @item iec61966-2-1
15911 @item bt2020-10
15912 @item bt2020-12
15913 @item smpte2084
15914 @item smpte428
15915 @item arib-std-b67
15916 @end table
15917
15918 @item colorspace
15919 Set the colorspace.
15920 Available values are:
15921
15922 @table @samp
15923 @item auto
15924 Keep the same colorspace property (default).
15925
15926 @item gbr
15927 @item bt709
15928 @item unknown
15929 @item fcc
15930 @item bt470bg
15931 @item smpte170m
15932 @item smpte240m
15933 @item ycgco
15934 @item bt2020nc
15935 @item bt2020c
15936 @item smpte2085
15937 @item chroma-derived-nc
15938 @item chroma-derived-c
15939 @item ictcp
15940 @end table
15941 @end table
15942
15943 @section showinfo
15944
15945 Show a line containing various information for each input video frame.
15946 The input video is not modified.
15947
15948 This filter supports the following options:
15949
15950 @table @option
15951 @item checksum
15952 Calculate checksums of each plane. By default enabled.
15953 @end table
15954
15955 The shown line contains a sequence of key/value pairs of the form
15956 @var{key}:@var{value}.
15957
15958 The following values are shown in the output:
15959
15960 @table @option
15961 @item n
15962 The (sequential) number of the input frame, starting from 0.
15963
15964 @item pts
15965 The Presentation TimeStamp of the input frame, expressed as a number of
15966 time base units. The time base unit depends on the filter input pad.
15967
15968 @item pts_time
15969 The Presentation TimeStamp of the input frame, expressed as a number of
15970 seconds.
15971
15972 @item pos
15973 The position of the frame in the input stream, or -1 if this information is
15974 unavailable and/or meaningless (for example in case of synthetic video).
15975
15976 @item fmt
15977 The pixel format name.
15978
15979 @item sar
15980 The sample aspect ratio of the input frame, expressed in the form
15981 @var{num}/@var{den}.
15982
15983 @item s
15984 The size of the input frame. For the syntax of this option, check the
15985 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15986
15987 @item i
15988 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
15989 for bottom field first).
15990
15991 @item iskey
15992 This is 1 if the frame is a key frame, 0 otherwise.
15993
15994 @item type
15995 The picture type of the input frame ("I" for an I-frame, "P" for a
15996 P-frame, "B" for a B-frame, or "?" for an unknown type).
15997 Also refer to the documentation of the @code{AVPictureType} enum and of
15998 the @code{av_get_picture_type_char} function defined in
15999 @file{libavutil/avutil.h}.
16000
16001 @item checksum
16002 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
16003
16004 @item plane_checksum
16005 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
16006 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
16007 @end table
16008
16009 @section showpalette
16010
16011 Displays the 256 colors palette of each frame. This filter is only relevant for
16012 @var{pal8} pixel format frames.
16013
16014 It accepts the following option:
16015
16016 @table @option
16017 @item s
16018 Set the size of the box used to represent one palette color entry. Default is
16019 @code{30} (for a @code{30x30} pixel box).
16020 @end table
16021
16022 @section shuffleframes
16023
16024 Reorder and/or duplicate and/or drop video frames.
16025
16026 It accepts the following parameters:
16027
16028 @table @option
16029 @item mapping
16030 Set the destination indexes of input frames.
16031 This is space or '|' separated list of indexes that maps input frames to output
16032 frames. Number of indexes also sets maximal value that each index may have.
16033 '-1' index have special meaning and that is to drop frame.
16034 @end table
16035
16036 The first frame has the index 0. The default is to keep the input unchanged.
16037
16038 @subsection Examples
16039
16040 @itemize
16041 @item
16042 Swap second and third frame of every three frames of the input:
16043 @example
16044 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
16045 @end example
16046
16047 @item
16048 Swap 10th and 1st frame of every ten frames of the input:
16049 @example
16050 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
16051 @end example
16052 @end itemize
16053
16054 @section shuffleplanes
16055
16056 Reorder and/or duplicate video planes.
16057
16058 It accepts the following parameters:
16059
16060 @table @option
16061
16062 @item map0
16063 The index of the input plane to be used as the first output plane.
16064
16065 @item map1
16066 The index of the input plane to be used as the second output plane.
16067
16068 @item map2
16069 The index of the input plane to be used as the third output plane.
16070
16071 @item map3
16072 The index of the input plane to be used as the fourth output plane.
16073
16074 @end table
16075
16076 The first plane has the index 0. The default is to keep the input unchanged.
16077
16078 @subsection Examples
16079
16080 @itemize
16081 @item
16082 Swap the second and third planes of the input:
16083 @example
16084 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
16085 @end example
16086 @end itemize
16087
16088 @anchor{signalstats}
16089 @section signalstats
16090 Evaluate various visual metrics that assist in determining issues associated
16091 with the digitization of analog video media.
16092
16093 By default the filter will log these metadata values:
16094
16095 @table @option
16096 @item YMIN
16097 Display the minimal Y value contained within the input frame. Expressed in
16098 range of [0-255].
16099
16100 @item YLOW
16101 Display the Y value at the 10% percentile within the input frame. Expressed in
16102 range of [0-255].
16103
16104 @item YAVG
16105 Display the average Y value within the input frame. Expressed in range of
16106 [0-255].
16107
16108 @item YHIGH
16109 Display the Y value at the 90% percentile within the input frame. Expressed in
16110 range of [0-255].
16111
16112 @item YMAX
16113 Display the maximum Y value contained within the input frame. Expressed in
16114 range of [0-255].
16115
16116 @item UMIN
16117 Display the minimal U value contained within the input frame. Expressed in
16118 range of [0-255].
16119
16120 @item ULOW
16121 Display the U value at the 10% percentile within the input frame. Expressed in
16122 range of [0-255].
16123
16124 @item UAVG
16125 Display the average U value within the input frame. Expressed in range of
16126 [0-255].
16127
16128 @item UHIGH
16129 Display the U value at the 90% percentile within the input frame. Expressed in
16130 range of [0-255].
16131
16132 @item UMAX
16133 Display the maximum U value contained within the input frame. Expressed in
16134 range of [0-255].
16135
16136 @item VMIN
16137 Display the minimal V value contained within the input frame. Expressed in
16138 range of [0-255].
16139
16140 @item VLOW
16141 Display the V value at the 10% percentile within the input frame. Expressed in
16142 range of [0-255].
16143
16144 @item VAVG
16145 Display the average V value within the input frame. Expressed in range of
16146 [0-255].
16147
16148 @item VHIGH
16149 Display the V value at the 90% percentile within the input frame. Expressed in
16150 range of [0-255].
16151
16152 @item VMAX
16153 Display the maximum V value contained within the input frame. Expressed in
16154 range of [0-255].
16155
16156 @item SATMIN
16157 Display the minimal saturation value contained within the input frame.
16158 Expressed in range of [0-~181.02].
16159
16160 @item SATLOW
16161 Display the saturation value at the 10% percentile within the input frame.
16162 Expressed in range of [0-~181.02].
16163
16164 @item SATAVG
16165 Display the average saturation value within the input frame. Expressed in range
16166 of [0-~181.02].
16167
16168 @item SATHIGH
16169 Display the saturation value at the 90% percentile within the input frame.
16170 Expressed in range of [0-~181.02].
16171
16172 @item SATMAX
16173 Display the maximum saturation value contained within the input frame.
16174 Expressed in range of [0-~181.02].
16175
16176 @item HUEMED
16177 Display the median value for hue within the input frame. Expressed in range of
16178 [0-360].
16179
16180 @item HUEAVG
16181 Display the average value for hue within the input frame. Expressed in range of
16182 [0-360].
16183
16184 @item YDIF
16185 Display the average of sample value difference between all values of the Y
16186 plane in the current frame and corresponding values of the previous input frame.
16187 Expressed in range of [0-255].
16188
16189 @item UDIF
16190 Display the average of sample value difference between all values of the U
16191 plane in the current frame and corresponding values of the previous input frame.
16192 Expressed in range of [0-255].
16193
16194 @item VDIF
16195 Display the average of sample value difference between all values of the V
16196 plane in the current frame and corresponding values of the previous input frame.
16197 Expressed in range of [0-255].
16198
16199 @item YBITDEPTH
16200 Display bit depth of Y plane in current frame.
16201 Expressed in range of [0-16].
16202
16203 @item UBITDEPTH
16204 Display bit depth of U plane in current frame.
16205 Expressed in range of [0-16].
16206
16207 @item VBITDEPTH
16208 Display bit depth of V plane in current frame.
16209 Expressed in range of [0-16].
16210 @end table
16211
16212 The filter accepts the following options:
16213
16214 @table @option
16215 @item stat
16216 @item out
16217
16218 @option{stat} specify an additional form of image analysis.
16219 @option{out} output video with the specified type of pixel highlighted.
16220
16221 Both options accept the following values:
16222
16223 @table @samp
16224 @item tout
16225 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
16226 unlike the neighboring pixels of the same field. Examples of temporal outliers
16227 include the results of video dropouts, head clogs, or tape tracking issues.
16228
16229 @item vrep
16230 Identify @var{vertical line repetition}. Vertical line repetition includes
16231 similar rows of pixels within a frame. In born-digital video vertical line
16232 repetition is common, but this pattern is uncommon in video digitized from an
16233 analog source. When it occurs in video that results from the digitization of an
16234 analog source it can indicate concealment from a dropout compensator.
16235
16236 @item brng
16237 Identify pixels that fall outside of legal broadcast range.
16238 @end table
16239
16240 @item color, c
16241 Set the highlight color for the @option{out} option. The default color is
16242 yellow.
16243 @end table
16244
16245 @subsection Examples
16246
16247 @itemize
16248 @item
16249 Output data of various video metrics:
16250 @example
16251 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
16252 @end example
16253
16254 @item
16255 Output specific data about the minimum and maximum values of the Y plane per frame:
16256 @example
16257 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
16258 @end example
16259
16260 @item
16261 Playback video while highlighting pixels that are outside of broadcast range in red.
16262 @example
16263 ffplay example.mov -vf signalstats="out=brng:color=red"
16264 @end example
16265
16266 @item
16267 Playback video with signalstats metadata drawn over the frame.
16268 @example
16269 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
16270 @end example
16271
16272 The contents of signalstat_drawtext.txt used in the command are:
16273 @example
16274 time %@{pts:hms@}
16275 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
16276 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
16277 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
16278 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
16279
16280 @end example
16281 @end itemize
16282
16283 @anchor{signature}
16284 @section signature
16285
16286 Calculates the MPEG-7 Video Signature. The filter can handle more than one
16287 input. In this case the matching between the inputs can be calculated additionally.
16288 The filter always passes through the first input. The signature of each stream can
16289 be written into a file.
16290
16291 It accepts the following options:
16292
16293 @table @option
16294 @item detectmode
16295 Enable or disable the matching process.
16296
16297 Available values are:
16298
16299 @table @samp
16300 @item off
16301 Disable the calculation of a matching (default).
16302 @item full
16303 Calculate the matching for the whole video and output whether the whole video
16304 matches or only parts.
16305 @item fast
16306 Calculate only until a matching is found or the video ends. Should be faster in
16307 some cases.
16308 @end table
16309
16310 @item nb_inputs
16311 Set the number of inputs. The option value must be a non negative integer.
16312 Default value is 1.
16313
16314 @item filename
16315 Set the path to which the output is written. If there is more than one input,
16316 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
16317 integer), that will be replaced with the input number. If no filename is
16318 specified, no output will be written. This is the default.
16319
16320 @item format
16321 Choose the output format.
16322
16323 Available values are:
16324
16325 @table @samp
16326 @item binary
16327 Use the specified binary representation (default).
16328 @item xml
16329 Use the specified xml representation.
16330 @end table
16331
16332 @item th_d
16333 Set threshold to detect one word as similar. The option value must be an integer
16334 greater than zero. The default value is 9000.
16335
16336 @item th_dc
16337 Set threshold to detect all words as similar. The option value must be an integer
16338 greater than zero. The default value is 60000.
16339
16340 @item th_xh
16341 Set threshold to detect frames as similar. The option value must be an integer
16342 greater than zero. The default value is 116.
16343
16344 @item th_di
16345 Set the minimum length of a sequence in frames to recognize it as matching
16346 sequence. The option value must be a non negative integer value.
16347 The default value is 0.
16348
16349 @item th_it
16350 Set the minimum relation, that matching frames to all frames must have.
16351 The option value must be a double value between 0 and 1. The default value is 0.5.
16352 @end table
16353
16354 @subsection Examples
16355
16356 @itemize
16357 @item
16358 To calculate the signature of an input video and store it in signature.bin:
16359 @example
16360 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
16361 @end example
16362
16363 @item
16364 To detect whether two videos match and store the signatures in XML format in
16365 signature0.xml and signature1.xml:
16366 @example
16367 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 -
16368 @end example
16369
16370 @end itemize
16371
16372 @anchor{smartblur}
16373 @section smartblur
16374
16375 Blur the input video without impacting the outlines.
16376
16377 It accepts the following options:
16378
16379 @table @option
16380 @item luma_radius, lr
16381 Set the luma radius. The option value must be a float number in
16382 the range [0.1,5.0] that specifies the variance of the gaussian filter
16383 used to blur the image (slower if larger). Default value is 1.0.
16384
16385 @item luma_strength, ls
16386 Set the luma strength. The option value must be a float number
16387 in the range [-1.0,1.0] that configures the blurring. A value included
16388 in [0.0,1.0] will blur the image whereas a value included in
16389 [-1.0,0.0] will sharpen the image. Default value is 1.0.
16390
16391 @item luma_threshold, lt
16392 Set the luma threshold used as a coefficient to determine
16393 whether a pixel should be blurred or not. The option value must be an
16394 integer in the range [-30,30]. A value of 0 will filter all the image,
16395 a value included in [0,30] will filter flat areas and a value included
16396 in [-30,0] will filter edges. Default value is 0.
16397
16398 @item chroma_radius, cr
16399 Set the chroma radius. The option value must be a float number in
16400 the range [0.1,5.0] that specifies the variance of the gaussian filter
16401 used to blur the image (slower if larger). Default value is @option{luma_radius}.
16402
16403 @item chroma_strength, cs
16404 Set the chroma strength. The option value must be a float number
16405 in the range [-1.0,1.0] that configures the blurring. A value included
16406 in [0.0,1.0] will blur the image whereas a value included in
16407 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
16408
16409 @item chroma_threshold, ct
16410 Set the chroma threshold used as a coefficient to determine
16411 whether a pixel should be blurred or not. The option value must be an
16412 integer in the range [-30,30]. A value of 0 will filter all the image,
16413 a value included in [0,30] will filter flat areas and a value included
16414 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
16415 @end table
16416
16417 If a chroma option is not explicitly set, the corresponding luma value
16418 is set.
16419
16420 @section ssim
16421
16422 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
16423
16424 This filter takes in input two input videos, the first input is
16425 considered the "main" source and is passed unchanged to the
16426 output. The second input is used as a "reference" video for computing
16427 the SSIM.
16428
16429 Both video inputs must have the same resolution and pixel format for
16430 this filter to work correctly. Also it assumes that both inputs
16431 have the same number of frames, which are compared one by one.
16432
16433 The filter stores the calculated SSIM of each frame.
16434
16435 The description of the accepted parameters follows.
16436
16437 @table @option
16438 @item stats_file, f
16439 If specified the filter will use the named file to save the SSIM of
16440 each individual frame. When filename equals "-" the data is sent to
16441 standard output.
16442 @end table
16443
16444 The file printed if @var{stats_file} is selected, contains a sequence of
16445 key/value pairs of the form @var{key}:@var{value} for each compared
16446 couple of frames.
16447
16448 A description of each shown parameter follows:
16449
16450 @table @option
16451 @item n
16452 sequential number of the input frame, starting from 1
16453
16454 @item Y, U, V, R, G, B
16455 SSIM of the compared frames for the component specified by the suffix.
16456
16457 @item All
16458 SSIM of the compared frames for the whole frame.
16459
16460 @item dB
16461 Same as above but in dB representation.
16462 @end table
16463
16464 This filter also supports the @ref{framesync} options.
16465
16466 For example:
16467 @example
16468 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
16469 [main][ref] ssim="stats_file=stats.log" [out]
16470 @end example
16471
16472 On this example the input file being processed is compared with the
16473 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
16474 is stored in @file{stats.log}.
16475
16476 Another example with both psnr and ssim at same time:
16477 @example
16478 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
16479 @end example
16480
16481 @section stereo3d
16482
16483 Convert between different stereoscopic image formats.
16484
16485 The filters accept the following options:
16486
16487 @table @option
16488 @item in
16489 Set stereoscopic image format of input.
16490
16491 Available values for input image formats are:
16492 @table @samp
16493 @item sbsl
16494 side by side parallel (left eye left, right eye right)
16495
16496 @item sbsr
16497 side by side crosseye (right eye left, left eye right)
16498
16499 @item sbs2l
16500 side by side parallel with half width resolution
16501 (left eye left, right eye right)
16502
16503 @item sbs2r
16504 side by side crosseye with half width resolution
16505 (right eye left, left eye right)
16506
16507 @item abl
16508 above-below (left eye above, right eye below)
16509
16510 @item abr
16511 above-below (right eye above, left eye below)
16512
16513 @item ab2l
16514 above-below with half height resolution
16515 (left eye above, right eye below)
16516
16517 @item ab2r
16518 above-below with half height resolution
16519 (right eye above, left eye below)
16520
16521 @item al
16522 alternating frames (left eye first, right eye second)
16523
16524 @item ar
16525 alternating frames (right eye first, left eye second)
16526
16527 @item irl
16528 interleaved rows (left eye has top row, right eye starts on next row)
16529
16530 @item irr
16531 interleaved rows (right eye has top row, left eye starts on next row)
16532
16533 @item icl
16534 interleaved columns, left eye first
16535
16536 @item icr
16537 interleaved columns, right eye first
16538
16539 Default value is @samp{sbsl}.
16540 @end table
16541
16542 @item out
16543 Set stereoscopic image format of output.
16544
16545 @table @samp
16546 @item sbsl
16547 side by side parallel (left eye left, right eye right)
16548
16549 @item sbsr
16550 side by side crosseye (right eye left, left eye right)
16551
16552 @item sbs2l
16553 side by side parallel with half width resolution
16554 (left eye left, right eye right)
16555
16556 @item sbs2r
16557 side by side crosseye with half width resolution
16558 (right eye left, left eye right)
16559
16560 @item abl
16561 above-below (left eye above, right eye below)
16562
16563 @item abr
16564 above-below (right eye above, left eye below)
16565
16566 @item ab2l
16567 above-below with half height resolution
16568 (left eye above, right eye below)
16569
16570 @item ab2r
16571 above-below with half height resolution
16572 (right eye above, left eye below)
16573
16574 @item al
16575 alternating frames (left eye first, right eye second)
16576
16577 @item ar
16578 alternating frames (right eye first, left eye second)
16579
16580 @item irl
16581 interleaved rows (left eye has top row, right eye starts on next row)
16582
16583 @item irr
16584 interleaved rows (right eye has top row, left eye starts on next row)
16585
16586 @item arbg
16587 anaglyph red/blue gray
16588 (red filter on left eye, blue filter on right eye)
16589
16590 @item argg
16591 anaglyph red/green gray
16592 (red filter on left eye, green filter on right eye)
16593
16594 @item arcg
16595 anaglyph red/cyan gray
16596 (red filter on left eye, cyan filter on right eye)
16597
16598 @item arch
16599 anaglyph red/cyan half colored
16600 (red filter on left eye, cyan filter on right eye)
16601
16602 @item arcc
16603 anaglyph red/cyan color
16604 (red filter on left eye, cyan filter on right eye)
16605
16606 @item arcd
16607 anaglyph red/cyan color optimized with the least squares projection of dubois
16608 (red filter on left eye, cyan filter on right eye)
16609
16610 @item agmg
16611 anaglyph green/magenta gray
16612 (green filter on left eye, magenta filter on right eye)
16613
16614 @item agmh
16615 anaglyph green/magenta half colored
16616 (green filter on left eye, magenta filter on right eye)
16617
16618 @item agmc
16619 anaglyph green/magenta colored
16620 (green filter on left eye, magenta filter on right eye)
16621
16622 @item agmd
16623 anaglyph green/magenta color optimized with the least squares projection of dubois
16624 (green filter on left eye, magenta filter on right eye)
16625
16626 @item aybg
16627 anaglyph yellow/blue gray
16628 (yellow filter on left eye, blue filter on right eye)
16629
16630 @item aybh
16631 anaglyph yellow/blue half colored
16632 (yellow filter on left eye, blue filter on right eye)
16633
16634 @item aybc
16635 anaglyph yellow/blue colored
16636 (yellow filter on left eye, blue filter on right eye)
16637
16638 @item aybd
16639 anaglyph yellow/blue color optimized with the least squares projection of dubois
16640 (yellow filter on left eye, blue filter on right eye)
16641
16642 @item ml
16643 mono output (left eye only)
16644
16645 @item mr
16646 mono output (right eye only)
16647
16648 @item chl
16649 checkerboard, left eye first
16650
16651 @item chr
16652 checkerboard, right eye first
16653
16654 @item icl
16655 interleaved columns, left eye first
16656
16657 @item icr
16658 interleaved columns, right eye first
16659
16660 @item hdmi
16661 HDMI frame pack
16662 @end table
16663
16664 Default value is @samp{arcd}.
16665 @end table
16666
16667 @subsection Examples
16668
16669 @itemize
16670 @item
16671 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
16672 @example
16673 stereo3d=sbsl:aybd
16674 @end example
16675
16676 @item
16677 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
16678 @example
16679 stereo3d=abl:sbsr
16680 @end example
16681 @end itemize
16682
16683 @section streamselect, astreamselect
16684 Select video or audio streams.
16685
16686 The filter accepts the following options:
16687
16688 @table @option
16689 @item inputs
16690 Set number of inputs. Default is 2.
16691
16692 @item map
16693 Set input indexes to remap to outputs.
16694 @end table
16695
16696 @subsection Commands
16697
16698 The @code{streamselect} and @code{astreamselect} filter supports the following
16699 commands:
16700
16701 @table @option
16702 @item map
16703 Set input indexes to remap to outputs.
16704 @end table
16705
16706 @subsection Examples
16707
16708 @itemize
16709 @item
16710 Select first 5 seconds 1st stream and rest of time 2nd stream:
16711 @example
16712 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
16713 @end example
16714
16715 @item
16716 Same as above, but for audio:
16717 @example
16718 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
16719 @end example
16720 @end itemize
16721
16722 @section sobel
16723 Apply sobel operator to input video stream.
16724
16725 The filter accepts the following option:
16726
16727 @table @option
16728 @item planes
16729 Set which planes will be processed, unprocessed planes will be copied.
16730 By default value 0xf, all planes will be processed.
16731
16732 @item scale
16733 Set value which will be multiplied with filtered result.
16734
16735 @item delta
16736 Set value which will be added to filtered result.
16737 @end table
16738
16739 @anchor{spp}
16740 @section spp
16741
16742 Apply a simple postprocessing filter that compresses and decompresses the image
16743 at several (or - in the case of @option{quality} level @code{6} - all) shifts
16744 and average the results.
16745
16746 The filter accepts the following options:
16747
16748 @table @option
16749 @item quality
16750 Set quality. This option defines the number of levels for averaging. It accepts
16751 an integer in the range 0-6. If set to @code{0}, the filter will have no
16752 effect. A value of @code{6} means the higher quality. For each increment of
16753 that value the speed drops by a factor of approximately 2.  Default value is
16754 @code{3}.
16755
16756 @item qp
16757 Force a constant quantization parameter. If not set, the filter will use the QP
16758 from the video stream (if available).
16759
16760 @item mode
16761 Set thresholding mode. Available modes are:
16762
16763 @table @samp
16764 @item hard
16765 Set hard thresholding (default).
16766 @item soft
16767 Set soft thresholding (better de-ringing effect, but likely blurrier).
16768 @end table
16769
16770 @item use_bframe_qp
16771 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
16772 option may cause flicker since the B-Frames have often larger QP. Default is
16773 @code{0} (not enabled).
16774 @end table
16775
16776 @section sr
16777
16778 Scale the input by applying one of the super-resolution methods based on
16779 convolutional neural networks. Supported models:
16780
16781 @itemize
16782 @item
16783 Super-Resolution Convolutional Neural Network model (SRCNN).
16784 See @url{https://arxiv.org/abs/1501.00092}.
16785
16786 @item
16787 Efficient Sub-Pixel Convolutional Neural Network model (ESPCN).
16788 See @url{https://arxiv.org/abs/1609.05158}.
16789 @end itemize
16790
16791 Training scripts as well as scripts for model file (.pb) saving can be found at
16792 @url{https://github.com/XueweiMeng/sr/tree/sr_dnn_native}. Original repository
16793 is at @url{https://github.com/HighVoltageRocknRoll/sr.git}.
16794
16795 Native model files (.model) can be generated from TensorFlow model
16796 files (.pb) by using tools/python/convert.py
16797
16798 The filter accepts the following options:
16799
16800 @table @option
16801 @item dnn_backend
16802 Specify which DNN backend to use for model loading and execution. This option accepts
16803 the following values:
16804
16805 @table @samp
16806 @item native
16807 Native implementation of DNN loading and execution.
16808
16809 @item tensorflow
16810 TensorFlow backend. To enable this backend you
16811 need to install the TensorFlow for C library (see
16812 @url{https://www.tensorflow.org/install/install_c}) and configure FFmpeg with
16813 @code{--enable-libtensorflow}
16814 @end table
16815
16816 Default value is @samp{native}.
16817
16818 @item model
16819 Set path to model file specifying network architecture and its parameters.
16820 Note that different backends use different file formats. TensorFlow backend
16821 can load files for both formats, while native backend can load files for only
16822 its format.
16823
16824 @item scale_factor
16825 Set scale factor for SRCNN model. Allowed values are @code{2}, @code{3} and @code{4}.
16826 Default value is @code{2}. Scale factor is necessary for SRCNN model, because it accepts
16827 input upscaled using bicubic upscaling with proper scale factor.
16828 @end table
16829
16830 @anchor{subtitles}
16831 @section subtitles
16832
16833 Draw subtitles on top of input video using the libass library.
16834
16835 To enable compilation of this filter you need to configure FFmpeg with
16836 @code{--enable-libass}. This filter also requires a build with libavcodec and
16837 libavformat to convert the passed subtitles file to ASS (Advanced Substation
16838 Alpha) subtitles format.
16839
16840 The filter accepts the following options:
16841
16842 @table @option
16843 @item filename, f
16844 Set the filename of the subtitle file to read. It must be specified.
16845
16846 @item original_size
16847 Specify the size of the original video, the video for which the ASS file
16848 was composed. For the syntax of this option, check the
16849 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16850 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
16851 correctly scale the fonts if the aspect ratio has been changed.
16852
16853 @item fontsdir
16854 Set a directory path containing fonts that can be used by the filter.
16855 These fonts will be used in addition to whatever the font provider uses.
16856
16857 @item alpha
16858 Process alpha channel, by default alpha channel is untouched.
16859
16860 @item charenc
16861 Set subtitles input character encoding. @code{subtitles} filter only. Only
16862 useful if not UTF-8.
16863
16864 @item stream_index, si
16865 Set subtitles stream index. @code{subtitles} filter only.
16866
16867 @item force_style
16868 Override default style or script info parameters of the subtitles. It accepts a
16869 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
16870 @end table
16871
16872 If the first key is not specified, it is assumed that the first value
16873 specifies the @option{filename}.
16874
16875 For example, to render the file @file{sub.srt} on top of the input
16876 video, use the command:
16877 @example
16878 subtitles=sub.srt
16879 @end example
16880
16881 which is equivalent to:
16882 @example
16883 subtitles=filename=sub.srt
16884 @end example
16885
16886 To render the default subtitles stream from file @file{video.mkv}, use:
16887 @example
16888 subtitles=video.mkv
16889 @end example
16890
16891 To render the second subtitles stream from that file, use:
16892 @example
16893 subtitles=video.mkv:si=1
16894 @end example
16895
16896 To make the subtitles stream from @file{sub.srt} appear in 80% transparent blue
16897 @code{DejaVu Serif}, use:
16898 @example
16899 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HCCFF0000'
16900 @end example
16901
16902 @section super2xsai
16903
16904 Scale the input by 2x and smooth using the Super2xSaI (Scale and
16905 Interpolate) pixel art scaling algorithm.
16906
16907 Useful for enlarging pixel art images without reducing sharpness.
16908
16909 @section swaprect
16910
16911 Swap two rectangular objects in video.
16912
16913 This filter accepts the following options:
16914
16915 @table @option
16916 @item w
16917 Set object width.
16918
16919 @item h
16920 Set object height.
16921
16922 @item x1
16923 Set 1st rect x coordinate.
16924
16925 @item y1
16926 Set 1st rect y coordinate.
16927
16928 @item x2
16929 Set 2nd rect x coordinate.
16930
16931 @item y2
16932 Set 2nd rect y coordinate.
16933
16934 All expressions are evaluated once for each frame.
16935 @end table
16936
16937 The all options are expressions containing the following constants:
16938
16939 @table @option
16940 @item w
16941 @item h
16942 The input width and height.
16943
16944 @item a
16945 same as @var{w} / @var{h}
16946
16947 @item sar
16948 input sample aspect ratio
16949
16950 @item dar
16951 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
16952
16953 @item n
16954 The number of the input frame, starting from 0.
16955
16956 @item t
16957 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
16958
16959 @item pos
16960 the position in the file of the input frame, NAN if unknown
16961 @end table
16962
16963 @section swapuv
16964 Swap U & V plane.
16965
16966 @section telecine
16967
16968 Apply telecine process to the video.
16969
16970 This filter accepts the following options:
16971
16972 @table @option
16973 @item first_field
16974 @table @samp
16975 @item top, t
16976 top field first
16977 @item bottom, b
16978 bottom field first
16979 The default value is @code{top}.
16980 @end table
16981
16982 @item pattern
16983 A string of numbers representing the pulldown pattern you wish to apply.
16984 The default value is @code{23}.
16985 @end table
16986
16987 @example
16988 Some typical patterns:
16989
16990 NTSC output (30i):
16991 27.5p: 32222
16992 24p: 23 (classic)
16993 24p: 2332 (preferred)
16994 20p: 33
16995 18p: 334
16996 16p: 3444
16997
16998 PAL output (25i):
16999 27.5p: 12222
17000 24p: 222222222223 ("Euro pulldown")
17001 16.67p: 33
17002 16p: 33333334
17003 @end example
17004
17005 @section threshold
17006
17007 Apply threshold effect to video stream.
17008
17009 This filter needs four video streams to perform thresholding.
17010 First stream is stream we are filtering.
17011 Second stream is holding threshold values, third stream is holding min values,
17012 and last, fourth stream is holding max values.
17013
17014 The filter accepts the following option:
17015
17016 @table @option
17017 @item planes
17018 Set which planes will be processed, unprocessed planes will be copied.
17019 By default value 0xf, all planes will be processed.
17020 @end table
17021
17022 For example if first stream pixel's component value is less then threshold value
17023 of pixel component from 2nd threshold stream, third stream value will picked,
17024 otherwise fourth stream pixel component value will be picked.
17025
17026 Using color source filter one can perform various types of thresholding:
17027
17028 @subsection Examples
17029
17030 @itemize
17031 @item
17032 Binary threshold, using gray color as threshold:
17033 @example
17034 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
17035 @end example
17036
17037 @item
17038 Inverted binary threshold, using gray color as threshold:
17039 @example
17040 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
17041 @end example
17042
17043 @item
17044 Truncate binary threshold, using gray color as threshold:
17045 @example
17046 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
17047 @end example
17048
17049 @item
17050 Threshold to zero, using gray color as threshold:
17051 @example
17052 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
17053 @end example
17054
17055 @item
17056 Inverted threshold to zero, using gray color as threshold:
17057 @example
17058 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
17059 @end example
17060 @end itemize
17061
17062 @section thumbnail
17063 Select the most representative frame in a given sequence of consecutive frames.
17064
17065 The filter accepts the following options:
17066
17067 @table @option
17068 @item n
17069 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
17070 will pick one of them, and then handle the next batch of @var{n} frames until
17071 the end. Default is @code{100}.
17072 @end table
17073
17074 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
17075 value will result in a higher memory usage, so a high value is not recommended.
17076
17077 @subsection Examples
17078
17079 @itemize
17080 @item
17081 Extract one picture each 50 frames:
17082 @example
17083 thumbnail=50
17084 @end example
17085
17086 @item
17087 Complete example of a thumbnail creation with @command{ffmpeg}:
17088 @example
17089 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
17090 @end example
17091 @end itemize
17092
17093 @section tile
17094
17095 Tile several successive frames together.
17096
17097 The filter accepts the following options:
17098
17099 @table @option
17100
17101 @item layout
17102 Set the grid size (i.e. the number of lines and columns). For the syntax of
17103 this option, check the
17104 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17105
17106 @item nb_frames
17107 Set the maximum number of frames to render in the given area. It must be less
17108 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
17109 the area will be used.
17110
17111 @item margin
17112 Set the outer border margin in pixels.
17113
17114 @item padding
17115 Set the inner border thickness (i.e. the number of pixels between frames). For
17116 more advanced padding options (such as having different values for the edges),
17117 refer to the pad video filter.
17118
17119 @item color
17120 Specify the color of the unused area. For the syntax of this option, check the
17121 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17122 The default value of @var{color} is "black".
17123
17124 @item overlap
17125 Set the number of frames to overlap when tiling several successive frames together.
17126 The value must be between @code{0} and @var{nb_frames - 1}.
17127
17128 @item init_padding
17129 Set the number of frames to initially be empty before displaying first output frame.
17130 This controls how soon will one get first output frame.
17131 The value must be between @code{0} and @var{nb_frames - 1}.
17132 @end table
17133
17134 @subsection Examples
17135
17136 @itemize
17137 @item
17138 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
17139 @example
17140 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
17141 @end example
17142 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
17143 duplicating each output frame to accommodate the originally detected frame
17144 rate.
17145
17146 @item
17147 Display @code{5} pictures in an area of @code{3x2} frames,
17148 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
17149 mixed flat and named options:
17150 @example
17151 tile=3x2:nb_frames=5:padding=7:margin=2
17152 @end example
17153 @end itemize
17154
17155 @section tinterlace
17156
17157 Perform various types of temporal field interlacing.
17158
17159 Frames are counted starting from 1, so the first input frame is
17160 considered odd.
17161
17162 The filter accepts the following options:
17163
17164 @table @option
17165
17166 @item mode
17167 Specify the mode of the interlacing. This option can also be specified
17168 as a value alone. See below for a list of values for this option.
17169
17170 Available values are:
17171
17172 @table @samp
17173 @item merge, 0
17174 Move odd frames into the upper field, even into the lower field,
17175 generating a double height frame at half frame rate.
17176 @example
17177  ------> time
17178 Input:
17179 Frame 1         Frame 2         Frame 3         Frame 4
17180
17181 11111           22222           33333           44444
17182 11111           22222           33333           44444
17183 11111           22222           33333           44444
17184 11111           22222           33333           44444
17185
17186 Output:
17187 11111                           33333
17188 22222                           44444
17189 11111                           33333
17190 22222                           44444
17191 11111                           33333
17192 22222                           44444
17193 11111                           33333
17194 22222                           44444
17195 @end example
17196
17197 @item drop_even, 1
17198 Only output odd frames, even frames are dropped, generating a frame with
17199 unchanged height at half frame rate.
17200
17201 @example
17202  ------> time
17203 Input:
17204 Frame 1         Frame 2         Frame 3         Frame 4
17205
17206 11111           22222           33333           44444
17207 11111           22222           33333           44444
17208 11111           22222           33333           44444
17209 11111           22222           33333           44444
17210
17211 Output:
17212 11111                           33333
17213 11111                           33333
17214 11111                           33333
17215 11111                           33333
17216 @end example
17217
17218 @item drop_odd, 2
17219 Only output even frames, odd frames are dropped, generating a frame with
17220 unchanged height at half frame rate.
17221
17222 @example
17223  ------> time
17224 Input:
17225 Frame 1         Frame 2         Frame 3         Frame 4
17226
17227 11111           22222           33333           44444
17228 11111           22222           33333           44444
17229 11111           22222           33333           44444
17230 11111           22222           33333           44444
17231
17232 Output:
17233                 22222                           44444
17234                 22222                           44444
17235                 22222                           44444
17236                 22222                           44444
17237 @end example
17238
17239 @item pad, 3
17240 Expand each frame to full height, but pad alternate lines with black,
17241 generating a frame with double height at the same input frame rate.
17242
17243 @example
17244  ------> time
17245 Input:
17246 Frame 1         Frame 2         Frame 3         Frame 4
17247
17248 11111           22222           33333           44444
17249 11111           22222           33333           44444
17250 11111           22222           33333           44444
17251 11111           22222           33333           44444
17252
17253 Output:
17254 11111           .....           33333           .....
17255 .....           22222           .....           44444
17256 11111           .....           33333           .....
17257 .....           22222           .....           44444
17258 11111           .....           33333           .....
17259 .....           22222           .....           44444
17260 11111           .....           33333           .....
17261 .....           22222           .....           44444
17262 @end example
17263
17264
17265 @item interleave_top, 4
17266 Interleave the upper field from odd frames with the lower field from
17267 even frames, generating a frame with unchanged height at half frame rate.
17268
17269 @example
17270  ------> time
17271 Input:
17272 Frame 1         Frame 2         Frame 3         Frame 4
17273
17274 11111<-         22222           33333<-         44444
17275 11111           22222<-         33333           44444<-
17276 11111<-         22222           33333<-         44444
17277 11111           22222<-         33333           44444<-
17278
17279 Output:
17280 11111                           33333
17281 22222                           44444
17282 11111                           33333
17283 22222                           44444
17284 @end example
17285
17286
17287 @item interleave_bottom, 5
17288 Interleave the lower field from odd frames with the upper field from
17289 even frames, generating a frame with unchanged height at half frame rate.
17290
17291 @example
17292  ------> time
17293 Input:
17294 Frame 1         Frame 2         Frame 3         Frame 4
17295
17296 11111           22222<-         33333           44444<-
17297 11111<-         22222           33333<-         44444
17298 11111           22222<-         33333           44444<-
17299 11111<-         22222           33333<-         44444
17300
17301 Output:
17302 22222                           44444
17303 11111                           33333
17304 22222                           44444
17305 11111                           33333
17306 @end example
17307
17308
17309 @item interlacex2, 6
17310 Double frame rate with unchanged height. Frames are inserted each
17311 containing the second temporal field from the previous input frame and
17312 the first temporal field from the next input frame. This mode relies on
17313 the top_field_first flag. Useful for interlaced video displays with no
17314 field synchronisation.
17315
17316 @example
17317  ------> time
17318 Input:
17319 Frame 1         Frame 2         Frame 3         Frame 4
17320
17321 11111           22222           33333           44444
17322  11111           22222           33333           44444
17323 11111           22222           33333           44444
17324  11111           22222           33333           44444
17325
17326 Output:
17327 11111   22222   22222   33333   33333   44444   44444
17328  11111   11111   22222   22222   33333   33333   44444
17329 11111   22222   22222   33333   33333   44444   44444
17330  11111   11111   22222   22222   33333   33333   44444
17331 @end example
17332
17333
17334 @item mergex2, 7
17335 Move odd frames into the upper field, even into the lower field,
17336 generating a double height frame at same frame rate.
17337
17338 @example
17339  ------> time
17340 Input:
17341 Frame 1         Frame 2         Frame 3         Frame 4
17342
17343 11111           22222           33333           44444
17344 11111           22222           33333           44444
17345 11111           22222           33333           44444
17346 11111           22222           33333           44444
17347
17348 Output:
17349 11111           33333           33333           55555
17350 22222           22222           44444           44444
17351 11111           33333           33333           55555
17352 22222           22222           44444           44444
17353 11111           33333           33333           55555
17354 22222           22222           44444           44444
17355 11111           33333           33333           55555
17356 22222           22222           44444           44444
17357 @end example
17358
17359 @end table
17360
17361 Numeric values are deprecated but are accepted for backward
17362 compatibility reasons.
17363
17364 Default mode is @code{merge}.
17365
17366 @item flags
17367 Specify flags influencing the filter process.
17368
17369 Available value for @var{flags} is:
17370
17371 @table @option
17372 @item low_pass_filter, vlpf
17373 Enable linear vertical low-pass filtering in the filter.
17374 Vertical low-pass filtering is required when creating an interlaced
17375 destination from a progressive source which contains high-frequency
17376 vertical detail. Filtering will reduce interlace 'twitter' and Moire
17377 patterning.
17378
17379 @item complex_filter, cvlpf
17380 Enable complex vertical low-pass filtering.
17381 This will slightly less reduce interlace 'twitter' and Moire
17382 patterning but better retain detail and subjective sharpness impression.
17383
17384 @end table
17385
17386 Vertical low-pass filtering can only be enabled for @option{mode}
17387 @var{interleave_top} and @var{interleave_bottom}.
17388
17389 @end table
17390
17391 @section tmix
17392
17393 Mix successive video frames.
17394
17395 A description of the accepted options follows.
17396
17397 @table @option
17398 @item frames
17399 The number of successive frames to mix. If unspecified, it defaults to 3.
17400
17401 @item weights
17402 Specify weight of each input video frame.
17403 Each weight is separated by space. If number of weights is smaller than
17404 number of @var{frames} last specified weight will be used for all remaining
17405 unset weights.
17406
17407 @item scale
17408 Specify scale, if it is set it will be multiplied with sum
17409 of each weight multiplied with pixel values to give final destination
17410 pixel value. By default @var{scale} is auto scaled to sum of weights.
17411 @end table
17412
17413 @subsection Examples
17414
17415 @itemize
17416 @item
17417 Average 7 successive frames:
17418 @example
17419 tmix=frames=7:weights="1 1 1 1 1 1 1"
17420 @end example
17421
17422 @item
17423 Apply simple temporal convolution:
17424 @example
17425 tmix=frames=3:weights="-1 3 -1"
17426 @end example
17427
17428 @item
17429 Similar as above but only showing temporal differences:
17430 @example
17431 tmix=frames=3:weights="-1 2 -1":scale=1
17432 @end example
17433 @end itemize
17434
17435 @anchor{tonemap}
17436 @section tonemap
17437 Tone map colors from different dynamic ranges.
17438
17439 This filter expects data in single precision floating point, as it needs to
17440 operate on (and can output) out-of-range values. Another filter, such as
17441 @ref{zscale}, is needed to convert the resulting frame to a usable format.
17442
17443 The tonemapping algorithms implemented only work on linear light, so input
17444 data should be linearized beforehand (and possibly correctly tagged).
17445
17446 @example
17447 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
17448 @end example
17449
17450 @subsection Options
17451 The filter accepts the following options.
17452
17453 @table @option
17454 @item tonemap
17455 Set the tone map algorithm to use.
17456
17457 Possible values are:
17458 @table @var
17459 @item none
17460 Do not apply any tone map, only desaturate overbright pixels.
17461
17462 @item clip
17463 Hard-clip any out-of-range values. Use it for perfect color accuracy for
17464 in-range values, while distorting out-of-range values.
17465
17466 @item linear
17467 Stretch the entire reference gamut to a linear multiple of the display.
17468
17469 @item gamma
17470 Fit a logarithmic transfer between the tone curves.
17471
17472 @item reinhard
17473 Preserve overall image brightness with a simple curve, using nonlinear
17474 contrast, which results in flattening details and degrading color accuracy.
17475
17476 @item hable
17477 Preserve both dark and bright details better than @var{reinhard}, at the cost
17478 of slightly darkening everything. Use it when detail preservation is more
17479 important than color and brightness accuracy.
17480
17481 @item mobius
17482 Smoothly map out-of-range values, while retaining contrast and colors for
17483 in-range material as much as possible. Use it when color accuracy is more
17484 important than detail preservation.
17485 @end table
17486
17487 Default is none.
17488
17489 @item param
17490 Tune the tone mapping algorithm.
17491
17492 This affects the following algorithms:
17493 @table @var
17494 @item none
17495 Ignored.
17496
17497 @item linear
17498 Specifies the scale factor to use while stretching.
17499 Default to 1.0.
17500
17501 @item gamma
17502 Specifies the exponent of the function.
17503 Default to 1.8.
17504
17505 @item clip
17506 Specify an extra linear coefficient to multiply into the signal before clipping.
17507 Default to 1.0.
17508
17509 @item reinhard
17510 Specify the local contrast coefficient at the display peak.
17511 Default to 0.5, which means that in-gamut values will be about half as bright
17512 as when clipping.
17513
17514 @item hable
17515 Ignored.
17516
17517 @item mobius
17518 Specify the transition point from linear to mobius transform. Every value
17519 below this point is guaranteed to be mapped 1:1. The higher the value, the
17520 more accurate the result will be, at the cost of losing bright details.
17521 Default to 0.3, which due to the steep initial slope still preserves in-range
17522 colors fairly accurately.
17523 @end table
17524
17525 @item desat
17526 Apply desaturation for highlights that exceed this level of brightness. The
17527 higher the parameter, the more color information will be preserved. This
17528 setting helps prevent unnaturally blown-out colors for super-highlights, by
17529 (smoothly) turning into white instead. This makes images feel more natural,
17530 at the cost of reducing information about out-of-range colors.
17531
17532 The default of 2.0 is somewhat conservative and will mostly just apply to
17533 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
17534
17535 This option works only if the input frame has a supported color tag.
17536
17537 @item peak
17538 Override signal/nominal/reference peak with this value. Useful when the
17539 embedded peak information in display metadata is not reliable or when tone
17540 mapping from a lower range to a higher range.
17541 @end table
17542
17543 @section tpad
17544
17545 Temporarily pad video frames.
17546
17547 The filter accepts the following options:
17548
17549 @table @option
17550 @item start
17551 Specify number of delay frames before input video stream.
17552
17553 @item stop
17554 Specify number of padding frames after input video stream.
17555 Set to -1 to pad indefinitely.
17556
17557 @item start_mode
17558 Set kind of frames added to beginning of stream.
17559 Can be either @var{add} or @var{clone}.
17560 With @var{add} frames of solid-color are added.
17561 With @var{clone} frames are clones of first frame.
17562
17563 @item stop_mode
17564 Set kind of frames added to end of stream.
17565 Can be either @var{add} or @var{clone}.
17566 With @var{add} frames of solid-color are added.
17567 With @var{clone} frames are clones of last frame.
17568
17569 @item start_duration, stop_duration
17570 Specify the duration of the start/stop delay. See
17571 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17572 for the accepted syntax.
17573 These options override @var{start} and @var{stop}.
17574
17575 @item color
17576 Specify the color of the padded area. For the syntax of this option,
17577 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
17578 manual,ffmpeg-utils}.
17579
17580 The default value of @var{color} is "black".
17581 @end table
17582
17583 @anchor{transpose}
17584 @section transpose
17585
17586 Transpose rows with columns in the input video and optionally flip it.
17587
17588 It accepts the following parameters:
17589
17590 @table @option
17591
17592 @item dir
17593 Specify the transposition direction.
17594
17595 Can assume the following values:
17596 @table @samp
17597 @item 0, 4, cclock_flip
17598 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
17599 @example
17600 L.R     L.l
17601 . . ->  . .
17602 l.r     R.r
17603 @end example
17604
17605 @item 1, 5, clock
17606 Rotate by 90 degrees clockwise, that is:
17607 @example
17608 L.R     l.L
17609 . . ->  . .
17610 l.r     r.R
17611 @end example
17612
17613 @item 2, 6, cclock
17614 Rotate by 90 degrees counterclockwise, that is:
17615 @example
17616 L.R     R.r
17617 . . ->  . .
17618 l.r     L.l
17619 @end example
17620
17621 @item 3, 7, clock_flip
17622 Rotate by 90 degrees clockwise and vertically flip, that is:
17623 @example
17624 L.R     r.R
17625 . . ->  . .
17626 l.r     l.L
17627 @end example
17628 @end table
17629
17630 For values between 4-7, the transposition is only done if the input
17631 video geometry is portrait and not landscape. These values are
17632 deprecated, the @code{passthrough} option should be used instead.
17633
17634 Numerical values are deprecated, and should be dropped in favor of
17635 symbolic constants.
17636
17637 @item passthrough
17638 Do not apply the transposition if the input geometry matches the one
17639 specified by the specified value. It accepts the following values:
17640 @table @samp
17641 @item none
17642 Always apply transposition.
17643 @item portrait
17644 Preserve portrait geometry (when @var{height} >= @var{width}).
17645 @item landscape
17646 Preserve landscape geometry (when @var{width} >= @var{height}).
17647 @end table
17648
17649 Default value is @code{none}.
17650 @end table
17651
17652 For example to rotate by 90 degrees clockwise and preserve portrait
17653 layout:
17654 @example
17655 transpose=dir=1:passthrough=portrait
17656 @end example
17657
17658 The command above can also be specified as:
17659 @example
17660 transpose=1:portrait
17661 @end example
17662
17663 @section transpose_npp
17664
17665 Transpose rows with columns in the input video and optionally flip it.
17666 For more in depth examples see the @ref{transpose} video filter, which shares mostly the same options.
17667
17668 It accepts the following parameters:
17669
17670 @table @option
17671
17672 @item dir
17673 Specify the transposition direction.
17674
17675 Can assume the following values:
17676 @table @samp
17677 @item cclock_flip
17678 Rotate by 90 degrees counterclockwise and vertically flip. (default)
17679
17680 @item clock
17681 Rotate by 90 degrees clockwise.
17682
17683 @item cclock
17684 Rotate by 90 degrees counterclockwise.
17685
17686 @item clock_flip
17687 Rotate by 90 degrees clockwise and vertically flip.
17688 @end table
17689
17690 @item passthrough
17691 Do not apply the transposition if the input geometry matches the one
17692 specified by the specified value. It accepts the following values:
17693 @table @samp
17694 @item none
17695 Always apply transposition. (default)
17696 @item portrait
17697 Preserve portrait geometry (when @var{height} >= @var{width}).
17698 @item landscape
17699 Preserve landscape geometry (when @var{width} >= @var{height}).
17700 @end table
17701
17702 @end table
17703
17704 @section trim
17705 Trim the input so that the output contains one continuous subpart of the input.
17706
17707 It accepts the following parameters:
17708 @table @option
17709 @item start
17710 Specify the time of the start of the kept section, i.e. the frame with the
17711 timestamp @var{start} will be the first frame in the output.
17712
17713 @item end
17714 Specify the time of the first frame that will be dropped, i.e. the frame
17715 immediately preceding the one with the timestamp @var{end} will be the last
17716 frame in the output.
17717
17718 @item start_pts
17719 This is the same as @var{start}, except this option sets the start timestamp
17720 in timebase units instead of seconds.
17721
17722 @item end_pts
17723 This is the same as @var{end}, except this option sets the end timestamp
17724 in timebase units instead of seconds.
17725
17726 @item duration
17727 The maximum duration of the output in seconds.
17728
17729 @item start_frame
17730 The number of the first frame that should be passed to the output.
17731
17732 @item end_frame
17733 The number of the first frame that should be dropped.
17734 @end table
17735
17736 @option{start}, @option{end}, and @option{duration} are expressed as time
17737 duration specifications; see
17738 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17739 for the accepted syntax.
17740
17741 Note that the first two sets of the start/end options and the @option{duration}
17742 option look at the frame timestamp, while the _frame variants simply count the
17743 frames that pass through the filter. Also note that this filter does not modify
17744 the timestamps. If you wish for the output timestamps to start at zero, insert a
17745 setpts filter after the trim filter.
17746
17747 If multiple start or end options are set, this filter tries to be greedy and
17748 keep all the frames that match at least one of the specified constraints. To keep
17749 only the part that matches all the constraints at once, chain multiple trim
17750 filters.
17751
17752 The defaults are such that all the input is kept. So it is possible to set e.g.
17753 just the end values to keep everything before the specified time.
17754
17755 Examples:
17756 @itemize
17757 @item
17758 Drop everything except the second minute of input:
17759 @example
17760 ffmpeg -i INPUT -vf trim=60:120
17761 @end example
17762
17763 @item
17764 Keep only the first second:
17765 @example
17766 ffmpeg -i INPUT -vf trim=duration=1
17767 @end example
17768
17769 @end itemize
17770
17771 @section unpremultiply
17772 Apply alpha unpremultiply effect to input video stream using first plane
17773 of second stream as alpha.
17774
17775 Both streams must have same dimensions and same pixel format.
17776
17777 The filter accepts the following option:
17778
17779 @table @option
17780 @item planes
17781 Set which planes will be processed, unprocessed planes will be copied.
17782 By default value 0xf, all planes will be processed.
17783
17784 If the format has 1 or 2 components, then luma is bit 0.
17785 If the format has 3 or 4 components:
17786 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
17787 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
17788 If present, the alpha channel is always the last bit.
17789
17790 @item inplace
17791 Do not require 2nd input for processing, instead use alpha plane from input stream.
17792 @end table
17793
17794 @anchor{unsharp}
17795 @section unsharp
17796
17797 Sharpen or blur the input video.
17798
17799 It accepts the following parameters:
17800
17801 @table @option
17802 @item luma_msize_x, lx
17803 Set the luma matrix horizontal size. It must be an odd integer between
17804 3 and 23. The default value is 5.
17805
17806 @item luma_msize_y, ly
17807 Set the luma matrix vertical size. It must be an odd integer between 3
17808 and 23. The default value is 5.
17809
17810 @item luma_amount, la
17811 Set the luma effect strength. It must be a floating point number, reasonable
17812 values lay between -1.5 and 1.5.
17813
17814 Negative values will blur the input video, while positive values will
17815 sharpen it, a value of zero will disable the effect.
17816
17817 Default value is 1.0.
17818
17819 @item chroma_msize_x, cx
17820 Set the chroma matrix horizontal size. It must be an odd integer
17821 between 3 and 23. The default value is 5.
17822
17823 @item chroma_msize_y, cy
17824 Set the chroma matrix vertical size. It must be an odd integer
17825 between 3 and 23. The default value is 5.
17826
17827 @item chroma_amount, ca
17828 Set the chroma effect strength. It must be a floating point number, reasonable
17829 values lay between -1.5 and 1.5.
17830
17831 Negative values will blur the input video, while positive values will
17832 sharpen it, a value of zero will disable the effect.
17833
17834 Default value is 0.0.
17835
17836 @end table
17837
17838 All parameters are optional and default to the equivalent of the
17839 string '5:5:1.0:5:5:0.0'.
17840
17841 @subsection Examples
17842
17843 @itemize
17844 @item
17845 Apply strong luma sharpen effect:
17846 @example
17847 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
17848 @end example
17849
17850 @item
17851 Apply a strong blur of both luma and chroma parameters:
17852 @example
17853 unsharp=7:7:-2:7:7:-2
17854 @end example
17855 @end itemize
17856
17857 @section uspp
17858
17859 Apply ultra slow/simple postprocessing filter that compresses and decompresses
17860 the image at several (or - in the case of @option{quality} level @code{8} - all)
17861 shifts and average the results.
17862
17863 The way this differs from the behavior of spp is that uspp actually encodes &
17864 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
17865 DCT similar to MJPEG.
17866
17867 The filter accepts the following options:
17868
17869 @table @option
17870 @item quality
17871 Set quality. This option defines the number of levels for averaging. It accepts
17872 an integer in the range 0-8. If set to @code{0}, the filter will have no
17873 effect. A value of @code{8} means the higher quality. For each increment of
17874 that value the speed drops by a factor of approximately 2.  Default value is
17875 @code{3}.
17876
17877 @item qp
17878 Force a constant quantization parameter. If not set, the filter will use the QP
17879 from the video stream (if available).
17880 @end table
17881
17882 @section vaguedenoiser
17883
17884 Apply a wavelet based denoiser.
17885
17886 It transforms each frame from the video input into the wavelet domain,
17887 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
17888 the obtained coefficients. It does an inverse wavelet transform after.
17889 Due to wavelet properties, it should give a nice smoothed result, and
17890 reduced noise, without blurring picture features.
17891
17892 This filter accepts the following options:
17893
17894 @table @option
17895 @item threshold
17896 The filtering strength. The higher, the more filtered the video will be.
17897 Hard thresholding can use a higher threshold than soft thresholding
17898 before the video looks overfiltered. Default value is 2.
17899
17900 @item method
17901 The filtering method the filter will use.
17902
17903 It accepts the following values:
17904 @table @samp
17905 @item hard
17906 All values under the threshold will be zeroed.
17907
17908 @item soft
17909 All values under the threshold will be zeroed. All values above will be
17910 reduced by the threshold.
17911
17912 @item garrote
17913 Scales or nullifies coefficients - intermediary between (more) soft and
17914 (less) hard thresholding.
17915 @end table
17916
17917 Default is garrote.
17918
17919 @item nsteps
17920 Number of times, the wavelet will decompose the picture. Picture can't
17921 be decomposed beyond a particular point (typically, 8 for a 640x480
17922 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
17923
17924 @item percent
17925 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
17926
17927 @item planes
17928 A list of the planes to process. By default all planes are processed.
17929 @end table
17930
17931 @section vectorscope
17932
17933 Display 2 color component values in the two dimensional graph (which is called
17934 a vectorscope).
17935
17936 This filter accepts the following options:
17937
17938 @table @option
17939 @item mode, m
17940 Set vectorscope mode.
17941
17942 It accepts the following values:
17943 @table @samp
17944 @item gray
17945 Gray values are displayed on graph, higher brightness means more pixels have
17946 same component color value on location in graph. This is the default mode.
17947
17948 @item color
17949 Gray values are displayed on graph. Surrounding pixels values which are not
17950 present in video frame are drawn in gradient of 2 color components which are
17951 set by option @code{x} and @code{y}. The 3rd color component is static.
17952
17953 @item color2
17954 Actual color components values present in video frame are displayed on graph.
17955
17956 @item color3
17957 Similar as color2 but higher frequency of same values @code{x} and @code{y}
17958 on graph increases value of another color component, which is luminance by
17959 default values of @code{x} and @code{y}.
17960
17961 @item color4
17962 Actual colors present in video frame are displayed on graph. If two different
17963 colors map to same position on graph then color with higher value of component
17964 not present in graph is picked.
17965
17966 @item color5
17967 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
17968 component picked from radial gradient.
17969 @end table
17970
17971 @item x
17972 Set which color component will be represented on X-axis. Default is @code{1}.
17973
17974 @item y
17975 Set which color component will be represented on Y-axis. Default is @code{2}.
17976
17977 @item intensity, i
17978 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
17979 of color component which represents frequency of (X, Y) location in graph.
17980
17981 @item envelope, e
17982 @table @samp
17983 @item none
17984 No envelope, this is default.
17985
17986 @item instant
17987 Instant envelope, even darkest single pixel will be clearly highlighted.
17988
17989 @item peak
17990 Hold maximum and minimum values presented in graph over time. This way you
17991 can still spot out of range values without constantly looking at vectorscope.
17992
17993 @item peak+instant
17994 Peak and instant envelope combined together.
17995 @end table
17996
17997 @item graticule, g
17998 Set what kind of graticule to draw.
17999 @table @samp
18000 @item none
18001 @item green
18002 @item color
18003 @end table
18004
18005 @item opacity, o
18006 Set graticule opacity.
18007
18008 @item flags, f
18009 Set graticule flags.
18010
18011 @table @samp
18012 @item white
18013 Draw graticule for white point.
18014
18015 @item black
18016 Draw graticule for black point.
18017
18018 @item name
18019 Draw color points short names.
18020 @end table
18021
18022 @item bgopacity, b
18023 Set background opacity.
18024
18025 @item lthreshold, l
18026 Set low threshold for color component not represented on X or Y axis.
18027 Values lower than this value will be ignored. Default is 0.
18028 Note this value is multiplied with actual max possible value one pixel component
18029 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
18030 is 0.1 * 255 = 25.
18031
18032 @item hthreshold, h
18033 Set high threshold for color component not represented on X or Y axis.
18034 Values higher than this value will be ignored. Default is 1.
18035 Note this value is multiplied with actual max possible value one pixel component
18036 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
18037 is 0.9 * 255 = 230.
18038
18039 @item colorspace, c
18040 Set what kind of colorspace to use when drawing graticule.
18041 @table @samp
18042 @item auto
18043 @item 601
18044 @item 709
18045 @end table
18046 Default is auto.
18047 @end table
18048
18049 @anchor{vidstabdetect}
18050 @section vidstabdetect
18051
18052 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
18053 @ref{vidstabtransform} for pass 2.
18054
18055 This filter generates a file with relative translation and rotation
18056 transform information about subsequent frames, which is then used by
18057 the @ref{vidstabtransform} filter.
18058
18059 To enable compilation of this filter you need to configure FFmpeg with
18060 @code{--enable-libvidstab}.
18061
18062 This filter accepts the following options:
18063
18064 @table @option
18065 @item result
18066 Set the path to the file used to write the transforms information.
18067 Default value is @file{transforms.trf}.
18068
18069 @item shakiness
18070 Set how shaky the video is and how quick the camera is. It accepts an
18071 integer in the range 1-10, a value of 1 means little shakiness, a
18072 value of 10 means strong shakiness. Default value is 5.
18073
18074 @item accuracy
18075 Set the accuracy of the detection process. It must be a value in the
18076 range 1-15. A value of 1 means low accuracy, a value of 15 means high
18077 accuracy. Default value is 15.
18078
18079 @item stepsize
18080 Set stepsize of the search process. The region around minimum is
18081 scanned with 1 pixel resolution. Default value is 6.
18082
18083 @item mincontrast
18084 Set minimum contrast. Below this value a local measurement field is
18085 discarded. Must be a floating point value in the range 0-1. Default
18086 value is 0.3.
18087
18088 @item tripod
18089 Set reference frame number for tripod mode.
18090
18091 If enabled, the motion of the frames is compared to a reference frame
18092 in the filtered stream, identified by the specified number. The idea
18093 is to compensate all movements in a more-or-less static scene and keep
18094 the camera view absolutely still.
18095
18096 If set to 0, it is disabled. The frames are counted starting from 1.
18097
18098 @item show
18099 Show fields and transforms in the resulting frames. It accepts an
18100 integer in the range 0-2. Default value is 0, which disables any
18101 visualization.
18102 @end table
18103
18104 @subsection Examples
18105
18106 @itemize
18107 @item
18108 Use default values:
18109 @example
18110 vidstabdetect
18111 @end example
18112
18113 @item
18114 Analyze strongly shaky movie and put the results in file
18115 @file{mytransforms.trf}:
18116 @example
18117 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
18118 @end example
18119
18120 @item
18121 Visualize the result of internal transformations in the resulting
18122 video:
18123 @example
18124 vidstabdetect=show=1
18125 @end example
18126
18127 @item
18128 Analyze a video with medium shakiness using @command{ffmpeg}:
18129 @example
18130 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
18131 @end example
18132 @end itemize
18133
18134 @anchor{vidstabtransform}
18135 @section vidstabtransform
18136
18137 Video stabilization/deshaking: pass 2 of 2,
18138 see @ref{vidstabdetect} for pass 1.
18139
18140 Read a file with transform information for each frame and
18141 apply/compensate them. Together with the @ref{vidstabdetect}
18142 filter this can be used to deshake videos. See also
18143 @url{http://public.hronopik.de/vid.stab}. It is important to also use
18144 the @ref{unsharp} filter, see below.
18145
18146 To enable compilation of this filter you need to configure FFmpeg with
18147 @code{--enable-libvidstab}.
18148
18149 @subsection Options
18150
18151 @table @option
18152 @item input
18153 Set path to the file used to read the transforms. Default value is
18154 @file{transforms.trf}.
18155
18156 @item smoothing
18157 Set the number of frames (value*2 + 1) used for lowpass filtering the
18158 camera movements. Default value is 10.
18159
18160 For example a number of 10 means that 21 frames are used (10 in the
18161 past and 10 in the future) to smoothen the motion in the video. A
18162 larger value leads to a smoother video, but limits the acceleration of
18163 the camera (pan/tilt movements). 0 is a special case where a static
18164 camera is simulated.
18165
18166 @item optalgo
18167 Set the camera path optimization algorithm.
18168
18169 Accepted values are:
18170 @table @samp
18171 @item gauss
18172 gaussian kernel low-pass filter on camera motion (default)
18173 @item avg
18174 averaging on transformations
18175 @end table
18176
18177 @item maxshift
18178 Set maximal number of pixels to translate frames. Default value is -1,
18179 meaning no limit.
18180
18181 @item maxangle
18182 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
18183 value is -1, meaning no limit.
18184
18185 @item crop
18186 Specify how to deal with borders that may be visible due to movement
18187 compensation.
18188
18189 Available values are:
18190 @table @samp
18191 @item keep
18192 keep image information from previous frame (default)
18193 @item black
18194 fill the border black
18195 @end table
18196
18197 @item invert
18198 Invert transforms if set to 1. Default value is 0.
18199
18200 @item relative
18201 Consider transforms as relative to previous frame if set to 1,
18202 absolute if set to 0. Default value is 0.
18203
18204 @item zoom
18205 Set percentage to zoom. A positive value will result in a zoom-in
18206 effect, a negative value in a zoom-out effect. Default value is 0 (no
18207 zoom).
18208
18209 @item optzoom
18210 Set optimal zooming to avoid borders.
18211
18212 Accepted values are:
18213 @table @samp
18214 @item 0
18215 disabled
18216 @item 1
18217 optimal static zoom value is determined (only very strong movements
18218 will lead to visible borders) (default)
18219 @item 2
18220 optimal adaptive zoom value is determined (no borders will be
18221 visible), see @option{zoomspeed}
18222 @end table
18223
18224 Note that the value given at zoom is added to the one calculated here.
18225
18226 @item zoomspeed
18227 Set percent to zoom maximally each frame (enabled when
18228 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
18229 0.25.
18230
18231 @item interpol
18232 Specify type of interpolation.
18233
18234 Available values are:
18235 @table @samp
18236 @item no
18237 no interpolation
18238 @item linear
18239 linear only horizontal
18240 @item bilinear
18241 linear in both directions (default)
18242 @item bicubic
18243 cubic in both directions (slow)
18244 @end table
18245
18246 @item tripod
18247 Enable virtual tripod mode if set to 1, which is equivalent to
18248 @code{relative=0:smoothing=0}. Default value is 0.
18249
18250 Use also @code{tripod} option of @ref{vidstabdetect}.
18251
18252 @item debug
18253 Increase log verbosity if set to 1. Also the detected global motions
18254 are written to the temporary file @file{global_motions.trf}. Default
18255 value is 0.
18256 @end table
18257
18258 @subsection Examples
18259
18260 @itemize
18261 @item
18262 Use @command{ffmpeg} for a typical stabilization with default values:
18263 @example
18264 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
18265 @end example
18266
18267 Note the use of the @ref{unsharp} filter which is always recommended.
18268
18269 @item
18270 Zoom in a bit more and load transform data from a given file:
18271 @example
18272 vidstabtransform=zoom=5:input="mytransforms.trf"
18273 @end example
18274
18275 @item
18276 Smoothen the video even more:
18277 @example
18278 vidstabtransform=smoothing=30
18279 @end example
18280 @end itemize
18281
18282 @section vflip
18283
18284 Flip the input video vertically.
18285
18286 For example, to vertically flip a video with @command{ffmpeg}:
18287 @example
18288 ffmpeg -i in.avi -vf "vflip" out.avi
18289 @end example
18290
18291 @section vfrdet
18292
18293 Detect variable frame rate video.
18294
18295 This filter tries to detect if the input is variable or constant frame rate.
18296
18297 At end it will output number of frames detected as having variable delta pts,
18298 and ones with constant delta pts.
18299 If there was frames with variable delta, than it will also show min and max delta
18300 encountered.
18301
18302 @section vibrance
18303
18304 Boost or alter saturation.
18305
18306 The filter accepts the following options:
18307 @table @option
18308 @item intensity
18309 Set strength of boost if positive value or strength of alter if negative value.
18310 Default is 0. Allowed range is from -2 to 2.
18311
18312 @item rbal
18313 Set the red balance. Default is 1. Allowed range is from -10 to 10.
18314
18315 @item gbal
18316 Set the green balance. Default is 1. Allowed range is from -10 to 10.
18317
18318 @item bbal
18319 Set the blue balance. Default is 1. Allowed range is from -10 to 10.
18320
18321 @item rlum
18322 Set the red luma coefficient.
18323
18324 @item glum
18325 Set the green luma coefficient.
18326
18327 @item blum
18328 Set the blue luma coefficient.
18329
18330 @item alternate
18331 If @code{intensity} is negative and this is set to 1, colors will change,
18332 otherwise colors will be less saturated, more towards gray.
18333 @end table
18334
18335 @anchor{vignette}
18336 @section vignette
18337
18338 Make or reverse a natural vignetting effect.
18339
18340 The filter accepts the following options:
18341
18342 @table @option
18343 @item angle, a
18344 Set lens angle expression as a number of radians.
18345
18346 The value is clipped in the @code{[0,PI/2]} range.
18347
18348 Default value: @code{"PI/5"}
18349
18350 @item x0
18351 @item y0
18352 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
18353 by default.
18354
18355 @item mode
18356 Set forward/backward mode.
18357
18358 Available modes are:
18359 @table @samp
18360 @item forward
18361 The larger the distance from the central point, the darker the image becomes.
18362
18363 @item backward
18364 The larger the distance from the central point, the brighter the image becomes.
18365 This can be used to reverse a vignette effect, though there is no automatic
18366 detection to extract the lens @option{angle} and other settings (yet). It can
18367 also be used to create a burning effect.
18368 @end table
18369
18370 Default value is @samp{forward}.
18371
18372 @item eval
18373 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
18374
18375 It accepts the following values:
18376 @table @samp
18377 @item init
18378 Evaluate expressions only once during the filter initialization.
18379
18380 @item frame
18381 Evaluate expressions for each incoming frame. This is way slower than the
18382 @samp{init} mode since it requires all the scalers to be re-computed, but it
18383 allows advanced dynamic expressions.
18384 @end table
18385
18386 Default value is @samp{init}.
18387
18388 @item dither
18389 Set dithering to reduce the circular banding effects. Default is @code{1}
18390 (enabled).
18391
18392 @item aspect
18393 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
18394 Setting this value to the SAR of the input will make a rectangular vignetting
18395 following the dimensions of the video.
18396
18397 Default is @code{1/1}.
18398 @end table
18399
18400 @subsection Expressions
18401
18402 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
18403 following parameters.
18404
18405 @table @option
18406 @item w
18407 @item h
18408 input width and height
18409
18410 @item n
18411 the number of input frame, starting from 0
18412
18413 @item pts
18414 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
18415 @var{TB} units, NAN if undefined
18416
18417 @item r
18418 frame rate of the input video, NAN if the input frame rate is unknown
18419
18420 @item t
18421 the PTS (Presentation TimeStamp) of the filtered video frame,
18422 expressed in seconds, NAN if undefined
18423
18424 @item tb
18425 time base of the input video
18426 @end table
18427
18428
18429 @subsection Examples
18430
18431 @itemize
18432 @item
18433 Apply simple strong vignetting effect:
18434 @example
18435 vignette=PI/4
18436 @end example
18437
18438 @item
18439 Make a flickering vignetting:
18440 @example
18441 vignette='PI/4+random(1)*PI/50':eval=frame
18442 @end example
18443
18444 @end itemize
18445
18446 @section vmafmotion
18447
18448 Obtain the average vmaf motion score of a video.
18449 It is one of the component filters of VMAF.
18450
18451 The obtained average motion score is printed through the logging system.
18452
18453 In the below example the input file @file{ref.mpg} is being processed and score
18454 is computed.
18455
18456 @example
18457 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
18458 @end example
18459
18460 @section vstack
18461 Stack input videos vertically.
18462
18463 All streams must be of same pixel format and of same width.
18464
18465 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
18466 to create same output.
18467
18468 The filter accept the following option:
18469
18470 @table @option
18471 @item inputs
18472 Set number of input streams. Default is 2.
18473
18474 @item shortest
18475 If set to 1, force the output to terminate when the shortest input
18476 terminates. Default value is 0.
18477 @end table
18478
18479 @section w3fdif
18480
18481 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
18482 Deinterlacing Filter").
18483
18484 Based on the process described by Martin Weston for BBC R&D, and
18485 implemented based on the de-interlace algorithm written by Jim
18486 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
18487 uses filter coefficients calculated by BBC R&D.
18488
18489 This filter use field-dominance information in frame to decide which
18490 of each pair of fields to place first in the output.
18491 If it gets it wrong use @ref{setfield} filter before @code{w3fdif} filter.
18492
18493 There are two sets of filter coefficients, so called "simple":
18494 and "complex". Which set of filter coefficients is used can
18495 be set by passing an optional parameter:
18496
18497 @table @option
18498 @item filter
18499 Set the interlacing filter coefficients. Accepts one of the following values:
18500
18501 @table @samp
18502 @item simple
18503 Simple filter coefficient set.
18504 @item complex
18505 More-complex filter coefficient set.
18506 @end table
18507 Default value is @samp{complex}.
18508
18509 @item deint
18510 Specify which frames to deinterlace. Accept one of the following values:
18511
18512 @table @samp
18513 @item all
18514 Deinterlace all frames,
18515 @item interlaced
18516 Only deinterlace frames marked as interlaced.
18517 @end table
18518
18519 Default value is @samp{all}.
18520 @end table
18521
18522 @section waveform
18523 Video waveform monitor.
18524
18525 The waveform monitor plots color component intensity. By default luminance
18526 only. Each column of the waveform corresponds to a column of pixels in the
18527 source video.
18528
18529 It accepts the following options:
18530
18531 @table @option
18532 @item mode, m
18533 Can be either @code{row}, or @code{column}. Default is @code{column}.
18534 In row mode, the graph on the left side represents color component value 0 and
18535 the right side represents value = 255. In column mode, the top side represents
18536 color component value = 0 and bottom side represents value = 255.
18537
18538 @item intensity, i
18539 Set intensity. Smaller values are useful to find out how many values of the same
18540 luminance are distributed across input rows/columns.
18541 Default value is @code{0.04}. Allowed range is [0, 1].
18542
18543 @item mirror, r
18544 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
18545 In mirrored mode, higher values will be represented on the left
18546 side for @code{row} mode and at the top for @code{column} mode. Default is
18547 @code{1} (mirrored).
18548
18549 @item display, d
18550 Set display mode.
18551 It accepts the following values:
18552 @table @samp
18553 @item overlay
18554 Presents information identical to that in the @code{parade}, except
18555 that the graphs representing color components are superimposed directly
18556 over one another.
18557
18558 This display mode makes it easier to spot relative differences or similarities
18559 in overlapping areas of the color components that are supposed to be identical,
18560 such as neutral whites, grays, or blacks.
18561
18562 @item stack
18563 Display separate graph for the color components side by side in
18564 @code{row} mode or one below the other in @code{column} mode.
18565
18566 @item parade
18567 Display separate graph for the color components side by side in
18568 @code{column} mode or one below the other in @code{row} mode.
18569
18570 Using this display mode makes it easy to spot color casts in the highlights
18571 and shadows of an image, by comparing the contours of the top and the bottom
18572 graphs of each waveform. Since whites, grays, and blacks are characterized
18573 by exactly equal amounts of red, green, and blue, neutral areas of the picture
18574 should display three waveforms of roughly equal width/height. If not, the
18575 correction is easy to perform by making level adjustments the three waveforms.
18576 @end table
18577 Default is @code{stack}.
18578
18579 @item components, c
18580 Set which color components to display. Default is 1, which means only luminance
18581 or red color component if input is in RGB colorspace. If is set for example to
18582 7 it will display all 3 (if) available color components.
18583
18584 @item envelope, e
18585 @table @samp
18586 @item none
18587 No envelope, this is default.
18588
18589 @item instant
18590 Instant envelope, minimum and maximum values presented in graph will be easily
18591 visible even with small @code{step} value.
18592
18593 @item peak
18594 Hold minimum and maximum values presented in graph across time. This way you
18595 can still spot out of range values without constantly looking at waveforms.
18596
18597 @item peak+instant
18598 Peak and instant envelope combined together.
18599 @end table
18600
18601 @item filter, f
18602 @table @samp
18603 @item lowpass
18604 No filtering, this is default.
18605
18606 @item flat
18607 Luma and chroma combined together.
18608
18609 @item aflat
18610 Similar as above, but shows difference between blue and red chroma.
18611
18612 @item xflat
18613 Similar as above, but use different colors.
18614
18615 @item chroma
18616 Displays only chroma.
18617
18618 @item color
18619 Displays actual color value on waveform.
18620
18621 @item acolor
18622 Similar as above, but with luma showing frequency of chroma values.
18623 @end table
18624
18625 @item graticule, g
18626 Set which graticule to display.
18627
18628 @table @samp
18629 @item none
18630 Do not display graticule.
18631
18632 @item green
18633 Display green graticule showing legal broadcast ranges.
18634
18635 @item orange
18636 Display orange graticule showing legal broadcast ranges.
18637 @end table
18638
18639 @item opacity, o
18640 Set graticule opacity.
18641
18642 @item flags, fl
18643 Set graticule flags.
18644
18645 @table @samp
18646 @item numbers
18647 Draw numbers above lines. By default enabled.
18648
18649 @item dots
18650 Draw dots instead of lines.
18651 @end table
18652
18653 @item scale, s
18654 Set scale used for displaying graticule.
18655
18656 @table @samp
18657 @item digital
18658 @item millivolts
18659 @item ire
18660 @end table
18661 Default is digital.
18662
18663 @item bgopacity, b
18664 Set background opacity.
18665 @end table
18666
18667 @section weave, doubleweave
18668
18669 The @code{weave} takes a field-based video input and join
18670 each two sequential fields into single frame, producing a new double
18671 height clip with half the frame rate and half the frame count.
18672
18673 The @code{doubleweave} works same as @code{weave} but without
18674 halving frame rate and frame count.
18675
18676 It accepts the following option:
18677
18678 @table @option
18679 @item first_field
18680 Set first field. Available values are:
18681
18682 @table @samp
18683 @item top, t
18684 Set the frame as top-field-first.
18685
18686 @item bottom, b
18687 Set the frame as bottom-field-first.
18688 @end table
18689 @end table
18690
18691 @subsection Examples
18692
18693 @itemize
18694 @item
18695 Interlace video using @ref{select} and @ref{separatefields} filter:
18696 @example
18697 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
18698 @end example
18699 @end itemize
18700
18701 @section xbr
18702 Apply the xBR high-quality magnification filter which is designed for pixel
18703 art. It follows a set of edge-detection rules, see
18704 @url{https://forums.libretro.com/t/xbr-algorithm-tutorial/123}.
18705
18706 It accepts the following option:
18707
18708 @table @option
18709 @item n
18710 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
18711 @code{3xBR} and @code{4} for @code{4xBR}.
18712 Default is @code{3}.
18713 @end table
18714
18715 @section xmedian
18716 Pick median pixels from several input videos.
18717
18718 The filter accept the following options:
18719
18720 @table @option
18721 @item inputs
18722 Set number of inputs.
18723 Default is 3. Allowed range is from 3 to 255.
18724 If number of inputs is even number, than result will be mean value between two median values.
18725
18726 @item planes
18727 Set which planes to filter. Default value is @code{15}, by which all planes are processed.
18728 @end table
18729
18730 @section xstack
18731 Stack video inputs into custom layout.
18732
18733 All streams must be of same pixel format.
18734
18735 The filter accept the following option:
18736
18737 @table @option
18738 @item inputs
18739 Set number of input streams. Default is 2.
18740
18741 @item layout
18742 Specify layout of inputs.
18743 This option requires the desired layout configuration to be explicitly set by the user.
18744 This sets position of each video input in output. Each input
18745 is separated by '|'.
18746 The first number represents the column, and the second number represents the row.
18747 Numbers start at 0 and are separated by '_'. Optionally one can use wX and hX,
18748 where X is video input from which to take width or height.
18749 Multiple values can be used when separated by '+'. In such
18750 case values are summed together.
18751
18752 For 2 inputs, a default layout of @code{0_0|w0_0} is set. In all other cases,
18753 a layout must be set by the user.
18754
18755 @item shortest
18756 If set to 1, force the output to terminate when the shortest input
18757 terminates. Default value is 0.
18758 @end table
18759
18760 @subsection Examples
18761
18762 @itemize
18763 @item
18764 Display 4 inputs into 2x2 grid,
18765 note that if inputs are of different sizes unused gaps might appear,
18766 as not all of output video is used.
18767 @example
18768 xstack=inputs=4:layout=0_0|0_h0|w0_0|w0_h0
18769 @end example
18770
18771 @item
18772 Display 4 inputs into 1x4 grid,
18773 note that if inputs are of different sizes unused gaps might appear,
18774 as not all of output video is used.
18775 @example
18776 xstack=inputs=4:layout=0_0|0_h0|0_h0+h1|0_h0+h1+h2
18777 @end example
18778
18779 @item
18780 Display 9 inputs into 3x3 grid,
18781 note that if inputs are of different sizes unused gaps might appear,
18782 as not all of output video is used.
18783 @example
18784 xstack=inputs=9:layout=w3_0|w3_h0+h2|w3_h0|0_h4|0_0|w3+w1_0|0_h1+h2|w3+w1_h0|w3+w1_h1+h2
18785 @end example
18786 @end itemize
18787
18788 @anchor{yadif}
18789 @section yadif
18790
18791 Deinterlace the input video ("yadif" means "yet another deinterlacing
18792 filter").
18793
18794 It accepts the following parameters:
18795
18796
18797 @table @option
18798
18799 @item mode
18800 The interlacing mode to adopt. It accepts one of the following values:
18801
18802 @table @option
18803 @item 0, send_frame
18804 Output one frame for each frame.
18805 @item 1, send_field
18806 Output one frame for each field.
18807 @item 2, send_frame_nospatial
18808 Like @code{send_frame}, but it skips the spatial interlacing check.
18809 @item 3, send_field_nospatial
18810 Like @code{send_field}, but it skips the spatial interlacing check.
18811 @end table
18812
18813 The default value is @code{send_frame}.
18814
18815 @item parity
18816 The picture field parity assumed for the input interlaced video. It accepts one
18817 of the following values:
18818
18819 @table @option
18820 @item 0, tff
18821 Assume the top field is first.
18822 @item 1, bff
18823 Assume the bottom field is first.
18824 @item -1, auto
18825 Enable automatic detection of field parity.
18826 @end table
18827
18828 The default value is @code{auto}.
18829 If the interlacing is unknown or the decoder does not export this information,
18830 top field first will be assumed.
18831
18832 @item deint
18833 Specify which frames to deinterlace. Accept one of the following
18834 values:
18835
18836 @table @option
18837 @item 0, all
18838 Deinterlace all frames.
18839 @item 1, interlaced
18840 Only deinterlace frames marked as interlaced.
18841 @end table
18842
18843 The default value is @code{all}.
18844 @end table
18845
18846 @section yadif_cuda
18847
18848 Deinterlace the input video using the @ref{yadif} algorithm, but implemented
18849 in CUDA so that it can work as part of a GPU accelerated pipeline with nvdec
18850 and/or nvenc.
18851
18852 It accepts the following parameters:
18853
18854
18855 @table @option
18856
18857 @item mode
18858 The interlacing mode to adopt. It accepts one of the following values:
18859
18860 @table @option
18861 @item 0, send_frame
18862 Output one frame for each frame.
18863 @item 1, send_field
18864 Output one frame for each field.
18865 @item 2, send_frame_nospatial
18866 Like @code{send_frame}, but it skips the spatial interlacing check.
18867 @item 3, send_field_nospatial
18868 Like @code{send_field}, but it skips the spatial interlacing check.
18869 @end table
18870
18871 The default value is @code{send_frame}.
18872
18873 @item parity
18874 The picture field parity assumed for the input interlaced video. It accepts one
18875 of the following values:
18876
18877 @table @option
18878 @item 0, tff
18879 Assume the top field is first.
18880 @item 1, bff
18881 Assume the bottom field is first.
18882 @item -1, auto
18883 Enable automatic detection of field parity.
18884 @end table
18885
18886 The default value is @code{auto}.
18887 If the interlacing is unknown or the decoder does not export this information,
18888 top field first will be assumed.
18889
18890 @item deint
18891 Specify which frames to deinterlace. Accept one of the following
18892 values:
18893
18894 @table @option
18895 @item 0, all
18896 Deinterlace all frames.
18897 @item 1, interlaced
18898 Only deinterlace frames marked as interlaced.
18899 @end table
18900
18901 The default value is @code{all}.
18902 @end table
18903
18904 @section zoompan
18905
18906 Apply Zoom & Pan effect.
18907
18908 This filter accepts the following options:
18909
18910 @table @option
18911 @item zoom, z
18912 Set the zoom expression. Range is 1-10. Default is 1.
18913
18914 @item x
18915 @item y
18916 Set the x and y expression. Default is 0.
18917
18918 @item d
18919 Set the duration expression in number of frames.
18920 This sets for how many number of frames effect will last for
18921 single input image.
18922
18923 @item s
18924 Set the output image size, default is 'hd720'.
18925
18926 @item fps
18927 Set the output frame rate, default is '25'.
18928 @end table
18929
18930 Each expression can contain the following constants:
18931
18932 @table @option
18933 @item in_w, iw
18934 Input width.
18935
18936 @item in_h, ih
18937 Input height.
18938
18939 @item out_w, ow
18940 Output width.
18941
18942 @item out_h, oh
18943 Output height.
18944
18945 @item in
18946 Input frame count.
18947
18948 @item on
18949 Output frame count.
18950
18951 @item x
18952 @item y
18953 Last calculated 'x' and 'y' position from 'x' and 'y' expression
18954 for current input frame.
18955
18956 @item px
18957 @item py
18958 'x' and 'y' of last output frame of previous input frame or 0 when there was
18959 not yet such frame (first input frame).
18960
18961 @item zoom
18962 Last calculated zoom from 'z' expression for current input frame.
18963
18964 @item pzoom
18965 Last calculated zoom of last output frame of previous input frame.
18966
18967 @item duration
18968 Number of output frames for current input frame. Calculated from 'd' expression
18969 for each input frame.
18970
18971 @item pduration
18972 number of output frames created for previous input frame
18973
18974 @item a
18975 Rational number: input width / input height
18976
18977 @item sar
18978 sample aspect ratio
18979
18980 @item dar
18981 display aspect ratio
18982
18983 @end table
18984
18985 @subsection Examples
18986
18987 @itemize
18988 @item
18989 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
18990 @example
18991 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
18992 @end example
18993
18994 @item
18995 Zoom-in up to 1.5 and pan always at center of picture:
18996 @example
18997 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
18998 @end example
18999
19000 @item
19001 Same as above but without pausing:
19002 @example
19003 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
19004 @end example
19005 @end itemize
19006
19007 @anchor{zscale}
19008 @section zscale
19009 Scale (resize) the input video, using the z.lib library:
19010 @url{https://github.com/sekrit-twc/zimg}. To enable compilation of this
19011 filter, you need to configure FFmpeg with @code{--enable-libzimg}.
19012
19013 The zscale filter forces the output display aspect ratio to be the same
19014 as the input, by changing the output sample aspect ratio.
19015
19016 If the input image format is different from the format requested by
19017 the next filter, the zscale filter will convert the input to the
19018 requested format.
19019
19020 @subsection Options
19021 The filter accepts the following options.
19022
19023 @table @option
19024 @item width, w
19025 @item height, h
19026 Set the output video dimension expression. Default value is the input
19027 dimension.
19028
19029 If the @var{width} or @var{w} value is 0, the input width is used for
19030 the output. If the @var{height} or @var{h} value is 0, the input height
19031 is used for the output.
19032
19033 If one and only one of the values is -n with n >= 1, the zscale filter
19034 will use a value that maintains the aspect ratio of the input image,
19035 calculated from the other specified dimension. After that it will,
19036 however, make sure that the calculated dimension is divisible by n and
19037 adjust the value if necessary.
19038
19039 If both values are -n with n >= 1, the behavior will be identical to
19040 both values being set to 0 as previously detailed.
19041
19042 See below for the list of accepted constants for use in the dimension
19043 expression.
19044
19045 @item size, s
19046 Set the video size. For the syntax of this option, check the
19047 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19048
19049 @item dither, d
19050 Set the dither type.
19051
19052 Possible values are:
19053 @table @var
19054 @item none
19055 @item ordered
19056 @item random
19057 @item error_diffusion
19058 @end table
19059
19060 Default is none.
19061
19062 @item filter, f
19063 Set the resize filter type.
19064
19065 Possible values are:
19066 @table @var
19067 @item point
19068 @item bilinear
19069 @item bicubic
19070 @item spline16
19071 @item spline36
19072 @item lanczos
19073 @end table
19074
19075 Default is bilinear.
19076
19077 @item range, r
19078 Set the color range.
19079
19080 Possible values are:
19081 @table @var
19082 @item input
19083 @item limited
19084 @item full
19085 @end table
19086
19087 Default is same as input.
19088
19089 @item primaries, p
19090 Set the color primaries.
19091
19092 Possible values are:
19093 @table @var
19094 @item input
19095 @item 709
19096 @item unspecified
19097 @item 170m
19098 @item 240m
19099 @item 2020
19100 @end table
19101
19102 Default is same as input.
19103
19104 @item transfer, t
19105 Set the transfer characteristics.
19106
19107 Possible values are:
19108 @table @var
19109 @item input
19110 @item 709
19111 @item unspecified
19112 @item 601
19113 @item linear
19114 @item 2020_10
19115 @item 2020_12
19116 @item smpte2084
19117 @item iec61966-2-1
19118 @item arib-std-b67
19119 @end table
19120
19121 Default is same as input.
19122
19123 @item matrix, m
19124 Set the colorspace matrix.
19125
19126 Possible value are:
19127 @table @var
19128 @item input
19129 @item 709
19130 @item unspecified
19131 @item 470bg
19132 @item 170m
19133 @item 2020_ncl
19134 @item 2020_cl
19135 @end table
19136
19137 Default is same as input.
19138
19139 @item rangein, rin
19140 Set the input color range.
19141
19142 Possible values are:
19143 @table @var
19144 @item input
19145 @item limited
19146 @item full
19147 @end table
19148
19149 Default is same as input.
19150
19151 @item primariesin, pin
19152 Set the input color primaries.
19153
19154 Possible values are:
19155 @table @var
19156 @item input
19157 @item 709
19158 @item unspecified
19159 @item 170m
19160 @item 240m
19161 @item 2020
19162 @end table
19163
19164 Default is same as input.
19165
19166 @item transferin, tin
19167 Set the input transfer characteristics.
19168
19169 Possible values are:
19170 @table @var
19171 @item input
19172 @item 709
19173 @item unspecified
19174 @item 601
19175 @item linear
19176 @item 2020_10
19177 @item 2020_12
19178 @end table
19179
19180 Default is same as input.
19181
19182 @item matrixin, min
19183 Set the input colorspace matrix.
19184
19185 Possible value are:
19186 @table @var
19187 @item input
19188 @item 709
19189 @item unspecified
19190 @item 470bg
19191 @item 170m
19192 @item 2020_ncl
19193 @item 2020_cl
19194 @end table
19195
19196 @item chromal, c
19197 Set the output chroma location.
19198
19199 Possible values are:
19200 @table @var
19201 @item input
19202 @item left
19203 @item center
19204 @item topleft
19205 @item top
19206 @item bottomleft
19207 @item bottom
19208 @end table
19209
19210 @item chromalin, cin
19211 Set the input chroma location.
19212
19213 Possible values are:
19214 @table @var
19215 @item input
19216 @item left
19217 @item center
19218 @item topleft
19219 @item top
19220 @item bottomleft
19221 @item bottom
19222 @end table
19223
19224 @item npl
19225 Set the nominal peak luminance.
19226 @end table
19227
19228 The values of the @option{w} and @option{h} options are expressions
19229 containing the following constants:
19230
19231 @table @var
19232 @item in_w
19233 @item in_h
19234 The input width and height
19235
19236 @item iw
19237 @item ih
19238 These are the same as @var{in_w} and @var{in_h}.
19239
19240 @item out_w
19241 @item out_h
19242 The output (scaled) width and height
19243
19244 @item ow
19245 @item oh
19246 These are the same as @var{out_w} and @var{out_h}
19247
19248 @item a
19249 The same as @var{iw} / @var{ih}
19250
19251 @item sar
19252 input sample aspect ratio
19253
19254 @item dar
19255 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
19256
19257 @item hsub
19258 @item vsub
19259 horizontal and vertical input chroma subsample values. For example for the
19260 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19261
19262 @item ohsub
19263 @item ovsub
19264 horizontal and vertical output chroma subsample values. For example for the
19265 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
19266 @end table
19267
19268 @table @option
19269 @end table
19270
19271 @c man end VIDEO FILTERS
19272
19273 @chapter OpenCL Video Filters
19274 @c man begin OPENCL VIDEO FILTERS
19275
19276 Below is a description of the currently available OpenCL video filters.
19277
19278 To enable compilation of these filters you need to configure FFmpeg with
19279 @code{--enable-opencl}.
19280
19281 Running OpenCL filters requires you to initialize a hardware device and to pass that device to all filters in any filter graph.
19282 @table @option
19283
19284 @item -init_hw_device opencl[=@var{name}][:@var{device}[,@var{key=value}...]]
19285 Initialise a new hardware device of type @var{opencl} called @var{name}, using the
19286 given device parameters.
19287
19288 @item -filter_hw_device @var{name}
19289 Pass the hardware device called @var{name} to all filters in any filter graph.
19290
19291 @end table
19292
19293 For more detailed information see @url{https://www.ffmpeg.org/ffmpeg.html#Advanced-Video-options}
19294
19295 @itemize
19296 @item
19297 Example of choosing the first device on the second platform and running avgblur_opencl filter with default parameters on it.
19298 @example
19299 -init_hw_device opencl=gpu:1.0 -filter_hw_device gpu -i INPUT -vf "hwupload, avgblur_opencl, hwdownload" OUTPUT
19300 @end example
19301 @end itemize
19302
19303 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.
19304
19305 @section avgblur_opencl
19306
19307 Apply average blur filter.
19308
19309 The filter accepts the following options:
19310
19311 @table @option
19312 @item sizeX
19313 Set horizontal radius size.
19314 Range is @code{[1, 1024]} and default value is @code{1}.
19315
19316 @item planes
19317 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19318
19319 @item sizeY
19320 Set vertical radius size. Range is @code{[1, 1024]} and default value is @code{0}. If zero, @code{sizeX} value will be used.
19321 @end table
19322
19323 @subsection Example
19324
19325 @itemize
19326 @item
19327 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.
19328 @example
19329 -i INPUT -vf "hwupload, avgblur_opencl=3, hwdownload" OUTPUT
19330 @end example
19331 @end itemize
19332
19333 @section boxblur_opencl
19334
19335 Apply a boxblur algorithm to the input video.
19336
19337 It accepts the following parameters:
19338
19339 @table @option
19340
19341 @item luma_radius, lr
19342 @item luma_power, lp
19343 @item chroma_radius, cr
19344 @item chroma_power, cp
19345 @item alpha_radius, ar
19346 @item alpha_power, ap
19347
19348 @end table
19349
19350 A description of the accepted options follows.
19351
19352 @table @option
19353 @item luma_radius, lr
19354 @item chroma_radius, cr
19355 @item alpha_radius, ar
19356 Set an expression for the box radius in pixels used for blurring the
19357 corresponding input plane.
19358
19359 The radius value must be a non-negative number, and must not be
19360 greater than the value of the expression @code{min(w,h)/2} for the
19361 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
19362 planes.
19363
19364 Default value for @option{luma_radius} is "2". If not specified,
19365 @option{chroma_radius} and @option{alpha_radius} default to the
19366 corresponding value set for @option{luma_radius}.
19367
19368 The expressions can contain the following constants:
19369 @table @option
19370 @item w
19371 @item h
19372 The input width and height in pixels.
19373
19374 @item cw
19375 @item ch
19376 The input chroma image width and height in pixels.
19377
19378 @item hsub
19379 @item vsub
19380 The horizontal and vertical chroma subsample values. For example, for the
19381 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
19382 @end table
19383
19384 @item luma_power, lp
19385 @item chroma_power, cp
19386 @item alpha_power, ap
19387 Specify how many times the boxblur filter is applied to the
19388 corresponding plane.
19389
19390 Default value for @option{luma_power} is 2. If not specified,
19391 @option{chroma_power} and @option{alpha_power} default to the
19392 corresponding value set for @option{luma_power}.
19393
19394 A value of 0 will disable the effect.
19395 @end table
19396
19397 @subsection Examples
19398
19399 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.
19400
19401 @itemize
19402 @item
19403 Apply a boxblur filter with the luma, chroma, and alpha radius
19404 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.
19405 @example
19406 -i INPUT -vf "hwupload, boxblur_opencl=luma_radius=2:luma_power=3, hwdownload" OUTPUT
19407 -i INPUT -vf "hwupload, boxblur_opencl=2:3, hwdownload" OUTPUT
19408 @end example
19409
19410 @item
19411 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.
19412
19413 For the luma plane, a 2x2 box radius will be run once.
19414
19415 For the chroma plane, a 4x4 box radius will be run 5 times.
19416
19417 For the alpha plane, a 3x3 box radius will be run 7 times.
19418 @example
19419 -i INPUT -vf "hwupload, boxblur_opencl=2:1:4:5:3:7, hwdownload" OUTPUT
19420 @end example
19421 @end itemize
19422
19423 @section convolution_opencl
19424
19425 Apply convolution of 3x3, 5x5, 7x7 matrix.
19426
19427 The filter accepts the following options:
19428
19429 @table @option
19430 @item 0m
19431 @item 1m
19432 @item 2m
19433 @item 3m
19434 Set matrix for each plane.
19435 Matrix is sequence of 9, 25 or 49 signed numbers.
19436 Default value for each plane is @code{0 0 0 0 1 0 0 0 0}.
19437
19438 @item 0rdiv
19439 @item 1rdiv
19440 @item 2rdiv
19441 @item 3rdiv
19442 Set multiplier for calculated value for each plane.
19443 If unset or 0, it will be sum of all matrix elements.
19444 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{1.0}.
19445
19446 @item 0bias
19447 @item 1bias
19448 @item 2bias
19449 @item 3bias
19450 Set bias for each plane. This value is added to the result of the multiplication.
19451 Useful for making the overall image brighter or darker.
19452 The option value must be a float number greater or equal to @code{0.0}. Default value is @code{0.0}.
19453
19454 @end table
19455
19456 @subsection Examples
19457
19458 @itemize
19459 @item
19460 Apply sharpen:
19461 @example
19462 -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
19463 @end example
19464
19465 @item
19466 Apply blur:
19467 @example
19468 -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
19469 @end example
19470
19471 @item
19472 Apply edge enhance:
19473 @example
19474 -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
19475 @end example
19476
19477 @item
19478 Apply edge detect:
19479 @example
19480 -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
19481 @end example
19482
19483 @item
19484 Apply laplacian edge detector which includes diagonals:
19485 @example
19486 -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
19487 @end example
19488
19489 @item
19490 Apply emboss:
19491 @example
19492 -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
19493 @end example
19494 @end itemize
19495
19496 @section dilation_opencl
19497
19498 Apply dilation effect to the video.
19499
19500 This filter replaces the pixel by the local(3x3) maximum.
19501
19502 It accepts the following options:
19503
19504 @table @option
19505 @item threshold0
19506 @item threshold1
19507 @item threshold2
19508 @item threshold3
19509 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19510 If @code{0}, plane will remain unchanged.
19511
19512 @item coordinates
19513 Flag which specifies the pixel to refer to.
19514 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19515
19516 Flags to local 3x3 coordinates region centered on @code{x}:
19517
19518     1 2 3
19519
19520     4 x 5
19521
19522     6 7 8
19523 @end table
19524
19525 @subsection Example
19526
19527 @itemize
19528 @item
19529 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.
19530 @example
19531 -i INPUT -vf "hwupload, dilation_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19532 @end example
19533 @end itemize
19534
19535 @section erosion_opencl
19536
19537 Apply erosion effect to the video.
19538
19539 This filter replaces the pixel by the local(3x3) minimum.
19540
19541 It accepts the following options:
19542
19543 @table @option
19544 @item threshold0
19545 @item threshold1
19546 @item threshold2
19547 @item threshold3
19548 Limit the maximum change for each plane. Range is @code{[0, 65535]} and default value is @code{65535}.
19549 If @code{0}, plane will remain unchanged.
19550
19551 @item coordinates
19552 Flag which specifies the pixel to refer to.
19553 Range is @code{[0, 255]} and default value is @code{255}, i.e. all eight pixels are used.
19554
19555 Flags to local 3x3 coordinates region centered on @code{x}:
19556
19557     1 2 3
19558
19559     4 x 5
19560
19561     6 7 8
19562 @end table
19563
19564 @subsection Example
19565
19566 @itemize
19567 @item
19568 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.
19569 @example
19570 -i INPUT -vf "hwupload, erosion_opencl=30:40:50:coordinates=231, hwdownload" OUTPUT
19571 @end example
19572 @end itemize
19573
19574 @section colorkey_opencl
19575 RGB colorspace color keying.
19576
19577 The filter accepts the following options:
19578
19579 @table @option
19580 @item color
19581 The color which will be replaced with transparency.
19582
19583 @item similarity
19584 Similarity percentage with the key color.
19585
19586 0.01 matches only the exact key color, while 1.0 matches everything.
19587
19588 @item blend
19589 Blend percentage.
19590
19591 0.0 makes pixels either fully transparent, or not transparent at all.
19592
19593 Higher values result in semi-transparent pixels, with a higher transparency
19594 the more similar the pixels color is to the key color.
19595 @end table
19596
19597 @subsection Examples
19598
19599 @itemize
19600 @item
19601 Make every semi-green pixel in the input transparent with some slight blending:
19602 @example
19603 -i INPUT -vf "hwupload, colorkey_opencl=green:0.3:0.1, hwdownload" OUTPUT
19604 @end example
19605 @end itemize
19606
19607 @section nlmeans_opencl
19608
19609 Non-local Means denoise filter through OpenCL, this filter accepts same options as @ref{nlmeans}.
19610
19611 @section overlay_opencl
19612
19613 Overlay one video on top of another.
19614
19615 It takes two inputs and has one output. The first input is the "main" video on which the second input is overlaid.
19616 This filter requires same memory layout for all the inputs. So, format conversion may be needed.
19617
19618 The filter accepts the following options:
19619
19620 @table @option
19621
19622 @item x
19623 Set the x coordinate of the overlaid video on the main video.
19624 Default value is @code{0}.
19625
19626 @item y
19627 Set the x coordinate of the overlaid video on the main video.
19628 Default value is @code{0}.
19629
19630 @end table
19631
19632 @subsection Examples
19633
19634 @itemize
19635 @item
19636 Overlay an image LOGO at the top-left corner of the INPUT video. Both inputs are yuv420p format.
19637 @example
19638 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuv420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19639 @end example
19640 @item
19641 The inputs have same memory layout for color channels , the overlay has additional alpha plane, like INPUT is yuv420p, and the LOGO is yuva420p.
19642 @example
19643 -i INPUT -i LOGO -filter_complex "[0:v]hwupload[a], [1:v]format=yuva420p, hwupload[b], [a][b]overlay_opencl, hwdownload" OUTPUT
19644 @end example
19645
19646 @end itemize
19647
19648 @section prewitt_opencl
19649
19650 Apply the Prewitt operator (@url{https://en.wikipedia.org/wiki/Prewitt_operator}) to input video stream.
19651
19652 The filter accepts the following option:
19653
19654 @table @option
19655 @item planes
19656 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19657
19658 @item scale
19659 Set value which will be multiplied with filtered result.
19660 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19661
19662 @item delta
19663 Set value which will be added to filtered result.
19664 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19665 @end table
19666
19667 @subsection Example
19668
19669 @itemize
19670 @item
19671 Apply the Prewitt operator with scale set to 2 and delta set to 10.
19672 @example
19673 -i INPUT -vf "hwupload, prewitt_opencl=scale=2:delta=10, hwdownload" OUTPUT
19674 @end example
19675 @end itemize
19676
19677 @section roberts_opencl
19678 Apply the Roberts cross operator (@url{https://en.wikipedia.org/wiki/Roberts_cross}) to input video stream.
19679
19680 The filter accepts the following option:
19681
19682 @table @option
19683 @item planes
19684 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19685
19686 @item scale
19687 Set value which will be multiplied with filtered result.
19688 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19689
19690 @item delta
19691 Set value which will be added to filtered result.
19692 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19693 @end table
19694
19695 @subsection Example
19696
19697 @itemize
19698 @item
19699 Apply the Roberts cross operator with scale set to 2 and delta set to 10
19700 @example
19701 -i INPUT -vf "hwupload, roberts_opencl=scale=2:delta=10, hwdownload" OUTPUT
19702 @end example
19703 @end itemize
19704
19705 @section sobel_opencl
19706
19707 Apply the Sobel operator (@url{https://en.wikipedia.org/wiki/Sobel_operator}) to input video stream.
19708
19709 The filter accepts the following option:
19710
19711 @table @option
19712 @item planes
19713 Set which planes to filter. Default value is @code{0xf}, by which all planes are processed.
19714
19715 @item scale
19716 Set value which will be multiplied with filtered result.
19717 Range is @code{[0.0, 65535]} and default value is @code{1.0}.
19718
19719 @item delta
19720 Set value which will be added to filtered result.
19721 Range is @code{[-65535, 65535]} and default value is @code{0.0}.
19722 @end table
19723
19724 @subsection Example
19725
19726 @itemize
19727 @item
19728 Apply sobel operator with scale set to 2 and delta set to 10
19729 @example
19730 -i INPUT -vf "hwupload, sobel_opencl=scale=2:delta=10, hwdownload" OUTPUT
19731 @end example
19732 @end itemize
19733
19734 @section tonemap_opencl
19735
19736 Perform HDR(PQ/HLG) to SDR conversion with tone-mapping.
19737
19738 It accepts the following parameters:
19739
19740 @table @option
19741 @item tonemap
19742 Specify the tone-mapping operator to be used. Same as tonemap option in @ref{tonemap}.
19743
19744 @item param
19745 Tune the tone mapping algorithm. same as param option in @ref{tonemap}.
19746
19747 @item desat
19748 Apply desaturation for highlights that exceed this level of brightness. The
19749 higher the parameter, the more color information will be preserved. This
19750 setting helps prevent unnaturally blown-out colors for super-highlights, by
19751 (smoothly) turning into white instead. This makes images feel more natural,
19752 at the cost of reducing information about out-of-range colors.
19753
19754 The default value is 0.5, and the algorithm here is a little different from
19755 the cpu version tonemap currently. A setting of 0.0 disables this option.
19756
19757 @item threshold
19758 The tonemapping algorithm parameters is fine-tuned per each scene. And a threshold
19759 is used to detect whether the scene has changed or not. If the distance between
19760 the current frame average brightness and the current running average exceeds
19761 a threshold value, we would re-calculate scene average and peak brightness.
19762 The default value is 0.2.
19763
19764 @item format
19765 Specify the output pixel format.
19766
19767 Currently supported formats are:
19768 @table @var
19769 @item p010
19770 @item nv12
19771 @end table
19772
19773 @item range, r
19774 Set the output color range.
19775
19776 Possible values are:
19777 @table @var
19778 @item tv/mpeg
19779 @item pc/jpeg
19780 @end table
19781
19782 Default is same as input.
19783
19784 @item primaries, p
19785 Set the output color primaries.
19786
19787 Possible values are:
19788 @table @var
19789 @item bt709
19790 @item bt2020
19791 @end table
19792
19793 Default is same as input.
19794
19795 @item transfer, t
19796 Set the output transfer characteristics.
19797
19798 Possible values are:
19799 @table @var
19800 @item bt709
19801 @item bt2020
19802 @end table
19803
19804 Default is bt709.
19805
19806 @item matrix, m
19807 Set the output colorspace matrix.
19808
19809 Possible value are:
19810 @table @var
19811 @item bt709
19812 @item bt2020
19813 @end table
19814
19815 Default is same as input.
19816
19817 @end table
19818
19819 @subsection Example
19820
19821 @itemize
19822 @item
19823 Convert HDR(PQ/HLG) video to bt2020-transfer-characteristic p010 format using linear operator.
19824 @example
19825 -i INPUT -vf "format=p010,hwupload,tonemap_opencl=t=bt2020:tonemap=linear:format=p010,hwdownload,format=p010" OUTPUT
19826 @end example
19827 @end itemize
19828
19829 @section unsharp_opencl
19830
19831 Sharpen or blur the input video.
19832
19833 It accepts the following parameters:
19834
19835 @table @option
19836 @item luma_msize_x, lx
19837 Set the luma matrix horizontal size.
19838 Range is @code{[1, 23]} and default value is @code{5}.
19839
19840 @item luma_msize_y, ly
19841 Set the luma matrix vertical size.
19842 Range is @code{[1, 23]} and default value is @code{5}.
19843
19844 @item luma_amount, la
19845 Set the luma effect strength.
19846 Range is @code{[-10, 10]} and default value is @code{1.0}.
19847
19848 Negative values will blur the input video, while positive values will
19849 sharpen it, a value of zero will disable the effect.
19850
19851 @item chroma_msize_x, cx
19852 Set the chroma matrix horizontal size.
19853 Range is @code{[1, 23]} and default value is @code{5}.
19854
19855 @item chroma_msize_y, cy
19856 Set the chroma matrix vertical size.
19857 Range is @code{[1, 23]} and default value is @code{5}.
19858
19859 @item chroma_amount, ca
19860 Set the chroma effect strength.
19861 Range is @code{[-10, 10]} and default value is @code{0.0}.
19862
19863 Negative values will blur the input video, while positive values will
19864 sharpen it, a value of zero will disable the effect.
19865
19866 @end table
19867
19868 All parameters are optional and default to the equivalent of the
19869 string '5:5:1.0:5:5:0.0'.
19870
19871 @subsection Examples
19872
19873 @itemize
19874 @item
19875 Apply strong luma sharpen effect:
19876 @example
19877 -i INPUT -vf "hwupload, unsharp_opencl=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5, hwdownload" OUTPUT
19878 @end example
19879
19880 @item
19881 Apply a strong blur of both luma and chroma parameters:
19882 @example
19883 -i INPUT -vf "hwupload, unsharp_opencl=7:7:-2:7:7:-2, hwdownload" OUTPUT
19884 @end example
19885 @end itemize
19886
19887 @c man end OPENCL VIDEO FILTERS
19888
19889 @chapter Video Sources
19890 @c man begin VIDEO SOURCES
19891
19892 Below is a description of the currently available video sources.
19893
19894 @section buffer
19895
19896 Buffer video frames, and make them available to the filter chain.
19897
19898 This source is mainly intended for a programmatic use, in particular
19899 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
19900
19901 It accepts the following parameters:
19902
19903 @table @option
19904
19905 @item video_size
19906 Specify the size (width and height) of the buffered video frames. For the
19907 syntax of this option, check the
19908 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19909
19910 @item width
19911 The input video width.
19912
19913 @item height
19914 The input video height.
19915
19916 @item pix_fmt
19917 A string representing the pixel format of the buffered video frames.
19918 It may be a number corresponding to a pixel format, or a pixel format
19919 name.
19920
19921 @item time_base
19922 Specify the timebase assumed by the timestamps of the buffered frames.
19923
19924 @item frame_rate
19925 Specify the frame rate expected for the video stream.
19926
19927 @item pixel_aspect, sar
19928 The sample (pixel) aspect ratio of the input video.
19929
19930 @item sws_param
19931 Specify the optional parameters to be used for the scale filter which
19932 is automatically inserted when an input change is detected in the
19933 input size or format.
19934
19935 @item hw_frames_ctx
19936 When using a hardware pixel format, this should be a reference to an
19937 AVHWFramesContext describing input frames.
19938 @end table
19939
19940 For example:
19941 @example
19942 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
19943 @end example
19944
19945 will instruct the source to accept video frames with size 320x240 and
19946 with format "yuv410p", assuming 1/24 as the timestamps timebase and
19947 square pixels (1:1 sample aspect ratio).
19948 Since the pixel format with name "yuv410p" corresponds to the number 6
19949 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
19950 this example corresponds to:
19951 @example
19952 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
19953 @end example
19954
19955 Alternatively, the options can be specified as a flat string, but this
19956 syntax is deprecated:
19957
19958 @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}[:@var{sws_param}]
19959
19960 @section cellauto
19961
19962 Create a pattern generated by an elementary cellular automaton.
19963
19964 The initial state of the cellular automaton can be defined through the
19965 @option{filename} and @option{pattern} options. If such options are
19966 not specified an initial state is created randomly.
19967
19968 At each new frame a new row in the video is filled with the result of
19969 the cellular automaton next generation. The behavior when the whole
19970 frame is filled is defined by the @option{scroll} option.
19971
19972 This source accepts the following options:
19973
19974 @table @option
19975 @item filename, f
19976 Read the initial cellular automaton state, i.e. the starting row, from
19977 the specified file.
19978 In the file, each non-whitespace character is considered an alive
19979 cell, a newline will terminate the row, and further characters in the
19980 file will be ignored.
19981
19982 @item pattern, p
19983 Read the initial cellular automaton state, i.e. the starting row, from
19984 the specified string.
19985
19986 Each non-whitespace character in the string is considered an alive
19987 cell, a newline will terminate the row, and further characters in the
19988 string will be ignored.
19989
19990 @item rate, r
19991 Set the video rate, that is the number of frames generated per second.
19992 Default is 25.
19993
19994 @item random_fill_ratio, ratio
19995 Set the random fill ratio for the initial cellular automaton row. It
19996 is a floating point number value ranging from 0 to 1, defaults to
19997 1/PHI.
19998
19999 This option is ignored when a file or a pattern is specified.
20000
20001 @item random_seed, seed
20002 Set the seed for filling randomly the initial row, must be an integer
20003 included between 0 and UINT32_MAX. If not specified, or if explicitly
20004 set to -1, the filter will try to use a good random seed on a best
20005 effort basis.
20006
20007 @item rule
20008 Set the cellular automaton rule, it is a number ranging from 0 to 255.
20009 Default value is 110.
20010
20011 @item size, s
20012 Set the size of the output video. For the syntax of this option, check the
20013 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20014
20015 If @option{filename} or @option{pattern} is specified, the size is set
20016 by default to the width of the specified initial state row, and the
20017 height is set to @var{width} * PHI.
20018
20019 If @option{size} is set, it must contain the width of the specified
20020 pattern string, and the specified pattern will be centered in the
20021 larger row.
20022
20023 If a filename or a pattern string is not specified, the size value
20024 defaults to "320x518" (used for a randomly generated initial state).
20025
20026 @item scroll
20027 If set to 1, scroll the output upward when all the rows in the output
20028 have been already filled. If set to 0, the new generated row will be
20029 written over the top row just after the bottom row is filled.
20030 Defaults to 1.
20031
20032 @item start_full, full
20033 If set to 1, completely fill the output with generated rows before
20034 outputting the first frame.
20035 This is the default behavior, for disabling set the value to 0.
20036
20037 @item stitch
20038 If set to 1, stitch the left and right row edges together.
20039 This is the default behavior, for disabling set the value to 0.
20040 @end table
20041
20042 @subsection Examples
20043
20044 @itemize
20045 @item
20046 Read the initial state from @file{pattern}, and specify an output of
20047 size 200x400.
20048 @example
20049 cellauto=f=pattern:s=200x400
20050 @end example
20051
20052 @item
20053 Generate a random initial row with a width of 200 cells, with a fill
20054 ratio of 2/3:
20055 @example
20056 cellauto=ratio=2/3:s=200x200
20057 @end example
20058
20059 @item
20060 Create a pattern generated by rule 18 starting by a single alive cell
20061 centered on an initial row with width 100:
20062 @example
20063 cellauto=p=@@:s=100x400:full=0:rule=18
20064 @end example
20065
20066 @item
20067 Specify a more elaborated initial pattern:
20068 @example
20069 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
20070 @end example
20071
20072 @end itemize
20073
20074 @anchor{coreimagesrc}
20075 @section coreimagesrc
20076 Video source generated on GPU using Apple's CoreImage API on OSX.
20077
20078 This video source is a specialized version of the @ref{coreimage} video filter.
20079 Use a core image generator at the beginning of the applied filterchain to
20080 generate the content.
20081
20082 The coreimagesrc video source accepts the following options:
20083 @table @option
20084 @item list_generators
20085 List all available generators along with all their respective options as well as
20086 possible minimum and maximum values along with the default values.
20087 @example
20088 list_generators=true
20089 @end example
20090
20091 @item size, s
20092 Specify the size of the sourced video. For the syntax of this option, check the
20093 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20094 The default value is @code{320x240}.
20095
20096 @item rate, r
20097 Specify the frame rate of the sourced video, as the number of frames
20098 generated per second. It has to be a string in the format
20099 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20100 number or a valid video frame rate abbreviation. The default value is
20101 "25".
20102
20103 @item sar
20104 Set the sample aspect ratio of the sourced video.
20105
20106 @item duration, d
20107 Set the duration of the sourced video. See
20108 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20109 for the accepted syntax.
20110
20111 If not specified, or the expressed duration is negative, the video is
20112 supposed to be generated forever.
20113 @end table
20114
20115 Additionally, all options of the @ref{coreimage} video filter are accepted.
20116 A complete filterchain can be used for further processing of the
20117 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
20118 and examples for details.
20119
20120 @subsection Examples
20121
20122 @itemize
20123
20124 @item
20125 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
20126 given as complete and escaped command-line for Apple's standard bash shell:
20127 @example
20128 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
20129 @end example
20130 This example is equivalent to the QRCode example of @ref{coreimage} without the
20131 need for a nullsrc video source.
20132 @end itemize
20133
20134
20135 @section mandelbrot
20136
20137 Generate a Mandelbrot set fractal, and progressively zoom towards the
20138 point specified with @var{start_x} and @var{start_y}.
20139
20140 This source accepts the following options:
20141
20142 @table @option
20143
20144 @item end_pts
20145 Set the terminal pts value. Default value is 400.
20146
20147 @item end_scale
20148 Set the terminal scale value.
20149 Must be a floating point value. Default value is 0.3.
20150
20151 @item inner
20152 Set the inner coloring mode, that is the algorithm used to draw the
20153 Mandelbrot fractal internal region.
20154
20155 It shall assume one of the following values:
20156 @table @option
20157 @item black
20158 Set black mode.
20159 @item convergence
20160 Show time until convergence.
20161 @item mincol
20162 Set color based on point closest to the origin of the iterations.
20163 @item period
20164 Set period mode.
20165 @end table
20166
20167 Default value is @var{mincol}.
20168
20169 @item bailout
20170 Set the bailout value. Default value is 10.0.
20171
20172 @item maxiter
20173 Set the maximum of iterations performed by the rendering
20174 algorithm. Default value is 7189.
20175
20176 @item outer
20177 Set outer coloring mode.
20178 It shall assume one of following values:
20179 @table @option
20180 @item iteration_count
20181 Set iteration count mode.
20182 @item normalized_iteration_count
20183 set normalized iteration count mode.
20184 @end table
20185 Default value is @var{normalized_iteration_count}.
20186
20187 @item rate, r
20188 Set frame rate, expressed as number of frames per second. Default
20189 value is "25".
20190
20191 @item size, s
20192 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
20193 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
20194
20195 @item start_scale
20196 Set the initial scale value. Default value is 3.0.
20197
20198 @item start_x
20199 Set the initial x position. Must be a floating point value between
20200 -100 and 100. Default value is -0.743643887037158704752191506114774.
20201
20202 @item start_y
20203 Set the initial y position. Must be a floating point value between
20204 -100 and 100. Default value is -0.131825904205311970493132056385139.
20205 @end table
20206
20207 @section mptestsrc
20208
20209 Generate various test patterns, as generated by the MPlayer test filter.
20210
20211 The size of the generated video is fixed, and is 256x256.
20212 This source is useful in particular for testing encoding features.
20213
20214 This source accepts the following options:
20215
20216 @table @option
20217
20218 @item rate, r
20219 Specify the frame rate of the sourced video, as the number of frames
20220 generated per second. It has to be a string in the format
20221 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20222 number or a valid video frame rate abbreviation. The default value is
20223 "25".
20224
20225 @item duration, d
20226 Set the duration of the sourced video. See
20227 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20228 for the accepted syntax.
20229
20230 If not specified, or the expressed duration is negative, the video is
20231 supposed to be generated forever.
20232
20233 @item test, t
20234
20235 Set the number or the name of the test to perform. Supported tests are:
20236 @table @option
20237 @item dc_luma
20238 @item dc_chroma
20239 @item freq_luma
20240 @item freq_chroma
20241 @item amp_luma
20242 @item amp_chroma
20243 @item cbp
20244 @item mv
20245 @item ring1
20246 @item ring2
20247 @item all
20248
20249 @end table
20250
20251 Default value is "all", which will cycle through the list of all tests.
20252 @end table
20253
20254 Some examples:
20255 @example
20256 mptestsrc=t=dc_luma
20257 @end example
20258
20259 will generate a "dc_luma" test pattern.
20260
20261 @section frei0r_src
20262
20263 Provide a frei0r source.
20264
20265 To enable compilation of this filter you need to install the frei0r
20266 header and configure FFmpeg with @code{--enable-frei0r}.
20267
20268 This source accepts the following parameters:
20269
20270 @table @option
20271
20272 @item size
20273 The size of the video to generate. For the syntax of this option, check the
20274 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20275
20276 @item framerate
20277 The framerate of the generated video. It may be a string of the form
20278 @var{num}/@var{den} or a frame rate abbreviation.
20279
20280 @item filter_name
20281 The name to the frei0r source to load. For more information regarding frei0r and
20282 how to set the parameters, read the @ref{frei0r} section in the video filters
20283 documentation.
20284
20285 @item filter_params
20286 A '|'-separated list of parameters to pass to the frei0r source.
20287
20288 @end table
20289
20290 For example, to generate a frei0r partik0l source with size 200x200
20291 and frame rate 10 which is overlaid on the overlay filter main input:
20292 @example
20293 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
20294 @end example
20295
20296 @section life
20297
20298 Generate a life pattern.
20299
20300 This source is based on a generalization of John Conway's life game.
20301
20302 The sourced input represents a life grid, each pixel represents a cell
20303 which can be in one of two possible states, alive or dead. Every cell
20304 interacts with its eight neighbours, which are the cells that are
20305 horizontally, vertically, or diagonally adjacent.
20306
20307 At each interaction the grid evolves according to the adopted rule,
20308 which specifies the number of neighbor alive cells which will make a
20309 cell stay alive or born. The @option{rule} option allows one to specify
20310 the rule to adopt.
20311
20312 This source accepts the following options:
20313
20314 @table @option
20315 @item filename, f
20316 Set the file from which to read the initial grid state. In the file,
20317 each non-whitespace character is considered an alive cell, and newline
20318 is used to delimit the end of each row.
20319
20320 If this option is not specified, the initial grid is generated
20321 randomly.
20322
20323 @item rate, r
20324 Set the video rate, that is the number of frames generated per second.
20325 Default is 25.
20326
20327 @item random_fill_ratio, ratio
20328 Set the random fill ratio for the initial random grid. It is a
20329 floating point number value ranging from 0 to 1, defaults to 1/PHI.
20330 It is ignored when a file is specified.
20331
20332 @item random_seed, seed
20333 Set the seed for filling the initial random grid, must be an integer
20334 included between 0 and UINT32_MAX. If not specified, or if explicitly
20335 set to -1, the filter will try to use a good random seed on a best
20336 effort basis.
20337
20338 @item rule
20339 Set the life rule.
20340
20341 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
20342 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
20343 @var{NS} specifies the number of alive neighbor cells which make a
20344 live cell stay alive, and @var{NB} the number of alive neighbor cells
20345 which make a dead cell to become alive (i.e. to "born").
20346 "s" and "b" can be used in place of "S" and "B", respectively.
20347
20348 Alternatively a rule can be specified by an 18-bits integer. The 9
20349 high order bits are used to encode the next cell state if it is alive
20350 for each number of neighbor alive cells, the low order bits specify
20351 the rule for "borning" new cells. Higher order bits encode for an
20352 higher number of neighbor cells.
20353 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
20354 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
20355
20356 Default value is "S23/B3", which is the original Conway's game of life
20357 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
20358 cells, and will born a new cell if there are three alive cells around
20359 a dead cell.
20360
20361 @item size, s
20362 Set the size of the output video. For the syntax of this option, check the
20363 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20364
20365 If @option{filename} is specified, the size is set by default to the
20366 same size of the input file. If @option{size} is set, it must contain
20367 the size specified in the input file, and the initial grid defined in
20368 that file is centered in the larger resulting area.
20369
20370 If a filename is not specified, the size value defaults to "320x240"
20371 (used for a randomly generated initial grid).
20372
20373 @item stitch
20374 If set to 1, stitch the left and right grid edges together, and the
20375 top and bottom edges also. Defaults to 1.
20376
20377 @item mold
20378 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
20379 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
20380 value from 0 to 255.
20381
20382 @item life_color
20383 Set the color of living (or new born) cells.
20384
20385 @item death_color
20386 Set the color of dead cells. If @option{mold} is set, this is the first color
20387 used to represent a dead cell.
20388
20389 @item mold_color
20390 Set mold color, for definitely dead and moldy cells.
20391
20392 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
20393 ffmpeg-utils manual,ffmpeg-utils}.
20394 @end table
20395
20396 @subsection Examples
20397
20398 @itemize
20399 @item
20400 Read a grid from @file{pattern}, and center it on a grid of size
20401 300x300 pixels:
20402 @example
20403 life=f=pattern:s=300x300
20404 @end example
20405
20406 @item
20407 Generate a random grid of size 200x200, with a fill ratio of 2/3:
20408 @example
20409 life=ratio=2/3:s=200x200
20410 @end example
20411
20412 @item
20413 Specify a custom rule for evolving a randomly generated grid:
20414 @example
20415 life=rule=S14/B34
20416 @end example
20417
20418 @item
20419 Full example with slow death effect (mold) using @command{ffplay}:
20420 @example
20421 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
20422 @end example
20423 @end itemize
20424
20425 @anchor{allrgb}
20426 @anchor{allyuv}
20427 @anchor{color}
20428 @anchor{haldclutsrc}
20429 @anchor{nullsrc}
20430 @anchor{pal75bars}
20431 @anchor{pal100bars}
20432 @anchor{rgbtestsrc}
20433 @anchor{smptebars}
20434 @anchor{smptehdbars}
20435 @anchor{testsrc}
20436 @anchor{testsrc2}
20437 @anchor{yuvtestsrc}
20438 @section allrgb, allyuv, color, haldclutsrc, nullsrc, pal75bars, pal100bars, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
20439
20440 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
20441
20442 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
20443
20444 The @code{color} source provides an uniformly colored input.
20445
20446 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
20447 @ref{haldclut} filter.
20448
20449 The @code{nullsrc} source returns unprocessed video frames. It is
20450 mainly useful to be employed in analysis / debugging tools, or as the
20451 source for filters which ignore the input data.
20452
20453 The @code{pal75bars} source generates a color bars pattern, based on
20454 EBU PAL recommendations with 75% color levels.
20455
20456 The @code{pal100bars} source generates a color bars pattern, based on
20457 EBU PAL recommendations with 100% color levels.
20458
20459 The @code{rgbtestsrc} source generates an RGB test pattern useful for
20460 detecting RGB vs BGR issues. You should see a red, green and blue
20461 stripe from top to bottom.
20462
20463 The @code{smptebars} source generates a color bars pattern, based on
20464 the SMPTE Engineering Guideline EG 1-1990.
20465
20466 The @code{smptehdbars} source generates a color bars pattern, based on
20467 the SMPTE RP 219-2002.
20468
20469 The @code{testsrc} source generates a test video pattern, showing a
20470 color pattern, a scrolling gradient and a timestamp. This is mainly
20471 intended for testing purposes.
20472
20473 The @code{testsrc2} source is similar to testsrc, but supports more
20474 pixel formats instead of just @code{rgb24}. This allows using it as an
20475 input for other tests without requiring a format conversion.
20476
20477 The @code{yuvtestsrc} source generates an YUV test pattern. You should
20478 see a y, cb and cr stripe from top to bottom.
20479
20480 The sources accept the following parameters:
20481
20482 @table @option
20483
20484 @item level
20485 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
20486 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
20487 pixels to be used as identity matrix for 3D lookup tables. Each component is
20488 coded on a @code{1/(N*N)} scale.
20489
20490 @item color, c
20491 Specify the color of the source, only available in the @code{color}
20492 source. For the syntax of this option, check the
20493 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
20494
20495 @item size, s
20496 Specify the size of the sourced video. For the syntax of this option, check the
20497 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20498 The default value is @code{320x240}.
20499
20500 This option is not available with the @code{allrgb}, @code{allyuv}, and
20501 @code{haldclutsrc} filters.
20502
20503 @item rate, r
20504 Specify the frame rate of the sourced video, as the number of frames
20505 generated per second. It has to be a string in the format
20506 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
20507 number or a valid video frame rate abbreviation. The default value is
20508 "25".
20509
20510 @item duration, d
20511 Set the duration of the sourced video. See
20512 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
20513 for the accepted syntax.
20514
20515 If not specified, or the expressed duration is negative, the video is
20516 supposed to be generated forever.
20517
20518 @item sar
20519 Set the sample aspect ratio of the sourced video.
20520
20521 @item alpha
20522 Specify the alpha (opacity) of the background, only available in the
20523 @code{testsrc2} source. The value must be between 0 (fully transparent) and
20524 255 (fully opaque, the default).
20525
20526 @item decimals, n
20527 Set the number of decimals to show in the timestamp, only available in the
20528 @code{testsrc} source.
20529
20530 The displayed timestamp value will correspond to the original
20531 timestamp value multiplied by the power of 10 of the specified
20532 value. Default value is 0.
20533 @end table
20534
20535 @subsection Examples
20536
20537 @itemize
20538 @item
20539 Generate a video with a duration of 5.3 seconds, with size
20540 176x144 and a frame rate of 10 frames per second:
20541 @example
20542 testsrc=duration=5.3:size=qcif:rate=10
20543 @end example
20544
20545 @item
20546 The following graph description will generate a red source
20547 with an opacity of 0.2, with size "qcif" and a frame rate of 10
20548 frames per second:
20549 @example
20550 color=c=red@@0.2:s=qcif:r=10
20551 @end example
20552
20553 @item
20554 If the input content is to be ignored, @code{nullsrc} can be used. The
20555 following command generates noise in the luminance plane by employing
20556 the @code{geq} filter:
20557 @example
20558 nullsrc=s=256x256, geq=random(1)*255:128:128
20559 @end example
20560 @end itemize
20561
20562 @subsection Commands
20563
20564 The @code{color} source supports the following commands:
20565
20566 @table @option
20567 @item c, color
20568 Set the color of the created image. Accepts the same syntax of the
20569 corresponding @option{color} option.
20570 @end table
20571
20572 @section openclsrc
20573
20574 Generate video using an OpenCL program.
20575
20576 @table @option
20577
20578 @item source
20579 OpenCL program source file.
20580
20581 @item kernel
20582 Kernel name in program.
20583
20584 @item size, s
20585 Size of frames to generate.  This must be set.
20586
20587 @item format
20588 Pixel format to use for the generated frames.  This must be set.
20589
20590 @item rate, r
20591 Number of frames generated every second.  Default value is '25'.
20592
20593 @end table
20594
20595 For details of how the program loading works, see the @ref{program_opencl}
20596 filter.
20597
20598 Example programs:
20599
20600 @itemize
20601 @item
20602 Generate a colour ramp by setting pixel values from the position of the pixel
20603 in the output image.  (Note that this will work with all pixel formats, but
20604 the generated output will not be the same.)
20605 @verbatim
20606 __kernel void ramp(__write_only image2d_t dst,
20607                    unsigned int index)
20608 {
20609     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20610
20611     float4 val;
20612     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
20613
20614     write_imagef(dst, loc, val);
20615 }
20616 @end verbatim
20617
20618 @item
20619 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
20620 @verbatim
20621 __kernel void sierpinski_carpet(__write_only image2d_t dst,
20622                                 unsigned int index)
20623 {
20624     int2 loc = (int2)(get_global_id(0), get_global_id(1));
20625
20626     float4 value = 0.0f;
20627     int x = loc.x + index;
20628     int y = loc.y + index;
20629     while (x > 0 || y > 0) {
20630         if (x % 3 == 1 && y % 3 == 1) {
20631             value = 1.0f;
20632             break;
20633         }
20634         x /= 3;
20635         y /= 3;
20636     }
20637
20638     write_imagef(dst, loc, value);
20639 }
20640 @end verbatim
20641
20642 @end itemize
20643
20644 @c man end VIDEO SOURCES
20645
20646 @chapter Video Sinks
20647 @c man begin VIDEO SINKS
20648
20649 Below is a description of the currently available video sinks.
20650
20651 @section buffersink
20652
20653 Buffer video frames, and make them available to the end of the filter
20654 graph.
20655
20656 This sink is mainly intended for programmatic use, in particular
20657 through the interface defined in @file{libavfilter/buffersink.h}
20658 or the options system.
20659
20660 It accepts a pointer to an AVBufferSinkContext structure, which
20661 defines the incoming buffers' formats, to be passed as the opaque
20662 parameter to @code{avfilter_init_filter} for initialization.
20663
20664 @section nullsink
20665
20666 Null video sink: do absolutely nothing with the input video. It is
20667 mainly useful as a template and for use in analysis / debugging
20668 tools.
20669
20670 @c man end VIDEO SINKS
20671
20672 @chapter Multimedia Filters
20673 @c man begin MULTIMEDIA FILTERS
20674
20675 Below is a description of the currently available multimedia filters.
20676
20677 @section abitscope
20678
20679 Convert input audio to a video output, displaying the audio bit scope.
20680
20681 The filter accepts the following options:
20682
20683 @table @option
20684 @item rate, r
20685 Set frame rate, expressed as number of frames per second. Default
20686 value is "25".
20687
20688 @item size, s
20689 Specify the video size for the output. For the syntax of this option, check the
20690 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20691 Default value is @code{1024x256}.
20692
20693 @item colors
20694 Specify list of colors separated by space or by '|' which will be used to
20695 draw channels. Unrecognized or missing colors will be replaced
20696 by white color.
20697 @end table
20698
20699 @section ahistogram
20700
20701 Convert input audio to a video output, displaying the volume histogram.
20702
20703 The filter accepts the following options:
20704
20705 @table @option
20706 @item dmode
20707 Specify how histogram is calculated.
20708
20709 It accepts the following values:
20710 @table @samp
20711 @item single
20712 Use single histogram for all channels.
20713 @item separate
20714 Use separate histogram for each channel.
20715 @end table
20716 Default is @code{single}.
20717
20718 @item rate, r
20719 Set frame rate, expressed as number of frames per second. Default
20720 value is "25".
20721
20722 @item size, s
20723 Specify the video size for the output. For the syntax of this option, check the
20724 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20725 Default value is @code{hd720}.
20726
20727 @item scale
20728 Set display scale.
20729
20730 It accepts the following values:
20731 @table @samp
20732 @item log
20733 logarithmic
20734 @item sqrt
20735 square root
20736 @item cbrt
20737 cubic root
20738 @item lin
20739 linear
20740 @item rlog
20741 reverse logarithmic
20742 @end table
20743 Default is @code{log}.
20744
20745 @item ascale
20746 Set amplitude scale.
20747
20748 It accepts the following values:
20749 @table @samp
20750 @item log
20751 logarithmic
20752 @item lin
20753 linear
20754 @end table
20755 Default is @code{log}.
20756
20757 @item acount
20758 Set how much frames to accumulate in histogram.
20759 Default is 1. Setting this to -1 accumulates all frames.
20760
20761 @item rheight
20762 Set histogram ratio of window height.
20763
20764 @item slide
20765 Set sonogram sliding.
20766
20767 It accepts the following values:
20768 @table @samp
20769 @item replace
20770 replace old rows with new ones.
20771 @item scroll
20772 scroll from top to bottom.
20773 @end table
20774 Default is @code{replace}.
20775 @end table
20776
20777 @section aphasemeter
20778
20779 Measures phase of input audio, which is exported as metadata @code{lavfi.aphasemeter.phase},
20780 representing mean phase of current audio frame. A video output can also be produced and is
20781 enabled by default. The audio is passed through as first output.
20782
20783 Audio will be rematrixed to stereo if it has a different channel layout. Phase value is in
20784 range @code{[-1, 1]} where @code{-1} means left and right channels are completely out of phase
20785 and @code{1} means channels are in phase.
20786
20787 The filter accepts the following options, all related to its video output:
20788
20789 @table @option
20790 @item rate, r
20791 Set the output frame rate. Default value is @code{25}.
20792
20793 @item size, s
20794 Set the video size for the output. For the syntax of this option, check the
20795 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20796 Default value is @code{800x400}.
20797
20798 @item rc
20799 @item gc
20800 @item bc
20801 Specify the red, green, blue contrast. Default values are @code{2},
20802 @code{7} and @code{1}.
20803 Allowed range is @code{[0, 255]}.
20804
20805 @item mpc
20806 Set color which will be used for drawing median phase. If color is
20807 @code{none} which is default, no median phase value will be drawn.
20808
20809 @item video
20810 Enable video output. Default is enabled.
20811 @end table
20812
20813 @section avectorscope
20814
20815 Convert input audio to a video output, representing the audio vector
20816 scope.
20817
20818 The filter is used to measure the difference between channels of stereo
20819 audio stream. A monoaural signal, consisting of identical left and right
20820 signal, results in straight vertical line. Any stereo separation is visible
20821 as a deviation from this line, creating a Lissajous figure.
20822 If the straight (or deviation from it) but horizontal line appears this
20823 indicates that the left and right channels are out of phase.
20824
20825 The filter accepts the following options:
20826
20827 @table @option
20828 @item mode, m
20829 Set the vectorscope mode.
20830
20831 Available values are:
20832 @table @samp
20833 @item lissajous
20834 Lissajous rotated by 45 degrees.
20835
20836 @item lissajous_xy
20837 Same as above but not rotated.
20838
20839 @item polar
20840 Shape resembling half of circle.
20841 @end table
20842
20843 Default value is @samp{lissajous}.
20844
20845 @item size, s
20846 Set the video size for the output. For the syntax of this option, check the
20847 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20848 Default value is @code{400x400}.
20849
20850 @item rate, r
20851 Set the output frame rate. Default value is @code{25}.
20852
20853 @item rc
20854 @item gc
20855 @item bc
20856 @item ac
20857 Specify the red, green, blue and alpha contrast. Default values are @code{40},
20858 @code{160}, @code{80} and @code{255}.
20859 Allowed range is @code{[0, 255]}.
20860
20861 @item rf
20862 @item gf
20863 @item bf
20864 @item af
20865 Specify the red, green, blue and alpha fade. Default values are @code{15},
20866 @code{10}, @code{5} and @code{5}.
20867 Allowed range is @code{[0, 255]}.
20868
20869 @item zoom
20870 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
20871 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
20872
20873 @item draw
20874 Set the vectorscope drawing mode.
20875
20876 Available values are:
20877 @table @samp
20878 @item dot
20879 Draw dot for each sample.
20880
20881 @item line
20882 Draw line between previous and current sample.
20883 @end table
20884
20885 Default value is @samp{dot}.
20886
20887 @item scale
20888 Specify amplitude scale of audio samples.
20889
20890 Available values are:
20891 @table @samp
20892 @item lin
20893 Linear.
20894
20895 @item sqrt
20896 Square root.
20897
20898 @item cbrt
20899 Cubic root.
20900
20901 @item log
20902 Logarithmic.
20903 @end table
20904
20905 @item swap
20906 Swap left channel axis with right channel axis.
20907
20908 @item mirror
20909 Mirror axis.
20910
20911 @table @samp
20912 @item none
20913 No mirror.
20914
20915 @item x
20916 Mirror only x axis.
20917
20918 @item y
20919 Mirror only y axis.
20920
20921 @item xy
20922 Mirror both axis.
20923 @end table
20924
20925 @end table
20926
20927 @subsection Examples
20928
20929 @itemize
20930 @item
20931 Complete example using @command{ffplay}:
20932 @example
20933 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
20934              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
20935 @end example
20936 @end itemize
20937
20938 @section bench, abench
20939
20940 Benchmark part of a filtergraph.
20941
20942 The filter accepts the following options:
20943
20944 @table @option
20945 @item action
20946 Start or stop a timer.
20947
20948 Available values are:
20949 @table @samp
20950 @item start
20951 Get the current time, set it as frame metadata (using the key
20952 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
20953
20954 @item stop
20955 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
20956 the input frame metadata to get the time difference. Time difference, average,
20957 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
20958 @code{min}) are then printed. The timestamps are expressed in seconds.
20959 @end table
20960 @end table
20961
20962 @subsection Examples
20963
20964 @itemize
20965 @item
20966 Benchmark @ref{selectivecolor} filter:
20967 @example
20968 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
20969 @end example
20970 @end itemize
20971
20972 @section concat
20973
20974 Concatenate audio and video streams, joining them together one after the
20975 other.
20976
20977 The filter works on segments of synchronized video and audio streams. All
20978 segments must have the same number of streams of each type, and that will
20979 also be the number of streams at output.
20980
20981 The filter accepts the following options:
20982
20983 @table @option
20984
20985 @item n
20986 Set the number of segments. Default is 2.
20987
20988 @item v
20989 Set the number of output video streams, that is also the number of video
20990 streams in each segment. Default is 1.
20991
20992 @item a
20993 Set the number of output audio streams, that is also the number of audio
20994 streams in each segment. Default is 0.
20995
20996 @item unsafe
20997 Activate unsafe mode: do not fail if segments have a different format.
20998
20999 @end table
21000
21001 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
21002 @var{a} audio outputs.
21003
21004 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
21005 segment, in the same order as the outputs, then the inputs for the second
21006 segment, etc.
21007
21008 Related streams do not always have exactly the same duration, for various
21009 reasons including codec frame size or sloppy authoring. For that reason,
21010 related synchronized streams (e.g. a video and its audio track) should be
21011 concatenated at once. The concat filter will use the duration of the longest
21012 stream in each segment (except the last one), and if necessary pad shorter
21013 audio streams with silence.
21014
21015 For this filter to work correctly, all segments must start at timestamp 0.
21016
21017 All corresponding streams must have the same parameters in all segments; the
21018 filtering system will automatically select a common pixel format for video
21019 streams, and a common sample format, sample rate and channel layout for
21020 audio streams, but other settings, such as resolution, must be converted
21021 explicitly by the user.
21022
21023 Different frame rates are acceptable but will result in variable frame rate
21024 at output; be sure to configure the output file to handle it.
21025
21026 @subsection Examples
21027
21028 @itemize
21029 @item
21030 Concatenate an opening, an episode and an ending, all in bilingual version
21031 (video in stream 0, audio in streams 1 and 2):
21032 @example
21033 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
21034   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
21035    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
21036   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
21037 @end example
21038
21039 @item
21040 Concatenate two parts, handling audio and video separately, using the
21041 (a)movie sources, and adjusting the resolution:
21042 @example
21043 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
21044 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
21045 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
21046 @end example
21047 Note that a desync will happen at the stitch if the audio and video streams
21048 do not have exactly the same duration in the first file.
21049
21050 @end itemize
21051
21052 @subsection Commands
21053
21054 This filter supports the following commands:
21055 @table @option
21056 @item next
21057 Close the current segment and step to the next one
21058 @end table
21059
21060 @section drawgraph, adrawgraph
21061
21062 Draw a graph using input video or audio metadata.
21063
21064 It accepts the following parameters:
21065
21066 @table @option
21067 @item m1
21068 Set 1st frame metadata key from which metadata values will be used to draw a graph.
21069
21070 @item fg1
21071 Set 1st foreground color expression.
21072
21073 @item m2
21074 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
21075
21076 @item fg2
21077 Set 2nd foreground color expression.
21078
21079 @item m3
21080 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
21081
21082 @item fg3
21083 Set 3rd foreground color expression.
21084
21085 @item m4
21086 Set 4th frame metadata key from which metadata values will be used to draw a graph.
21087
21088 @item fg4
21089 Set 4th foreground color expression.
21090
21091 @item min
21092 Set minimal value of metadata value.
21093
21094 @item max
21095 Set maximal value of metadata value.
21096
21097 @item bg
21098 Set graph background color. Default is white.
21099
21100 @item mode
21101 Set graph mode.
21102
21103 Available values for mode is:
21104 @table @samp
21105 @item bar
21106 @item dot
21107 @item line
21108 @end table
21109
21110 Default is @code{line}.
21111
21112 @item slide
21113 Set slide mode.
21114
21115 Available values for slide is:
21116 @table @samp
21117 @item frame
21118 Draw new frame when right border is reached.
21119
21120 @item replace
21121 Replace old columns with new ones.
21122
21123 @item scroll
21124 Scroll from right to left.
21125
21126 @item rscroll
21127 Scroll from left to right.
21128
21129 @item picture
21130 Draw single picture.
21131 @end table
21132
21133 Default is @code{frame}.
21134
21135 @item size
21136 Set size of graph video. For the syntax of this option, check the
21137 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21138 The default value is @code{900x256}.
21139
21140 The foreground color expressions can use the following variables:
21141 @table @option
21142 @item MIN
21143 Minimal value of metadata value.
21144
21145 @item MAX
21146 Maximal value of metadata value.
21147
21148 @item VAL
21149 Current metadata key value.
21150 @end table
21151
21152 The color is defined as 0xAABBGGRR.
21153 @end table
21154
21155 Example using metadata from @ref{signalstats} filter:
21156 @example
21157 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
21158 @end example
21159
21160 Example using metadata from @ref{ebur128} filter:
21161 @example
21162 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
21163 @end example
21164
21165 @anchor{ebur128}
21166 @section ebur128
21167
21168 EBU R128 scanner filter. This filter takes an audio stream and analyzes its loudness
21169 level. By default, it logs a message at a frequency of 10Hz with the
21170 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
21171 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
21172
21173 The filter can only analyze streams which have a sampling rate of 48000 Hz and whose
21174 sample format is double-precision floating point. The input stream will be converted to
21175 this specification, if needed. Users may need to insert aformat and/or aresample filters
21176 after this filter to obtain the original parameters.
21177
21178 The filter also has a video output (see the @var{video} option) with a real
21179 time graph to observe the loudness evolution. The graphic contains the logged
21180 message mentioned above, so it is not printed anymore when this option is set,
21181 unless the verbose logging is set. The main graphing area contains the
21182 short-term loudness (3 seconds of analysis), and the gauge on the right is for
21183 the momentary loudness (400 milliseconds), but can optionally be configured
21184 to instead display short-term loudness (see @var{gauge}).
21185
21186 The green area marks a  +/- 1LU target range around the target loudness
21187 (-23LUFS by default, unless modified through @var{target}).
21188
21189 More information about the Loudness Recommendation EBU R128 on
21190 @url{http://tech.ebu.ch/loudness}.
21191
21192 The filter accepts the following options:
21193
21194 @table @option
21195
21196 @item video
21197 Activate the video output. The audio stream is passed unchanged whether this
21198 option is set or no. The video stream will be the first output stream if
21199 activated. Default is @code{0}.
21200
21201 @item size
21202 Set the video size. This option is for video only. For the syntax of this
21203 option, check the
21204 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
21205 Default and minimum resolution is @code{640x480}.
21206
21207 @item meter
21208 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
21209 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
21210 other integer value between this range is allowed.
21211
21212 @item metadata
21213 Set metadata injection. If set to @code{1}, the audio input will be segmented
21214 into 100ms output frames, each of them containing various loudness information
21215 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
21216
21217 Default is @code{0}.
21218
21219 @item framelog
21220 Force the frame logging level.
21221
21222 Available values are:
21223 @table @samp
21224 @item info
21225 information logging level
21226 @item verbose
21227 verbose logging level
21228 @end table
21229
21230 By default, the logging level is set to @var{info}. If the @option{video} or
21231 the @option{metadata} options are set, it switches to @var{verbose}.
21232
21233 @item peak
21234 Set peak mode(s).
21235
21236 Available modes can be cumulated (the option is a @code{flag} type). Possible
21237 values are:
21238 @table @samp
21239 @item none
21240 Disable any peak mode (default).
21241 @item sample
21242 Enable sample-peak mode.
21243
21244 Simple peak mode looking for the higher sample value. It logs a message
21245 for sample-peak (identified by @code{SPK}).
21246 @item true
21247 Enable true-peak mode.
21248
21249 If enabled, the peak lookup is done on an over-sampled version of the input
21250 stream for better peak accuracy. It logs a message for true-peak.
21251 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
21252 This mode requires a build with @code{libswresample}.
21253 @end table
21254
21255 @item dualmono
21256 Treat mono input files as "dual mono". If a mono file is intended for playback
21257 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
21258 If set to @code{true}, this option will compensate for this effect.
21259 Multi-channel input files are not affected by this option.
21260
21261 @item panlaw
21262 Set a specific pan law to be used for the measurement of dual mono files.
21263 This parameter is optional, and has a default value of -3.01dB.
21264
21265 @item target
21266 Set a specific target level (in LUFS) used as relative zero in the visualization.
21267 This parameter is optional and has a default value of -23LUFS as specified
21268 by EBU R128. However, material published online may prefer a level of -16LUFS
21269 (e.g. for use with podcasts or video platforms).
21270
21271 @item gauge
21272 Set the value displayed by the gauge. Valid values are @code{momentary} and s
21273 @code{shortterm}. By default the momentary value will be used, but in certain
21274 scenarios it may be more useful to observe the short term value instead (e.g.
21275 live mixing).
21276
21277 @item scale
21278 Sets the display scale for the loudness. Valid parameters are @code{absolute}
21279 (in LUFS) or @code{relative} (LU) relative to the target. This only affects the
21280 video output, not the summary or continuous log output.
21281 @end table
21282
21283 @subsection Examples
21284
21285 @itemize
21286 @item
21287 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
21288 @example
21289 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
21290 @end example
21291
21292 @item
21293 Run an analysis with @command{ffmpeg}:
21294 @example
21295 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
21296 @end example
21297 @end itemize
21298
21299 @section interleave, ainterleave
21300
21301 Temporally interleave frames from several inputs.
21302
21303 @code{interleave} works with video inputs, @code{ainterleave} with audio.
21304
21305 These filters read frames from several inputs and send the oldest
21306 queued frame to the output.
21307
21308 Input streams must have well defined, monotonically increasing frame
21309 timestamp values.
21310
21311 In order to submit one frame to output, these filters need to enqueue
21312 at least one frame for each input, so they cannot work in case one
21313 input is not yet terminated and will not receive incoming frames.
21314
21315 For example consider the case when one input is a @code{select} filter
21316 which always drops input frames. The @code{interleave} filter will keep
21317 reading from that input, but it will never be able to send new frames
21318 to output until the input sends an end-of-stream signal.
21319
21320 Also, depending on inputs synchronization, the filters will drop
21321 frames in case one input receives more frames than the other ones, and
21322 the queue is already filled.
21323
21324 These filters accept the following options:
21325
21326 @table @option
21327 @item nb_inputs, n
21328 Set the number of different inputs, it is 2 by default.
21329 @end table
21330
21331 @subsection Examples
21332
21333 @itemize
21334 @item
21335 Interleave frames belonging to different streams using @command{ffmpeg}:
21336 @example
21337 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
21338 @end example
21339
21340 @item
21341 Add flickering blur effect:
21342 @example
21343 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
21344 @end example
21345 @end itemize
21346
21347 @section metadata, ametadata
21348
21349 Manipulate frame metadata.
21350
21351 This filter accepts the following options:
21352
21353 @table @option
21354 @item mode
21355 Set mode of operation of the filter.
21356
21357 Can be one of the following:
21358
21359 @table @samp
21360 @item select
21361 If both @code{value} and @code{key} is set, select frames
21362 which have such metadata. If only @code{key} is set, select
21363 every frame that has such key in metadata.
21364
21365 @item add
21366 Add new metadata @code{key} and @code{value}. If key is already available
21367 do nothing.
21368
21369 @item modify
21370 Modify value of already present key.
21371
21372 @item delete
21373 If @code{value} is set, delete only keys that have such value.
21374 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
21375 the frame.
21376
21377 @item print
21378 Print key and its value if metadata was found. If @code{key} is not set print all
21379 metadata values available in frame.
21380 @end table
21381
21382 @item key
21383 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
21384
21385 @item value
21386 Set metadata value which will be used. This option is mandatory for
21387 @code{modify} and @code{add} mode.
21388
21389 @item function
21390 Which function to use when comparing metadata value and @code{value}.
21391
21392 Can be one of following:
21393
21394 @table @samp
21395 @item same_str
21396 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
21397
21398 @item starts_with
21399 Values are interpreted as strings, returns true if metadata value starts with
21400 the @code{value} option string.
21401
21402 @item less
21403 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
21404
21405 @item equal
21406 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
21407
21408 @item greater
21409 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
21410
21411 @item expr
21412 Values are interpreted as floats, returns true if expression from option @code{expr}
21413 evaluates to true.
21414 @end table
21415
21416 @item expr
21417 Set expression which is used when @code{function} is set to @code{expr}.
21418 The expression is evaluated through the eval API and can contain the following
21419 constants:
21420
21421 @table @option
21422 @item VALUE1
21423 Float representation of @code{value} from metadata key.
21424
21425 @item VALUE2
21426 Float representation of @code{value} as supplied by user in @code{value} option.
21427 @end table
21428
21429 @item file
21430 If specified in @code{print} mode, output is written to the named file. Instead of
21431 plain filename any writable url can be specified. Filename ``-'' is a shorthand
21432 for standard output. If @code{file} option is not set, output is written to the log
21433 with AV_LOG_INFO loglevel.
21434
21435 @end table
21436
21437 @subsection Examples
21438
21439 @itemize
21440 @item
21441 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
21442 between 0 and 1.
21443 @example
21444 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
21445 @end example
21446 @item
21447 Print silencedetect output to file @file{metadata.txt}.
21448 @example
21449 silencedetect,ametadata=mode=print:file=metadata.txt
21450 @end example
21451 @item
21452 Direct all metadata to a pipe with file descriptor 4.
21453 @example
21454 metadata=mode=print:file='pipe\:4'
21455 @end example
21456 @end itemize
21457
21458 @section perms, aperms
21459
21460 Set read/write permissions for the output frames.
21461
21462 These filters are mainly aimed at developers to test direct path in the
21463 following filter in the filtergraph.
21464
21465 The filters accept the following options:
21466
21467 @table @option
21468 @item mode
21469 Select the permissions mode.
21470
21471 It accepts the following values:
21472 @table @samp
21473 @item none
21474 Do nothing. This is the default.
21475 @item ro
21476 Set all the output frames read-only.
21477 @item rw
21478 Set all the output frames directly writable.
21479 @item toggle
21480 Make the frame read-only if writable, and writable if read-only.
21481 @item random
21482 Set each output frame read-only or writable randomly.
21483 @end table
21484
21485 @item seed
21486 Set the seed for the @var{random} mode, must be an integer included between
21487 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
21488 @code{-1}, the filter will try to use a good random seed on a best effort
21489 basis.
21490 @end table
21491
21492 Note: in case of auto-inserted filter between the permission filter and the
21493 following one, the permission might not be received as expected in that
21494 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
21495 perms/aperms filter can avoid this problem.
21496
21497 @section realtime, arealtime
21498
21499 Slow down filtering to match real time approximately.
21500
21501 These filters will pause the filtering for a variable amount of time to
21502 match the output rate with the input timestamps.
21503 They are similar to the @option{re} option to @code{ffmpeg}.
21504
21505 They accept the following options:
21506
21507 @table @option
21508 @item limit
21509 Time limit for the pauses. Any pause longer than that will be considered
21510 a timestamp discontinuity and reset the timer. Default is 2 seconds.
21511 @item speed
21512 Speed factor for processing. The value must be a float larger than zero.
21513 Values larger than 1.0 will result in faster than realtime processing,
21514 smaller will slow processing down. The @var{limit} is automatically adapted
21515 accordingly. Default is 1.0.
21516
21517 A processing speed faster than what is possible without these filters cannot
21518 be achieved.
21519 @end table
21520
21521 @anchor{select}
21522 @section select, aselect
21523
21524 Select frames to pass in output.
21525
21526 This filter accepts the following options:
21527
21528 @table @option
21529
21530 @item expr, e
21531 Set expression, which is evaluated for each input frame.
21532
21533 If the expression is evaluated to zero, the frame is discarded.
21534
21535 If the evaluation result is negative or NaN, the frame is sent to the
21536 first output; otherwise it is sent to the output with index
21537 @code{ceil(val)-1}, assuming that the input index starts from 0.
21538
21539 For example a value of @code{1.2} corresponds to the output with index
21540 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
21541
21542 @item outputs, n
21543 Set the number of outputs. The output to which to send the selected
21544 frame is based on the result of the evaluation. Default value is 1.
21545 @end table
21546
21547 The expression can contain the following constants:
21548
21549 @table @option
21550 @item n
21551 The (sequential) number of the filtered frame, starting from 0.
21552
21553 @item selected_n
21554 The (sequential) number of the selected frame, starting from 0.
21555
21556 @item prev_selected_n
21557 The sequential number of the last selected frame. It's NAN if undefined.
21558
21559 @item TB
21560 The timebase of the input timestamps.
21561
21562 @item pts
21563 The PTS (Presentation TimeStamp) of the filtered video frame,
21564 expressed in @var{TB} units. It's NAN if undefined.
21565
21566 @item t
21567 The PTS of the filtered video frame,
21568 expressed in seconds. It's NAN if undefined.
21569
21570 @item prev_pts
21571 The PTS of the previously filtered video frame. It's NAN if undefined.
21572
21573 @item prev_selected_pts
21574 The PTS of the last previously filtered video frame. It's NAN if undefined.
21575
21576 @item prev_selected_t
21577 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
21578
21579 @item start_pts
21580 The PTS of the first video frame in the video. It's NAN if undefined.
21581
21582 @item start_t
21583 The time of the first video frame in the video. It's NAN if undefined.
21584
21585 @item pict_type @emph{(video only)}
21586 The type of the filtered frame. It can assume one of the following
21587 values:
21588 @table @option
21589 @item I
21590 @item P
21591 @item B
21592 @item S
21593 @item SI
21594 @item SP
21595 @item BI
21596 @end table
21597
21598 @item interlace_type @emph{(video only)}
21599 The frame interlace type. It can assume one of the following values:
21600 @table @option
21601 @item PROGRESSIVE
21602 The frame is progressive (not interlaced).
21603 @item TOPFIRST
21604 The frame is top-field-first.
21605 @item BOTTOMFIRST
21606 The frame is bottom-field-first.
21607 @end table
21608
21609 @item consumed_sample_n @emph{(audio only)}
21610 the number of selected samples before the current frame
21611
21612 @item samples_n @emph{(audio only)}
21613 the number of samples in the current frame
21614
21615 @item sample_rate @emph{(audio only)}
21616 the input sample rate
21617
21618 @item key
21619 This is 1 if the filtered frame is a key-frame, 0 otherwise.
21620
21621 @item pos
21622 the position in the file of the filtered frame, -1 if the information
21623 is not available (e.g. for synthetic video)
21624
21625 @item scene @emph{(video only)}
21626 value between 0 and 1 to indicate a new scene; a low value reflects a low
21627 probability for the current frame to introduce a new scene, while a higher
21628 value means the current frame is more likely to be one (see the example below)
21629
21630 @item concatdec_select
21631 The concat demuxer can select only part of a concat input file by setting an
21632 inpoint and an outpoint, but the output packets may not be entirely contained
21633 in the selected interval. By using this variable, it is possible to skip frames
21634 generated by the concat demuxer which are not exactly contained in the selected
21635 interval.
21636
21637 This works by comparing the frame pts against the @var{lavf.concat.start_time}
21638 and the @var{lavf.concat.duration} packet metadata values which are also
21639 present in the decoded frames.
21640
21641 The @var{concatdec_select} variable is -1 if the frame pts is at least
21642 start_time and either the duration metadata is missing or the frame pts is less
21643 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
21644 missing.
21645
21646 That basically means that an input frame is selected if its pts is within the
21647 interval set by the concat demuxer.
21648
21649 @end table
21650
21651 The default value of the select expression is "1".
21652
21653 @subsection Examples
21654
21655 @itemize
21656 @item
21657 Select all frames in input:
21658 @example
21659 select
21660 @end example
21661
21662 The example above is the same as:
21663 @example
21664 select=1
21665 @end example
21666
21667 @item
21668 Skip all frames:
21669 @example
21670 select=0
21671 @end example
21672
21673 @item
21674 Select only I-frames:
21675 @example
21676 select='eq(pict_type\,I)'
21677 @end example
21678
21679 @item
21680 Select one frame every 100:
21681 @example
21682 select='not(mod(n\,100))'
21683 @end example
21684
21685 @item
21686 Select only frames contained in the 10-20 time interval:
21687 @example
21688 select=between(t\,10\,20)
21689 @end example
21690
21691 @item
21692 Select only I-frames contained in the 10-20 time interval:
21693 @example
21694 select=between(t\,10\,20)*eq(pict_type\,I)
21695 @end example
21696
21697 @item
21698 Select frames with a minimum distance of 10 seconds:
21699 @example
21700 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
21701 @end example
21702
21703 @item
21704 Use aselect to select only audio frames with samples number > 100:
21705 @example
21706 aselect='gt(samples_n\,100)'
21707 @end example
21708
21709 @item
21710 Create a mosaic of the first scenes:
21711 @example
21712 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
21713 @end example
21714
21715 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
21716 choice.
21717
21718 @item
21719 Send even and odd frames to separate outputs, and compose them:
21720 @example
21721 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
21722 @end example
21723
21724 @item
21725 Select useful frames from an ffconcat file which is using inpoints and
21726 outpoints but where the source files are not intra frame only.
21727 @example
21728 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
21729 @end example
21730 @end itemize
21731
21732 @section sendcmd, asendcmd
21733
21734 Send commands to filters in the filtergraph.
21735
21736 These filters read commands to be sent to other filters in the
21737 filtergraph.
21738
21739 @code{sendcmd} must be inserted between two video filters,
21740 @code{asendcmd} must be inserted between two audio filters, but apart
21741 from that they act the same way.
21742
21743 The specification of commands can be provided in the filter arguments
21744 with the @var{commands} option, or in a file specified by the
21745 @var{filename} option.
21746
21747 These filters accept the following options:
21748 @table @option
21749 @item commands, c
21750 Set the commands to be read and sent to the other filters.
21751 @item filename, f
21752 Set the filename of the commands to be read and sent to the other
21753 filters.
21754 @end table
21755
21756 @subsection Commands syntax
21757
21758 A commands description consists of a sequence of interval
21759 specifications, comprising a list of commands to be executed when a
21760 particular event related to that interval occurs. The occurring event
21761 is typically the current frame time entering or leaving a given time
21762 interval.
21763
21764 An interval is specified by the following syntax:
21765 @example
21766 @var{START}[-@var{END}] @var{COMMANDS};
21767 @end example
21768
21769 The time interval is specified by the @var{START} and @var{END} times.
21770 @var{END} is optional and defaults to the maximum time.
21771
21772 The current frame time is considered within the specified interval if
21773 it is included in the interval [@var{START}, @var{END}), that is when
21774 the time is greater or equal to @var{START} and is lesser than
21775 @var{END}.
21776
21777 @var{COMMANDS} consists of a sequence of one or more command
21778 specifications, separated by ",", relating to that interval.  The
21779 syntax of a command specification is given by:
21780 @example
21781 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
21782 @end example
21783
21784 @var{FLAGS} is optional and specifies the type of events relating to
21785 the time interval which enable sending the specified command, and must
21786 be a non-null sequence of identifier flags separated by "+" or "|" and
21787 enclosed between "[" and "]".
21788
21789 The following flags are recognized:
21790 @table @option
21791 @item enter
21792 The command is sent when the current frame timestamp enters the
21793 specified interval. In other words, the command is sent when the
21794 previous frame timestamp was not in the given interval, and the
21795 current is.
21796
21797 @item leave
21798 The command is sent when the current frame timestamp leaves the
21799 specified interval. In other words, the command is sent when the
21800 previous frame timestamp was in the given interval, and the
21801 current is not.
21802 @end table
21803
21804 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
21805 assumed.
21806
21807 @var{TARGET} specifies the target of the command, usually the name of
21808 the filter class or a specific filter instance name.
21809
21810 @var{COMMAND} specifies the name of the command for the target filter.
21811
21812 @var{ARG} is optional and specifies the optional list of argument for
21813 the given @var{COMMAND}.
21814
21815 Between one interval specification and another, whitespaces, or
21816 sequences of characters starting with @code{#} until the end of line,
21817 are ignored and can be used to annotate comments.
21818
21819 A simplified BNF description of the commands specification syntax
21820 follows:
21821 @example
21822 @var{COMMAND_FLAG}  ::= "enter" | "leave"
21823 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
21824 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
21825 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
21826 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
21827 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
21828 @end example
21829
21830 @subsection Examples
21831
21832 @itemize
21833 @item
21834 Specify audio tempo change at second 4:
21835 @example
21836 asendcmd=c='4.0 atempo tempo 1.5',atempo
21837 @end example
21838
21839 @item
21840 Target a specific filter instance:
21841 @example
21842 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
21843 @end example
21844
21845 @item
21846 Specify a list of drawtext and hue commands in a file.
21847 @example
21848 # show text in the interval 5-10
21849 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
21850          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
21851
21852 # desaturate the image in the interval 15-20
21853 15.0-20.0 [enter] hue s 0,
21854           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
21855           [leave] hue s 1,
21856           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
21857
21858 # apply an exponential saturation fade-out effect, starting from time 25
21859 25 [enter] hue s exp(25-t)
21860 @end example
21861
21862 A filtergraph allowing to read and process the above command list
21863 stored in a file @file{test.cmd}, can be specified with:
21864 @example
21865 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
21866 @end example
21867 @end itemize
21868
21869 @anchor{setpts}
21870 @section setpts, asetpts
21871
21872 Change the PTS (presentation timestamp) of the input frames.
21873
21874 @code{setpts} works on video frames, @code{asetpts} on audio frames.
21875
21876 This filter accepts the following options:
21877
21878 @table @option
21879
21880 @item expr
21881 The expression which is evaluated for each frame to construct its timestamp.
21882
21883 @end table
21884
21885 The expression is evaluated through the eval API and can contain the following
21886 constants:
21887
21888 @table @option
21889 @item FRAME_RATE, FR
21890 frame rate, only defined for constant frame-rate video
21891
21892 @item PTS
21893 The presentation timestamp in input
21894
21895 @item N
21896 The count of the input frame for video or the number of consumed samples,
21897 not including the current frame for audio, starting from 0.
21898
21899 @item NB_CONSUMED_SAMPLES
21900 The number of consumed samples, not including the current frame (only
21901 audio)
21902
21903 @item NB_SAMPLES, S
21904 The number of samples in the current frame (only audio)
21905
21906 @item SAMPLE_RATE, SR
21907 The audio sample rate.
21908
21909 @item STARTPTS
21910 The PTS of the first frame.
21911
21912 @item STARTT
21913 the time in seconds of the first frame
21914
21915 @item INTERLACED
21916 State whether the current frame is interlaced.
21917
21918 @item T
21919 the time in seconds of the current frame
21920
21921 @item POS
21922 original position in the file of the frame, or undefined if undefined
21923 for the current frame
21924
21925 @item PREV_INPTS
21926 The previous input PTS.
21927
21928 @item PREV_INT
21929 previous input time in seconds
21930
21931 @item PREV_OUTPTS
21932 The previous output PTS.
21933
21934 @item PREV_OUTT
21935 previous output time in seconds
21936
21937 @item RTCTIME
21938 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
21939 instead.
21940
21941 @item RTCSTART
21942 The wallclock (RTC) time at the start of the movie in microseconds.
21943
21944 @item TB
21945 The timebase of the input timestamps.
21946
21947 @end table
21948
21949 @subsection Examples
21950
21951 @itemize
21952 @item
21953 Start counting PTS from zero
21954 @example
21955 setpts=PTS-STARTPTS
21956 @end example
21957
21958 @item
21959 Apply fast motion effect:
21960 @example
21961 setpts=0.5*PTS
21962 @end example
21963
21964 @item
21965 Apply slow motion effect:
21966 @example
21967 setpts=2.0*PTS
21968 @end example
21969
21970 @item
21971 Set fixed rate of 25 frames per second:
21972 @example
21973 setpts=N/(25*TB)
21974 @end example
21975
21976 @item
21977 Set fixed rate 25 fps with some jitter:
21978 @example
21979 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
21980 @end example
21981
21982 @item
21983 Apply an offset of 10 seconds to the input PTS:
21984 @example
21985 setpts=PTS+10/TB
21986 @end example
21987
21988 @item
21989 Generate timestamps from a "live source" and rebase onto the current timebase:
21990 @example
21991 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
21992 @end example
21993
21994 @item
21995 Generate timestamps by counting samples:
21996 @example
21997 asetpts=N/SR/TB
21998 @end example
21999
22000 @end itemize
22001
22002 @section setrange
22003
22004 Force color range for the output video frame.
22005
22006 The @code{setrange} filter marks the color range property for the
22007 output frames. It does not change the input frame, but only sets the
22008 corresponding property, which affects how the frame is treated by
22009 following filters.
22010
22011 The filter accepts the following options:
22012
22013 @table @option
22014
22015 @item range
22016 Available values are:
22017
22018 @table @samp
22019 @item auto
22020 Keep the same color range property.
22021
22022 @item unspecified, unknown
22023 Set the color range as unspecified.
22024
22025 @item limited, tv, mpeg
22026 Set the color range as limited.
22027
22028 @item full, pc, jpeg
22029 Set the color range as full.
22030 @end table
22031 @end table
22032
22033 @section settb, asettb
22034
22035 Set the timebase to use for the output frames timestamps.
22036 It is mainly useful for testing timebase configuration.
22037
22038 It accepts the following parameters:
22039
22040 @table @option
22041
22042 @item expr, tb
22043 The expression which is evaluated into the output timebase.
22044
22045 @end table
22046
22047 The value for @option{tb} is an arithmetic expression representing a
22048 rational. The expression can contain the constants "AVTB" (the default
22049 timebase), "intb" (the input timebase) and "sr" (the sample rate,
22050 audio only). Default value is "intb".
22051
22052 @subsection Examples
22053
22054 @itemize
22055 @item
22056 Set the timebase to 1/25:
22057 @example
22058 settb=expr=1/25
22059 @end example
22060
22061 @item
22062 Set the timebase to 1/10:
22063 @example
22064 settb=expr=0.1
22065 @end example
22066
22067 @item
22068 Set the timebase to 1001/1000:
22069 @example
22070 settb=1+0.001
22071 @end example
22072
22073 @item
22074 Set the timebase to 2*intb:
22075 @example
22076 settb=2*intb
22077 @end example
22078
22079 @item
22080 Set the default timebase value:
22081 @example
22082 settb=AVTB
22083 @end example
22084 @end itemize
22085
22086 @section showcqt
22087 Convert input audio to a video output representing frequency spectrum
22088 logarithmically using Brown-Puckette constant Q transform algorithm with
22089 direct frequency domain coefficient calculation (but the transform itself
22090 is not really constant Q, instead the Q factor is actually variable/clamped),
22091 with musical tone scale, from E0 to D#10.
22092
22093 The filter accepts the following options:
22094
22095 @table @option
22096 @item size, s
22097 Specify the video size for the output. It must be even. For the syntax of this option,
22098 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22099 Default value is @code{1920x1080}.
22100
22101 @item fps, rate, r
22102 Set the output frame rate. Default value is @code{25}.
22103
22104 @item bar_h
22105 Set the bargraph height. It must be even. Default value is @code{-1} which
22106 computes the bargraph height automatically.
22107
22108 @item axis_h
22109 Set the axis height. It must be even. Default value is @code{-1} which computes
22110 the axis height automatically.
22111
22112 @item sono_h
22113 Set the sonogram height. It must be even. Default value is @code{-1} which
22114 computes the sonogram height automatically.
22115
22116 @item fullhd
22117 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
22118 instead. Default value is @code{1}.
22119
22120 @item sono_v, volume
22121 Specify the sonogram volume expression. It can contain variables:
22122 @table @option
22123 @item bar_v
22124 the @var{bar_v} evaluated expression
22125 @item frequency, freq, f
22126 the frequency where it is evaluated
22127 @item timeclamp, tc
22128 the value of @var{timeclamp} option
22129 @end table
22130 and functions:
22131 @table @option
22132 @item a_weighting(f)
22133 A-weighting of equal loudness
22134 @item b_weighting(f)
22135 B-weighting of equal loudness
22136 @item c_weighting(f)
22137 C-weighting of equal loudness.
22138 @end table
22139 Default value is @code{16}.
22140
22141 @item bar_v, volume2
22142 Specify the bargraph volume expression. It can contain variables:
22143 @table @option
22144 @item sono_v
22145 the @var{sono_v} evaluated expression
22146 @item frequency, freq, f
22147 the frequency where it is evaluated
22148 @item timeclamp, tc
22149 the value of @var{timeclamp} option
22150 @end table
22151 and functions:
22152 @table @option
22153 @item a_weighting(f)
22154 A-weighting of equal loudness
22155 @item b_weighting(f)
22156 B-weighting of equal loudness
22157 @item c_weighting(f)
22158 C-weighting of equal loudness.
22159 @end table
22160 Default value is @code{sono_v}.
22161
22162 @item sono_g, gamma
22163 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
22164 higher gamma makes the spectrum having more range. Default value is @code{3}.
22165 Acceptable range is @code{[1, 7]}.
22166
22167 @item bar_g, gamma2
22168 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
22169 @code{[1, 7]}.
22170
22171 @item bar_t
22172 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
22173 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
22174
22175 @item timeclamp, tc
22176 Specify the transform timeclamp. At low frequency, there is trade-off between
22177 accuracy in time domain and frequency domain. If timeclamp is lower,
22178 event in time domain is represented more accurately (such as fast bass drum),
22179 otherwise event in frequency domain is represented more accurately
22180 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
22181
22182 @item attack
22183 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
22184 limits future samples by applying asymmetric windowing in time domain, useful
22185 when low latency is required. Accepted range is @code{[0, 1]}.
22186
22187 @item basefreq
22188 Specify the transform base frequency. Default value is @code{20.01523126408007475},
22189 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
22190
22191 @item endfreq
22192 Specify the transform end frequency. Default value is @code{20495.59681441799654},
22193 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
22194
22195 @item coeffclamp
22196 This option is deprecated and ignored.
22197
22198 @item tlength
22199 Specify the transform length in time domain. Use this option to control accuracy
22200 trade-off between time domain and frequency domain at every frequency sample.
22201 It can contain variables:
22202 @table @option
22203 @item frequency, freq, f
22204 the frequency where it is evaluated
22205 @item timeclamp, tc
22206 the value of @var{timeclamp} option.
22207 @end table
22208 Default value is @code{384*tc/(384+tc*f)}.
22209
22210 @item count
22211 Specify the transform count for every video frame. Default value is @code{6}.
22212 Acceptable range is @code{[1, 30]}.
22213
22214 @item fcount
22215 Specify the transform count for every single pixel. Default value is @code{0},
22216 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
22217
22218 @item fontfile
22219 Specify font file for use with freetype to draw the axis. If not specified,
22220 use embedded font. Note that drawing with font file or embedded font is not
22221 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
22222 option instead.
22223
22224 @item font
22225 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
22226 The : in the pattern may be replaced by | to avoid unnecessary escaping.
22227
22228 @item fontcolor
22229 Specify font color expression. This is arithmetic expression that should return
22230 integer value 0xRRGGBB. It can contain variables:
22231 @table @option
22232 @item frequency, freq, f
22233 the frequency where it is evaluated
22234 @item timeclamp, tc
22235 the value of @var{timeclamp} option
22236 @end table
22237 and functions:
22238 @table @option
22239 @item midi(f)
22240 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
22241 @item r(x), g(x), b(x)
22242 red, green, and blue value of intensity x.
22243 @end table
22244 Default value is @code{st(0, (midi(f)-59.5)/12);
22245 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
22246 r(1-ld(1)) + b(ld(1))}.
22247
22248 @item axisfile
22249 Specify image file to draw the axis. This option override @var{fontfile} and
22250 @var{fontcolor} option.
22251
22252 @item axis, text
22253 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
22254 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
22255 Default value is @code{1}.
22256
22257 @item csp
22258 Set colorspace. The accepted values are:
22259 @table @samp
22260 @item unspecified
22261 Unspecified (default)
22262
22263 @item bt709
22264 BT.709
22265
22266 @item fcc
22267 FCC
22268
22269 @item bt470bg
22270 BT.470BG or BT.601-6 625
22271
22272 @item smpte170m
22273 SMPTE-170M or BT.601-6 525
22274
22275 @item smpte240m
22276 SMPTE-240M
22277
22278 @item bt2020ncl
22279 BT.2020 with non-constant luminance
22280
22281 @end table
22282
22283 @item cscheme
22284 Set spectrogram color scheme. This is list of floating point values with format
22285 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
22286 The default is @code{1|0.5|0|0|0.5|1}.
22287
22288 @end table
22289
22290 @subsection Examples
22291
22292 @itemize
22293 @item
22294 Playing audio while showing the spectrum:
22295 @example
22296 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
22297 @end example
22298
22299 @item
22300 Same as above, but with frame rate 30 fps:
22301 @example
22302 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
22303 @end example
22304
22305 @item
22306 Playing at 1280x720:
22307 @example
22308 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
22309 @end example
22310
22311 @item
22312 Disable sonogram display:
22313 @example
22314 sono_h=0
22315 @end example
22316
22317 @item
22318 A1 and its harmonics: A1, A2, (near)E3, A3:
22319 @example
22320 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),
22321                  asplit[a][out1]; [a] showcqt [out0]'
22322 @end example
22323
22324 @item
22325 Same as above, but with more accuracy in frequency domain:
22326 @example
22327 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),
22328                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
22329 @end example
22330
22331 @item
22332 Custom volume:
22333 @example
22334 bar_v=10:sono_v=bar_v*a_weighting(f)
22335 @end example
22336
22337 @item
22338 Custom gamma, now spectrum is linear to the amplitude.
22339 @example
22340 bar_g=2:sono_g=2
22341 @end example
22342
22343 @item
22344 Custom tlength equation:
22345 @example
22346 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)))'
22347 @end example
22348
22349 @item
22350 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
22351 @example
22352 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
22353 @end example
22354
22355 @item
22356 Custom font using fontconfig:
22357 @example
22358 font='Courier New,Monospace,mono|bold'
22359 @end example
22360
22361 @item
22362 Custom frequency range with custom axis using image file:
22363 @example
22364 axisfile=myaxis.png:basefreq=40:endfreq=10000
22365 @end example
22366 @end itemize
22367
22368 @section showfreqs
22369
22370 Convert input audio to video output representing the audio power spectrum.
22371 Audio amplitude is on Y-axis while frequency is on X-axis.
22372
22373 The filter accepts the following options:
22374
22375 @table @option
22376 @item size, s
22377 Specify size of video. For the syntax of this option, check the
22378 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22379 Default is @code{1024x512}.
22380
22381 @item mode
22382 Set display mode.
22383 This set how each frequency bin will be represented.
22384
22385 It accepts the following values:
22386 @table @samp
22387 @item line
22388 @item bar
22389 @item dot
22390 @end table
22391 Default is @code{bar}.
22392
22393 @item ascale
22394 Set amplitude scale.
22395
22396 It accepts the following values:
22397 @table @samp
22398 @item lin
22399 Linear scale.
22400
22401 @item sqrt
22402 Square root scale.
22403
22404 @item cbrt
22405 Cubic root scale.
22406
22407 @item log
22408 Logarithmic scale.
22409 @end table
22410 Default is @code{log}.
22411
22412 @item fscale
22413 Set frequency scale.
22414
22415 It accepts the following values:
22416 @table @samp
22417 @item lin
22418 Linear scale.
22419
22420 @item log
22421 Logarithmic scale.
22422
22423 @item rlog
22424 Reverse logarithmic scale.
22425 @end table
22426 Default is @code{lin}.
22427
22428 @item win_size
22429 Set window size. Allowed range is from 16 to 65536.
22430
22431 Default is @code{2048}
22432
22433 @item win_func
22434 Set windowing function.
22435
22436 It accepts the following values:
22437 @table @samp
22438 @item rect
22439 @item bartlett
22440 @item hanning
22441 @item hamming
22442 @item blackman
22443 @item welch
22444 @item flattop
22445 @item bharris
22446 @item bnuttall
22447 @item bhann
22448 @item sine
22449 @item nuttall
22450 @item lanczos
22451 @item gauss
22452 @item tukey
22453 @item dolph
22454 @item cauchy
22455 @item parzen
22456 @item poisson
22457 @item bohman
22458 @end table
22459 Default is @code{hanning}.
22460
22461 @item overlap
22462 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
22463 which means optimal overlap for selected window function will be picked.
22464
22465 @item averaging
22466 Set time averaging. Setting this to 0 will display current maximal peaks.
22467 Default is @code{1}, which means time averaging is disabled.
22468
22469 @item colors
22470 Specify list of colors separated by space or by '|' which will be used to
22471 draw channel frequencies. Unrecognized or missing colors will be replaced
22472 by white color.
22473
22474 @item cmode
22475 Set channel display mode.
22476
22477 It accepts the following values:
22478 @table @samp
22479 @item combined
22480 @item separate
22481 @end table
22482 Default is @code{combined}.
22483
22484 @item minamp
22485 Set minimum amplitude used in @code{log} amplitude scaler.
22486
22487 @end table
22488
22489 @section showspatial
22490
22491 Convert stereo input audio to a video output, representing the spatial relationship
22492 between two channels.
22493
22494 The filter accepts the following options:
22495
22496 @table @option
22497 @item size, s
22498 Specify the video size for the output. For the syntax of this option, check the
22499 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22500 Default value is @code{512x512}.
22501
22502 @item win_size
22503 Set window size. Allowed range is from @var{1024} to @var{65536}. Default size is @var{4096}.
22504
22505 @item win_func
22506 Set window function.
22507
22508 It accepts the following values:
22509 @table @samp
22510 @item rect
22511 @item bartlett
22512 @item hann
22513 @item hanning
22514 @item hamming
22515 @item blackman
22516 @item welch
22517 @item flattop
22518 @item bharris
22519 @item bnuttall
22520 @item bhann
22521 @item sine
22522 @item nuttall
22523 @item lanczos
22524 @item gauss
22525 @item tukey
22526 @item dolph
22527 @item cauchy
22528 @item parzen
22529 @item poisson
22530 @item bohman
22531 @end table
22532
22533 Default value is @code{hann}.
22534
22535 @item overlap
22536 Set ratio of overlap window. Default value is @code{0.5}.
22537 When value is @code{1} overlap is set to recommended size for specific
22538 window function currently used.
22539 @end table
22540
22541 @anchor{showspectrum}
22542 @section showspectrum
22543
22544 Convert input audio to a video output, representing the audio frequency
22545 spectrum.
22546
22547 The filter accepts the following options:
22548
22549 @table @option
22550 @item size, s
22551 Specify the video size for the output. For the syntax of this option, check the
22552 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22553 Default value is @code{640x512}.
22554
22555 @item slide
22556 Specify how the spectrum should slide along the window.
22557
22558 It accepts the following values:
22559 @table @samp
22560 @item replace
22561 the samples start again on the left when they reach the right
22562 @item scroll
22563 the samples scroll from right to left
22564 @item fullframe
22565 frames are only produced when the samples reach the right
22566 @item rscroll
22567 the samples scroll from left to right
22568 @end table
22569
22570 Default value is @code{replace}.
22571
22572 @item mode
22573 Specify display mode.
22574
22575 It accepts the following values:
22576 @table @samp
22577 @item combined
22578 all channels are displayed in the same row
22579 @item separate
22580 all channels are displayed in separate rows
22581 @end table
22582
22583 Default value is @samp{combined}.
22584
22585 @item color
22586 Specify display color mode.
22587
22588 It accepts the following values:
22589 @table @samp
22590 @item channel
22591 each channel is displayed in a separate color
22592 @item intensity
22593 each channel is displayed using the same color scheme
22594 @item rainbow
22595 each channel is displayed using the rainbow color scheme
22596 @item moreland
22597 each channel is displayed using the moreland color scheme
22598 @item nebulae
22599 each channel is displayed using the nebulae color scheme
22600 @item fire
22601 each channel is displayed using the fire color scheme
22602 @item fiery
22603 each channel is displayed using the fiery color scheme
22604 @item fruit
22605 each channel is displayed using the fruit color scheme
22606 @item cool
22607 each channel is displayed using the cool color scheme
22608 @item magma
22609 each channel is displayed using the magma color scheme
22610 @item green
22611 each channel is displayed using the green color scheme
22612 @item viridis
22613 each channel is displayed using the viridis color scheme
22614 @item plasma
22615 each channel is displayed using the plasma color scheme
22616 @item cividis
22617 each channel is displayed using the cividis color scheme
22618 @item terrain
22619 each channel is displayed using the terrain color scheme
22620 @end table
22621
22622 Default value is @samp{channel}.
22623
22624 @item scale
22625 Specify scale used for calculating intensity color values.
22626
22627 It accepts the following values:
22628 @table @samp
22629 @item lin
22630 linear
22631 @item sqrt
22632 square root, default
22633 @item cbrt
22634 cubic root
22635 @item log
22636 logarithmic
22637 @item 4thrt
22638 4th root
22639 @item 5thrt
22640 5th root
22641 @end table
22642
22643 Default value is @samp{sqrt}.
22644
22645 @item fscale
22646 Specify frequency scale.
22647
22648 It accepts the following values:
22649 @table @samp
22650 @item lin
22651 linear
22652 @item log
22653 logarithmic
22654 @end table
22655
22656 Default value is @samp{lin}.
22657
22658 @item saturation
22659 Set saturation modifier for displayed colors. Negative values provide
22660 alternative color scheme. @code{0} is no saturation at all.
22661 Saturation must be in [-10.0, 10.0] range.
22662 Default value is @code{1}.
22663
22664 @item win_func
22665 Set window function.
22666
22667 It accepts the following values:
22668 @table @samp
22669 @item rect
22670 @item bartlett
22671 @item hann
22672 @item hanning
22673 @item hamming
22674 @item blackman
22675 @item welch
22676 @item flattop
22677 @item bharris
22678 @item bnuttall
22679 @item bhann
22680 @item sine
22681 @item nuttall
22682 @item lanczos
22683 @item gauss
22684 @item tukey
22685 @item dolph
22686 @item cauchy
22687 @item parzen
22688 @item poisson
22689 @item bohman
22690 @end table
22691
22692 Default value is @code{hann}.
22693
22694 @item orientation
22695 Set orientation of time vs frequency axis. Can be @code{vertical} or
22696 @code{horizontal}. Default is @code{vertical}.
22697
22698 @item overlap
22699 Set ratio of overlap window. Default value is @code{0}.
22700 When value is @code{1} overlap is set to recommended size for specific
22701 window function currently used.
22702
22703 @item gain
22704 Set scale gain for calculating intensity color values.
22705 Default value is @code{1}.
22706
22707 @item data
22708 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
22709
22710 @item rotation
22711 Set color rotation, must be in [-1.0, 1.0] range.
22712 Default value is @code{0}.
22713
22714 @item start
22715 Set start frequency from which to display spectrogram. Default is @code{0}.
22716
22717 @item stop
22718 Set stop frequency to which to display spectrogram. Default is @code{0}.
22719
22720 @item fps
22721 Set upper frame rate limit. Default is @code{auto}, unlimited.
22722
22723 @item legend
22724 Draw time and frequency axes and legends. Default is disabled.
22725 @end table
22726
22727 The usage is very similar to the showwaves filter; see the examples in that
22728 section.
22729
22730 @subsection Examples
22731
22732 @itemize
22733 @item
22734 Large window with logarithmic color scaling:
22735 @example
22736 showspectrum=s=1280x480:scale=log
22737 @end example
22738
22739 @item
22740 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
22741 @example
22742 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
22743              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
22744 @end example
22745 @end itemize
22746
22747 @section showspectrumpic
22748
22749 Convert input audio to a single video frame, representing the audio frequency
22750 spectrum.
22751
22752 The filter accepts the following options:
22753
22754 @table @option
22755 @item size, s
22756 Specify the video size for the output. For the syntax of this option, check the
22757 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22758 Default value is @code{4096x2048}.
22759
22760 @item mode
22761 Specify display mode.
22762
22763 It accepts the following values:
22764 @table @samp
22765 @item combined
22766 all channels are displayed in the same row
22767 @item separate
22768 all channels are displayed in separate rows
22769 @end table
22770 Default value is @samp{combined}.
22771
22772 @item color
22773 Specify display color mode.
22774
22775 It accepts the following values:
22776 @table @samp
22777 @item channel
22778 each channel is displayed in a separate color
22779 @item intensity
22780 each channel is displayed using the same color scheme
22781 @item rainbow
22782 each channel is displayed using the rainbow color scheme
22783 @item moreland
22784 each channel is displayed using the moreland color scheme
22785 @item nebulae
22786 each channel is displayed using the nebulae color scheme
22787 @item fire
22788 each channel is displayed using the fire color scheme
22789 @item fiery
22790 each channel is displayed using the fiery color scheme
22791 @item fruit
22792 each channel is displayed using the fruit color scheme
22793 @item cool
22794 each channel is displayed using the cool color scheme
22795 @item magma
22796 each channel is displayed using the magma color scheme
22797 @item green
22798 each channel is displayed using the green color scheme
22799 @item viridis
22800 each channel is displayed using the viridis color scheme
22801 @item plasma
22802 each channel is displayed using the plasma color scheme
22803 @item cividis
22804 each channel is displayed using the cividis color scheme
22805 @item terrain
22806 each channel is displayed using the terrain color scheme
22807 @end table
22808 Default value is @samp{intensity}.
22809
22810 @item scale
22811 Specify scale used for calculating intensity color values.
22812
22813 It accepts the following values:
22814 @table @samp
22815 @item lin
22816 linear
22817 @item sqrt
22818 square root, default
22819 @item cbrt
22820 cubic root
22821 @item log
22822 logarithmic
22823 @item 4thrt
22824 4th root
22825 @item 5thrt
22826 5th root
22827 @end table
22828 Default value is @samp{log}.
22829
22830 @item fscale
22831 Specify frequency scale.
22832
22833 It accepts the following values:
22834 @table @samp
22835 @item lin
22836 linear
22837 @item log
22838 logarithmic
22839 @end table
22840
22841 Default value is @samp{lin}.
22842
22843 @item saturation
22844 Set saturation modifier for displayed colors. Negative values provide
22845 alternative color scheme. @code{0} is no saturation at all.
22846 Saturation must be in [-10.0, 10.0] range.
22847 Default value is @code{1}.
22848
22849 @item win_func
22850 Set window function.
22851
22852 It accepts the following values:
22853 @table @samp
22854 @item rect
22855 @item bartlett
22856 @item hann
22857 @item hanning
22858 @item hamming
22859 @item blackman
22860 @item welch
22861 @item flattop
22862 @item bharris
22863 @item bnuttall
22864 @item bhann
22865 @item sine
22866 @item nuttall
22867 @item lanczos
22868 @item gauss
22869 @item tukey
22870 @item dolph
22871 @item cauchy
22872 @item parzen
22873 @item poisson
22874 @item bohman
22875 @end table
22876 Default value is @code{hann}.
22877
22878 @item orientation
22879 Set orientation of time vs frequency axis. Can be @code{vertical} or
22880 @code{horizontal}. Default is @code{vertical}.
22881
22882 @item gain
22883 Set scale gain for calculating intensity color values.
22884 Default value is @code{1}.
22885
22886 @item legend
22887 Draw time and frequency axes and legends. Default is enabled.
22888
22889 @item rotation
22890 Set color rotation, must be in [-1.0, 1.0] range.
22891 Default value is @code{0}.
22892
22893 @item start
22894 Set start frequency from which to display spectrogram. Default is @code{0}.
22895
22896 @item stop
22897 Set stop frequency to which to display spectrogram. Default is @code{0}.
22898 @end table
22899
22900 @subsection Examples
22901
22902 @itemize
22903 @item
22904 Extract an audio spectrogram of a whole audio track
22905 in a 1024x1024 picture using @command{ffmpeg}:
22906 @example
22907 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
22908 @end example
22909 @end itemize
22910
22911 @section showvolume
22912
22913 Convert input audio volume to a video output.
22914
22915 The filter accepts the following options:
22916
22917 @table @option
22918 @item rate, r
22919 Set video rate.
22920
22921 @item b
22922 Set border width, allowed range is [0, 5]. Default is 1.
22923
22924 @item w
22925 Set channel width, allowed range is [80, 8192]. Default is 400.
22926
22927 @item h
22928 Set channel height, allowed range is [1, 900]. Default is 20.
22929
22930 @item f
22931 Set fade, allowed range is [0, 1]. Default is 0.95.
22932
22933 @item c
22934 Set volume color expression.
22935
22936 The expression can use the following variables:
22937
22938 @table @option
22939 @item VOLUME
22940 Current max volume of channel in dB.
22941
22942 @item PEAK
22943 Current peak.
22944
22945 @item CHANNEL
22946 Current channel number, starting from 0.
22947 @end table
22948
22949 @item t
22950 If set, displays channel names. Default is enabled.
22951
22952 @item v
22953 If set, displays volume values. Default is enabled.
22954
22955 @item o
22956 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
22957 default is @code{h}.
22958
22959 @item s
22960 Set step size, allowed range is [0, 5]. Default is 0, which means
22961 step is disabled.
22962
22963 @item p
22964 Set background opacity, allowed range is [0, 1]. Default is 0.
22965
22966 @item m
22967 Set metering mode, can be peak: @code{p} or rms: @code{r},
22968 default is @code{p}.
22969
22970 @item ds
22971 Set display scale, can be linear: @code{lin} or log: @code{log},
22972 default is @code{lin}.
22973
22974 @item dm
22975 In second.
22976 If set to > 0., display a line for the max level
22977 in the previous seconds.
22978 default is disabled: @code{0.}
22979
22980 @item dmc
22981 The color of the max line. Use when @code{dm} option is set to > 0.
22982 default is: @code{orange}
22983 @end table
22984
22985 @section showwaves
22986
22987 Convert input audio to a video output, representing the samples waves.
22988
22989 The filter accepts the following options:
22990
22991 @table @option
22992 @item size, s
22993 Specify the video size for the output. For the syntax of this option, check the
22994 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
22995 Default value is @code{600x240}.
22996
22997 @item mode
22998 Set display mode.
22999
23000 Available values are:
23001 @table @samp
23002 @item point
23003 Draw a point for each sample.
23004
23005 @item line
23006 Draw a vertical line for each sample.
23007
23008 @item p2p
23009 Draw a point for each sample and a line between them.
23010
23011 @item cline
23012 Draw a centered vertical line for each sample.
23013 @end table
23014
23015 Default value is @code{point}.
23016
23017 @item n
23018 Set the number of samples which are printed on the same column. A
23019 larger value will decrease the frame rate. Must be a positive
23020 integer. This option can be set only if the value for @var{rate}
23021 is not explicitly specified.
23022
23023 @item rate, r
23024 Set the (approximate) output frame rate. This is done by setting the
23025 option @var{n}. Default value is "25".
23026
23027 @item split_channels
23028 Set if channels should be drawn separately or overlap. Default value is 0.
23029
23030 @item colors
23031 Set colors separated by '|' which are going to be used for drawing of each channel.
23032
23033 @item scale
23034 Set amplitude scale.
23035
23036 Available values are:
23037 @table @samp
23038 @item lin
23039 Linear.
23040
23041 @item log
23042 Logarithmic.
23043
23044 @item sqrt
23045 Square root.
23046
23047 @item cbrt
23048 Cubic root.
23049 @end table
23050
23051 Default is linear.
23052
23053 @item draw
23054 Set the draw mode. This is mostly useful to set for high @var{n}.
23055
23056 Available values are:
23057 @table @samp
23058 @item scale
23059 Scale pixel values for each drawn sample.
23060
23061 @item full
23062 Draw every sample directly.
23063 @end table
23064
23065 Default value is @code{scale}.
23066 @end table
23067
23068 @subsection Examples
23069
23070 @itemize
23071 @item
23072 Output the input file audio and the corresponding video representation
23073 at the same time:
23074 @example
23075 amovie=a.mp3,asplit[out0],showwaves[out1]
23076 @end example
23077
23078 @item
23079 Create a synthetic signal and show it with showwaves, forcing a
23080 frame rate of 30 frames per second:
23081 @example
23082 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
23083 @end example
23084 @end itemize
23085
23086 @section showwavespic
23087
23088 Convert input audio to a single video frame, representing the samples waves.
23089
23090 The filter accepts the following options:
23091
23092 @table @option
23093 @item size, s
23094 Specify the video size for the output. For the syntax of this option, check the
23095 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
23096 Default value is @code{600x240}.
23097
23098 @item split_channels
23099 Set if channels should be drawn separately or overlap. Default value is 0.
23100
23101 @item colors
23102 Set colors separated by '|' which are going to be used for drawing of each channel.
23103
23104 @item scale
23105 Set amplitude scale.
23106
23107 Available values are:
23108 @table @samp
23109 @item lin
23110 Linear.
23111
23112 @item log
23113 Logarithmic.
23114
23115 @item sqrt
23116 Square root.
23117
23118 @item cbrt
23119 Cubic root.
23120 @end table
23121
23122 Default is linear.
23123
23124 @item draw
23125 Set the draw mode.
23126
23127 Available values are:
23128 @table @samp
23129 @item scale
23130 Scale pixel values for each drawn sample.
23131
23132 @item full
23133 Draw every sample directly.
23134 @end table
23135
23136 Default value is @code{scale}.
23137 @end table
23138
23139 @subsection Examples
23140
23141 @itemize
23142 @item
23143 Extract a channel split representation of the wave form of a whole audio track
23144 in a 1024x800 picture using @command{ffmpeg}:
23145 @example
23146 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
23147 @end example
23148 @end itemize
23149
23150 @section sidedata, asidedata
23151
23152 Delete frame side data, or select frames based on it.
23153
23154 This filter accepts the following options:
23155
23156 @table @option
23157 @item mode
23158 Set mode of operation of the filter.
23159
23160 Can be one of the following:
23161
23162 @table @samp
23163 @item select
23164 Select every frame with side data of @code{type}.
23165
23166 @item delete
23167 Delete side data of @code{type}. If @code{type} is not set, delete all side
23168 data in the frame.
23169
23170 @end table
23171
23172 @item type
23173 Set side data type used with all modes. Must be set for @code{select} mode. For
23174 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
23175 in @file{libavutil/frame.h}. For example, to choose
23176 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
23177
23178 @end table
23179
23180 @section spectrumsynth
23181
23182 Sythesize audio from 2 input video spectrums, first input stream represents
23183 magnitude across time and second represents phase across time.
23184 The filter will transform from frequency domain as displayed in videos back
23185 to time domain as presented in audio output.
23186
23187 This filter is primarily created for reversing processed @ref{showspectrum}
23188 filter outputs, but can synthesize sound from other spectrograms too.
23189 But in such case results are going to be poor if the phase data is not
23190 available, because in such cases phase data need to be recreated, usually
23191 it's just recreated from random noise.
23192 For best results use gray only output (@code{channel} color mode in
23193 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
23194 @code{lin} scale for phase video. To produce phase, for 2nd video, use
23195 @code{data} option. Inputs videos should generally use @code{fullframe}
23196 slide mode as that saves resources needed for decoding video.
23197
23198 The filter accepts the following options:
23199
23200 @table @option
23201 @item sample_rate
23202 Specify sample rate of output audio, the sample rate of audio from which
23203 spectrum was generated may differ.
23204
23205 @item channels
23206 Set number of channels represented in input video spectrums.
23207
23208 @item scale
23209 Set scale which was used when generating magnitude input spectrum.
23210 Can be @code{lin} or @code{log}. Default is @code{log}.
23211
23212 @item slide
23213 Set slide which was used when generating inputs spectrums.
23214 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
23215 Default is @code{fullframe}.
23216
23217 @item win_func
23218 Set window function used for resynthesis.
23219
23220 @item overlap
23221 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
23222 which means optimal overlap for selected window function will be picked.
23223
23224 @item orientation
23225 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
23226 Default is @code{vertical}.
23227 @end table
23228
23229 @subsection Examples
23230
23231 @itemize
23232 @item
23233 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
23234 then resynthesize videos back to audio with spectrumsynth:
23235 @example
23236 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
23237 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
23238 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
23239 @end example
23240 @end itemize
23241
23242 @section split, asplit
23243
23244 Split input into several identical outputs.
23245
23246 @code{asplit} works with audio input, @code{split} with video.
23247
23248 The filter accepts a single parameter which specifies the number of outputs. If
23249 unspecified, it defaults to 2.
23250
23251 @subsection Examples
23252
23253 @itemize
23254 @item
23255 Create two separate outputs from the same input:
23256 @example
23257 [in] split [out0][out1]
23258 @end example
23259
23260 @item
23261 To create 3 or more outputs, you need to specify the number of
23262 outputs, like in:
23263 @example
23264 [in] asplit=3 [out0][out1][out2]
23265 @end example
23266
23267 @item
23268 Create two separate outputs from the same input, one cropped and
23269 one padded:
23270 @example
23271 [in] split [splitout1][splitout2];
23272 [splitout1] crop=100:100:0:0    [cropout];
23273 [splitout2] pad=200:200:100:100 [padout];
23274 @end example
23275
23276 @item
23277 Create 5 copies of the input audio with @command{ffmpeg}:
23278 @example
23279 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
23280 @end example
23281 @end itemize
23282
23283 @section zmq, azmq
23284
23285 Receive commands sent through a libzmq client, and forward them to
23286 filters in the filtergraph.
23287
23288 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
23289 must be inserted between two video filters, @code{azmq} between two
23290 audio filters. Both are capable to send messages to any filter type.
23291
23292 To enable these filters you need to install the libzmq library and
23293 headers and configure FFmpeg with @code{--enable-libzmq}.
23294
23295 For more information about libzmq see:
23296 @url{http://www.zeromq.org/}
23297
23298 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
23299 receives messages sent through a network interface defined by the
23300 @option{bind_address} (or the abbreviation "@option{b}") option.
23301 Default value of this option is @file{tcp://localhost:5555}. You may
23302 want to alter this value to your needs, but do not forget to escape any
23303 ':' signs (see @ref{filtergraph escaping}).
23304
23305 The received message must be in the form:
23306 @example
23307 @var{TARGET} @var{COMMAND} [@var{ARG}]
23308 @end example
23309
23310 @var{TARGET} specifies the target of the command, usually the name of
23311 the filter class or a specific filter instance name. The default
23312 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
23313 but you can override this by using the @samp{filter_name@@id} syntax
23314 (see @ref{Filtergraph syntax}).
23315
23316 @var{COMMAND} specifies the name of the command for the target filter.
23317
23318 @var{ARG} is optional and specifies the optional argument list for the
23319 given @var{COMMAND}.
23320
23321 Upon reception, the message is processed and the corresponding command
23322 is injected into the filtergraph. Depending on the result, the filter
23323 will send a reply to the client, adopting the format:
23324 @example
23325 @var{ERROR_CODE} @var{ERROR_REASON}
23326 @var{MESSAGE}
23327 @end example
23328
23329 @var{MESSAGE} is optional.
23330
23331 @subsection Examples
23332
23333 Look at @file{tools/zmqsend} for an example of a zmq client which can
23334 be used to send commands processed by these filters.
23335
23336 Consider the following filtergraph generated by @command{ffplay}.
23337 In this example the last overlay filter has an instance name. All other
23338 filters will have default instance names.
23339
23340 @example
23341 ffplay -dumpgraph 1 -f lavfi "
23342 color=s=100x100:c=red  [l];
23343 color=s=100x100:c=blue [r];
23344 nullsrc=s=200x100, zmq [bg];
23345 [bg][l]   overlay     [bg+l];
23346 [bg+l][r] overlay@@my=x=100 "
23347 @end example
23348
23349 To change the color of the left side of the video, the following
23350 command can be used:
23351 @example
23352 echo Parsed_color_0 c yellow | tools/zmqsend
23353 @end example
23354
23355 To change the right side:
23356 @example
23357 echo Parsed_color_1 c pink | tools/zmqsend
23358 @end example
23359
23360 To change the position of the right side:
23361 @example
23362 echo overlay@@my x 150 | tools/zmqsend
23363 @end example
23364
23365
23366 @c man end MULTIMEDIA FILTERS
23367
23368 @chapter Multimedia Sources
23369 @c man begin MULTIMEDIA SOURCES
23370
23371 Below is a description of the currently available multimedia sources.
23372
23373 @section amovie
23374
23375 This is the same as @ref{movie} source, except it selects an audio
23376 stream by default.
23377
23378 @anchor{movie}
23379 @section movie
23380
23381 Read audio and/or video stream(s) from a movie container.
23382
23383 It accepts the following parameters:
23384
23385 @table @option
23386 @item filename
23387 The name of the resource to read (not necessarily a file; it can also be a
23388 device or a stream accessed through some protocol).
23389
23390 @item format_name, f
23391 Specifies the format assumed for the movie to read, and can be either
23392 the name of a container or an input device. If not specified, the
23393 format is guessed from @var{movie_name} or by probing.
23394
23395 @item seek_point, sp
23396 Specifies the seek point in seconds. The frames will be output
23397 starting from this seek point. The parameter is evaluated with
23398 @code{av_strtod}, so the numerical value may be suffixed by an IS
23399 postfix. The default value is "0".
23400
23401 @item streams, s
23402 Specifies the streams to read. Several streams can be specified,
23403 separated by "+". The source will then have as many outputs, in the
23404 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
23405 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
23406 respectively the default (best suited) video and audio stream. Default
23407 is "dv", or "da" if the filter is called as "amovie".
23408
23409 @item stream_index, si
23410 Specifies the index of the video stream to read. If the value is -1,
23411 the most suitable video stream will be automatically selected. The default
23412 value is "-1". Deprecated. If the filter is called "amovie", it will select
23413 audio instead of video.
23414
23415 @item loop
23416 Specifies how many times to read the stream in sequence.
23417 If the value is 0, the stream will be looped infinitely.
23418 Default value is "1".
23419
23420 Note that when the movie is looped the source timestamps are not
23421 changed, so it will generate non monotonically increasing timestamps.
23422
23423 @item discontinuity
23424 Specifies the time difference between frames above which the point is
23425 considered a timestamp discontinuity which is removed by adjusting the later
23426 timestamps.
23427 @end table
23428
23429 It allows overlaying a second video on top of the main input of
23430 a filtergraph, as shown in this graph:
23431 @example
23432 input -----------> deltapts0 --> overlay --> output
23433                                     ^
23434                                     |
23435 movie --> scale--> deltapts1 -------+
23436 @end example
23437 @subsection Examples
23438
23439 @itemize
23440 @item
23441 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
23442 on top of the input labelled "in":
23443 @example
23444 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
23445 [in] setpts=PTS-STARTPTS [main];
23446 [main][over] overlay=16:16 [out]
23447 @end example
23448
23449 @item
23450 Read from a video4linux2 device, and overlay it on top of the input
23451 labelled "in":
23452 @example
23453 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
23454 [in] setpts=PTS-STARTPTS [main];
23455 [main][over] overlay=16:16 [out]
23456 @end example
23457
23458 @item
23459 Read the first video stream and the audio stream with id 0x81 from
23460 dvd.vob; the video is connected to the pad named "video" and the audio is
23461 connected to the pad named "audio":
23462 @example
23463 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
23464 @end example
23465 @end itemize
23466
23467 @subsection Commands
23468
23469 Both movie and amovie support the following commands:
23470 @table @option
23471 @item seek
23472 Perform seek using "av_seek_frame".
23473 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
23474 @itemize
23475 @item
23476 @var{stream_index}: If stream_index is -1, a default
23477 stream is selected, and @var{timestamp} is automatically converted
23478 from AV_TIME_BASE units to the stream specific time_base.
23479 @item
23480 @var{timestamp}: Timestamp in AVStream.time_base units
23481 or, if no stream is specified, in AV_TIME_BASE units.
23482 @item
23483 @var{flags}: Flags which select direction and seeking mode.
23484 @end itemize
23485
23486 @item get_duration
23487 Get movie duration in AV_TIME_BASE units.
23488
23489 @end table
23490
23491 @c man end MULTIMEDIA SOURCES